dev-python/webrtcvad: new package, add 2.0.10

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-05-29 19:58:18 +02:00
committed by Andreas Billmeier
parent 8f44becbe4
commit abcaa13474
3 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
DIST webrtcvad-2.0.10.tar.gz 66156 BLAKE2B 7897903e66e1693ba780f4f4a821cab971206b6a1d6ff2d87d37164a3759f4cde249943e6defd1d548196bb057b726e2af715ad0594c45400735e4f4da27f014 SHA512 375c2161446dda62df7c8a81540b141663ada44f8b335338d1552dff97286d1f28e045a900a079ea42fb1fe11370252e014b31b140a44c7ae0a10bf8a4ac6333
EBUILD webrtcvad-2.0.10.ebuild 623 BLAKE2B 3199369c395ce4306632573ce9f840acc42cd6808e6709a5814c90c830b235c6d863c2ec6e79878cb38e6469b0803138e670d613882c8c46ed6fca42ba817dff SHA512 2a194da60228d6c47aa5d6505df3b80b2a26334cc85c0d6b7b815759b5f312808acd901ba208f8e1d4b1f8dd1d815b92993b1baf24b5185e4911e8a8a5e903f0
MISC metadata.xml 515 BLAKE2B a69137cc349630105f5b357055ab892e23d3705a43543c4aa0f4b7107972aba11387e6f0305852208c821f9d04e7ee9c5c7ea3b1ad7207ab195ba0fa42929303 SHA512 f8fe08c178213c94f632f4f76f0d848764991ac1dd1cea7f8268634cf98b907e589adb8d59f929627cace454a82a1915c5615a251db0ec01ca2ded2a646860cb

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">webrtcvad</remote-id>
<remote-id type="github">wiseman/py-webrtcvad</remote-id>
<maintainer status="unknown">
<email>jjwiseman@gmail.com</email>
<name>John Wiseman</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,30 @@
# 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 interface to the Google WebRTC Voice Activity Detector (VAD)"
HOMEPAGE="https://github.com/wiseman/py-webrtcvad https://pypi.org/project/webrtcvad/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest