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 7E3961388C1 for ; Mon, 22 Feb 2016 13:26:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7780221C02A; Mon, 22 Feb 2016 13:26:10 +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 DE2A921C025 for ; Mon, 22 Feb 2016 13:26:04 +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 1850133BF54 for ; Mon, 22 Feb 2016 13:26:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 91EA22099 for ; Mon, 22 Feb 2016 13:25:58 +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: <1456139976.22b368b3af5eed1cb89a7b9737db2f3f88cd6215.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-cpp/growler-core/ X-VCS-Repository: proj/sci X-VCS-Files: dev-cpp/growler-core/growler-core-0.3.7.ebuild X-VCS-Directories: dev-cpp/growler-core/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 22b368b3af5eed1cb89a7b9737db2f3f88cd6215 X-VCS-Branch: master Date: Mon, 22 Feb 2016 13:25:58 +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: 535aea1f-88a7-4418-bc1f-a8e880fec6d9 X-Archives-Hash: 0f985749bd27ae1b37a9a16144d25061 commit: 22b368b3af5eed1cb89a7b9737db2f3f88cd6215 Author: Justin Lecher gentoo org> AuthorDate: Mon Feb 22 11:19:36 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Feb 22 11:19:36 2016 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=22b368b3 dev-cpp/growler-core: Bump to EAPI=6 * Convert USE=static to static-libs Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-cpp/growler-core/growler-core-0.3.7.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-cpp/growler-core/growler-core-0.3.7.ebuild b/dev-cpp/growler-core/growler-core-0.3.7.ebuild index 935ba30..4fd9f89 100644 --- a/dev-cpp/growler-core/growler-core-0.3.7.ebuild +++ b/dev-cpp/growler-core/growler-core-0.3.7.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 DESCRIPTION="General-purpose classes and functionality" HOMEPAGE="http://www.nas.nasa.gov/~bgreen/growler/" @@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}/downloads/growler-core-${PV}.tar.gz" SLOT="0" LICENSE="NOSA" KEYWORDS="~amd64 ~x86" -IUSE="doc static" +IUSE="doc static-libs" RDEPEND=" >=dev-cpp/growler-link-0.3.7 @@ -25,6 +25,6 @@ DOCS=( README NEWS AUTHORS NOSA ChangeLog ) src_configure() { econf \ $(use_enable doc) \ - $(use_enable static) \ + $(use_enable static-libs static) \ --enable-fast-install }