commit:     34eb7c3c3e12e841acf172d297ccb03c87115609
Author:     Robert Siebeck <gentoo.2019 <AT> r123 <DOT> de>
AuthorDate: Wed May 13 21:05:59 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon Jun  8 07:45:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34eb7c3c

dev-python/pyaudio: bump EAPI 7, use distutils to install docs

Signed-off-by: Robert Siebeck <gentoo.2019 <AT> r123.de>
Closes: https://github.com/gentoo/gentoo/pull/15782
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild | 33 +++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild 
b/dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild
new file mode 100644
index 00000000000..90922f58ade
--- /dev/null
+++ b/dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+inherit distutils-r1
+
+MY_PN="PyAudio"
+
+DESCRIPTION="Python bindings for PortAudio"
+HOMEPAGE="http://people.csail.mit.edu/hubert/pyaudio/";
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND="media-libs/portaudio"
+DEPEND="${RDEPEND}
+       test? ( dev-python/numpy )"
+
+distutils_enable_sphinx sphinx
+distutils_enable_tests unittest
+
+python_test() {
+       cd tests || die
+       # pyaudio_tests have very complicated runtime requirements, therefore 
skipping them.
+       "${EPYTHON}" -m unittest error_tests -v ||
+               die "Tests fail with ${EPYTHON}"
+}

Reply via email to