rework/cleanup pulsectl-20.2.4

This commit is contained in:
Andreas Billmeier 2021-12-19 20:11:40 +01:00 committed by Andreas Billmeier
parent a12850434e
commit dcbcc6022e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 8 additions and 38 deletions

View File

@ -1,5 +1,3 @@
DIST pulsectl-20.2.4.tar.gz 39937 BLAKE2B 47d22c6f30f31ea7d36a93ed95d63e18f8078d5559a02b125c6e3ac2a7f2c4bdd0fa7acf49007a525bff29a3e78dd58f49a8b127330623f45e46f809ee18290c SHA512 afedaf39825d9bbd90906c918799d9bf2cac5e582e41422f220df07ca49974369cf32e99dcec8051a7d2fef953eee09024db88c86f675c251ab7c6b33f56b166
DIST pulsectl-20.4.3.tar.gz 39995 BLAKE2B c19cea77d239e41933992b9f8b8531e4448853495a130fe939d5fc68fe866581661ec30658ebe20eefa65fe18b468fab4558e3599922a57806a449b6a2cdbed7 SHA512 f486f6c1f63e184f04622f980cf6004ee812d49eeede1c99acc89bc6bfe9871d5d1497a2ab87b7ecfa47418b3bd6f7c54bf42e5b077be3e6591d7af6afc017a8
EBUILD pulsectl-20.2.4.ebuild 733 BLAKE2B 437ec533a320322e14ff290c82d2e9d8ebacc2d196b5c775ada8ddcc9cd13cb01601168f2b81d866ed1dda9199d76173e4b35c0a1504f61b3b6e26e4a9badaa3 SHA512 82edb5c1359900b0c5dcd4151095f7575c5fa69c61c9e774b27463c32e25f3797d3309bf29c67fda15658ae247ebb668589705b2de917d2ba36cadba0fac5502
EBUILD pulsectl-20.4.3.ebuild 733 BLAKE2B 437ec533a320322e14ff290c82d2e9d8ebacc2d196b5c775ada8ddcc9cd13cb01601168f2b81d866ed1dda9199d76173e4b35c0a1504f61b3b6e26e4a9badaa3 SHA512 82edb5c1359900b0c5dcd4151095f7575c5fa69c61c9e774b27463c32e25f3797d3309bf29c67fda15658ae247ebb668589705b2de917d2ba36cadba0fac5502
EBUILD pulsectl-20.2.4.ebuild 739 BLAKE2B c372b96d8bd74ffa7cc016ad9e038e75b8bd7e9213bce581e7d763eba716c8dc5ddc5cd068e13d904f2b02308c528b4a4cfa8e0b79635a842231218571fc6492 SHA512 2ecbb5e91b56fd1ec12047b46aac3b04ac3e96fb75073687b906741a8c8c2ae62898355aea48a19890ffc45ad87c4534617024b41d69228a0188a39637fff2ae
MISC metadata.xml 472 BLAKE2B 10edab4f46dccccef14831a9dffa806b9f2ac34cb997b4f96ec9698bc95c778825197d9cc78e94ccba7400d370854921dc2452a50ce9d0310307954a3106b019 SHA512 6b6e6702d3bbcecd224b9759837e88ffb58c0d550b28f36a708f3f59de82ff6ecf57774019f0c68467755413d13a981d83c784cee0a032a995c2310344d5a171

View File

@ -1,14 +1,14 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{6,7,8} )
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)"
HOMEPAGE="https://github.com/mk-fg/python-pulse-control https://pypi.org/project/pulsectl/"
HOMEPAGE="http://github.com/mk-fg/python-pulse-control https://pypi.org/project/pulsectl/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
@ -16,8 +16,10 @@ SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=""
DEPEND="${REDEPEND}
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]

View File

@ -1,30 +0,0 @@
# 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
DESCRIPTION="Python high-level interface and ctypes-based bindings for PulseAudio (libpulse)"
HOMEPAGE="https://github.com/mk-fg/python-pulse-control https://pypi.org/project/pulsectl/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}