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-Mixer/
Date: Mon, 28 Sep 2020 14:11:46
Message-Id: 1601302275.ccd6373c2e7a1076e551e4c6d5d947356d0a75b4.kentnl@gentoo
1 commit: ccd6373c2e7a1076e551e4c6d5d947356d0a75b4
2 Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 28 14:08:54 2020 +0000
4 Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 14:11:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccd6373c
7
8 dev-perl/Audio-Mixer: Cleanup old 0.700.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-Mixer/Audio-Mixer-0.700.0-r2.ebuild | 50 ----------------------
14 1 file changed, 50 deletions(-)
15
16 diff --git a/dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild b/dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild
17 deleted file mode 100644
18 index 3beb5e073d4..00000000000
19 --- a/dev-perl/Audio-Mixer/Audio-Mixer-0.700.0-r2.ebuild
20 +++ /dev/null
21 @@ -1,50 +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=SERGEY
28 -DIST_VERSION=0.7
29 -DIST_EXAMPLES=("eg/*")
30 -inherit perl-module
31 -
32 -DESCRIPTION="Perl extension for Sound Mixer control"
33 -
34 -SLOT="0"
35 -KEYWORDS="amd64 ~ia64 ~ppc sparc x86"
36 -IUSE=""
37 -
38 -PATCHES=(
39 - "${FILESDIR}/${P}-volumepl.patch"
40 - "${FILESDIR}/${P}-clang.patch"
41 - "${FILESDIR}/${P}-testsuite.patch"
42 -)
43 -
44 -src_test() {
45 - local MODULES=(
46 - "Audio::Mixer ${DIST_VERSION}"
47 - )
48 - local failed=()
49 - for dep in "${MODULES[@]}"; do
50 - ebegin "Compile testing ${dep}"
51 - perl -Mblib="${S}" -M"${dep} ()" -e1
52 - eend $? || failed+=( "$dep" )
53 - done
54 - if [[ ${failed[@]} ]]; then
55 - echo
56 - eerror "One or more modules failed compile:";
57 - for dep in "${failed[@]}"; do
58 - eerror " ${dep}"
59 - done
60 - die "Failing due to module compilation errors";
61 - fi
62 - if [[ "${AUDIO_MIXER_HW_TEST:-0}" == 0 ]]; then
63 - ewarn "Comprehensive testing of this module needs hardware access to mixing"
64 - ewarn "devices. Set AUDIO_MIXER_HW_TEST=1 in your environment if you want full"
65 - ewarn "coverage"
66 - ewarn "For details, see:"
67 - ewarn "https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/dev-perl/Audio-Mixer"
68 - else
69 - perl-module_src_test
70 - fi
71 -}