* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2016-08-07 17:34 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2016-08-07 17:34 UTC (permalink / raw
To: gentoo-commits
commit: 96138eafa1a9f2475366b85ec041e5427eccb468
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 7 09:47:31 2016 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Aug 7 17:33:40 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96138eaf
dev-perl/Audio-FLAC-Header: Remove POD Author tests.
Not useful on Gentoo.
Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"
| 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
index 1eee425..e3eea7c 100644
--- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -15,8 +15,12 @@ KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86
IUSE="test"
RDEPEND="media-libs/flac"
-DEPEND="${RDEPEND}
- test? ( dev-perl/Test-Pod
- dev-perl/Test-Pod-Coverage )"
+DEPEND="${RDEPEND}"
SRC_TEST="do"
+
+# MI's fault
+src_configure() {
+ use test && perl_rm_files t/pod.t t/pod-coverage.t
+ perl-module_src_configure
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2017-06-14 10:18 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2017-06-14 10:18 UTC (permalink / raw
To: gentoo-commits
commit: 010099afc194fdec12c0dbfa2aad4b053f2f5f5e
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 14 10:18:35 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Wed Jun 14 10:18:51 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=010099af
dev-perl/Audio-FLAC-Header: Fix for '.' in @INC re bug #614662
Generic fix for Module::Install re Perl 5.26
Bug: https://bugs.gentoo.org/614662
Package-Manager: Portage-2.3.6, Repoman-2.3.2
| 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
index cc0beee9d94..b2afee1a19b 100644
--- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -19,7 +19,9 @@ DEPEND="${RDEPEND}"
SRC_TEST="do"
# MI's fault
-src_configure() {
+src_prepare() {
use test && perl_rm_files t/pod.t t/pod-coverage.t
- perl-module_src_configure
+ sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
+ die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+ perl-module_src_prepare
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2020-07-03 0:07 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2020-07-03 0:07 UTC (permalink / raw
To: gentoo-commits
commit: aff523bb17402af832c78b5e5c824f9b08beb33f
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 23:35:39 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jul 2 23:57:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff523bb
dev-perl/Audio-FLAC-Header: -r bump for CFLAGS love
- Ensure CFLAGS are passed to make/compiler
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
| 31 ++++++++++++++++++++++
1 file changed, 31 insertions(+)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r3.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r3.ebuild
new file mode 100644
index 00000000000..0aebdff020a
--- /dev/null
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=DANIEL
+DIST_VERSION=2.4
+inherit perl-module
+
+DESCRIPTION="Access to FLAC audio metadata"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+
+RDEPEND="media-libs/flac"
+DEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.4-no-dot-inc.patch"
+)
+PERL_RM_FILES=(
+ "t/pod.t"
+ "t/pod-coverage.t"
+)
+src_compile() {
+ mymake=(
+ "OPTIMIZE=${CFLAGS}"
+ )
+ perl-module_src_compile
+}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2020-10-03 5:23 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2020-10-03 5:23 UTC (permalink / raw
To: gentoo-commits
commit: 5b07dd19539451f7a8e7e57992da5545242fcf6d
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 3 05:08:44 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Oct 3 05:22:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b07dd19
dev-perl/Audio-FLAC-Header: Cleanup old 2.400.0-r3
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
| 28 ----------------------
1 file changed, 28 deletions(-)
diff --git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
deleted file mode 100644
index 9c59e3af778..00000000000
--- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DANIEL
-MODULE_VERSION=2.4
-inherit perl-module
-
-DESCRIPTION="Access to FLAC audio metadata"
-
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="media-libs/flac"
-DEPEND="${RDEPEND}"
-
-SRC_TEST="do"
-
-# MI's fault
-src_prepare() {
- use test && perl_rm_files t/pod.t t/pod-coverage.t
- sed -i -e 's/use inc::Module::Install;/use lib q[.]; use inc::Module::Install;/' Makefile.PL ||
- die "Can't patch Makefile.PL for 5.26 dot-in-inc"
- perl-module_src_prepare
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2024-05-22 2:55 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-05-22 2:55 UTC (permalink / raw
To: gentoo-commits
commit: 3c1311188f46be8a119ba6c0e7e4bb23082bf76b
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 02:43:57 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 02:43:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c131118
dev-perl/Audio-FLAC-Header: EAPI 8, rely on eclass impls
This covers more variables/args, etc.
Signed-off-by: Sam James <sam <AT> gentoo.org>
| 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
new file mode 100644
index 000000000000..5829b31b89d3
--- /dev/null
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=DANIEL
+DIST_VERSION=2.4
+inherit perl-module
+
+DESCRIPTION="Access to FLAC audio metadata"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+
+RDEPEND="media-libs/flac:="
+DEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-2.4-no-dot-inc.patch"
+)
+
+PERL_RM_FILES=(
+ "t/pod.t"
+ "t/pod-coverage.t"
+)
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2024-06-25 4:10 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-06-25 4:10 UTC (permalink / raw
To: gentoo-commits
commit: 09878c8e93b9bd25cbf7586855a541cf3adf9db5
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 04:09:31 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 04:09:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09878c8e
dev-perl/Audio-FLAC-Header: Stabilize 2.400.0-r5 ppc64, #934826
Signed-off-by: Sam James <sam <AT> gentoo.org>
| 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
index 651bd1828a62..5dd0e4bdf672 100644
--- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Access to FLAC audio metadata"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~amd64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
RDEPEND="media-libs/flac:="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2024-06-25 4:41 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-06-25 4:41 UTC (permalink / raw
To: gentoo-commits
commit: 98bba56f0deb7cbfa398a8573118f4b1437f58e1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 04:39:36 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 04:39:36 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98bba56f
dev-perl/Audio-FLAC-Header: Stabilize 2.400.0-r5 amd64, #934826
Signed-off-by: Sam James <sam <AT> gentoo.org>
| 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
index 5dd0e4bdf672..29b323d58db4 100644
--- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Access to FLAC audio metadata"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
RDEPEND="media-libs/flac:="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/
@ 2024-06-25 4:46 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2024-06-25 4:46 UTC (permalink / raw
To: gentoo-commits
commit: 9f35a23e6ae477ea5658f053af8988a0ff45ff33
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 04:46:16 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 04:46:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f35a23e
dev-perl/Audio-FLAC-Header: Stabilize 2.400.0-r5 ppc, #934826
Signed-off-by: Sam James <sam <AT> gentoo.org>
| 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--git a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
index 29b323d58db4..3bb7a396e0ca 100644
--- a/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
+++ b/dev-perl/Audio-FLAC-Header/Audio-FLAC-Header-2.400.0-r5.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Access to FLAC audio metadata"
SLOT="0"
-KEYWORDS="amd64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
RDEPEND="media-libs/flac:="
DEPEND="${RDEPEND}"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-06-25 4:46 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-25 4:41 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-FLAC-Header/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-06-25 4:46 Sam James
2024-06-25 4:10 Sam James
2024-05-22 2:55 Sam James
2020-10-03 5:23 Kent Fredric
2020-07-03 0:07 Kent Fredric
2017-06-14 10:18 Kent Fredric
2016-08-07 17:34 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox