[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/files/, dev-perl/Audio-Scan/

2025-11-25 Thread Sam James
commit: ab695efb8c213ace58f2b77f3a6f76fee77bb82c
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 26 03:16:59 2025 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 26 03:16:59 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab695efb

dev-perl/Audio-Scan: fix build w/ perl-5.42

Closes: https://bugs.gentoo.org/959573
Signed-off-by: Sam James  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.10.0-r4.ebuild| 33 +
 .../files/Audio-Scan-1.10.0-perl-5.42.patch| 80 ++
 2 files changed, 113 insertions(+)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r4.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r4.ebuild
new file mode 100644
index ..7ed8ef42e1df
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=1.01
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
+# License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
+# Tagged GPL-2 since this seems to be the smallest common denominator
+# Leaving the rest for upstream to sort out
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.10.0-perl-5.42.patch
+)
+
+PERL_RM_FILES=(
+   "t/02pod.t"
+   "t/03podcoverage.t"
+   "t/04critic.t"
+)

diff --git a/dev-perl/Audio-Scan/files/Audio-Scan-1.10.0-perl-5.42.patch 
b/dev-perl/Audio-Scan/files/Audio-Scan-1.10.0-perl-5.42.patch
new file mode 100644
index ..1ae4c9c3063f
--- /dev/null
+++ b/dev-perl/Audio-Scan/files/Audio-Scan-1.10.0-perl-5.42.patch
@@ -0,0 +1,80 @@
+https://bugs.gentoo.org/959573
+https://rt.cpan.org/Public/Bug/Display.html?id=167903
+https://rt.cpan.org/Transaction/Display.html?id=3098149
+
+>From ced0f4272dc8f66ae6efa2e84246c00b65409c12 Mon Sep 17 00:00:00 2001
+From: Niko Tyni 
+Date: Sun, 24 Aug 2025 17:10:44 +0100
+Subject: [PATCH] Fix invalid XS syntax that breaks the build with Perl 5.42
+
+Older versions of ExtUtils::ParseXS used to silently ignore parameter
+declarations that it could not parse. Newer ones (starting around Perl
+5.42) issue a syntax error ("Unparseable XSUB parameter") instead.
+
+See https://rt.cpan.org/Public/Bug/Display.html?id=162293 for a similar
+issue in another module (Crypt-SMIME), where Dave Mitchell recommends
+giving the ignored parameter a name but no type.
+---
+ Scan.xs | 12 ++--
+ 1 file changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/Scan.xs b/Scan.xs
+index 96e4f19..b6bfd55 100644
+--- a/Scan.xs
 b/Scan.xs
+@@ -214,7 +214,7 @@ _generate_hash(const char *file)
+ MODULE = Audio::Scan  PACKAGE = Audio::Scan
+ 
+ HV *
+-_scan( char *, char *suffix, PerlIO *infile, SV *path, int filter, int 
md5_size, int md5_offset )
++_scan( class, char *suffix, PerlIO *infile, SV *path, int filter, int 
md5_size, int md5_offset )
+ CODE:
+ {
+   taghandler *hdl;
+@@ -266,7 +266,7 @@ OUTPUT:
+   RETVAL
+   
+ int
+-_find_frame( char *, char *suffix, PerlIO *infile, SV *path, int offset )
++_find_frame( class, char *suffix, PerlIO *infile, SV *path, int offset )
+ CODE:
+ {
+   taghandler *hdl;
+@@ -282,7 +282,7 @@ OUTPUT:
+   RETVAL
+ 
+ HV *
+-_find_frame_return_info( char *, char *suffix, PerlIO *infile, SV *path, int 
offset )
++_find_frame_return_info( class, char *suffix, PerlIO *infile, SV *path, int 
offset )
+ CODE:
+ {
+   taghandler *hdl = _get_taghandler(suffix);
+@@ -306,7 +306,7 @@ OUTPUT:
+   RETVAL
+ 
+ int
+-is_supported(char *, SV *path)
++is_supported(class, SV *path)
+ CODE:
+ {
+   char *suffix = strrchr( SvPVX(path), '.' );
+@@ -322,7 +322,7 @@ OUTPUT:
+   RETVAL
+ 
+ SV *
+-type_for(char *, SV *suffix)
++type_for(class, SV *suffix)
+ CODE:
+ {
+   taghandler *hdl = NULL;
+@@ -360,7 +360,7 @@ OUTPUT:
+   RETVAL
+ 
+ AV *
+-extensions_for(char *, SV *type)
++extensions_for(class, SV *type)
+ CODE:
+ {
+   int i, j;
+-- 
+2.49.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2025-06-10 Thread Sam James
commit: 778d12548d2fcba05cbfb07d2aeb0bbe38744a83
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun 10 10:56:23 2025 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun 10 10:59:32 2025 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778d1254

dev-perl/Audio-Scan: fix MissingVersionedVirtualPerlDependency

Signed-off-by: Sam James  gentoo.org>

 .../{Audio-Scan-1.10.0-r2.ebuild => Audio-Scan-1.10.0-r3.ebuild}   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r3.ebuild
similarity index 89%
rename from dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild
rename to dev-perl/Audio-Scan/Audio-Scan-1.10.0-r3.ebuild
index 1123ee4767af..91288de6b910 100644
--- a/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -17,7 +17,6 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 BDEPEND="
-   virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/Test-Warn
)



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2024-05-21 Thread Sam James
commit: 0e6bd716734640dc370cacb392cc9cfd6b19c6aa
Author: Sam James  gentoo  org>
AuthorDate: Wed May 22 02:49:50 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 22 02:49:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6bd716

dev-perl/Audio-Scan: EAPI 8, rely on eclass impls

This covers more variables/args, etc.

Signed-off-by: Sam James  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild | 30 +
 1 file changed, 30 insertions(+)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild
new file mode 100644
index ..1123ee4767af
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=1.01
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
+# License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
+# Tagged GPL-2 since this seems to be the smallest common denominator
+# Leaving the rest for upstream to sort out
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+
+PERL_RM_FILES=(
+   "t/02pod.t"
+   "t/03podcoverage.t"
+   "t/04critic.t"
+)



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2021-05-23 Thread Andreas K. Hüttel
commit: 7c466ebb8453de56d76a90c5182c92b73377c12d
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun May 23 13:47:26 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun May 23 13:47:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c466ebb

dev-perl/Audio-Scan: Tag GPL-2 as smallest common denominator

Closes: https://bugs.gentoo.org/721194
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

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
index a0ef36b985a..776cc742497 100644
--- a/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -8,8 +8,12 @@ DIST_VERSION=1.01
 inherit perl-module
 
 DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
 # License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
-LICENSE="GPL-2+"
+# Tagged GPL-2 since this seems to be the smallest common denominator
+# Leaving the rest for upstream to sort out
+LICENSE="GPL-2"
+
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~x86-solaris"
 IUSE="test"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2020-08-13 Thread Kent Fredric
commit: 5f618229f6609a5d993167d3dc05722e582e7627
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Aug 13 20:23:32 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Aug 13 20:32:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f618229

dev-perl/Audio-Scan: Cleanup old 1.10.0

Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild | 25 -
 1 file changed, 25 deletions(-)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
deleted file mode 100644
index 6358a26d724..000
--- a/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=AGRUNDMA
-DIST_VERSION=1.01
-inherit perl-module
-
-DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
-# License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   dev-perl/Test-Warn
-   )
-"
-PERL_RM_FILES=( "t/02pod.t" "t/03podcoverage.t" "t/04critic.t" )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2020-07-02 Thread Kent Fredric
commit: 7d5bcb8cb51b4819008ddbc0fdd291450a084f1c
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul  2 23:42:32 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul  2 23:57:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d5bcb8c

dev-perl/Audio-Scan: -r bump for EAPI7 + CFLAGS love

- EAPI7
- Remove empty/unused variable assignments
- Ensure CFLAGS passed to make/compile

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild | 34 +
 1 file changed, 34 insertions(+)

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
new file mode 100644
index 000..a0ef36b985a
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=1.01
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+# License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-solaris"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+PERL_RM_FILES=(
+   "t/02pod.t"
+   "t/03podcoverage.t"
+   "t/04critic.t"
+)
+src_compile() {
+   mymake=(
+   "OPTIMIZE=${CFLAGS}"
+   )
+   perl-module_src_compile
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2020-04-29 Thread Kent Fredric
commit: 7e947f993a85f3fbde569ae0452476fc485aee16
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Apr 29 11:51:14 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Apr 29 12:04:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e947f99

dev-perl/Audio-Scan: Add license note

Package-Manager: Portage-2.3.97, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
index 000bff1d1c7..6358a26d724 100644
--- a/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ DIST_VERSION=1.01
 inherit perl-module
 
 DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
-
+# License note: ambiguity: https://rt.cpan.org/Ticket/Display.html?id=132450
 LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~x86-solaris"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2020-04-11 Thread Kent Fredric
commit: e706fa53b7793b3b7afc6a05b5bd383fb4a2e41c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Apr 11 13:53:02 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Apr 11 14:06:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e706fa53

dev-perl/Audio-Scan: Cleanup old 1.0.0

Package-Manager: Portage-2.3.97, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild | 25 -
 dev-perl/Audio-Scan/Manifest|  1 -
 2 files changed, 26 deletions(-)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild
deleted file mode 100644
index f7ee7745e80..000
--- a/dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=AGRUNDMA
-DIST_VERSION=1.00
-inherit perl-module
-
-DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   dev-perl/Test-Warn
-   )
-"
-PERL_RM_FILES=( "t/02pod.t" "t/03podcoverage.t" "t/04critic.t" )

diff --git a/dev-perl/Audio-Scan/Manifest b/dev-perl/Audio-Scan/Manifest
index 2858bed73c9..d3c5afbad4b 100644
--- a/dev-perl/Audio-Scan/Manifest
+++ b/dev-perl/Audio-Scan/Manifest
@@ -1,2 +1 @@
-DIST Audio-Scan-1.00.tar.gz 3400133 BLAKE2B 
b6e4c4418d2f960e64d7f9d66b75a612e2f462da600e6063ae3f903810ed6276dee2047a064d4d26ada3f2f8a4a3ed7d10ed6408d3fab943ef98d18f8890
 SHA512 
de05aa38f49f085db3f7b4c0278dc7e08282fbd3a9441343416dcdbe5b1999d4d79c617fbc70edfa579cb80f4131705aa3e9203e61f7f6ea1b4dac8f8d5ac8f2
 DIST Audio-Scan-1.01.tar.gz 4827918 BLAKE2B 
9212509919fb0084e04fe29b6d8b9a7171fd418e96ffa1407b9e7114e1a76e7738f27cee8f48a8badef31ea84413ccd0b092dcaba4ebddb5ab2513237a16053d
 SHA512 
07e97bd1bb2c469d07c27e20bf2f3067967e21658493de012fcc4c083a0a0c42e36d6d8d5ae8d6f80d8b447d11fdea1c024ee7f4c3f857e565335328238e2853



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2018-09-07 Thread Kent Fredric
commit: b9ea3a03d04e1f315e5b602e8cedcad39e23d1f8
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Sep  7 10:54:11 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Sep  7 10:54:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9ea3a03

dev-perl/Audio-Scan: Bump to version 1.10.0

Upstream:
- Add Opus codec support
- Fix duration calculation in ADTS

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild | 24 
 dev-perl/Audio-Scan/Manifest |  1 +
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
new file mode 100644
index 000..1529f61ba43
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.10.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=1.01
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-solaris"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+PERL_RM_FILES=( "t/02pod.t" "t/03podcoverage.t" "t/04critic.t" )

diff --git a/dev-perl/Audio-Scan/Manifest b/dev-perl/Audio-Scan/Manifest
index 327d07785f7..2858bed73c9 100644
--- a/dev-perl/Audio-Scan/Manifest
+++ b/dev-perl/Audio-Scan/Manifest
@@ -1 +1,2 @@
 DIST Audio-Scan-1.00.tar.gz 3400133 BLAKE2B 
b6e4c4418d2f960e64d7f9d66b75a612e2f462da600e6063ae3f903810ed6276dee2047a064d4d26ada3f2f8a4a3ed7d10ed6408d3fab943ef98d18f8890
 SHA512 
de05aa38f49f085db3f7b4c0278dc7e08282fbd3a9441343416dcdbe5b1999d4d79c617fbc70edfa579cb80f4131705aa3e9203e61f7f6ea1b4dac8f8d5ac8f2
+DIST Audio-Scan-1.01.tar.gz 4827918 BLAKE2B 
9212509919fb0084e04fe29b6d8b9a7171fd418e96ffa1407b9e7114e1a76e7738f27cee8f48a8badef31ea84413ccd0b092dcaba4ebddb5ab2513237a16053d
 SHA512 
07e97bd1bb2c469d07c27e20bf2f3067967e21658493de012fcc4c083a0a0c42e36d6d8d5ae8d6f80d8b447d11fdea1c024ee7f4c3f857e565335328238e2853



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2018-06-02 Thread Kent Fredric
commit: 4ea331122f788d645a7a445b7098be88142774b5
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jun  2 14:47:12 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jun  2 14:57:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ea33112

dev-perl/Audio-Scan: Cleanup old versions 0.99*

Package-Manager: Portage-2.3.29, Repoman-2.3.9

 dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild | 27 ---
 dev-perl/Audio-Scan/Manifest  |  1 -
 2 files changed, 28 deletions(-)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
deleted file mode 100644
index 7b015f48e6c..000
--- a/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=AGRUNDMA
-DIST_VERSION=0.99
-inherit perl-module
-
-DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-solaris"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   dev-perl/Test-Warn
-   )
-"
-src_test() {
-   perl_rm_files t/{02pod,03podcoverage,04critic}.t
-   perl-module_src_test
-}

diff --git a/dev-perl/Audio-Scan/Manifest b/dev-perl/Audio-Scan/Manifest
index 3baeade11d2..327d07785f7 100644
--- a/dev-perl/Audio-Scan/Manifest
+++ b/dev-perl/Audio-Scan/Manifest
@@ -1,2 +1 @@
-DIST Audio-Scan-0.99.tar.gz 3399719 BLAKE2B 
e40dfc1df1dd388efed931c48398c57d04365ffe03f82054d14db3d1f557db6a511ea977e8c11a465da41aaf9d7ed43209885590c5551924bfd3d1e4ac311a61
 SHA512 
abbf51c9eb15336527500ac9ce6dd8e05baee6dabdf2a4bc95a62b1787fe24c4ad0abb07d5632647e4add3123a3cfe6374c6fbfd236c5b01c3350b6ee9d74b10
 DIST Audio-Scan-1.00.tar.gz 3400133 BLAKE2B 
b6e4c4418d2f960e64d7f9d66b75a612e2f462da600e6063ae3f903810ed6276dee2047a064d4d26ada3f2f8a4a3ed7d10ed6408d3fab943ef98d18f8890
 SHA512 
de05aa38f49f085db3f7b4c0278dc7e08282fbd3a9441343416dcdbe5b1999d4d79c617fbc70edfa579cb80f4131705aa3e9203e61f7f6ea1b4dac8f8d5ac8f2



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2018-04-23 Thread Kent Fredric
commit: 4f95b16081e211a9d297409258948b3d220a7ad2
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Apr 24 05:38:39 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 24 05:39:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f95b160

dev-perl/Audio-Scan: Bump to version 1.0.0

Upstream:
- Fix parsing of DSF files with more than 2 channels

Package-Manager: Portage-2.3.29, Repoman-2.3.9

 dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild | 24 
 dev-perl/Audio-Scan/Manifest|  1 +
 2 files changed, 25 insertions(+)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild
new file mode 100644
index 000..304350b7889
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-1.0.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=1.00
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-solaris"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+PERL_RM_FILES=( "t/02pod.t" "t/03podcoverage.t" "t/04critic.t" )

diff --git a/dev-perl/Audio-Scan/Manifest b/dev-perl/Audio-Scan/Manifest
index e2f54f461d3..3baeade11d2 100644
--- a/dev-perl/Audio-Scan/Manifest
+++ b/dev-perl/Audio-Scan/Manifest
@@ -1 +1,2 @@
 DIST Audio-Scan-0.99.tar.gz 3399719 BLAKE2B 
e40dfc1df1dd388efed931c48398c57d04365ffe03f82054d14db3d1f557db6a511ea977e8c11a465da41aaf9d7ed43209885590c5551924bfd3d1e4ac311a61
 SHA512 
abbf51c9eb15336527500ac9ce6dd8e05baee6dabdf2a4bc95a62b1787fe24c4ad0abb07d5632647e4add3123a3cfe6374c6fbfd236c5b01c3350b6ee9d74b10
+DIST Audio-Scan-1.00.tar.gz 3400133 BLAKE2B 
b6e4c4418d2f960e64d7f9d66b75a612e2f462da600e6063ae3f903810ed6276dee2047a064d4d26ada3f2f8a4a3ed7d10ed6408d3fab943ef98d18f8890
 SHA512 
de05aa38f49f085db3f7b4c0278dc7e08282fbd3a9441343416dcdbe5b1999d4d79c617fbc70edfa579cb80f4131705aa3e9203e61f7f6ea1b4dac8f8d5ac8f2



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2017-12-30 Thread David Seifert
commit: 9a3a2de92dfcbc91677f3c750ee3f1f64c86542c
Author: David Seifert  gentoo  org>
AuthorDate: Sat Dec 30 20:43:37 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Dec 30 20:43:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3a2de9

dev-perl/Audio-Scan: Add missing EOL

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
index d0ad2eb262a..7b015f48e6c 100644
--- a/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
+++ b/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
@@ -24,4 +24,4 @@ DEPEND="${RDEPEND}
 src_test() {
perl_rm_files t/{02pod,03podcoverage,04critic}.t
perl-module_src_test
-}
\ No newline at end of file
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2017-12-30 Thread Mikle Kolyada
commit: 0eba7c37280193b51af7d33b1c22eee92dd6c5b8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Dec 30 11:14:28 2017 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Dec 30 11:14:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eba7c37

dev-perl/Audio-Scan: Version bump

Package-Manager: Portage-2.3.13, Repoman-2.3.3

 dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild | 27 +++
 dev-perl/Audio-Scan/Manifest  |  1 +
 2 files changed, 28 insertions(+)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
new file mode 100644
index 000..d0ad2eb262a
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-0.990.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=0.99
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-solaris"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+src_test() {
+   perl_rm_files t/{02pod,03podcoverage,04critic}.t
+   perl-module_src_test
+}
\ No newline at end of file

diff --git a/dev-perl/Audio-Scan/Manifest b/dev-perl/Audio-Scan/Manifest
index 8ba98dba271..028f39eb472 100644
--- a/dev-perl/Audio-Scan/Manifest
+++ b/dev-perl/Audio-Scan/Manifest
@@ -1,2 +1,3 @@
 DIST Audio-Scan-0.93.tar.gz 3347237 BLAKE2B 
8952e2f3a1570f553bc78df71f3b726598041f05fc0bb048ae39e6f0075c37e16e92e02dfec930941a0a2bc3ecb4e22f77a86bc0268ff6d057f88e1270e3dc2b
 SHA512 
1e82f8ff35744a14626777450c87e15d7f0e5ada7f6643c5f9b38a599068cacef50ae83b525292440085de4593ad625abf5ee61282b59f64b1349d5d8f29e99a
 DIST Audio-Scan-0.98.tar.gz 3388257 BLAKE2B 
5d95e3baebfdde6771231662ac0d34a7c441bdc6f7ca5d112b9fb03b1a966375b734dda486ab965a561a4c915d5f82e28c6e0dbb863bfa4c7b61a50c01b19ecb
 SHA512 
58b30c0a4c0ec2a8612d846e9fe2680444ce745d60c3670f22686c0283245904f0506e3e362767493ad5f4aa28cebd685d12e87db3a7644edc31e2633d7342f2
+DIST Audio-Scan-0.99.tar.gz 3399719 BLAKE2B 
e40dfc1df1dd388efed931c48398c57d04365ffe03f82054d14db3d1f557db6a511ea977e8c11a465da41aaf9d7ed43209885590c5551924bfd3d1e4ac311a61
 SHA512 
abbf51c9eb15336527500ac9ce6dd8e05baee6dabdf2a4bc95a62b1787fe24c4ad0abb07d5632647e4add3123a3cfe6374c6fbfd236c5b01c3350b6ee9d74b10



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-Scan/

2017-05-21 Thread Kent Fredric
commit: d24a3cb42abf2d96ddff68b0ac02836954689405
Author: Kent Fredric  gentoo  org>
AuthorDate: Mon May 22 01:52:18 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Mon May 22 01:52:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d24a3cb4

dev-perl/Audio-Scan: Bump to version 0.980.0

- EAPI6
- Cleanup author tests
- Parallel testing
- Fix LICENSE

Upstream:
- Support DSD file scanning
- Support 24bit AIFF scanning
- Improve DFF parsing of partially corrupted files
- Improve ID3 support for DFF files
- Fix crash reading comments in ogg-vorbis files
- Be less clever about darwin hints
- Fix osx clang warnings
- Fix integer overflow computing song length of WAV files over 16 bit

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-perl/Audio-Scan/Audio-Scan-0.980.0.ebuild | 27 +++
 dev-perl/Audio-Scan/Manifest  |  1 +
 2 files changed, 28 insertions(+)

diff --git a/dev-perl/Audio-Scan/Audio-Scan-0.980.0.ebuild 
b/dev-perl/Audio-Scan/Audio-Scan-0.980.0.ebuild
new file mode 100644
index 000..9f977d78e0c
--- /dev/null
+++ b/dev-perl/Audio-Scan/Audio-Scan-0.980.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=AGRUNDMA
+DIST_VERSION=0.98
+inherit perl-module
+
+DESCRIPTION="Fast C metadata and tag reader for all common audio file formats"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x86-solaris"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Test-Warn
+   )
+"
+src_test() {
+   perl_rm_files t/{02pod,03podcoverage,04critic}.t
+   perl-module_src_test
+}

diff --git a/dev-perl/Audio-Scan/Manifest b/dev-perl/Audio-Scan/Manifest
index f74f0cb6c2b..dc5e1248999 100644
--- a/dev-perl/Audio-Scan/Manifest
+++ b/dev-perl/Audio-Scan/Manifest
@@ -1 +1,2 @@
 DIST Audio-Scan-0.93.tar.gz 3347237 SHA256 
5a92f4fce0c5dc3f4f76b2266d484466ff6dfc64340371c392e678324465dc0e SHA512 
1e82f8ff35744a14626777450c87e15d7f0e5ada7f6643c5f9b38a599068cacef50ae83b525292440085de4593ad625abf5ee61282b59f64b1349d5d8f29e99a
 WHIRLPOOL 
59952cdd3ab9aa6f2ca29391602f04780270fbeed48bebca91319f195462a660abef1f7d2865bbbd9832c79001ba566d4308154464f79d6c23f1e44606e21e70
+DIST Audio-Scan-0.98.tar.gz 3388257 SHA256 
a40e8432d8a7f1fef37ab87346cc758e0d3dece9ec7430dffbfb2be40557d503 SHA512 
58b30c0a4c0ec2a8612d846e9fe2680444ce745d60c3670f22686c0283245904f0506e3e362767493ad5f4aa28cebd685d12e87db3a7644edc31e2633d7342f2
 WHIRLPOOL 
e20ad11aa03f0021fee78bfa248cd887ca4c549a6e72c932f3c7dfff4ffe5592bde39ef7553e3baab8d23702674a827200f2e137c23390a5e2a5388b879fd991