diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-03-02 07:21:27 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-03-02 07:43:22 +0100 |
commit | 5c2b390cd053e2d93592c4b96d9cec55e4ae2c2a (patch) | |
tree | fa83bd4a57ee40ec1fd9b9c105e18872f833955d /dev-python/pipdeptree | |
parent | dev-python/msgpack: Bump to 1.0.8 (diff) | |
download | gentoo-5c2b390cd053e2d93592c4b96d9cec55e4ae2c2a.tar.gz gentoo-5c2b390cd053e2d93592c4b96d9cec55e4ae2c2a.tar.bz2 gentoo-5c2b390cd053e2d93592c4b96d9cec55e4ae2c2a.zip |
dev-python/pipdeptree: Bump to 2.16.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/pipdeptree')
-rw-r--r-- | dev-python/pipdeptree/Manifest | 1 | ||||
-rw-r--r-- | dev-python/pipdeptree/pipdeptree-2.16.0.ebuild | 54 |
2 files changed, 55 insertions, 0 deletions
diff --git a/dev-python/pipdeptree/Manifest b/dev-python/pipdeptree/Manifest index 681a24db52d1..889b8dfe87dc 100644 --- a/dev-python/pipdeptree/Manifest +++ b/dev-python/pipdeptree/Manifest @@ -1 +1,2 @@ DIST pipdeptree-2.15.1.tar.gz 34461 BLAKE2B e437785e609bacc31b5ca32fd03b7d69c3b0f597725d021ef978d49037e0d9e6e6b0c6545f5c7a93b4a26befa019156156d554e2d3470282758ed535097377f9 SHA512 ed8482c811758fc94adf196315f022cc6a07029ece9246bab04a64949faa22fc9b6811dd357d0a51803f305c837d6fa1267cf38d5a5cd728c3bf00e65d46d05d +DIST pipdeptree-2.16.0.tar.gz 34872 BLAKE2B 91401cf9ac05e365332956b874b17b40c62a8a6573b69adeae1d451d2878e887ee180239926962a2b7caae67b45619f715f8ade5c9df5b13683f167ee6592d0e SHA512 c3c1d6377cd3a30980c36fc4935f4aa4b96c402f09017f6e9e3d1c12c56580b1f56b1ea0edcbd6b588dbb96a9f5afa7a727c83faaf110d4a5e7f51df36628a03 diff --git a/dev-python/pipdeptree/pipdeptree-2.16.0.ebuild b/dev-python/pipdeptree/pipdeptree-2.16.0.ebuild new file mode 100644 index 000000000000..8c26d7357bda --- /dev/null +++ b/dev-python/pipdeptree/pipdeptree-2.16.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 2022-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( pypy3 python3_{10..12} ) + +inherit distutils-r1 pypi optfeature + +DESCRIPTION="Utility for displaying installed packages in a dependency tree" +HOMEPAGE=" + https://github.com/tox-dev/pipdeptree/ + https://pypi.org/project/pipdeptree/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~riscv" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/graphviz[${PYTHON_USEDEP}] + dev-python/pip[${PYTHON_USEDEP}] + dev-python/pytest-mock[${PYTHON_USEDEP}] + dev-python/virtualenv[${PYTHON_USEDEP}] + ) +" + +PATCHES=( + # https://github.com/tox-dev/pipdeptree/pull/302 + "${FILESDIR}/pipdeptree-2.13.1-expect-hpy-in-pypy-7.3.3.patch" + "${FILESDIR}/pipdeptree-2.13.2-fix-pypy-7.3.14.patch" +) + +distutils_enable_tests pytest + +python_test() { + local EPYTEST_DESELECT=( + # broken when flufl.lock is actually installed + # https://github.com/tox-dev/pipdeptree/issues/326 + tests/_models/test_dag.py::test_package_dag_from_pkgs_uses_pep503normalize + ) + + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest -p pytest_mock +} + +pkg_postinst() { + optfeature \ + "visualising the dependency graph with --graph-output" \ + dev-python/graphviz +} |