summaryrefslogtreecommitdiff
path: root/dev-python/urwid
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/urwid')
-rw-r--r--dev-python/urwid/Manifest1
-rw-r--r--dev-python/urwid/urwid-3.0.0.ebuild40
2 files changed, 41 insertions, 0 deletions
diff --git a/dev-python/urwid/Manifest b/dev-python/urwid/Manifest
index 16125d020e28..a951496153bf 100644
--- a/dev-python/urwid/Manifest
+++ b/dev-python/urwid/Manifest
@@ -1 +1,2 @@
DIST urwid-2.6.16.tar.gz 848179 BLAKE2B 870790c4beb59297ca7952d27304caa3b907e3f8bf8974334d4ab59386b7705b5cb75a39494e8e984a4af6e0ad76f36a767179126059fc6983d94496d990bb00 SHA512 c5caee309bcba9f22d4f3a78bc837c263345762ece5a315ba02ed1cb15ff2502065b20de288495f103b673be4dbee7cac11c535b3edb42edfb04c8ca40a831f3
+DIST urwid-3.0.0.tar.gz 855371 BLAKE2B cf412af16c575ceab7157d00141c89bb6579e01b388c54398a4a543426e40fea5e57a8e6548ff2e0969858c69069e33724b7803a00638068c56766101292298d SHA512 a3a5f86d3fae6c6b74c6b826aef78220ce57deed32601298ff47cb47742eebd64c16e28c9ee24b6bdc414c9e518d535dbe64ef813a5ab039c1083a7d3172b351
diff --git a/dev-python/urwid/urwid-3.0.0.ebuild b/dev-python/urwid/urwid-3.0.0.ebuild
new file mode 100644
index 000000000000..51860517ec52
--- /dev/null
+++ b/dev-python/urwid/urwid-3.0.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9,10,11,12,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 ~loong ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples"
+
+RDEPEND="
+ 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"
+}