Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/afflib/
Date: Thu, 07 Jan 2021 11:33:33
Message-Id: 1610019195.a6674e4bf736989f71adaf1f498fa19402e70002.sam@gentoo
1 commit: a6674e4bf736989f71adaf1f498fa19402e70002
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 11:20:41 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 11:33:15 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6674e4b
7
8 app-forensics/afflib: cleanup old
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 app-forensics/afflib/Manifest | 1 -
14 app-forensics/afflib/afflib-3.7.18.ebuild | 67 -------------------------------
15 2 files changed, 68 deletions(-)
16
17 diff --git a/app-forensics/afflib/Manifest b/app-forensics/afflib/Manifest
18 index 10bdf2cf5bf..76fd811dba8 100644
19 --- a/app-forensics/afflib/Manifest
20 +++ b/app-forensics/afflib/Manifest
21 @@ -1,2 +1 @@
22 -DIST afflib-3.7.18.tar.gz 540371 BLAKE2B 6c1837ebcb5cca97622736f38e61c35f149c045bc1a60acea455dd9059e8c60447cd8f45304fd55aa7f2e5f783d40e266a23d09b33209f9dc5441f971b8a188d SHA512 47ab74c86bbaedc2494558962f99463066e267f7a3f583902a53e1f488085a309b0d871093c67439033272c3ebf03d213649886930b9812013e66782ea84df85
23 DIST afflib-3.7.19.tar.gz 540165 BLAKE2B dea0998741121d2c1ae0e42ced9652ec46816282128469af75e0a32f9e4e2d09ac4afb4888ee7925366a03a867932f2446bfcd3800ab4dc021939ab6c38c797b SHA512 6e0df7477bf7dbd3814099d94e3fce122e0cf9b714a425521b7458f4eedc6e8b8e7283fd37926b7c992cdf21d3adec620df29a79a6a5311bf1d1b5d4930768bc
24
25 diff --git a/app-forensics/afflib/afflib-3.7.18.ebuild b/app-forensics/afflib/afflib-3.7.18.ebuild
26 deleted file mode 100644
27 index b8c40e67d71..00000000000
28 --- a/app-forensics/afflib/afflib-3.7.18.ebuild
29 +++ /dev/null
30 @@ -1,67 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{6,7,8} )
36 -
37 -inherit autotools python-single-r1
38 -
39 -MY_PN=AFFLIBv3
40 -MY_P="${MY_PN}-${PV}"
41 -
42 -DESCRIPTION="Library that implements the AFF image standard"
43 -HOMEPAGE="https://github.com/sshock/AFFLIBv3/"
44 -SRC_URI="https://github.com/sshock/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 ~arm ~hppa ppc x86 ~x64-macos"
49 -IUSE="fuse libressl ncurses python qemu readline s3 static-libs threads"
50 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
51 -
52 -RDEPEND="
53 - dev-libs/expat
54 - sys-libs/zlib:0=
55 - fuse? ( sys-fs/fuse:= )
56 - !libressl? ( dev-libs/openssl:0= )
57 - libressl? ( dev-libs/libressl:= )
58 - ncurses? ( sys-libs/ncurses:0= )
59 - python? ( ${PYTHON_DEPS} )
60 - readline? ( sys-libs/readline:0= )
61 - s3? ( net-misc/curl )
62 -"
63 -DEPEND="${RDEPEND}"
64 -
65 -S="${WORKDIR}/${MY_P}"
66 -
67 -pkg_setup() {
68 - use python && python-single-r1_pkg_setup
69 -}
70 -
71 -src_prepare() {
72 - sed -i '/FLAGS/s: -g::' configure.ac || die
73 -
74 - default
75 - eautoreconf
76 -}
77 -
78 -src_configure() {
79 - # Hacks for automagic dependencies
80 - use ncurses || export ac_cv_lib_ncurses_initscr=no
81 - use readline || export ac_cv_lib_readline_readline=no
82 -
83 - local myeconfargs=(
84 - $(use_enable fuse)
85 - $(use_enable python)
86 - $(use_enable qemu)
87 - $(use_enable s3)
88 - $(use_enable static-libs static)
89 - $(use_enable threads threading)
90 - )
91 - econf "${myeconfargs[@]}"
92 -}
93 -
94 -src_install() {
95 - default
96 - find "${ED}" -name "*.la" -delete || die
97 -}