Merge branch 'oo-stef-issue4122', pymicro-vad-1.0.1-r1
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
commit
7c3cf86eca
@ -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 2333 Ebuilds in total, 2319 of them have in total 2356 (43 different) licenses assigned.
|
||||
There are 2332 Ebuilds in total, 2318 of them have in total 2357 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1324|
|
||||
|Apache-2.0|550|
|
||||
|Apache-2.0|551|
|
||||
|GPL-3|145|
|
||||
|BSD|123|
|
||||
|GPL-2|26|
|
||||
|
@ -1,4 +1,3 @@
|
||||
DIST pymicro-vad-1.0.1.gh.tar.gz 756636 BLAKE2B c473efafe5baaa45ef4d34f5643eaf9bde99a87a41863dbce6e5a3ad0b06819688d3269d6bcb69e5069acec3fc38699a6cd36251639ed07c7fa1df06bbb89e4e SHA512 432602c6b5f592563214400799ac897b3ee393b42bd973e7d7fe0d0c9abbc67258034a36b4a3c5a973223f04c43ded73c0ff8f730dc5cae65e898c8b1fa6d832
|
||||
EBUILD pymicro-vad-1.0.1-r1.ebuild 646 BLAKE2B 68a672bd7db219fb92f2218ba43292d589f8802de7f9a333e38e02e2cf0e7b0ce841548549ad544b570270309b271ed3ddb07b568f6715591054ef3515cbd226 SHA512 109cb1d9a1559c6d6b2d1d52ed707924f2c7c4a1a78d1e72778a0154d1032ef7d690a240efafb7507851a61484fa71f87287fb6ea6d64c7d75b004afef206762
|
||||
EBUILD pymicro-vad-1.0.1.ebuild 564 BLAKE2B 1853c96c93a5baaf14fd5f098dee548908a5fe64eb0aeb14cec8bef97600f62c7b70943264726d033b2d11ed0555c0f00b1fce67f41fff57216b8ba8ad4e5a7f SHA512 68d98d3c93dbad687e9e1f60b8a8b74d7756fea932d5be496458eb08435a8410859195f13c5d7a2f6301e7f1f8f5c08295dc8e104b36b4aa343d0cfc66c746d1
|
||||
EBUILD pymicro-vad-1.0.1-r1.ebuild 641 BLAKE2B 7b9e30bb453c56642d829c82522df271405d0e1ea348250c66d26e64187476a8433a6820a731b439c2cf991030c101f83a5ccfdf1333b0e81dc84219bb24070f SHA512 9d404d4ba6698e0454f9946771d67b52af1ca274a4e6ff2c8edc74eb0e489e39f6eb7ba99fcc74fd5b95f77ac6f5287f6ba9f82f1f7c5f3fde30ca651c4c3db5
|
||||
MISC metadata.xml 515 BLAKE2B d557f276b9101d58fe06e023d995f00761880012ab2222b8c55d8b5bb41ca09ad4f384fedb3c697b60e6683a5fbe52b294021d19146318ec188406cb8a23fa9b SHA512 371cb04beca031a1b71cab06b3c7fd8a314fc75aeda6d1f4cf7a56b8aeb9d7c0df45fff6d58748a6c290ad5a5193c237a051e89ce92d053f0f797097bd101cdf
|
||||
|
@ -1,4 +1,4 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
@ -12,15 +12,15 @@ DESCRIPTION="Self-contained voice activity detector"
|
||||
HOMEPAGE="https://github.com/rhasspy/pymicro-vad"
|
||||
SRC_URI="https://github.com/rhasspy/pymicro-vad/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="Apache"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="
|
||||
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||
"
|
||||
dev-python/pybind11[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
|
@ -1,24 +0,0 @@
|
||||
# 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"
|
||||
SRC_URI="https://github.com/rhasspy/pymicro-vad/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="Apache"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
echo ${P}
|
||||
mv ${P} pymicro_vad-${PV}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user