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 38E4D138335 for ; Fri, 18 Oct 2019 12:19:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4919AE086C; Fri, 18 Oct 2019 12:19:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 2ECA4E086C for ; Fri, 18 Oct 2019 12:19:57 +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 1C60934C016 for ; Fri, 18 Oct 2019 12:19:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 20D0888E for ; Fri, 18 Oct 2019 12:19:54 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1571401108.74b57a2f900d16fb9b4691e244f2239d3de95cff.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/autoproject/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/autoproject/autoproject-0.20_p5.ebuild X-VCS-Directories: dev-util/autoproject/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 74b57a2f900d16fb9b4691e244f2239d3de95cff X-VCS-Branch: master Date: Fri, 18 Oct 2019 12:19:54 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c1541825-f23d-49c2-ad97-501f6518ef7c X-Archives-Hash: 5f6bd8218922bfd4093019c2b09ad668 commit: 74b57a2f900d16fb9b4691e244f2239d3de95cff Author: David Seifert gentoo org> AuthorDate: Fri Oct 18 12:18:28 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Fri Oct 18 12:18:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74b57a2f dev-util/autoproject: Port to EAPI 7 Bug: https://bugs.gentoo.org/697326 Package-Manager: Portage-2.3.77, Repoman-2.3.17 Signed-off-by: David Seifert gentoo.org> dev-util/autoproject/autoproject-0.20_p5.ebuild | 28 ++++++++++--------------- 1 file changed, 11 insertions(+), 17 deletions(-) diff --git a/dev-util/autoproject/autoproject-0.20_p5.ebuild b/dev-util/autoproject/autoproject-0.20_p5.ebuild index 239a51de78e..9fd40511568 100644 --- a/dev-util/autoproject/autoproject-0.20_p5.ebuild +++ b/dev-util/autoproject/autoproject-0.20_p5.ebuild @@ -1,35 +1,29 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 - -inherit eutils +EAPI=7 MY_PV=${PV%_p*} DEB_VER=${PV#*_p} + DESCRIPTION="Start a programming project using autotools and a command line parser generator" -HOMEPAGE="http://packages.debian.org/unstable/devel/autoproject" -SRC_URI="mirror://debian/pool/main/a/autoproject/${PN}_${MY_PV}.orig.tar.gz +HOMEPAGE="https://packages.debian.org/unstable/devel/autoproject" +SRC_URI=" + mirror://debian/pool/main/a/autoproject/${PN}_${MY_PV}.orig.tar.gz mirror://debian/pool/main/a/autoproject/${PN}_${MY_PV}-${DEB_VER}.diff.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="test" +RESTRICT="!test? ( test )" -RDEPEND="sys-devel/automake - sys-devel/autoconf" +RDEPEND=" + sys-devel/autoconf:* + sys-devel/automake:*" DEPEND="${RDEPEND} test? ( sys-apps/texinfo )" S=${WORKDIR}/${PN}-${MY_PV} -src_unpack() { - unpack ${A} - epatch ${PN}_${MY_PV}-${DEB_VER}.diff -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS NEWS README TODO ChangeLog -} +PATCHES=( "${WORKDIR}"/${PN}_${MY_PV}-${DEB_VER}.diff )