blob: 90922f58adea6df04bf750160d291c689dc5f34a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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}"
}
|