diff options
author | Robert Siebeck <gentoo.2019@r123.de> | 2020-05-13 23:05:59 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-06-08 10:45:18 +0300 |
commit | 34eb7c3c3e12e841acf172d297ccb03c87115609 (patch) | |
tree | 2f0e82c657d18f3b1b9a316abd2edea7732e279d /dev-python/pyaudio | |
parent | dev-python/pyaudio: take maintainership (diff) | |
download | gentoo-34eb7c3c3e12e841acf172d297ccb03c87115609.tar.gz gentoo-34eb7c3c3e12e841acf172d297ccb03c87115609.tar.bz2 gentoo-34eb7c3c3e12e841acf172d297ccb03c87115609.zip |
dev-python/pyaudio: bump EAPI 7, use distutils to install docs
Signed-off-by: Robert Siebeck <gentoo.2019@r123.de>
Closes: https://github.com/gentoo/gentoo/pull/15782
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/pyaudio')
-rw-r--r-- | dev-python/pyaudio/pyaudio-0.2.11-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
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 000000000000..90922f58adea --- /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}" +} |