diff --git a/README.md b/README.md index f72eed67a..1da7096c6 100644 --- a/README.md +++ b/README.md @@ -606,12 +606,12 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E ## Licenses This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted. -There are 1975 Ebuilds in total, 1964 of them have in total 1988 (42 different) licenses assigned. +There are 1975 Ebuilds in total, 1964 of them have in total 1989 (42 different) licenses assigned. |License| Ebuilds using it| |-------|-----| |MIT|1142| -|Apache-2.0|439| +|Apache-2.0|440| |GPL-3|115| |BSD|112| |LGPL-3|25| diff --git a/dev-python/pymicro-vad/Manifest b/dev-python/pymicro-vad/Manifest new file mode 100644 index 000000000..8ba3c266e --- /dev/null +++ b/dev-python/pymicro-vad/Manifest @@ -0,0 +1,3 @@ +DIST pymicro_vad-1.0.1.tar.gz 135575 BLAKE2B 12e560d4379507cf96f5a8b79c61bff4b10d20e7fb59a7326be954eddaf3f8830f1ea8d6bc710cf6b951d325a0a40762fee5d2b368c5ded6bec7cc44d2d02fc8 SHA512 336e4b772b43d0973b8f3a68ad64ba2b4c64a1bdcf210b5d25518c54a7f8c11c7b03c0dc8fa5b668cef31e9011dfb573ccca178a6845404bc6fe04fc18633f7d +EBUILD pymicro-vad-1.0.1.ebuild 498 BLAKE2B 4724311056a37ff700928fe8f9187b05f027a3446953e07eac55a50615013681b33039c9c9894e9b9a2ba5d5bda0f3278f10b4622fd8588b891878654788a2d2 SHA512 408d6f6237ce89c06eea2bf16030361840403fe3dcafa45c8e714bb8f8916922395cef31f1b1d0bd60c0e499b7b1cdf56181b7c76569e772f9475a03a0148e01 +MISC metadata.xml 515 BLAKE2B d557f276b9101d58fe06e023d995f00761880012ab2222b8c55d8b5bb41ca09ad4f384fedb3c697b60e6683a5fbe52b294021d19146318ec188406cb8a23fa9b SHA512 371cb04beca031a1b71cab06b3c7fd8a314fc75aeda6d1f4cf7a56b8aeb9d7c0df45fff6d58748a6c290ad5a5193c237a051e89ce92d053f0f797097bd101cdf diff --git a/dev-python/pymicro-vad/metadata.xml b/dev-python/pymicro-vad/metadata.xml new file mode 100644 index 000000000..f65290de2 --- /dev/null +++ b/dev-python/pymicro-vad/metadata.xml @@ -0,0 +1,16 @@ + + + + + b@edevau.net + Andreas Billmeier + + + pymicro-vad + rhasspy/pymicro-vad + + mike@rhasspy.org + Michael Hansen + + + diff --git a/dev-python/pymicro-vad/pymicro-vad-1.0.1.ebuild b/dev-python/pymicro-vad/pymicro-vad-1.0.1.ebuild new file mode 100644 index 000000000..127decef6 --- /dev/null +++ b/dev-python/pymicro-vad/pymicro-vad-1.0.1.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 pypi + +DESCRIPTION="Self-contained voice activity detector" +HOMEPAGE="https://github.com/rhasspy/pymicro-vad https://pypi.org/project/pymicro-vad/" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +distutils_enable_tests pytest