From: Michał Górny Date: Sat, 9 Nov 2019 11:21:44 +0000 (+0100) Subject: app-crypt/gpg-ringmgr: Bump to EAPI 7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1f9a802c781efca14a0e9a415b0c294d53abd22b;p=gentoo.git app-crypt/gpg-ringmgr: Bump to EAPI 7 Closes: https://bugs.gentoo.org/697414 Signed-off-by: Michał Górny --- diff --git a/app-crypt/gpg-ringmgr/Manifest b/app-crypt/gpg-ringmgr/Manifest index 6f3bb0d63ed7..289537ff127b 100644 --- a/app-crypt/gpg-ringmgr/Manifest +++ b/app-crypt/gpg-ringmgr/Manifest @@ -1 +1 @@ -DIST gpg-ringmgr 9378 BLAKE2B 673b1f6719dda0019c599a8ebc1d38e748c7749f07c8145f48dfff81515574080eec0b208868f89aa9f32b225d6efa4205e60a6298bda8151eb4a7d6cfb86df0 SHA512 f6aedf0db58c15163f6f08b37a5fef43a80655f5602d8ee856764177a33e2f5eb4c0b8a09e9f3ee5b36544039051909d48397be5793243eba5002526652dd194 +DIST gpg-ringmgr-1.12 9378 BLAKE2B 673b1f6719dda0019c599a8ebc1d38e748c7749f07c8145f48dfff81515574080eec0b208868f89aa9f32b225d6efa4205e60a6298bda8151eb4a7d6cfb86df0 SHA512 f6aedf0db58c15163f6f08b37a5fef43a80655f5602d8ee856764177a33e2f5eb4c0b8a09e9f3ee5b36544039051909d48397be5793243eba5002526652dd194 diff --git a/app-crypt/gpg-ringmgr/gpg-ringmgr-1.12.ebuild b/app-crypt/gpg-ringmgr/gpg-ringmgr-1.12-r1.ebuild similarity index 67% rename from app-crypt/gpg-ringmgr/gpg-ringmgr-1.12.ebuild rename to app-crypt/gpg-ringmgr/gpg-ringmgr-1.12-r1.ebuild index 738ef069dda0..d8ce17dff6b8 100644 --- a/app-crypt/gpg-ringmgr/gpg-ringmgr-1.12.ebuild +++ b/app-crypt/gpg-ringmgr/gpg-ringmgr-1.12-r1.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=0 +EAPI=7 DESCRIPTION="GPG Keyring Manager to handle large GPG keyrings more easily" HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage" -SRC_URI="mirror://gentoo/${PN}" +SRC_URI="mirror://gentoo/${PN} -> ${P}" LICENSE="GPL-2" SLOT="0" @@ -15,18 +15,19 @@ IUSE="" DEPEND="dev-lang/perl >=app-crypt/gnupg-1.2.1" +S=${WORKDIR} + src_unpack() { - mkdir ${P} - cp "${DISTDIR}"/${PN} "${S}" || die + cp "${DISTDIR}"/${P} ${PN} || die } src_compile() { - pod2man "${S}"/${PN} >"${S}/"${PN}.1 - pod2html "${S}"/${PN} >"${S}"/${PN}.html + pod2man ${PN} > ${PN}.1 || die + pod2html ${PN} > ${PN}.html || die } src_install() { - dobin ${PN} || die + dobin ${PN} doman ${PN}.1 - dohtml ${PN}.html + dodoc ${PN}.html }