add pipdeptree-1.0.0

This commit is contained in:
Andreas Billmeier 2020-09-19 19:41:00 +02:00 committed by Andreas Billmeier
parent 3463197212
commit 19ee4ed7b7
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 51 additions and 0 deletions

View File

@ -17,6 +17,7 @@
* update homeassistant-9999.off (to have the new USE flags)
* rework tests for homeassistant core:
- bump pre-commit-2.7.1
- add pipdeptree-1.0.0
2020-09-18 homeassistant-0.115.0
* Py3.8 flagged: atenpdu, baidu-aip, bizkaibus, blinkt, brottsplatskartan, pydroid-ipcam

View File

@ -0,0 +1,3 @@
DIST pipdeptree-1.0.0.tar.gz 13842 BLAKE2B 39814b8e3005b5e3c50c56af647619de9d1cd2e1e733e64477e1f36d584f3cd61cd362af168174ce300a84085a6739541ac1854b16e00d21f7928d8f10ec6e94 SHA512 1d1d936b9de734b8991d68fd0232550aec0cdfe873ea1c22764f70a06e1d34890eb4b62eb72664824ec63548b9098bb230451578f719fc7bd08745098e530700
EBUILD pipdeptree-1.0.0.ebuild 760 BLAKE2B ce73c5d450cadef5fe4ce2c7c80695c4555e342359c544ebbb752c42db67db18f99a6f134a8556399c1a35104cde7cd613139510567355c3ee9aaceb8be0fce1 SHA512 a316730c61a576dcf77fd1360debd37d5cab167e03e30b70a0ad0dc71dfb188f6ca58149fceadaa5599b8aca649ca0a2fad7e4ac864bc6bd410e7027e8796b61
MISC metadata.xml 451 BLAKE2B ddb8fcd7ad736ff4e6578429385a52a4416ae047ddb0426ce46c9e7ea52ac7a02bb950133bd28a11f0fed6463d546e55a9a5777baa6dc51dbddc8ff16958dcf2 SHA512 d320342f6cc551df3c329bbd8ff720dfc3d8e0b28b666956075d573b45ed5766ffa194c9f87904db2d87f2018a32809ed3d94dceb20f6d08c73fb37ba50d431b

View File

@ -0,0 +1,15 @@
<?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">pipdeptree</remote-id>
<maintainer status="unknown">
<email>naikvin@gmail.com</email>
<name>Vineet Naik</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="Command line utility to show dependency tree of packages"
HOMEPAGE="https://github.com/naiquevin/pipdeptree https://pypi.org/project/pipdeptree/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
DOCS="README.rst"
RDEPEND=">=dev-python/pip-6.0.0[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
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
}