dev-python/pipdeptree: add 2.5.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-04 11:05:55 +01:00 committed by Andreas Billmeier
parent f6e97810ef
commit 6cee4c0cfc
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 37 additions and 8 deletions

View File

@ -573,11 +573,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 1808 Ebuilds in total, 1797 of them have in total 1802 (34 different) licenses assigned.
There are 1809 Ebuilds in total, 1798 of them have in total 1803 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1050|
|MIT|1051|
|Apache-2.0|398|
|GPL-3|112|
|BSD|94|

View File

@ -1,3 +1,5 @@
DIST pipdeptree-2.3.1.tar.gz 118803 BLAKE2B 4eb04bf604d5bd3808a823240c90ebad93014cfe6c83780e690e027b98a3ec82f68c6a9232700619dbc293ce3adc4d38a3d75a91e811c648daf64bdbf88e86f5 SHA512 49e985eef4ead32034b6f72d629faba7e2cdad806eba692a82e816d7289f6ac1be7f3f8d719c72fd24e2e38ffd79450a4f0827e569b0ceab0dd38741a6937030
DIST pipdeptree-2.5.0.tar.gz 120182 BLAKE2B 2328b71b1ab6e82a83edc501440fd4c85600fcfec2a20b1ea86bc60c9d85464a83ba1f99c49f22275b677686ec921fa3d8edf13a9817ef03ca87254c122b7754 SHA512 7ecd144335a02e586128979e528501af2a61baa5b9016c680b0d6735a34ba7a372c3183a5282e565c363a1aae2f782d1a164e2f372af28533eb6eb30460954a7
EBUILD pipdeptree-2.3.1.ebuild 697 BLAKE2B 94ec3c95bf27e623440d38c2489397688066c3768d26b4fed1d4f0d410e845ee3dd3e8c87eaf27ec6327073dc1bcaeb8f4e3409885614f1990875f46f79c11ef SHA512 c111cdc3f58835f19170ba1e5e08ad1250a8a954305ef71a5b624dc926ea07824755e12bb7602d52725492e18fb522f41e423187bb4a0a02fdb809a24e0e02ae
MISC metadata.xml 639 BLAKE2B 7c0b3f3a1115330ecd3b9e4bc78453ff64c9b5581ed0fe92b2201022997680a2c781a8f0f2e5ac90ad7f519e1ed6eae0a49d92b5c8591546a894e9cd630c8c5f SHA512 afdbf15370910269999a93cfdc71320866cbf6e548775e0fba936e701f0bb18217fcf9732644e732a5d74e5bc8d47e7fb0ec8be72aa964a7a62b41cd106167ea
EBUILD pipdeptree-2.5.0.ebuild 655 BLAKE2B f29823f25d5943e74e5d4f472563cf6d95a680ceac8fe446e80d4ef02368586893e47c9ab404dd94d4daa4948e1fe5f46f887043eaf23a558e0a05ef5afc6c86 SHA512 e4c228b8a6c0b4f6898176f4cfcf52e1dd8fd230b2962c407007870488b176aa1ea93f1ebd89f37f34fe2ffd8befad1d32c7fd31e7905a736d4ad08e599d808c
MISC metadata.xml 519 BLAKE2B b2fa8cd6122ddf32893b33aa574bca14b8909eee2e1ee04d2ac9e059eee36012988f2a8d150776a2e39e37ac7831bf7203e73263485059dfdc846215d6cace7a SHA512 fb7f3a441e2fd2aa1f6d08815b53ab2d7cb0b5a8e4d447a7f80d1973d9012a180cb9f6b0513853b26919dba563314a132a0e9300ed9df0ff445bb0904b2772be

View File

@ -9,12 +9,8 @@
<remote-id type="pypi">pipdeptree</remote-id>
<remote-id type="github">tox-dev/pipdeptree</remote-id>
<maintainer status="unknown">
<name>Bernat Gabor</name>
<email>gaborjbernat@gmail.com</email>
</maintainer>
<maintainer status="unknown">
<name>Vineet Naik</name>
<email>naikvin@gmail.com</email>
<name>Bernát Gábor</name>
</maintainer>
</upstream>
</pkgmetadata>

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_{9..11} )
DISTUTILS_USE_PEP517=hatchling
inherit distutils-r1
DESCRIPTION="Command line utility to show dependency tree of packages."
HOMEPAGE="https://github.com/tox-dev/pipdeptree https://pypi.org/project/pipdeptree/"
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