diff options
author | CoprDistGit <infra@openeuler.org> | 2023-04-10 13:06:05 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 13:06:05 +0000 |
commit | 34e90099bfd584c6b503c78c050b6ef1c34a0ea7 (patch) | |
tree | bfbc4a78e9f57a99898c6e9ee3fdc6a041745ac0 | |
parent | f19d30f7bdf5c41724ec3f2311e2371cfc3d1a4d (diff) |
automatic import of python-urwid
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-urwid.spec | 111 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 113 insertions, 0 deletions
@@ -0,0 +1 @@ +/urwid-2.1.2.tar.gz diff --git a/python-urwid.spec b/python-urwid.spec new file mode 100644 index 0000000..c5837c5 --- /dev/null +++ b/python-urwid.spec @@ -0,0 +1,111 @@ +%global _empty_manifest_terminate_build 0 +Name: python-urwid +Version: 2.1.2 +Release: 1 +Summary: A full-featured console (xterm et al.) user interface library +License: LGPL +URL: http://urwid.org/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/94/3f/e3010f4a11c08a5690540f7ebd0b0d251cc8a456895b7e49be201f73540c/urwid-2.1.2.tar.gz +BuildArch: noarch + + +%description +Urwid is a console user interface library for Python. +It includes many features useful for text console application developers including: +- Applications resize quickly and smoothly +- Automatic, programmable text alignment and wrapping +- Simple markup for setting text attributes within blocks of text +- Powerful list box with programmable content for scrolling all widget types +- Your choice of event loops: Twisted, Glib, Tornado or select-based loop +- Pre-built widgets include edit boxes, buttons, check boxes and radio buttons +- Display modules include raw, curses, and experimental LCD and web displays +- Support for UTF-8, simple 8-bit and CJK encodings +- 24-bit (true color), 256 color, and 88 color mode support +- Compatible with Python 2.7, 3.5+ and PyPy +Home Page: + http://urwid.org/ + +%package -n python3-urwid +Summary: A full-featured console (xterm et al.) user interface library +Provides: python-urwid +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-urwid +Urwid is a console user interface library for Python. +It includes many features useful for text console application developers including: +- Applications resize quickly and smoothly +- Automatic, programmable text alignment and wrapping +- Simple markup for setting text attributes within blocks of text +- Powerful list box with programmable content for scrolling all widget types +- Your choice of event loops: Twisted, Glib, Tornado or select-based loop +- Pre-built widgets include edit boxes, buttons, check boxes and radio buttons +- Display modules include raw, curses, and experimental LCD and web displays +- Support for UTF-8, simple 8-bit and CJK encodings +- 24-bit (true color), 256 color, and 88 color mode support +- Compatible with Python 2.7, 3.5+ and PyPy +Home Page: + http://urwid.org/ + +%package help +Summary: Development documents and examples for urwid +Provides: python3-urwid-doc +%description help +Urwid is a console user interface library for Python. +It includes many features useful for text console application developers including: +- Applications resize quickly and smoothly +- Automatic, programmable text alignment and wrapping +- Simple markup for setting text attributes within blocks of text +- Powerful list box with programmable content for scrolling all widget types +- Your choice of event loops: Twisted, Glib, Tornado or select-based loop +- Pre-built widgets include edit boxes, buttons, check boxes and radio buttons +- Display modules include raw, curses, and experimental LCD and web displays +- Support for UTF-8, simple 8-bit and CJK encodings +- 24-bit (true color), 256 color, and 88 color mode support +- Compatible with Python 2.7, 3.5+ and PyPy +Home Page: + http://urwid.org/ + +%prep +%autosetup -n urwid-2.1.2 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-urwid -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 2.1.2-1 +- Package Spec generated @@ -0,0 +1 @@ +f7f4e6bed9ba38965dbd619520f39287 urwid-2.1.2.tar.gz |