summaryrefslogtreecommitdiff
path: root/app-crypt/gpg-ringmgr
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
commit77398e424e45d9e98c1cef3c43bdadb9d56e81ef (patch)
tree5aeffd3fc7b92fc615bd2c222fa8831aeda1925b /app-crypt/gpg-ringmgr
parentbd4aeefe33e63f613512604e47bfca7b2187697d (diff)
gentoo resync : 10.11.2019
Diffstat (limited to 'app-crypt/gpg-ringmgr')
-rw-r--r--app-crypt/gpg-ringmgr/Manifest4
-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, 11 insertions, 10 deletions
diff --git a/app-crypt/gpg-ringmgr/Manifest b/app-crypt/gpg-ringmgr/Manifest
index 9de3f46c4eb6..f3d2295ea2cd 100644
--- a/app-crypt/gpg-ringmgr/Manifest
+++ b/app-crypt/gpg-ringmgr/Manifest
@@ -1,3 +1,3 @@
-DIST gpg-ringmgr 9378 BLAKE2B 673b1f6719dda0019c599a8ebc1d38e748c7749f07c8145f48dfff81515574080eec0b208868f89aa9f32b225d6efa4205e60a6298bda8151eb4a7d6cfb86df0 SHA512 f6aedf0db58c15163f6f08b37a5fef43a80655f5602d8ee856764177a33e2f5eb4c0b8a09e9f3ee5b36544039051909d48397be5793243eba5002526652dd194
-EBUILD gpg-ringmgr-1.12.ebuild 636 BLAKE2B 95300527ab365e60ce28263027d77daac0535196575ea462750877acf67020e5545d3fc0c40de24623fe9ba745c0e955792287c3e4babbf7b15724cbddd36f31 SHA512 7c0a3e52bc422df3ac62102086a2989a17aff94857e8871f34db7d367ff220101aa34072de71425ca5dd9701531cedc041203114b6c2bf8d10c50a91f5c931f0
+DIST gpg-ringmgr-1.12 9378 BLAKE2B 673b1f6719dda0019c599a8ebc1d38e748c7749f07c8145f48dfff81515574080eec0b208868f89aa9f32b225d6efa4205e60a6298bda8151eb4a7d6cfb86df0 SHA512 f6aedf0db58c15163f6f08b37a5fef43a80655f5602d8ee856764177a33e2f5eb4c0b8a09e9f3ee5b36544039051909d48397be5793243eba5002526652dd194
+EBUILD gpg-ringmgr-1.12-r1.ebuild 624 BLAKE2B 25fe2112ad9b822fd9ff27dae59c26171f916b5169b619d5e7005dbb04e8f5b605b7513cc7fcdd3c48872cbfc821fb17fa6ba107a36debb603e02ba97c863674 SHA512 0d922bd657deb018d8b24aa24283cab8fe42c15780bb5d34fb6db589b5beb5eee41a404afbbca10bda08d401a65aa3bee15b1b5cb635a83b95a78dc9ce19c79d
MISC metadata.xml 268 BLAKE2B 914b6995ad966e2b83ec718b2598969b181c119d8805241b0046f69e161ac22a9f769204f4783240056804008475aa406cbd91b9de499ec7840f9595158bd291 SHA512 ffda1db3fd6ac952f41a970e2e496c6a9fd0b12ed11cdf363fd269c3b00f627c6e70421fd545aad61d69594af2e5f43d8ebc197232a39b596d012818fe758850
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
}