diff options
author | Marek Szuba <marecki@gentoo.org> | 2022-09-29 10:12:51 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2022-09-29 10:15:19 +0100 |
commit | 61e387ac34d5a7967f67c9a59bf62326b7147670 (patch) | |
tree | 008174988fa32ad52fcad8226bbd16d07f83998e /dev-python/jack-client/jack-client-0.5.4.ebuild | |
parent | net-misc/putty: drop 0.76, 0.77-r1 (diff) | |
download | gentoo-61e387ac34d5a7967f67c9a59bf62326b7147670.tar.gz gentoo-61e387ac34d5a7967f67c9a59bf62326b7147670.tar.bz2 gentoo-61e387ac34d5a7967f67c9a59bf62326b7147670.zip |
dev-python/jack-client: new package, add 0.5.4
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'dev-python/jack-client/jack-client-0.5.4.ebuild')
-rw-r--r-- | dev-python/jack-client/jack-client-0.5.4.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/dev-python/jack-client/jack-client-0.5.4.ebuild b/dev-python/jack-client/jack-client-0.5.4.ebuild new file mode 100644 index 000000000000..fa83c42b9dd9 --- /dev/null +++ b/dev-python/jack-client/jack-client-0.5.4.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..11} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 virtualx + +MY_PN="JACK-Client" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="JACK Audio Connection Kit client for Python" +HOMEPAGE=" + https://pypi.org/project/JACK-Client/ + https://github.com/spatialaudio/jackclient-python +" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +# Tests require disabling the sandbox, ALSA with at least one functioning +# PCM output device, and a very specific JACK server to even start (so far +# only media-sound/jack2[alsa] has worked for me). +RESTRICT="test" + +BDEPEND="dev-python/cffi[${PYTHON_USEDEP}]" +RDEPEND="${BDEPEND} + dev-python/numpy[${PYTHON_USEDEP}] + virtual/jack" + +S="${WORKDIR}"/${MY_P} + +# sphinx_last_updated_by_git not in the tree yet +#distutils_enable_sphinx doc dev-python/sphinx-last-updated-by-git +distutils_enable_tests pytest + +python_test() { + # virtx lets tests autolaunch dbus-daemon + virtx epytest +} |