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/Audio-CD-disc-cover/
Date: Sat, 03 Oct 2020 05:23:37
Message-Id: 1601702574.04a0846ac4aef46afc9a1b42b66424359f4d8108.kentnl@gentoo
1 commit: 04a0846ac4aef46afc9a1b42b66424359f4d8108
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 3 05:07:15 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 3 05:22:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04a0846a
7
8 dev-perl/Audio-CD-disc-cover: Cleanup old 0.05-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 .../Audio-CD-disc-cover-0.05-r2.ebuild | 51 ----------------------
14 1 file changed, 51 deletions(-)
15
16 diff --git a/dev-perl/Audio-CD-disc-cover/Audio-CD-disc-cover-0.05-r2.ebuild b/dev-perl/Audio-CD-disc-cover/Audio-CD-disc-cover-0.05-r2.ebuild
17 deleted file mode 100644
18 index b27437e7d0f..00000000000
19 --- a/dev-perl/Audio-CD-disc-cover/Audio-CD-disc-cover-0.05-r2.ebuild
20 +++ /dev/null
21 @@ -1,51 +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 -# This appears it should really be entitled Audio-CD
28 -# There are * QA Notice: errors on building however the HOMEPAGE gives no source repo in which to file
29 -# prob. not worth the trouble for this little script.
30 -
31 -DIST_EXAMPLES=("eg/*")
32 -inherit perl-module
33 -
34 -MY_P=Audio-CD-${PV}
35 -S=${WORKDIR}/${MY_P}
36 -DESCRIPTION="Perl Module needed for app-cdr/disc-cover"
37 -HOMEPAGE="http://www.vanhemert.co.uk/disc-cover.html"
38 -SRC_URI="http://www.vanhemert.co.uk/files/${MY_P}.tar.gz"
39 -
40 -IUSE=""
41 -SLOT="0"
42 -KEYWORDS="~alpha amd64 ~ia64 ppc sparc x86"
43 -
44 -RDEPEND=">=dev-perl/URI-1.10
45 - >=dev-perl/HTML-Parser-3.15
46 - >=virtual/perl-MIME-Base64-2.12
47 - >=virtual/perl-Digest-MD5-2.12
48 - >=virtual/perl-libnet-1.0703-r1
49 - >=dev-perl/libwww-perl-5.50
50 - >=media-libs/libcdaudio-0.99.6"
51 -DEPEND="${RDEPEND}"
52 -
53 -src_test() {
54 - local MODULES=(
55 - "Audio::CD ${PV}"
56 - )
57 - local failed=()
58 - for dep in "${MODULES[@]}"; do
59 - ebegin "Compile testing ${dep}"
60 - perl -Mblib="${S}" -M"${dep} ()" -e1
61 - eend $? || failed+=( "$dep" )
62 - done
63 - if [[ ${failed[@]} ]]; then
64 - echo
65 - eerror "One or more modules failed compile:";
66 - for dep in "${failed[@]}"; do
67 - eerror " ${dep}"
68 - done
69 - die "Failing due to module compilation errors";
70 - fi
71 - perl-module_src_test
72 -}