Skip to content

Commit

Permalink
app-crypt/gpg-ringmgr: Bump to EAPI 7
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/697414
Signed-off-by: Michał Górny <[email protected]>
  • Loading branch information
mgorny committed Nov 9, 2019
1 parent f8485e0 commit 1f9a802
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app-crypt/gpg-ringmgr/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DIST gpg-ringmgr 9378 BLAKE2B 673b1f6719dda0019c599a8ebc1d38e748c7749f07c8145f48dfff81515574080eec0b208868f89aa9f32b225d6efa4205e60a6298bda8151eb4a7d6cfb86df0 SHA512 f6aedf0db58c15163f6f08b37a5fef43a80655f5602d8ee856764177a33e2f5eb4c0b8a09e9f3ee5b36544039051909d48397be5793243eba5002526652dd194
DIST gpg-ringmgr-1.12 9378 BLAKE2B 673b1f6719dda0019c599a8ebc1d38e748c7749f07c8145f48dfff81515574080eec0b208868f89aa9f32b225d6efa4205e60a6298bda8151eb4a7d6cfb86df0 SHA512 f6aedf0db58c15163f6f08b37a5fef43a80655f5602d8ee856764177a33e2f5eb4c0b8a09e9f3ee5b36544039051909d48397be5793243eba5002526652dd194
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
}

0 comments on commit 1f9a802

Please sign in to comment.