dev-perl/MusicBrainz-DiscID: Cleanup old re bug #622984
authorKent Fredric <kentnl@gentoo.org>
Tue, 30 Jan 2018 02:08:59 +0000 (15:08 +1300)
committerKent Fredric <kentnl@gentoo.org>
Tue, 30 Jan 2018 02:18:13 +0000 (15:18 +1300)
Closes: https://bugs.gentoo.org/622984
Package-Manager: Portage-2.3.18, Repoman-2.3.6

dev-perl/MusicBrainz-DiscID/Manifest
dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.30.0-r1.ebuild [deleted file]

index c5f4a6e32c609684660974f53afbfecdbcdb3ee1..cdaa7a36542623a02af2105e7cc0cc1728ce33b2 100644 (file)
@@ -1,3 +1 @@
-DIST MusicBrainz-DiscID-0.03.tar.gz 5343 BLAKE2B 3891c41a97417a68500351f3880032bb0a976c4cba3e9f324c74b93a3feb9588668ac57db94b743b227f7e6d56f563befee1fe8625368a3692d5d0334240bd86 SHA512 b3fa392a669a9370369ea7ade275edb30b15c8b15b1ebeefb567d8e183e195b255e7e087025a7ebc17b39f7d7ba9a310dfa17c616426e8d092c129c0c58ddfc8
 DIST MusicBrainz-DiscID-0.04.tar.gz 6907 BLAKE2B 1dc163515af1818816d223da5090dec67cf1102311370de0658d15488d5551207b27f8b817727f3ddad2a64f3f792cf1e094ace460fd3db7d4eb1b06fdeea18d SHA512 ccf93205f3485fa19e22cee079b2615326384513dc773f5d242216b680317d2d35d3a2421e46bc17651d8d7797a4d01bd3c2c0ae603a1d1e550ac2a558163125
-DIST MusicBrainz-DiscID-0.30.0-patch.tar.bz2 412 BLAKE2B 6371693ee495ef40300cca7f88f285ba6485ac61e828551470342fceb85a4ef1ef8ed99afbff179f274325ad0299686db62dc3e8ef5337b85addd2f7c1ccb458 SHA512 79163ba28285676f585af2be0a12a6210a8869c57cad5bba1ec42121f9e1dc351ac2f51b9a702133a71fbaf1d3207e8ea153564f838ffc5d39b60268af7bf726
diff --git a/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.30.0-r1.ebuild b/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.30.0-r1.ebuild
deleted file mode 100644 (file)
index c5dcf0b..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=NJH
-MODULE_VERSION=0.03
-inherit perl-module
-
-DESCRIPTION="Perl interface for the MusicBrainz libdiscid library"
-SRC_URI+=" https://dev.gentoo.org/~tove/distfiles/${CATEGORY}/${PN}/${P}-patch.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="test"
-
-RDEPEND=">=media-libs/libdiscid-0.2.2"
-DEPEND="${RDEPEND}
-       dev-perl/Module-Build
-       virtual/pkgconfig
-       test? (
-               virtual/perl-Test-Simple
-       )
-"
-
-SRC_TEST="do"
-PERL_RM_FILES=( t/05pod.t )
-
-src_prepare() {
-       # Quick n dirty fix but does the job.
-       ebegin 'Patching lib/MusicBrainz/DiscID.pm'
-       # There's a dangling non-ASCII character that causes perldoc to fail on
-       # parsing the .pm and hence, fail tests. We should file a bug upstream.
-       perl -i'' -npe "s/don.. specify/don't specify/g;" lib/MusicBrainz/DiscID.pm
-       eend $?
-
-       perl-module_src_prepare
-}
-
-src_install() {
-       perl-module_src_install
-
-       docinto examples
-       dodoc examples/discid.pl
-}
-src_test() {
-       perl_rm_files t/05pod.t
-       perl-module_src_test
-}