* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2020-07-03 0:07 Kent Fredric
0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2020-07-03 0:07 UTC (permalink / raw
To: gentoo-commits
commit: 62bc679a51ffa28d7a6340be8978ac35effa4694
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 2 23:32:00 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Jul 2 23:57:24 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62bc679a
dev-perl/Audio-DSP: -r bump for EAPI7/CFLAGS love
- EAPI7
- Ensure CFLAGS passed to make/compiler
- Remove empty/unused variable assignments
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r3.ebuild | 48 +++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r3.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r3.ebuild
new file mode 100644
index 00000000000..1996d7d8834
--- /dev/null
+++ b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r3.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=SETHJ
+DIST_VERSION=0.02
+inherit perl-module
+
+DESCRIPTION="Perl interface to *NIX digital audio device"
+
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+
+src_compile() {
+ mymake=(
+ "OPTIMIZE=${CFLAGS}"
+ )
+ perl-module_src_compile
+}
+src_test() {
+ local MODULES=(
+ "Audio::DSP ${DIST_VERSION}"
+ )
+ local failed=()
+ for dep in "${MODULES[@]}"; do
+ ebegin "Compile testing ${dep}"
+ perl -Mblib="${S}" -M"${dep} ()" -e1
+ eend $? || failed+=( "$dep" )
+ done
+ if [[ ${failed[@]} ]]; then
+ echo
+ eerror "One or more modules failed compile:";
+ for dep in "${failed[@]}"; do
+ eerror " ${dep}"
+ done
+ die "Failing due to module compilation errors";
+ fi
+ if [[ "${AUDIO_DSP_HW_TEST:-0}" == 0 ]]; then
+ ewarn "Comprehensive testing of this module needs hardware access to dsp"
+ ewarn "devices. Set AUDIO_DSP_HW_TEST=1 in your environment if you want full"
+ ewarn "coverage"
+ ewarn "For details, see:"
+ ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-DSP"
+ else
+ perl-module_src_test
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2024-06-25 4:45 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-06-25 4:45 UTC (permalink / raw
To: gentoo-commits
commit: e7d6ae8fe2d57150ec412631d0166db44f5371e9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 04:44:11 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 04:44:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7d6ae8f
dev-perl/Audio-DSP: Stabilize 0.20.0-r4 amd64, #934843
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild
index 747a0e290c46..2595d34de08a 100644
--- a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild
+++ b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Perl interface to *NIX digital audio device"
SLOT="0"
-KEYWORDS="~amd64 sparc ~x86"
+KEYWORDS="amd64 sparc ~x86"
src_test() {
local MODULES=(
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2024-05-22 2:55 Sam James
0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2024-05-22 2:55 UTC (permalink / raw
To: gentoo-commits
commit: 50f63f3873ae607290e22dacc734e67dd39d028f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 02:42:49 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 02:42:49 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50f63f38
dev-perl/Audio-DSP: EAPI 8, rely on eclass impls
This covers more variables/args, etc.
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild | 42 +++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild
new file mode 100644
index 000000000000..3ef3d8d47866
--- /dev/null
+++ b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r4.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SETHJ
+DIST_VERSION=0.02
+inherit perl-module
+
+DESCRIPTION="Perl interface to *NIX digital audio device"
+
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+
+src_test() {
+ local MODULES=(
+ "Audio::DSP ${DIST_VERSION}"
+ )
+ local failed=()
+ for dep in "${MODULES[@]}"; do
+ ebegin "Compile testing ${dep}"
+ perl -Mblib="${S}" -M"${dep} ()" -e1
+ eend $? || failed+=( "$dep" )
+ done
+ if [[ ${failed[@]} ]]; then
+ echo
+ eerror "One or more modules failed compile:";
+ for dep in "${failed[@]}"; do
+ eerror " ${dep}"
+ done
+ die "Failing due to module compilation errors";
+ fi
+ if [[ "${AUDIO_DSP_HW_TEST:-0}" == 0 ]]; then
+ ewarn "Comprehensive testing of this module needs hardware access to dsp"
+ ewarn "devices. Set AUDIO_DSP_HW_TEST=1 in your environment if you want full"
+ ewarn "coverage"
+ ewarn "For details, see:"
+ ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-DSP"
+ else
+ perl-module_src_test
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2020-09-25 23:03 Kent Fredric
0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2020-09-25 23:03 UTC (permalink / raw
To: gentoo-commits
commit: 4cd53d2a817fa80a6aad45f3c598524d8243c0ea
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 25 22:47:01 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Fri Sep 25 23:02:16 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cd53d2a
dev-perl/Audio-DSP: Cleanup old 0.20.0-r2
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild | 43 ---------------------------
1 file changed, 43 deletions(-)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
deleted file mode 100644
index 38bfa6e2f43..00000000000
--- a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=SETHJ
-DIST_VERSION=0.02
-inherit perl-module
-
-DESCRIPTION="Perl interface to *NIX digital audio device"
-
-SLOT="0"
-KEYWORDS="amd64 sparc ~x86"
-IUSE=""
-
-src_test() {
- local MODULES=(
- "Audio::DSP ${DIST_VERSION}"
- )
- local failed=()
- for dep in "${MODULES[@]}"; do
- ebegin "Compile testing ${dep}"
- perl -Mblib="${S}" -M"${dep} ()" -e1
- eend $? || failed+=( "$dep" )
- done
- if [[ ${failed[@]} ]]; then
- echo
- eerror "One or more modules failed compile:";
- for dep in "${failed[@]}"; do
- eerror " ${dep}"
- done
- die "Failing due to module compilation errors";
- fi
- if [[ "${AUDIO_DSP_HW_TEST:-0}" == 0 ]]; then
- ewarn "Comprehensive testing of this module needs hardware access to dsp"
- ewarn "devices. Set AUDIO_DSP_HW_TEST=1 in your environment if you want full"
- ewarn "coverage"
- ewarn "For details, see:"
- ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-DSP"
- else
- perl-module_src_test
- fi
-}
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2018-04-04 22:26 Sergei Trofimovich
0 siblings, 0 replies; 7+ messages in thread
From: Sergei Trofimovich @ 2018-04-04 22:26 UTC (permalink / raw
To: gentoo-commits
commit: 9b63e94ae17abd3dcd0bc8a66a1a30a4a3897f9e
Author: Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Wed Apr 4 17:43:15 2018 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Wed Apr 4 22:25:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b63e94a
dev-perl/Audio-DSP: stable 0.20.0-r2 for sparc
Bug: https://bugs.gentoo.org/652370
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="sparc"
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
index e8698879c3b..38bfa6e2f43 100644
--- a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
+++ b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Perl interface to *NIX digital audio device"
SLOT="0"
-KEYWORDS="amd64 ~sparc ~x86"
+KEYWORDS="amd64 sparc ~x86"
IUSE=""
src_test() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2018-04-04 14:25 Aaron Bauman
0 siblings, 0 replies; 7+ messages in thread
From: Aaron Bauman @ 2018-04-04 14:25 UTC (permalink / raw
To: gentoo-commits
commit: 520b1c3a4fddbc32b424644e806083b900cd3fdd
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 4 14:07:31 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Apr 4 14:24:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=520b1c3a
dev-perl/Audio-DSP: amd64 stable
Bug: https://bugs.gentoo.org/652370
Package-Manager: Portage-2.3.28, Repoman-2.3.9
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
index 568c4b995f1..e8698879c3b 100644
--- a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
+++ b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ inherit perl-module
DESCRIPTION="Perl interface to *NIX digital audio device"
SLOT="0"
-KEYWORDS="~amd64 ~sparc ~x86"
+KEYWORDS="amd64 ~sparc ~x86"
IUSE=""
src_test() {
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/
@ 2017-10-14 20:09 Kent Fredric
0 siblings, 0 replies; 7+ messages in thread
From: Kent Fredric @ 2017-10-14 20:09 UTC (permalink / raw
To: gentoo-commits
commit: 6dc94b689415442fe2e8761d464468bb1694a7a2
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 14 20:08:40 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sat Oct 14 20:08:54 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc94b68
dev-perl/Audio-DSP: Improve testing
- EAPI6
- Add some basic test coverage
- Fence known wonky tests
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild | 43 +++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
new file mode 100644
index 00000000000..568c4b995f1
--- /dev/null
+++ b/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=SETHJ
+DIST_VERSION=0.02
+inherit perl-module
+
+DESCRIPTION="Perl interface to *NIX digital audio device"
+
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+IUSE=""
+
+src_test() {
+ local MODULES=(
+ "Audio::DSP ${DIST_VERSION}"
+ )
+ local failed=()
+ for dep in "${MODULES[@]}"; do
+ ebegin "Compile testing ${dep}"
+ perl -Mblib="${S}" -M"${dep} ()" -e1
+ eend $? || failed+=( "$dep" )
+ done
+ if [[ ${failed[@]} ]]; then
+ echo
+ eerror "One or more modules failed compile:";
+ for dep in "${failed[@]}"; do
+ eerror " ${dep}"
+ done
+ die "Failing due to module compilation errors";
+ fi
+ if [[ "${AUDIO_DSP_HW_TEST:-0}" == 0 ]]; then
+ ewarn "Comprehensive testing of this module needs hardware access to dsp"
+ ewarn "devices. Set AUDIO_DSP_HW_TEST=1 in your environment if you want full"
+ ewarn "coverage"
+ ewarn "For details, see:"
+ ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-DSP"
+ else
+ perl-module_src_test
+ fi
+}
^ permalink raw reply related [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-06-25 4:45 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-03 0:07 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Audio-DSP/ Kent Fredric
-- strict thread matches above, loose matches on Subject: below --
2024-06-25 4:45 Sam James
2024-05-22 2:55 Sam James
2020-09-25 23:03 Kent Fredric
2018-04-04 22:26 Sergei Trofimovich
2018-04-04 14:25 Aaron Bauman
2017-10-14 20:09 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox