dev-python/opuslib: new package, add 3.0.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-05-29 12:19:11 +02:00 committed by Andreas Billmeier
parent da8331cfbb
commit dfb1314062
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST opuslib-3.0.1.tar.gz 8550 BLAKE2B da757b559b5f8c4727d0d82f9e7fbba0d0adaf8968e0550de26f743d54b01357f2b5a73017a90c1316cda7ca380c7bcb7ccbbb37dd469b05f29ce1011374d548 SHA512 74a42403b584204064ae3b6cdcbb23a049479975f332f2a046e6f69a10f1b78bb7ed195c1a0b157006f68458e3370c4bcd57ae7e0f21a3bc50c9c76bc37a8340
EBUILD opuslib-3.0.1.ebuild 703 BLAKE2B 09b53231bcb4833e2056a4398c19312c3d3be0e171151e1ef2e196361a77db38853a25042bc892b200166dc6e2338627eec9e38f0ec77c2815e8113f13872772 SHA512 f52f4df018faceb2ae44f1d6451393e68a2e848dc63825137d27d5c933acdae665744cccacbfb98927e2b474223c3d3ff05b1277941e83123e35f0552055523d
MISC metadata.xml 509 BLAKE2B 6e43151cffb545e761bcb035b130a8d833c936ac14cfdd89eaa5a5fdd2bed5278b6c08f651e2342f0296abbebc94e4bf09f39cdb07fc4e54c6de8a58776342b7 SHA512 28b15ba7f9385b1249e845d6defcf5ea501e24d65c1e0d74464e124fda7a146bd396375e5b6ac141785a270ce4c9a75c3a319bb4f5af7f4439e3d82f47b3808d

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">opuslib</remote-id>
<remote-id type="github">onbeep/opuslib</remote-id>
<maintainer status="unknown">
<email>code@orionlabs.io</email>
<name>Orion Labs, Inc.</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,31 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Python bindings to the libopus, IETF low-delay audio codec"
HOMEPAGE="https://github.com/onbeep/opuslib https://pypi.org/project/opuslib/"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/coverage-4.4.1[${PYTHON_USEDEP}]
>=dev-python/nose-1.3.7[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest