diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-02-17 20:51:58 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-02-17 20:51:58 +0100 |
commit | cc85c71d7891842febd510abcfbf019de915182c (patch) | |
tree | 74cfb68d29a3eb2d66efd892d7a48b5cdf7bd892 | |
parent | sys-devel/llvm-common: Remove old (diff) | |
download | gentoo-cc85c71d7891842febd510abcfbf019de915182c.tar.gz gentoo-cc85c71d7891842febd510abcfbf019de915182c.tar.bz2 gentoo-cc85c71d7891842febd510abcfbf019de915182c.zip |
dev-python/urwid_readline: Prepare for rename
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/urwid_readline/urwid_readline-0.13-r1.ebuild | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/dev-python/urwid_readline/urwid_readline-0.13-r1.ebuild b/dev-python/urwid_readline/urwid_readline-0.13-r1.ebuild index 155f195f0aa6..4943672cfb7a 100644 --- a/dev-python/urwid_readline/urwid_readline-0.13-r1.ebuild +++ b/dev-python/urwid_readline/urwid_readline-0.13-r1.ebuild @@ -1,24 +1,31 @@ -# Copyright 2021-2023 Gentoo Authors +# Copyright 2021-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{9..12} ) +PYTHON_COMPAT=( python3_{10..12} ) + inherit distutils-r1 +MY_P=urwid_readline-${PV} DESCRIPTION="Text input widget for urwid that supports readline shortcuts" HOMEPAGE=" https://github.com/rr-/urwid_readline/ - https://pypi.org/project/urwid-readline/" + https://pypi.org/project/urwid-readline/ +" SRC_URI=" https://github.com/rr-/urwid_readline/archive/${PV}.tar.gz - -> ${P}.gh.tar.gz" + -> ${MY_P}.gh.tar.gz +" +S=${WORKDIR}/${MY_P} LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" -RDEPEND="dev-python/urwid[${PYTHON_USEDEP}]" +RDEPEND=" + dev-python/urwid[${PYTHON_USEDEP}] +" distutils_enable_tests pytest |