Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyaudio/
Date: Wed, 03 Aug 2022 09:10:58
Message-Id: 1659517369.433e08706715ee9f82fdf8e176911bbbc5146767.mgorny@gentoo
1 commit: 433e08706715ee9f82fdf8e176911bbbc5146767
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 3 09:02:49 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 3 09:02:49 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433e0870
7
8 dev-python/pyaudio: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild | 39 -----------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild b/dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild
16 deleted file mode 100644
17 index 2af98eb2c323..000000000000
18 --- a/dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2021 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -MY_PN="PyAudio"
30 -
31 -DESCRIPTION="Python bindings for PortAudio"
32 -HOMEPAGE="http://people.csail.mit.edu/hubert/pyaudio/"
33 -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
34 -S="${WORKDIR}/${MY_PN}-${PV}"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS="amd64 x86"
39 -
40 -# Tests work if you have the correct HW device(s) to test. 0.2.11-r1.
41 -RESTRICT="test"
42 -
43 -RDEPEND="media-libs/portaudio"
44 -DEPEND="${RDEPEND}
45 - test? ( dev-python/numpy )"
46 -
47 -distutils_enable_sphinx sphinx
48 -distutils_enable_tests unittest
49 -
50 -python_test() {
51 - elog "These tests require an OS loopback sound device that forwards audio"
52 - elog "output, generated by PyAudio for playback, and forwards it to an input"
53 - elog "device, which PyAudio can record and verify against a test signal."
54 -
55 - cd tests || die
56 - # pyaudio_tests have very complicated runtime requirements, therefore skipping them.
57 - "${EPYTHON}" -m unittest error_tests -v ||
58 - die "Tests fail with ${EPYTHON}"
59 -}