Gentoo Archives: gentoo-commits

From: Marek Szuba <marecki@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ddrescue/
Date: Mon, 26 Sep 2022 01:02:05
Message-Id: 1664154110.f3368555cb18f8e3d6394e0b667d7a40b6779afb.marecki@gentoo
1 commit: f3368555cb18f8e3d6394e0b667d7a40b6779afb
2 Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 00:57:24 2022 +0000
4 Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 01:01:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3368555
7
8 sys-fs/ddrescue: drop 1.25
9
10 Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
11
12 sys-fs/ddrescue/Manifest | 1 -
13 sys-fs/ddrescue/ddrescue-1.25.ebuild | 39 ------------------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/sys-fs/ddrescue/Manifest b/sys-fs/ddrescue/Manifest
17 index 3c389a7e0746..ea44f87243f9 100644
18 --- a/sys-fs/ddrescue/Manifest
19 +++ b/sys-fs/ddrescue/Manifest
20 @@ -1,2 +1 @@
21 -DIST ddrescue-1.25.tar.lz 87001 BLAKE2B 45054ecb6ca12f8fe27d6b783f7e339fc11a9a3425160012e0682e39644fd3c91362ecd568a2a0b93f9f0af87fae2415b33a7c3fcd8fff2262898e8474818a00 SHA512 90e344a618e385730836218817588f6854db6d1acdf357bf60bdba04c76382e73041dfc367ba4de60062992ee74b2da58417f6e464ffbeed10ec89fac110f4b8
22 DIST ddrescue-1.26.tar.lz 91930 BLAKE2B c545499e380587729eb3fcc90a7baf66288348dc88027dfc14401ec72254cc786d8ab7be076a346964327668ff719048dada916c9f1514a765a255f02c5666c7 SHA512 bbe414563d459a1ad1c4e55848214d195e01f8bc455104eddbeff7046623f5bc21d961457d27ace2605d13dff68c7948182706b8afe6755e5c363e8cad86a1cc
23
24 diff --git a/sys-fs/ddrescue/ddrescue-1.25.ebuild b/sys-fs/ddrescue/ddrescue-1.25.ebuild
25 deleted file mode 100644
26 index 61ffa9c9ef9d..000000000000
27 --- a/sys-fs/ddrescue/ddrescue-1.25.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit toolchain-funcs flag-o-matic unpacker
36 -
37 -DESCRIPTION="Copy data from one file or block device to another with read-error recovery"
38 -HOMEPAGE="https://www.gnu.org/software/ddrescue/ddrescue.html"
39 -SRC_URI="mirror://gnu/${PN}/${P}.tar.lz"
40 -
41 -LICENSE="GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 ~sparc x86 ~amd64-linux"
44 -IUSE="static"
45 -
46 -DEPEND="$(unpacker_src_uri_depends)"
47 -RDEPEND=""
48 -
49 -src_configure() {
50 - use static && append-ldflags -static
51 -
52 - # not a normal configure script
53 - econf \
54 - --prefix="${EPREFIX}"/usr \
55 - CXX="$(tc-getCXX)" \
56 - CPPFLAGS="${CPPFLAGS}" \
57 - CXXFLAGS="${CXXFLAGS}" \
58 - LDFLAGS="${LDFLAGS}"
59 -}
60 -
61 -src_test() {
62 - ./testsuite/check.sh "${S}"/testsuite || die
63 -}
64 -
65 -src_install() {
66 - emake DESTDIR="${D}" install install-man
67 - einstalldocs
68 -}