dev-python/face-recognition: add 1.2.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-22 11:59:52 +02:00 committed by Andreas Billmeier
parent 083117a28d
commit 5a89585029
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 57 additions and 2 deletions

View File

@ -576,11 +576,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses ## 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. 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 1828 Ebuilds in total, 1817 of them have in total 1834 (40 different) licenses assigned. There are 1829 Ebuilds in total, 1818 of them have in total 1835 (40 different) licenses assigned.
|License| Ebuilds using it| |License| Ebuilds using it|
|-------|-----| |-------|-----|
|MIT|1067| |MIT|1068|
|Apache-2.0|377| |Apache-2.0|377|
|GPL-3|116| |GPL-3|116|
|BSD|102| |BSD|102|

View File

@ -0,0 +1,3 @@
DIST face_recognition-1.2.3.tar.gz 3180502 BLAKE2B 00c4f6ae9559c68f8b3f4e76557417712bab27c9d0599f67a306fd307ea5d81c00ef329859240944fab67a4732ff23fff56a69cfcbc02f78b457e1d0449ef34b SHA512 e4dce03138da4f81976586210907da0a8430dca12d5b7b3a464d63c6872afa63442f2a9e64a43dccdfa6efa2ebd6a2e0e38dc99db472d4d4962b3dd264235075
EBUILD face-recognition-1.2.3.ebuild 848 BLAKE2B 68c5865667c178997d56a23cc55ab0c0459acbef51aa0183c6b592fbddf42d8e7220b9a0e9be6fcc684fc63fea3cfa721b53a640377eda399e8f683669ae1f86 SHA512 a3f22b8cd5417d576ce520964025cdc70a04e01941d8a234fd2221b39db4ab3ff66f90808eb26f4cbc17ce917b56c904e6de4d9c7003368dcbe7ea401cde07e1
MISC metadata.xml 584 BLAKE2B 2a8aac4f7065ca0a2ee2fa51f282491cafdb9e139a74a8b201615693a044b59bb8a0d9617f35eebc88f2c0da60bee455d3ebedef4f5cd66912488c34303a6434 SHA512 1058bda831d16c484c90bade8745b0ac721c986649eb2326088b32fdec9ece5719b6b5960efef9a03b076224719d848a6a001d3f049fb5f6fff47b41ce33f548

View File

@ -0,0 +1,35 @@
# 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="Recognize faces from Python or from the command line"
HOMEPAGE="https://github.com/ageitgey/face_recognition https://pypi.org/project/face-recognition/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/face_recognition_models-0.3.0[${PYTHON_USEDEP}]
>=dev-python/click-6.0[${PYTHON_USEDEP}]
>=dev-python/dlib-19.7[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -0,0 +1,17 @@
<?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">face-recognition</remote-id>
<remote-id type="github">ageitgey/face_recognition</remote-id>
<doc>https://pythonhosted.org/face-recognition/</doc>
<maintainer status="unknown">
<email>ageitgey@gmail.com</email>
<name>Adam Geitgey</name>
</maintainer>
</upstream>
</pkgmetadata>