Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/axel/
Date: Tue, 29 Sep 2015 11:36:15
Message-Id: 1443526556.9f89d9b4d1552952cf52b1eef83cdff44f44c80f.jlec@gentoo
1 commit: 9f89d9b4d1552952cf52b1eef83cdff44f44c80f
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 29 11:35:56 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 11:35:56 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f89d9b4
7
8 net-misc/axel: Bump to EAPI=5
9
10 Package-Manager: portage-2.2.22
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 net-misc/axel/{axel-2.4-r2.ebuild => axel-2.4-r3.ebuild} | 12 ++++++------
14 1 file changed, 6 insertions(+), 6 deletions(-)
15
16 diff --git a/net-misc/axel/axel-2.4-r2.ebuild b/net-misc/axel/axel-2.4-r3.ebuild
17 similarity index 86%
18 rename from net-misc/axel/axel-2.4-r2.ebuild
19 rename to net-misc/axel/axel-2.4-r3.ebuild
20 index f6eacf8..c24ca8a 100644
21 --- a/net-misc/axel/axel-2.4-r2.ebuild
22 +++ b/net-misc/axel/axel-2.4-r3.ebuild
23 @@ -1,8 +1,8 @@
24 -# Copyright 1999-2012 Gentoo Foundation
25 +# Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 # $Id$
28
29 -EAPI=4
30 +EAPI=5
31
32 inherit eutils flag-o-matic toolchain-funcs
33
34 @@ -32,13 +32,13 @@ src_prepare() {
35 }
36
37 src_configure() {
38 - local myconf=""
39 + local myconf=()
40
41 - use debug && myconf+=" --debug=1"
42 - use nls && myconf+=" --i18n=$(use nls && echo 1 || echo 0)"
43 + use debug && myconf+=( --debug=1 )
44 + use nls && myconf+=( --i18n=$(usex nls 1 0) )
45 econf \
46 --strip=0 \
47 - ${myconf}
48 + ${myconf[@]}
49 }
50
51 pkg_postinst() {