Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/unadf/
Date: Fri, 29 Dec 2017 13:17:16
Message-Id: 1514553399.18df312eac67f443f5e62dc6c65634aad0ff7908.soap@gentoo
1 commit: 18df312eac67f443f5e62dc6c65634aad0ff7908
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 29 11:41:47 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 29 13:16:39 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18df312e
7
8 app-arch/unadf: Port to EAPI 6
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-arch/unadf/unadf-0.7.12.ebuild | 12 ++++++------
13 1 file changed, 6 insertions(+), 6 deletions(-)
14
15 diff --git a/app-arch/unadf/unadf-0.7.12.ebuild b/app-arch/unadf/unadf-0.7.12.ebuild
16 index 8250209a1c2..d2c414ac385 100644
17 --- a/app-arch/unadf/unadf-0.7.12.ebuild
18 +++ b/app-arch/unadf/unadf-0.7.12.ebuild
19 @@ -1,25 +1,25 @@
20 # Copyright 1999-2017 Gentoo Foundation
21 # Distributed under the terms of the GNU General Public License v2
22
23 -EAPI=5
24 +EAPI=6
25
26 -inherit autotools eutils
27 +inherit autotools
28
29 MY_PN="adflib"
30
31 DESCRIPTION="Extract files from Amiga adf disk images"
32 -SRC_URI="http://lclevy.free.fr/${MY_PN}/${MY_PN}-${PV}.tar.bz2"
33 HOMEPAGE="http://lclevy.free.fr/adflib/"
34 +SRC_URI="http://lclevy.free.fr/${MY_PN}/${MY_PN}-${PV}.tar.bz2"
35 +
36 LICENSE="GPL-2"
37 SLOT="0"
38 KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
39 IUSE="static-libs"
40 -DEPEND=""
41 -RDEPEND=""
42
43 S="${WORKDIR}/${MY_PN}-${PV}"
44
45 src_prepare() {
46 + default
47 eautoreconf
48 }
49
50 @@ -29,5 +29,5 @@ src_configure() {
51
52 src_install() {
53 default
54 - prune_libtool_files
55 + find "${D}" -name '*.la' -delete || die
56 }