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 38940139980 for ; Sun, 10 Nov 2019 12:06:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 65C7DE0938; Sun, 10 Nov 2019 12:06:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 4C8BFE0938 for ; Sun, 10 Nov 2019 12:06:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 619E834CB44 for ; Sun, 10 Nov 2019 12:06:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8E568AB for ; Sun, 10 Nov 2019 12:06:28 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1573387546.5ecf04d96b8624672fb78b77c6de434bf7a0a9a9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/pista/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-embedded/pista/pista-0.70.ebuild X-VCS-Directories: dev-embedded/pista/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5ecf04d96b8624672fb78b77c6de434bf7a0a9a9 X-VCS-Branch: master Date: Sun, 10 Nov 2019 12:06:28 +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: 754d0780-d4d2-49bc-a774-8f3c9cbbcdaf X-Archives-Hash: 0dd16ce6b5933f86ee3e9cdeb953ff45 commit: 5ecf04d96b8624672fb78b77c6de434bf7a0a9a9 Author: Michał Górny gentoo org> AuthorDate: Sun Nov 10 11:49:24 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 10 12:05:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ecf04d9 dev-embedded/pista: Bump to EAPI 7 Closes: https://bugs.gentoo.org/697362 Signed-off-by: Michał Górny gentoo.org> dev-embedded/pista/pista-0.70.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/dev-embedded/pista/pista-0.70.ebuild b/dev-embedded/pista/pista-0.70.ebuild index f9431fbdcf3..5c585c7fc97 100644 --- a/dev-embedded/pista/pista-0.70.ebuild +++ b/dev-embedded/pista/pista-0.70.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="Commandline-driven interface to PICSTART+ PIC programmer" HOMEPAGE="http://gatling.ikk.sztaki.hu/~kissg/pd/pista/pista.html" @@ -15,13 +15,10 @@ IUSE="" RDEPEND="dev-lang/perl dev-perl/TermReadKey" +DEPEND="dev-lang/perl" -src_compile() { - perl Makefile.PL PREFIX=/usr || die "Running Makefile.PL failed" - emake || die "make failed" -} +DOCS=( README Changes Copyright doc/pista.html ) -src_install() { - emake install DESTDIR=${D} || die - dodoc README Changes Copyright doc/pista.html +src_configure() { + perl Makefile.PL PREFIX=/usr || die "Running Makefile.PL failed" }