From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5D507138206 for ; Thu, 18 Jan 2018 09:40:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80BE6E084E; Thu, 18 Jan 2018 09:40:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5AE6FE084E for ; Thu, 18 Jan 2018 09:40:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3A837335C3B for ; Thu, 18 Jan 2018 09:40:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C701F1BB for ; Thu, 18 Jan 2018 09:40:38 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1516268432.c3fa5cfca1f6b0b87e40ed7872e395d6d016d40a.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/autoconf/autoconf-9999.ebuild X-VCS-Directories: sys-devel/autoconf/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c3fa5cfca1f6b0b87e40ed7872e395d6d016d40a X-VCS-Branch: master Date: Thu, 18 Jan 2018 09:40:38 +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: 56d99edd-284e-4325-b0b9-f7621fcebb31 X-Archives-Hash: d68b561e093eb2c0be934d1e8288ee3f commit: c3fa5cfca1f6b0b87e40ed7872e395d6d016d40a Author: David Seifert gentoo org> AuthorDate: Wed Jan 17 23:31:19 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jan 18 09:40:32 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3fa5cfc sys-devel/autoconf: Update live ebuild to EAPI 6 Package-Manager: Portage-2.3.19, Repoman-2.3.6 sys-devel/autoconf/autoconf-9999.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/sys-devel/autoconf/autoconf-9999.ebuild b/sys-devel/autoconf/autoconf-9999.ebuild index 9495cddbedd..82ed3494918 100644 --- a/sys-devel/autoconf/autoconf-9999.ebuild +++ b/sys-devel/autoconf/autoconf-9999.ebuild @@ -1,14 +1,11 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=6 if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://git.savannah.gnu.org/${PN}.git - http://git.savannah.gnu.org/r/${PN}.git" - # We need all the tags in order to figure out the right version. - # The git-r3 eclass doesn't support that, so have to stick to 2. - inherit git-2 + EGIT_REPO_URI="https://git.savannah.gnu.org/git/autoconf.git" + inherit git-r3 else SRC_URI="mirror://gnu/${PN}/${P}.tar.xz ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.xz" @@ -36,7 +33,7 @@ src_prepare() { # Avoid the "dirty" suffix in the git version by generating it # before we run later stages which might modify source files. local ver=$(./build-aux/git-version-gen .tarball-version) - echo "${ver}" > .tarball-version + echo "${ver}" > .tarball-version || die autoreconf -f -i || die