Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/aget/
Date: Mon, 01 Jan 2018 16:51:34
Message-Id: 1514825466.8ba8be5678f4b1ba27006bd2b6fcc60470cbd6af.dilfridge@gentoo
1 commit: 8ba8be5678f4b1ba27006bd2b6fcc60470cbd6af
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 16:51:06 2018 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 1 16:51:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ba8be56
7
8 net-misc/aget: EAPI bump, bug 605728
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../{aget-0.4.1-r1.ebuild => aget-0.4.1-r2.ebuild} | 18 +++++++++---------
13 1 file changed, 9 insertions(+), 9 deletions(-)
14
15 diff --git a/net-misc/aget/aget-0.4.1-r1.ebuild b/net-misc/aget/aget-0.4.1-r2.ebuild
16 similarity index 59%
17 rename from net-misc/aget/aget-0.4.1-r1.ebuild
18 rename to net-misc/aget/aget-0.4.1-r2.ebuild
19 index 98a946337d3..ed4438eb35f 100644
20 --- a/net-misc/aget/aget-0.4.1-r1.ebuild
21 +++ b/net-misc/aget/aget-0.4.1-r2.ebuild
22 @@ -1,9 +1,9 @@
23 -# Copyright 1999-2012 Gentoo Foundation
24 +# Copyright 1999-2018 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26
27 -EAPI=3
28 +EAPI=6
29
30 -inherit eutils toolchain-funcs
31 +inherit toolchain-funcs
32
33 DESCRIPTION="multithreaded HTTP download accelerator"
34 HOMEPAGE="http://www.enderunix.org/aget/"
35 @@ -14,15 +14,15 @@ SLOT="0"
36 KEYWORDS="amd64 ~arm ~mips ~ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
37 IUSE=""
38
39 -src_prepare() {
40 - epatch "${FILESDIR}"/${PF}.patch
41 -}
42 +PATCHES=(
43 + "${FILESDIR}"/aget-0.4.1-r1.patch
44 +)
45
46 src_compile() {
47 - emake CC="$(tc-getCC)" || die
48 + emake CC="$(tc-getCC)"
49 }
50
51 src_install() {
52 - emake DESTDIR="${ED}" install || die
53 - dodoc AUTHORS ChangeLog README* THANKS TODO || die
54 + emake DESTDIR="${ED}" install
55 + dodoc AUTHORS ChangeLog README* THANKS TODO
56 }