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-WMA/files/, dev-perl/Audio-WMA/
Date: Wed, 29 Apr 2020 12:35:00
Message-Id: 1588163681.d3141832fd1d93a1790f497c5cf4287f03d72c8d.kentnl@gentoo
1 commit: d3141832fd1d93a1790f497c5cf4287f03d72c8d
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 29 12:34:25 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 29 12:34:41 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3141832
7
8 dev-perl/Audio-WMA: -r bump for EAPI7
9
10 - EAPI7
11 - Use patch instead of sed
12 - Parallel tests
13 - Removed unneeded variable assignments
14
15 Package-Manager: Portage-2.3.97, Repoman-2.3.22
16 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
17
18 dev-perl/Audio-WMA/Audio-WMA-1.300.0-r1.ebuild | 21 ++++++++++++++++++++
19 .../Audio-WMA/files/Audio-WMA-1.3-no-dot-inc.patch | 23 ++++++++++++++++++++++
20 2 files changed, 44 insertions(+)
21
22 diff --git a/dev-perl/Audio-WMA/Audio-WMA-1.300.0-r1.ebuild b/dev-perl/Audio-WMA/Audio-WMA-1.300.0-r1.ebuild
23 new file mode 100644
24 index 00000000000..d19ed443c9a
25 --- /dev/null
26 +++ b/dev-perl/Audio-WMA/Audio-WMA-1.300.0-r1.ebuild
27 @@ -0,0 +1,21 @@
28 +# Copyright 1999-2020 Gentoo Authors
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI=7
32 +
33 +DIST_VERSION=1.3
34 +DIST_AUTHOR=DANIEL
35 +inherit perl-module
36 +
37 +DESCRIPTION="extension for reading WMA/ASF metadata"
38 +
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~x86"
41 +
42 +PERL_RM_FILES=(
43 + "t/pod.t"
44 + "t/pod-coverage.t"
45 +)
46 +PATCHES=(
47 + "${FILESDIR}/${PN}-1.3-no-dot-inc.patch"
48 +)
49
50 diff --git a/dev-perl/Audio-WMA/files/Audio-WMA-1.3-no-dot-inc.patch b/dev-perl/Audio-WMA/files/Audio-WMA-1.3-no-dot-inc.patch
51 new file mode 100644
52 index 00000000000..7141ffd645a
53 --- /dev/null
54 +++ b/dev-perl/Audio-WMA/files/Audio-WMA-1.3-no-dot-inc.patch
55 @@ -0,0 +1,23 @@
56 +From 59f5c5d6f302c3cacb212048cb7c30b727e03d91 Mon Sep 17 00:00:00 2001
57 +From: Kent Fredric <kentnl@g.o>
58 +Date: Thu, 30 Apr 2020 00:11:42 +1200
59 +Subject: Include '.' in @INC on Perl 5.28+
60 +
61 +---
62 + Makefile.PL | 2 +-
63 + 1 file changed, 1 insertion(+), 1 deletion(-)
64 +
65 +diff --git a/Makefile.PL b/Makefile.PL
66 +index e607505..51add3f 100644
67 +--- a/Makefile.PL
68 ++++ b/Makefile.PL
69 +@@ -1,5 +1,5 @@
70 + # $Id: Makefile.PL 10 1998-12-16 23:02:45Z daniel $
71 +-
72 ++use lib '.';
73 + use inc::Module::Install;
74 +
75 + name('Audio-WMA');
76 +--
77 +2.26.2
78 +