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-Scan/
Date: Fri, 03 Jul 2020 00:07:52
Message-Id: 1593734255.7d5bcb8cb51b4819008ddbc0fdd291450a084f1c.kentnl@gentoo
1 commit: 7d5bcb8cb51b4819008ddbc0fdd291450a084f1c
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 2 23:42:32 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 2 23:57:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5bcb8c
7
8 dev-perl/Audio-Scan: -r bump for EAPI7 + CFLAGS love
9
10 - EAPI7
11 - Remove empty/unused variable assignments
12 - Ensure CFLAGS passed to make/compile
13
14 Package-Manager: Portage-2.3.100, Repoman-2.3.22
15 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
16
17 dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild | 34 +++++++++++++++++++++++++
18 1 file changed, 34 insertions(+)
19
20 diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild
21 new file mode 100644
22 index 00000000000..a0ef36b985a
23 --- /dev/null
24 +++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild
25 @@ -0,0 +1,34 @@
26 +# Copyright 1999-2020 Gentoo Authors
27 +# Distributed under the terms of the GNU General Public License v2
28 +
29 +EAPI=7
30 +
31 +DIST_AUTHOR=AGRUNDMA
32 +DIST_VERSION=1.01
33 +inherit perl-module
34 +
35 +DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
36 +# License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
37 +LICENSE="GPL-2+"
38 +SLOT="0"
39 +KEYWORDS="~amd64 ~x86 ~x86-solaris"
40 +IUSE="test"
41 +RESTRICT="!test? ( test )"
42 +
43 +BDEPEND="
44 + virtual/perl-ExtUtils-MakeMaker
45 + test? (
46 + dev-perl/Test-Warn
47 + )
48 +"
49 +PERL_RM_FILES=(
50 + "t/02pod.t"
51 + "t/03podcoverage.t"
52 + "t/04critic.t"
53 +)
54 +src_compile() {
55 + mymake=(
56 + "OPTIMIZE=${CFLAGS}"
57 + )
58 + perl-module_src_compile
59 +}