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 61D1813997D for ; Sat, 9 Nov 2019 12:08:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DA29E0A43; Sat, 9 Nov 2019 12:08:39 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 45CB5E0A43 for ; Sat, 9 Nov 2019 12:08: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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9D50634CB1C for ; Sat, 9 Nov 2019 12:08:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 461F6889 for ; Sat, 9 Nov 2019 12:08:35 +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: <1573301304.35ffe280aab872f2130714c651d0ec3f5a311cf4.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/springgraph/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/springgraph/springgraph-88.ebuild X-VCS-Directories: media-gfx/springgraph/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 35ffe280aab872f2130714c651d0ec3f5a311cf4 X-VCS-Branch: master Date: Sat, 9 Nov 2019 12:08:35 +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: c550b93d-3c2d-424e-b513-f6618ad02f4f X-Archives-Hash: 5f47236b649d041f1410f8e02d7d0e0d commit: 35ffe280aab872f2130714c651d0ec3f5a311cf4 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 9 11:54:06 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 9 12:08:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35ffe280 media-gfx/springgraph: Bump to EAPI 7 Closes: https://bugs.gentoo.org/697284 Signed-off-by: Michał Górny gentoo.org> media-gfx/springgraph/springgraph-88.ebuild | 32 +++++++++++++---------------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/media-gfx/springgraph/springgraph-88.ebuild b/media-gfx/springgraph/springgraph-88.ebuild index 31742ab52d1..eb82210357f 100644 --- a/media-gfx/springgraph/springgraph-88.ebuild +++ b/media-gfx/springgraph/springgraph-88.ebuild @@ -1,39 +1,35 @@ -# 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 -inherit eutils - -DESCRIPTION="Generate spring graphs from graphviz input files" -HOMEPAGE="http://www.chaosreigns.com/code/springgraph" MY_PV="0.${PV}" MY_P="${PN}_${MY_PV}" SRC_FILE="${MY_P}.orig.tar.gz" SRC_DEBIAN_PATCH="${PN}_0.82-5.diff.gz" + +DESCRIPTION="Generate spring graphs from graphviz input files" +HOMEPAGE="http://www.chaosreigns.com/code/springgraph" SRC_URI="http://www.chaosreigns.com/code/springgraph/dl/${PN}.pl.${PV} - mirror://debian/pool/main/${PN:0:1}/${PN}/${SRC_DEBIAN_PATCH}" + mirror://debian/pool/main/${PN:0:1}/${PN}/${SRC_DEBIAN_PATCH}" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" -DEPEND="" + RDEPEND="dev-perl/GD" -S="${WORKDIR}/${PN}-${MY_PV}" -src_unpack() { - mkdir -p ${S} - cp ${DISTDIR}/${PN}.pl.${PV} ${S}/${PN} - EPATCH_OPTS="-p1 -d ${S}" epatch ${DISTDIR}/${SRC_DEBIAN_PATCH} -} +S=${WORKDIR} + +PATCHES=( "${SRC_DEBIAN_PATCH%.gz}" ) -src_compile() { - # nothing to do - : +src_unpack() { + cp "${DISTDIR}"/${PN}.pl.${PV} ${PN} || die + default } src_install() { - into /usr dobin ${PN} doman debian/${PN}.1 }