add opencv-python-headless-4.6.0.66

This commit is contained in:
Andreas Billmeier 2022-08-06 14:12:39 +02:00 committed by Andreas Billmeier
parent 68c47e260a
commit 7bbd10321d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 53 additions and 3 deletions

View File

@ -523,12 +523,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 1824 Ebuilds in total, 1817 of them have in total 1828 (35 different) licenses assigned.
There are 1826 Ebuilds in total, 1819 of them have in total 1830 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1106|
|Apache-2.0|334|
|MIT|1107|
|Apache-2.0|335|
|GPL-3|109|
|BSD|103|
|LGPL-3|30|

View File

@ -0,0 +1,3 @@
DIST opencv-python-headless-4.6.0.66.tar.gz 90314831 BLAKE2B 9dc61fbf66f5bb7fc67408057ff1fe4da2fbd2c3919c01df22181e6214b2398e06299b8b98e76b42c9703ebe50be19de0c2ebb43aff84e7e071c6d81f6e122da SHA512 5a9350fabf82206b629293e67a77dcc5b59198ba4e58d18c8e70bf3943eac916c4e874395aeaa1eb6ed86bbadb0353845f2ea77e9f0299c1ca0502032ed68871
EBUILD opencv-python-headless-4.6.0.66.ebuild 818 BLAKE2B 21060bb6ece49646b473cb7890d4d810cb36e950871f07d8978756d88678f4ed7eef70689a2eeb0ffe1ae5dcb665350cdefa75695bdb8756f7b3123451c1289a SHA512 988b339288b5cad947a5eefe547d6bebe3b9da94477fa323d02585d47e248aeb328543681a44d1bb0c7d5c149c3e321efc40c0452257d11622486c39a405431d
MISC metadata.xml 341 BLAKE2B 58ae74f1ce91641f9366340161b01ccdfca5c2e6055373f5edb7514f2339b9cd216c3b5a768e9a60dfcc85acc0fe1546f2b9a85096f44781daf02b04f286a264 SHA512 86fe21d7cfcc43ed98b14a80fc1bad0955d3e949b5d4c65ee175698b3a984a3b54bda6c4cc7004867e2c7dd471cacda449dcd736ccf8632e3c152e1022e67495

View File

@ -0,0 +1,11 @@
<?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">opencv-python-headless</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
DESCRIPTION="Wrapper package for OpenCV python bindings."
HOMEPAGE="https://github.com/skvark/opencv-python https://pypi.org/project/opencv-python-headless/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/scikit-build[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest