diff options
author | 2023-03-09 17:48:25 +0100 | |
---|---|---|
committer | 2023-03-09 17:59:57 +0100 | |
commit | 74705ed78fe0c09709a2cd8cdd0061c551799b1a (patch) | |
tree | fae6992792c7de4b0e4f0170c02437e03e446fc7 /dev-python/ipdb | |
parent | x11-wm/openbox: switch to GitHub live repo with https (diff) | |
download | gentoo-74705ed78fe0c09709a2cd8cdd0061c551799b1a.tar.gz gentoo-74705ed78fe0c09709a2cd8cdd0061c551799b1a.tar.bz2 gentoo-74705ed78fe0c09709a2cd8cdd0061c551799b1a.zip |
dev-python/ipdb: Bump to 0.13.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/ipdb')
-rw-r--r-- | dev-python/ipdb/Manifest | 1 | ||||
-rw-r--r-- | dev-python/ipdb/ipdb-0.13.13.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/dev-python/ipdb/Manifest b/dev-python/ipdb/Manifest index 6af4113bdafd..bd8d28b9dba6 100644 --- a/dev-python/ipdb/Manifest +++ b/dev-python/ipdb/Manifest @@ -1 +1,2 @@ DIST ipdb-0.13.11.tar.gz 16770 BLAKE2B 849bb91f9fd2d0443f7696aee5e2b1de87a284b410189a471be91175e792132e816abcace865b788454d59ddbf5bc443c98e6308d0453b7a7a81a580c3afd24e SHA512 c44e012db71aa543742f16bd737e1e18db3f060b65c8fa0eaa6ce7567f99f44b5aa09bfb44457c6e4d6fb1fac8d822ece580bc4036adbd612f4d50a82f0eba21 +DIST ipdb-0.13.13.tar.gz 17042 BLAKE2B 8f7a5b96816e97e9bad969889c9ee8d22870890eff6052828b1fbc65ff10b7719cecf2d5c5b59d3a4fceedf4cd829bddfd7fa09e57e6fef16295fb807bc4be0f SHA512 941c353ca4412bab54f3630825cb426534330fef3b00d39c1a492219b4d85783abf3a41c16c8516011df751b1e17a35a20dde66f3efca0948acdf870ae6bf089 diff --git a/dev-python/ipdb/ipdb-0.13.13.ebuild b/dev-python/ipdb/ipdb-0.13.13.ebuild new file mode 100644 index 000000000000..38d3bf7fb449 --- /dev/null +++ b/dev-python/ipdb/ipdb-0.13.13.ebuild @@ -0,0 +1,38 @@ +# 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=setuptools + +inherit distutils-r1 optfeature pypi + +DESCRIPTION="IPython-enabled pdb" +HOMEPAGE=" + https://github.com/gotcha/ipdb/ + https://pypi.org/project/ipdb/ +" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86" + +RDEPEND=" + >=dev-python/ipython-7.17[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + $(python_gen_cond_dep ' + dev-python/tomli[${PYTHON_USEDEP}] + ' 3.8 3.9 3.10) + ) +" + +DOCS=( AUTHORS HISTORY.txt README.rst ) + +distutils_enable_tests unittest + +pkg_postinst() { + optfeature "pyproject.toml support" dev-python/tomli +} |