diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-06-07 16:44:03 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-06-07 16:47:51 +0200 |
commit | 7b60822d864eece17d728b1b7d6af05a0c4a2fcb (patch) | |
tree | 8691f5900cca5e4a9607421eea45e8663774cfd3 /dev-python/urwid | |
parent | dev-python/zope-exceptions: Bump to 5.1 (diff) | |
download | gentoo-7b60822d864eece17d728b1b7d6af05a0c4a2fcb.tar.gz gentoo-7b60822d864eece17d728b1b7d6af05a0c4a2fcb.tar.bz2 gentoo-7b60822d864eece17d728b1b7d6af05a0c4a2fcb.zip |
dev-python/urwid: Bump to 2.6.13
Closes: https://bugs.gentoo.org/933476
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/urwid')
-rw-r--r-- | dev-python/urwid/Manifest | 1 | ||||
-rw-r--r-- | dev-python/urwid/metadata.xml | 1 | ||||
-rw-r--r-- | dev-python/urwid/urwid-2.6.13.ebuild | 41 |
3 files changed, 43 insertions, 0 deletions
diff --git a/dev-python/urwid/Manifest b/dev-python/urwid/Manifest index 1c0b13f8668f..2d5e58a95ca0 100644 --- a/dev-python/urwid/Manifest +++ b/dev-python/urwid/Manifest @@ -1,2 +1,3 @@ DIST urwid-2.6.11.tar.gz 847254 BLAKE2B af0f23f404bc926c378b14a124b5c9504ea282048acd943221ca85f69b86cc8435df7cffc0ed632b3a2067504aca528e560454855acf129518cf69535242a6a6 SHA512 351185673a4ed506a55e2142c0a65150987ac4b6c1176e10c497df6f69c9f4acdabb15ec45564554b9a720387eaa725854fbe4adc4d288ef519b754b17b2fb33 DIST urwid-2.6.12.tar.gz 847508 BLAKE2B 9790f2bcb768ff859115c1eb1dd03899e49eff41a56540d24ab0a2340b43c23e0572bfe6b689033a37c579ed4860e67a6fb3ade913c5a9c9d68d4a7bb41e8dab SHA512 1b2c7de9f523fe6c80155fc039a2b9e9d416c27f7d52a41911443b0a057739526b755fcb9c901ce99ab8e1e7d1bb5ff2be5ab7c0251554d9d933c0235b44a8e8 +DIST urwid-2.6.13.tar.gz 847604 BLAKE2B ce2294f8c1eaf6609790f18e1312eec66fce610832d510a057c8af773675b4ac2ce47c027be10beff14c1e0d67bc9e59cd372ee612e3357c88d3d89fe4d4cb3f SHA512 9989c3f906cca38a32baccef3c4717deb964f15b5cb08135be75d3e2a5a26f4d64cfe6cc2f58cba5e0ba8da1fb52ef71a591a88dbed9f8e2c80960933dff3537 diff --git a/dev-python/urwid/metadata.xml b/dev-python/urwid/metadata.xml index ee6b0391ddd0..fd8b581e567d 100644 --- a/dev-python/urwid/metadata.xml +++ b/dev-python/urwid/metadata.xml @@ -22,6 +22,7 @@ useful for text console application developers including: - Customizable layout for all widgets - Easy interface for creating HTML screen shots </longdescription> + <stabilize-allarches/> <upstream> <remote-id type="pypi">urwid</remote-id> <remote-id type="github">urwid/urwid</remote-id> diff --git a/dev-python/urwid/urwid-2.6.13.ebuild b/dev-python/urwid/urwid-2.6.13.ebuild new file mode 100644 index 000000000000..9c3039fc6e8b --- /dev/null +++ b/dev-python/urwid/urwid-2.6.13.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..13} ) +PYTHON_REQ_USE="ncurses" + +inherit distutils-r1 optfeature pypi + +DESCRIPTION="Curses-based user interface library for Python" +HOMEPAGE=" + https://urwid.org/ + https://pypi.org/project/urwid/ + https://github.com/urwid/urwid/ +" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +RDEPEND=" + dev-python/typing-extensions[${PYTHON_USEDEP}] + dev-python/wcwidth[${PYTHON_USEDEP}] +" +BDEPEND=" + dev-python/setuptools-scm[${PYTHON_USEDEP}] +" + +distutils_enable_tests unittest + +python_install_all() { + use examples && dodoc -r examples + distutils-r1_python_install_all +} + +pkg_postinst() { + optfeature "Trio event loop" "dev-python/trio" +} |