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 D7335138252 for ; Thu, 12 May 2016 09:43:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64B4BE07D9; Thu, 12 May 2016 09:43:40 +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 023ABE07D9 for ; Thu, 12 May 2016 09:43:39 +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 BB4F134076D for ; Thu, 12 May 2016 09:43:38 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 391C933E for ; Thu, 12 May 2016 09:43:34 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1463045320.152938abc26b5105601643576036a8e28481d116.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/enum/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/enum/enum-1.1-r1.ebuild app-misc/enum/enum-1.1.ebuild X-VCS-Directories: app-misc/enum/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 152938abc26b5105601643576036a8e28481d116 X-VCS-Branch: master Date: Thu, 12 May 2016 09:43:34 +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: ff0da9cc-514a-472f-862d-8f7c0aa3b78e X-Archives-Hash: d573bd4132f9a62fd16901f661019759 commit: 152938abc26b5105601643576036a8e28481d116 Author: Patrice Clement gentoo org> AuthorDate: Thu May 12 12:23:00 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu May 12 09:28:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=152938ab app-misc/enum: EAPI 6 bump. Package-Manager: portage-2.2.26 app-misc/enum/{enum-1.1.ebuild => enum-1.1-r1.ebuild} | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/app-misc/enum/enum-1.1.ebuild b/app-misc/enum/enum-1.1-r1.ebuild similarity index 64% rename from app-misc/enum/enum-1.1.ebuild rename to app-misc/enum/enum-1.1-r1.ebuild index 4b97305..b60c026 100644 --- a/app-misc/enum/enum-1.1.ebuild +++ b/app-misc/enum/enum-1.1-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI="2" +EAPI=6 DESCRIPTION="Replacement for GNU seq and BSD jot" HOMEPAGE="https://fedorahosted.org/enum/" @@ -17,15 +17,19 @@ DEPEND="" RDEPEND="" src_prepare() { + default + # Remove bundled getopt - rm -R thirdparty || die + rm -rv thirdparty || die } src_configure() { - econf --disable-doc-rebuild --disable-dependency-tracking + econf \ + --disable-doc-rebuild \ + --disable-dependency-tracking } src_install() { - emake DESTDIR="${D}" install || die 'emake install' - dodoc ChangeLog || die 'dodoc failed' + emake DESTDIR="${D}" install + dodoc ChangeLog }