dev-python/jack-client: bump to 0.5.5

Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2024-11-02 10:32:50 +01:00
parent 8792a9a7ed
commit 361621a7fb
2 changed files with 43 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST JACK-Client-0.5.4.tar.gz 48960 BLAKE2B 3130342714f0634abacc74c9aa4a7edac70087db82439197717c104e3b0cafc00916fc8d425b2b99c98df82d1c7a2c44a4df8021e84a2209301c19f5b1ae9d96 SHA512 bc75d1b58a10c855ab26fbb123ed6774f182a06501e6f31efffdd7c82d384761053dddd7af8315969f67421e4ba17bfc0b49f63f0454c8cc18b4b8385b928d26
DIST jack_client-0.5.5.tar.gz 46664 BLAKE2B cd04c15c3a1d73ce76b37c8fc4076c0c9ebbe4327249c833c785a2b0954592437724eaf8a5e65d3b54f999a8946ef73f5383071a99c92dddd941f957bbe57c49 SHA512 cfb1d85a4eda22ab4562e8e6554ffc40fcce853affb6a2b978777480f53473ea7adcb0e7afc6c1fc8094641e0af8357f7bd3821e7d338e435e3a897fabeb27b7

View File

@@ -0,0 +1,42 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..13} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYPI_PN="JACK-Client"
inherit distutils-r1 virtualx pypi
DESCRIPTION="JACK Audio Connection Kit client for Python"
HOMEPAGE="
https://pypi.org/project/JACK-Client/
https://github.com/spatialaudio/jackclient-python
"
SRC_URI="https://files.pythonhosted.org/packages/80/79/6af550e4fa3f5ff384e8114a1a18572627744b335956f0be06e4e0fc815a/jack_client-${PV}.tar.gz"
S="${WORKDIR}/jack_client-${PV}"
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"
# 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
}