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 3362913829C for ; Fri, 3 Jun 2016 13:23:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3256E254022; Fri, 3 Jun 2016 13:23:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C1F2E254022 for ; Fri, 3 Jun 2016 13:23:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29800340D0D for ; Fri, 3 Jun 2016 13:23:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F103E17B4 for ; Fri, 3 Jun 2016 13:23:03 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1464959808.3ce952baca9125fa4286ae17519a974fd82ac8fc.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/rw/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/rw/rw-0.7-r1.ebuild sci-mathematics/rw/rw-0.7.ebuild X-VCS-Directories: sci-mathematics/rw/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 3ce952baca9125fa4286ae17519a974fd82ac8fc X-VCS-Branch: master Date: Fri, 3 Jun 2016 13:23:03 +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: 3a171e6a-e0a1-4c77-9f7c-8464941dd166 X-Archives-Hash: 9eb3ed1b7a5fec686b8885b0ea5c86f1 commit: 3ce952baca9125fa4286ae17519a974fd82ac8fc Author: Michael Orlitzky gentoo org> AuthorDate: Fri Jun 3 02:16:05 2016 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Fri Jun 3 13:16:48 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ce952ba sci-mathematics/rw: new revision with EAPI=6 and ~x86 keywords. The main goal of the new revision is to add ~x86 keywords. In the process, the ebuild was updated to EAPI=6. That basically amounts to replacing the autotools-utils eclass stuff. Gentoo-Bug: 573728 Package-Manager: portage-2.2.28 .../rw/{rw-0.7.ebuild => rw-0.7-r1.ebuild} | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/sci-mathematics/rw/rw-0.7.ebuild b/sci-mathematics/rw/rw-0.7-r1.ebuild similarity index 64% rename from sci-mathematics/rw/rw-0.7.ebuild rename to sci-mathematics/rw/rw-0.7-r1.ebuild index e623511..ba4627f 100644 --- a/sci-mathematics/rw/rw-0.7.ebuild +++ b/sci-mathematics/rw/rw-0.7-r1.ebuild @@ -1,10 +1,8 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 - -inherit autotools-utils +EAPI=6 DESCRIPTION="Compute rank-width decompositions of graphs" AUTHORPAGE="http://pholia.tdi.informatik.uni-frankfurt.de/~philipp/" @@ -13,23 +11,16 @@ SRC_URI="${AUTHORPAGE}/software/${P}.tar.gz" LICENSE="GPL-2+" SLOT="0" -KEYWORDS="~amd64 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-macos" -IUSE="+executable static-libs" +KEYWORDS="~amd64 ~amd64-linux ~x86 ~x86-linux ~ppc-macos ~x86-macos ~x64-macos" +IUSE="+executable" DEPEND="executable? ( >=dev-libs/igraph-0.6 )" RDEPEND="${DEPEND}" DOCDIR="/usr/share/doc/${PF}" -AUTOTOOLS_IN_SOURCE_BUILD=1 - src_configure(){ - local myeconfargs=( - $(use_enable executable) - --docdir="${EPREFIX}${DOCDIR}" - ) - - autotools-utils_src_configure + econf $(use_enable executable) --docdir="${EPREFIX}${DOCDIR}" } src_install(){ @@ -37,5 +28,5 @@ src_install(){ # program. The rest of the docs are small so just leave everything # uncompressed. docompress -x "${DOCDIR}" - autotools-utils_src_install + default }