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-DSP/
Date: Fri, 25 Sep 2020 23:03:27
Message-Id: 1601074936.4cd53d2a817fa80a6aad45f3c598524d8243c0ea.kentnl@gentoo
1 commit: 4cd53d2a817fa80a6aad45f3c598524d8243c0ea
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 25 22:47:01 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 25 23:02:16 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cd53d2a
7
8 dev-perl/Audio-DSP: Cleanup old 0.20.0-r2
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
12
13 dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild | 43 ---------------------------
14 1 file changed, 43 deletions(-)
15
16 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
17 deleted file mode 100644
18 index 38bfa6e2f43..00000000000
19 --- a/dev-perl/Audio-DSP/Audio-DSP-0.20.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -DIST_AUTHOR=SETHJ
28 -DIST_VERSION=0.02
29 -inherit perl-module
30 -
31 -DESCRIPTION="Perl interface to *NIX digital audio device"
32 -
33 -SLOT="0"
34 -KEYWORDS="amd64 sparc ~x86"
35 -IUSE=""
36 -
37 -src_test() {
38 - local MODULES=(
39 - "Audio::DSP ${DIST_VERSION}"
40 - )
41 - local failed=()
42 - for dep in "${MODULES[@]}"; do
43 - ebegin "Compile testing ${dep}"
44 - perl -Mblib="${S}" -M"${dep} ()" -e1
45 - eend $? || failed+=( "$dep" )
46 - done
47 - if [[ ${failed[@]} ]]; then
48 - echo
49 - eerror "One or more modules failed compile:";
50 - for dep in "${failed[@]}"; do
51 - eerror " ${dep}"
52 - done
53 - die "Failing due to module compilation errors";
54 - fi
55 - if [[ "${AUDIO_DSP_HW_TEST:-0}" == 0 ]]; then
56 - ewarn "Comprehensive testing of this module needs hardware access to dsp"
57 - ewarn "devices. Set AUDIO_DSP_HW_TEST=1 in your environment if you want full"
58 - ewarn "coverage"
59 - ewarn "For details, see:"
60 - ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-DSP"
61 - else
62 - perl-module_src_test
63 - fi
64 -}