summaryrefslogtreecommitdiff
path: root/dev-python/pulsectl-asyncio
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-25 03:04:45 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-25 03:04:45 -0500
commita2d754850b88dddfc90152e4eaf858d6907b5201 (patch)
treee987342a645cd8d7bce252c8e897fcc8f1abd79b /dev-python/pulsectl-asyncio
parent719f5679cb7b1141529b574349239e0640bae1ca (diff)
downloadbaldeagleos-repo-a2d754850b88dddfc90152e4eaf858d6907b5201.tar.gz
baldeagleos-repo-a2d754850b88dddfc90152e4eaf858d6907b5201.tar.xz
baldeagleos-repo-a2d754850b88dddfc90152e4eaf858d6907b5201.zip
Adding metadata
Diffstat (limited to 'dev-python/pulsectl-asyncio')
-rw-r--r--dev-python/pulsectl-asyncio/Manifest1
-rw-r--r--dev-python/pulsectl-asyncio/pulsectl-asyncio-1.3.1.ebuild42
2 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/pulsectl-asyncio/Manifest b/dev-python/pulsectl-asyncio/Manifest
index c59d17efb319..de243e8dc60f 100644
--- a/dev-python/pulsectl-asyncio/Manifest
+++ b/dev-python/pulsectl-asyncio/Manifest
@@ -1,2 +1,3 @@
DIST pulsectl-asyncio-1.2.2.gh.tar.gz 19528 BLAKE2B 8b4ccf8a1509fddff19cf201dc9ff4cbf03aedc2ab47c6f4920f95072706051a0a9ab3704e4a4650be8ebce67682bff28d8dacdfac272c36019810eea358f01f SHA512 ccaa7ae14fd2ca7e9d6483efcb3d48f8364ed87ab99c700323c2f2d803986408394ae0fe83880d4d77b77daf17dfb58c6e9f94043a9b03ad643bff2e909a673a
DIST pulsectl-asyncio-1.3.0.gh.tar.gz 19393 BLAKE2B ebd07bb9335f3eb15a4dbe86f1c7cf5a357fd1354145a955adc1f74ebc813b697fd1033da3332b91d52ac4409dc3cdaf62ad2655e3c654fd639cf4f75eefbae6 SHA512 7f8997c855ca7f9b011950d471d37c3e45c011902c38bb094045e30056f5e21a19a1f423d8d3a3682e03dbb20318c877be6973ac7edeb35f8aed6fe7e49047df
+DIST pulsectl-asyncio-1.3.1.gh.tar.gz 19460 BLAKE2B f0b9f91da906a61ee6bb4f90afbd20cee4ca35330ce73d0787861dee7041ad0e27ef29a324e2dab2f1de9e5918eb81c7898b1cf319eb378d77cbd5c516026994 SHA512 9cb05612f150f6b041d41c0e9deb8d97680fbf2bc2fadc790d670b3801b23cc3f556fd73d5d62c0f9071a1d3cfdafe6a505301171dda512e7ba2162a52b96045
diff --git a/dev-python/pulsectl-asyncio/pulsectl-asyncio-1.3.1.ebuild b/dev-python/pulsectl-asyncio/pulsectl-asyncio-1.3.1.ebuild
new file mode 100644
index 000000000000..860363af38fa
--- /dev/null
+++ b/dev-python/pulsectl-asyncio/pulsectl-asyncio-1.3.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 2023-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{13..14} )
+
+inherit distutils-r1
+
+DESCRIPTION="Asyncio frontend for pulsectl, Python bindings of libpulse"
+HOMEPAGE="
+ https://github.com/mhthies/pulsectl-asyncio/
+ https://pypi.org/project/pulsectl-asyncio/
+"
+# sdist is missing examples that are used in tests
+SRC_URI="
+ https://github.com/mhthies/pulsectl-asyncio/archive/v${PV}.tar.gz
+ -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+RDEPEND="
+ >=dev-python/pulsectl-23.5.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ test? (
+ media-sound/pulseaudio-daemon
+ )
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+src_prepare() {
+ # unpin deps
+ sed -i -e 's:,<=[0-9.]*::' pyproject.toml || die
+ distutils-r1_src_prepare
+}