Commit a1b1c2f0 authored by Christophe Vu-Brugier's avatar Christophe Vu-Brugier Committed by Thomas Petazzoni
Browse files

python-urwid: new package



Urwid is a console user interface library for Python.

Signed-off-by: default avatarChristophe Vu-Brugier <cvubrugier@fastmail.fm>
Reviewed-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 9e540c75
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -508,6 +508,7 @@ menu "external python modules"
	source "package/python-simplejson/Config.in"
	source "package/python-thrift/Config.in"
	source "package/python-tornado/Config.in"
	source "package/python-urwid/Config.in"
	source "package/python-versiontools/Config.in"
endmenu
endif
+7 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_PYTHON_URWID
	bool "python-urwid"
	depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
	help
	  Urwid is a console user interface library for Python

	  http://urwid.org/
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# python-urwid
#
################################################################################

PYTHON_URWID_VERSION = 1.2.1
PYTHON_URWID_SOURCE = urwid-$(PYTHON_URWID_VERSION).tar.gz
PYTHON_URWID_SITE = https://pypi.python.org/packages/source/u/urwid
PYTHON_URWID_LICENSE = LGPLv2.1+
PYTHON_URWID_LICENSE_FILES = COPYING
PYTHON_URWID_SETUP_TYPE = setuptools

$(eval $(python-package))