Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/dumpet/
Date: Thu, 18 Aug 2022 14:59:43
Message-Id: 1660834768.e241a1428bfab0c8d57015f80eccbf52a4e126ec.asturm@gentoo
1 commit: e241a1428bfab0c8d57015f80eccbf52a4e126ec
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 17 11:10:42 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 18 14:59:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e241a142
7
8 app-cdr/dumpet: drop 2.1_p20140601-r3, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/865429
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-cdr/dumpet/dumpet-2.1_p20140601-r3.ebuild | 45 ---------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/app-cdr/dumpet/dumpet-2.1_p20140601-r3.ebuild b/app-cdr/dumpet/dumpet-2.1_p20140601-r3.ebuild
17 deleted file mode 100644
18 index 7af0358a39a8..000000000000
19 --- a/app-cdr/dumpet/dumpet-2.1_p20140601-r3.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit toolchain-funcs vcs-snapshot
28 -
29 -COMMIT="8f47670dd582c96ad1b6dd3c9b9da0acebded5d8"
30 -
31 -DESCRIPTION="A tool to dump and debug bootable CD-like images"
32 -HOMEPAGE="https://github.com/rhboot/dumpet"
33 -SRC_URI="https://github.com/rhboot/dumpet/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
34 -
35 -LICENSE="GPL-2"
36 -SLOT="0"
37 -KEYWORDS="amd64 x86"
38 -IUSE="test"
39 -#Restrict tests since required test file is unavailable
40 -RESTRICT="test"
41 -
42 -RDEPEND="dev-libs/libxml2
43 - dev-libs/popt"
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig
46 - test? ( dev-util/valgrind )"
47 -
48 -PATCHES=( "${FILESDIR}"/musl-byteswap-fix.patch )
49 -
50 -src_prepare() {
51 - sed -i Makefile \
52 - -e "s/^install : all$/install :/" \
53 - -e "s/^CFLAGS:=/CFLAGS?=/" \
54 - -e "s/^CC:=/CC?=/" \
55 - -e '/^LFLAGS/ s/$/$(LDFLAGS)/' \
56 - || die
57 - default
58 -}
59 -
60 -src_compile() {
61 - emake CFLAGS="${CFLAGS}" dumpet
62 -}
63 -
64 -pkg_setup() {
65 - tc-export CC
66 -}