Gentoo Archives: gentoo-commits

From: Kent Fredric <kentnl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Authen-PAM/
Date: Sat, 03 Oct 2020 05:23:40
Message-Id: 1601702584.d785e8c9d055bf82be867a4991c22b19978cf8a1.kentnl@gentoo
1 commit: d785e8c9d055bf82be867a4991c22b19978cf8a1
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 05:11:20 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 05:23:04 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d785e8c9
7
8 dev-perl/Authen-PAM: Cleanup old 0.160.0-r2
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 dev-perl/Authen-PAM/Authen-PAM-0.160.0-r2.ebuild | 43 ------------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/dev-perl/Authen-PAM/Authen-PAM-0.160.0-r2.ebuild b/dev-perl/Authen-PAM/Authen-PAM-0.160.0-r2.ebuild
17 deleted file mode 100644
18 index fbf9fb86829..00000000000
19 --- a/dev-perl/Authen-PAM/Authen-PAM-0.160.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DIST_AUTHOR=NIKIP
28 -DIST_VERSION=0.16
29 -DIST_EXAMPLES=("test.pl")
30 -inherit perl-module
31 -
32 -DESCRIPTION="Interface to PAM library"
33 -
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 s390 sparc x86"
36 -IUSE="examples"
37 -
38 -RDEPEND="sys-libs/pam"
39 -DEPEND="${RDEPEND}"
40 -PATCHES=("${FILESDIR}/no-dot-inc.patch")
41 -export OPTIMIZE="$CFLAGS"
42 -
43 -src_test() {
44 - local MODULES=(
45 - "Authen::PAM ${DIST_VERSION}"
46 - )
47 - local failed=()
48 - for dep in "${MODULES[@]}"; do
49 - ebegin "Compile testing ${dep}"
50 - perl -Mblib="${S}" -M"${dep} ()" -e1
51 - eend $? || failed+=( "$dep" )
52 - done
53 - if [[ ${failed[@]} ]]; then
54 - echo
55 - eerror "One or more modules failed compile:";
56 - for dep in "${failed[@]}"; do
57 - eerror " ${dep}"
58 - done
59 - die "Failing due to module compilation errors";
60 - fi
61 - ewarn "To comprehensively test this module, interactive testing is necessary"
62 - ewarn "For details, see:"
63 - ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Authen-PAM"
64 -}