diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-11-09 12:21:44 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-11-09 12:45:43 +0100 |
commit | 1f9a802c781efca14a0e9a415b0c294d53abd22b (patch) | |
tree | fc1a4cdc8fd12977921ea04558501fce6591867c /app-crypt/gpg-ringmgr | |
parent | sys-apps/firejail: removed old (diff) | |
download | gentoo-1f9a802c781efca14a0e9a415b0c294d53abd22b.tar.gz gentoo-1f9a802c781efca14a0e9a415b0c294d53abd22b.tar.bz2 gentoo-1f9a802c781efca14a0e9a415b0c294d53abd22b.zip |
app-crypt/gpg-ringmgr: Bump to EAPI 7
Closes: https://bugs.gentoo.org/697414
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-crypt/gpg-ringmgr')
-rw-r--r-- | app-crypt/gpg-ringmgr/Manifest | 2 | ||||
-rw-r--r-- | app-crypt/gpg-ringmgr/gpg-ringmgr-1.12-r1.ebuild (renamed from app-crypt/gpg-ringmgr/gpg-ringmgr-1.12.ebuild) | 17 |
2 files changed, 10 insertions, 9 deletions
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 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 } |