dev-python/pudb: added optfeature

Closes: https://bugs.gentoo.org/928595
Signed-off-by: Andrey Grozin <grozin@gentoo.org>
This commit is contained in:
Andrey Grozin 2024-04-05 13:19:23 +07:00
parent 468cc48e8a
commit 0ac6260034
No known key found for this signature in database
GPG Key ID: 3AFFCE974D34BD8C
1 changed files with 9 additions and 2 deletions

View File

@ -6,10 +6,12 @@ EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..12} )
inherit distutils-r1 pypi
inherit distutils-r1 pypi optfeature
DESCRIPTION="A full-screen, console-based Python debugger"
HOMEPAGE="https://pypi.org/project/pudb/"
HOMEPAGE="https://documen.tician.de/pudb/
https://github.com/inducer/pudb
https://pypi.org/project/pudb/"
LICENSE="MIT"
SLOT="0"
@ -27,3 +29,8 @@ BDEPEND="
"
distutils_enable_tests pytest
pkg_postinst() {
optfeature_header "Install the following packages for additional functionality:"
optfeature "Auto-complete support" dev-python/jedi
}