From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7FFA313881E for ; Tue, 29 Sep 2015 11:36:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73532E07E0; Tue, 29 Sep 2015 11:36:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 23168E07E0 for ; Tue, 29 Sep 2015 11:36:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EDC9533BE05 for ; Tue, 29 Sep 2015 11:36:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15D49186 for ; Tue, 29 Sep 2015 11:36:07 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1443526556.9f89d9b4d1552952cf52b1eef83cdff44f44c80f.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/axel/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/axel/axel-2.4-r2.ebuild net-misc/axel/axel-2.4-r3.ebuild X-VCS-Directories: net-misc/axel/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 9f89d9b4d1552952cf52b1eef83cdff44f44c80f X-VCS-Branch: master Date: Tue, 29 Sep 2015 11:36:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: fcb65525-b9c6-4df7-9f74-39d3f61d4c22 X-Archives-Hash: c83ee451bd56f9fe999279f3a5b8e15c commit: 9f89d9b4d1552952cf52b1eef83cdff44f44c80f Author: Justin Lecher gentoo org> AuthorDate: Tue Sep 29 11:35:56 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Tue Sep 29 11:35:56 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f89d9b4 net-misc/axel: Bump to EAPI=5 Package-Manager: portage-2.2.22 Signed-off-by: Justin Lecher gentoo.org> net-misc/axel/{axel-2.4-r2.ebuild => axel-2.4-r3.ebuild} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net-misc/axel/axel-2.4-r2.ebuild b/net-misc/axel/axel-2.4-r3.ebuild similarity index 86% rename from net-misc/axel/axel-2.4-r2.ebuild rename to net-misc/axel/axel-2.4-r3.ebuild index f6eacf8..c24ca8a 100644 --- a/net-misc/axel/axel-2.4-r2.ebuild +++ b/net-misc/axel/axel-2.4-r3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=5 inherit eutils flag-o-matic toolchain-funcs @@ -32,13 +32,13 @@ src_prepare() { } src_configure() { - local myconf="" + local myconf=() - use debug && myconf+=" --debug=1" - use nls && myconf+=" --i18n=$(use nls && echo 1 || echo 0)" + use debug && myconf+=( --debug=1 ) + use nls && myconf+=( --i18n=$(usex nls 1 0) ) econf \ --strip=0 \ - ${myconf} + ${myconf[@]} } pkg_postinst() {