dev-python/imutils: new package, add 0.5.4

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-22 11:38:22 +02:00 committed by Andreas Billmeier
parent 451d748321
commit fe84ea527d
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 52 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
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 1826 Ebuilds in total, 1815 of them have in total 1832 (40 different) licenses assigned.
There are 1828 Ebuilds in total, 1817 of them have in total 1834 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1065|
|MIT|1067|
|Apache-2.0|377|
|GPL-3|116|
|BSD|102|

View File

@ -0,0 +1,3 @@
DIST imutils-0.5.4.tar.gz 17240 BLAKE2B 5ef3b9c8f05dcccd4fd24cdd726004d4e943ffcdb828cd591d96e8f22dd5faa0a3a4813614b2de41226472f4f26fd8ba2286966f1c69a34477f6bf4d3c8df98b SHA512 50f9b43842cac55055a94d277fea958b8593bbc9b249878cc7e545368220667cb853d059c9ea412d034220c240343fe5e009e407554a10da958822d6e7e30728
EBUILD imutils-0.5.4.ebuild 865 BLAKE2B 279ed19bec610c67eee736bdbda231545586b1449e00e16c1fd583a171a129a189e877cf6de432d7149de2d1e8d831fea469da4362d03fdfe0d8b7cf332c4c67 SHA512 6691b26ef02afd178019a27cb32dc9a5f7a48828fd60cecb6456534b208129eed3cbe53a643bb33b041cd278346c47a49c02832f79da6a43532e46f16a7ef9e8
MISC metadata.xml 518 BLAKE2B e133cf646003d7180757295004fd255a426c2ca797eadeaaccbe25c136fc16d5643c95544be6c93d30eaa99341790ee20869b9f96b74135d4103644e13026153 SHA512 db0b7ca6db80fd2c6cc3d0fa74312ce835a72250b30a179da31c382f4ae11c3a48e10110391ee7bfdc739ccef54f60a6a2feb3239ca06b76b4c7132a7abcbf54

View File

@ -0,0 +1,31 @@
# 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="A series of convenience functions to make basic image processing functions such as translation, rotation, resizing, skeletonization, displaying Matplotlib images, sorting contours, detecting edges, and much more easier with OpenCV and both Python 2.7 and Python 3."
HOMEPAGE="https://github.com/jrosebr1/imutils https://pypi.org/project/imutils/"
#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"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

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">imutils</remote-id>
<remote-id type="github">jrosebr1/imutils</remote-id>
<maintainer status="unknown">
<email>adrian@pyimagesearch.com</email>
<name>Adrian Rosebrock</name>
</maintainer>
</upstream>
</pkgmetadata>