Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/afflib/
Date: Sat, 02 Jan 2016 21:12:09
Message-Id: 1451769039.4525bc87be82426e785411b0c33410d273eb116b.mrueg@gentoo
1 commit: 4525bc87be82426e785411b0c33410d273eb116b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 2 21:10:39 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 2 21:10:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4525bc87
7
8 app-forensics/afflib: Remove old
9
10 Package-Manager: portage-2.2.26
11
12 app-forensics/afflib/Manifest | 2 -
13 app-forensics/afflib/afflib-3.7.1.ebuild | 64 -------------------------------
14 app-forensics/afflib/afflib-3.7.3.ebuild | 66 --------------------------------
15 3 files changed, 132 deletions(-)
16
17 diff --git a/app-forensics/afflib/Manifest b/app-forensics/afflib/Manifest
18 index 9ebb2e1..3e6a1d2 100644
19 --- a/app-forensics/afflib/Manifest
20 +++ b/app-forensics/afflib/Manifest
21 @@ -1,3 +1 @@
22 -DIST afflib-3.7.1.tar.gz 779366 SHA256 7759a36259a070ae087da43a94f23d4026de871e16144d8c32d7b446f5155db2 SHA512 695b5535b7cbe6e1f9b702b40f8606e2dbb604761e2617cc88a61d99f7e296f0dccdf8f21c03bdb79ce5d1fcce543b3d5d23e6bb5c99e31d094e838c16a9443b WHIRLPOOL e6b8c8022cf1405bc4db8697fb20b2e4e21d7b90a3d035acfc56cc6afd742af86d1cffa998903af6ec53b6e370fe8c87e1fcf3188d005c6a7dd56b1cff3ec591
23 -DIST afflib-3.7.3.tar.gz 569264 SHA256 0bc786efbe4443ee0935eaedf8813d5ba00194dbe8c3340923cb7e38a3120978 SHA512 6c626c01aa8a8a0df47d7a34f14ad25ae818fdf49f142d36a624f747a54cbba88cbf32b8fdb541b37e41b5c28549343e81b4c26b4802299bc6111c6c04cdf6f9 WHIRLPOOL 8775f5e5be09673315002fe5ae74d277c049b109d0d35a2f40af84f68c54d8a9a1b2865e2f792394cbdd403af55e0d7e21f9b3a725d9796d01c855d6c8b26447
24 DIST afflib-3.7.4.tar.gz 569346 SHA256 74934ae60a76616442f1d593bdeb93dd6aa105b5dc8cee7e8e5d7529a77f46c0 SHA512 58791388a05d614dd5f219a74173de2ff0938a1f93b21e2dd0731aca52ea544ba60cc4325f0d284937467ce600a4302b7a2f724d84710ecc7f12db1a22a8e41c WHIRLPOOL db8d5f48aecc55bd4ee0e6f45552e37e6aa1621674d93a448ae5a5a6b3bba1ae9c40d8aac2211b6e27bf1ba72e1c998b9bb01e6c24298ef4287d7a117db9d820
25
26 diff --git a/app-forensics/afflib/afflib-3.7.1.ebuild b/app-forensics/afflib/afflib-3.7.1.ebuild
27 deleted file mode 100644
28 index 03f4ce9..0000000
29 --- a/app-forensics/afflib/afflib-3.7.1.ebuild
30 +++ /dev/null
31 @@ -1,64 +0,0 @@
32 -# Copyright 1999-2015 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI="4"
37 -PYTHON_DEPEND="python? 2"
38 -AUTOTOOLS_AUTORECONF=1
39 -
40 -inherit autotools-utils python
41 -
42 -DESCRIPTION="Library that implements the AFF image standard"
43 -HOMEPAGE="https://github.com/simsong/AFFLIBv3"
44 -SRC_URI="mirror://github/simsong/AFFLIBv3/${P}.tar.gz"
45 -
46 -LICENSE="BSD"
47 -SLOT="0"
48 -KEYWORDS="amd64 hppa ppc x86"
49 -IUSE="fuse ncurses python qemu readline s3 static-libs threads"
50 -
51 -RDEPEND="dev-libs/expat
52 - dev-libs/openssl:0
53 - sys-libs/zlib
54 - fuse? ( sys-fs/fuse )
55 - ncurses? ( sys-libs/ncurses )
56 - readline? ( sys-libs/readline:0 )
57 - s3? ( net-misc/curl )"
58 -DEPEND="${RDEPEND}"
59 -
60 -PATCHES=(
61 - "${FILESDIR}"/${P}-python-module.patch
62 - "${FILESDIR}"/${PN}-3.6.12-pyaff-header.patch
63 -)
64 -
65 -pkg_setup() {
66 - if use python ; then
67 - python_set_active_version 2
68 - python_pkg_setup
69 - fi
70 -}
71 -
72 -src_prepare() {
73 - sed -e '/FLAGS/s: -g::' \
74 - -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' \
75 - -i configure.ac || die
76 -
77 - sed -i -e '/-static/d' tools/Makefile.am || die
78 -
79 - autotools-utils_src_prepare
80 -}
81 -
82 -src_configure() {
83 - # Hacks for automagic dependencies
84 - use ncurses || export ac_cv_lib_ncurses_initscr=no
85 - use readline || export ac_cv_lib_readline_readline=no
86 -
87 - local myeconfargs=(
88 - $(use_enable fuse)
89 - $(use_enable python)
90 - $(use_enable qemu)
91 - $(use_enable s3)
92 - $(use_enable threads threading)
93 - )
94 - autotools-utils_src_configure
95 -}
96
97 diff --git a/app-forensics/afflib/afflib-3.7.3.ebuild b/app-forensics/afflib/afflib-3.7.3.ebuild
98 deleted file mode 100644
99 index 90c764a..0000000
100 --- a/app-forensics/afflib/afflib-3.7.3.ebuild
101 +++ /dev/null
102 @@ -1,66 +0,0 @@
103 -# Copyright 1999-2015 Gentoo Foundation
104 -# Distributed under the terms of the GNU General Public License v2
105 -# $Id$
106 -
107 -EAPI=5
108 -PYTHON_COMPAT=( python2_7 )
109 -AUTOTOOLS_AUTORECONF=1
110 -AUTOTOOLS_PRUNE_LIBTOOL_FILES=modules
111 -
112 -inherit autotools-utils python-single-r1
113 -
114 -MY_PN=AFFLIBv3
115 -MY_P=${MY_PN}-${PV}
116 -
117 -DESCRIPTION="Library that implements the AFF image standard"
118 -HOMEPAGE="https://github.com/simsong/AFFLIBv3/"
119 -SRC_URI="https://github.com/simsong/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
120 -
121 -LICENSE="BSD"
122 -SLOT="0"
123 -KEYWORDS="~amd64 ~hppa ~ppc ~x86"
124 -IUSE="fuse ncurses python qemu readline s3 static-libs threads"
125 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
126 -
127 -RDEPEND="dev-libs/expat
128 - dev-libs/openssl:0
129 - sys-libs/zlib
130 - fuse? ( sys-fs/fuse )
131 - ncurses? ( sys-libs/ncurses )
132 - python? ( ${PYTHON_DEPS} )
133 - readline? ( sys-libs/readline:0 )
134 - s3? ( net-misc/curl )"
135 -DEPEND="${RDEPEND}"
136 -
137 -PATCHES=(
138 - "${FILESDIR}"/${PN}-3.7.1-python-module.patch
139 - "${FILESDIR}"/${PN}-3.6.12-pyaff-header.patch
140 -)
141 -
142 -S=${WORKDIR}/${MY_P}
143 -
144 -pkg_setup() {
145 - use python && python-single-r1_pkg_setup
146 -}
147 -
148 -src_prepare() {
149 - sed -i '/FLAGS/s: -g::' configure.ac || die
150 - sed -i '/-static/d' tools/Makefile.am || die
151 -
152 - autotools-utils_src_prepare
153 -}
154 -
155 -src_configure() {
156 - # Hacks for automagic dependencies
157 - use ncurses || export ac_cv_lib_ncurses_initscr=no
158 - use readline || export ac_cv_lib_readline_readline=no
159 -
160 - local myeconfargs=(
161 - $(use_enable fuse)
162 - $(use_enable python)
163 - $(use_enable qemu)
164 - $(use_enable s3)
165 - $(use_enable threads threading)
166 - )
167 - autotools-utils_src_configure
168 -}