summaryrefslogtreecommitdiff
path: root/dev-python/pyaudio
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-09-12 18:32:26 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-09-12 18:32:26 +0000
commitde4e04b1ce59cb1d74ba06c2aca9490d360374fb (patch)
treebca3f8bd8b95a7d5a07cf13c90eecd53be1ef2e2 /dev-python/pyaudio
parentd45b89add06a889123b9f8562503f789a2dec421 (diff)
downloadbaldeagleos-repo-de4e04b1ce59cb1d74ba06c2aca9490d360374fb.tar.gz
baldeagleos-repo-de4e04b1ce59cb1d74ba06c2aca9490d360374fb.tar.xz
baldeagleos-repo-de4e04b1ce59cb1d74ba06c2aca9490d360374fb.zip
Adding metadata
Diffstat (limited to 'dev-python/pyaudio')
-rw-r--r--dev-python/pyaudio/pyaudio-0.2.13.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/dev-python/pyaudio/pyaudio-0.2.13.ebuild b/dev-python/pyaudio/pyaudio-0.2.13.ebuild
deleted file mode 100644
index d13ed1878028..000000000000
--- a/dev-python/pyaudio/pyaudio-0.2.13.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8,9,10,11} )
-PYPI_NO_NORMALIZE=1
-PYPI_PN="PyAudio"
-inherit distutils-r1 pypi
-
-DESCRIPTION="Python bindings for PortAudio"
-HOMEPAGE="http://people.csail.mit.edu/hubert/pyaudio/"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-# Tests work if you have the correct HW device(s) to test. 0.2.11-r1.
-RESTRICT="test"
-
-RDEPEND="media-libs/portaudio"
-DEPEND="${RDEPEND}"
-BDEPEND="test? ( dev-python/numpy[${PYTHON_USEDEP}] )"
-
-distutils_enable_sphinx sphinx
-distutils_enable_tests unittest
-
-python_test() {
- elog "These tests require an OS loopback sound device that forwards audio"
- elog "output, generated by PyAudio for playback, and forwards it to an input"
- elog "device, which PyAudio can record and verify against a test signal."
-
- cd tests || die
- # pyaudio_tests have very complicated runtime requirements, therefore skipping them.
- "${EPYTHON}" -m unittest error_tests -v || die "Tests fail with ${EPYTHON}"
-}