2009-06-09 22:31:02 +00:00
|
|
|
#
|
2010-01-26 12:27:09 +00:00
|
|
|
# spec file for package python-urwid
|
2009-06-09 22:31:02 +00:00
|
|
|
#
|
2014-07-14 12:26:18 +00:00
|
|
|
# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2009-06-09 22:31:02 +00:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
2012-09-24 11:09:03 +00:00
|
|
|
|
2009-06-09 22:31:02 +00:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
2012-09-24 11:09:03 +00:00
|
|
|
|
2009-06-09 22:31:02 +00:00
|
|
|
Name: python-urwid
|
2014-07-14 12:26:18 +00:00
|
|
|
Version: 1.2.1
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
Release: 0
|
2009-06-09 22:31:02 +00:00
|
|
|
Url: http://excess.org/urwid/
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
Summary: A full-featured console (xterm et al.) user interface library
|
2012-07-30 07:36:28 +00:00
|
|
|
License: LGPL-2.1+
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
Group: Development/Languages/Python
|
2011-12-08 22:42:44 +00:00
|
|
|
Source: http://excess.org/urwid/urwid-%{version}.tar.gz
|
2009-06-09 22:31:02 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
BuildRequires: python-devel
|
2012-09-24 11:09:03 +00:00
|
|
|
BuildRequires: python-setuptools
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
%if 0%{?suse_version}
|
|
|
|
%py_requires
|
2009-06-09 22:31:02 +00:00
|
|
|
Requires: python-curses
|
2007-04-29 11:32:27 +00:00
|
|
|
%endif
|
2013-01-02 22:00:05 +00:00
|
|
|
%if 0%{?suse_version} <= 1110
|
|
|
|
%{!?python_sitearch: %global python_sitearch %(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
|
|
|
|
%endif
|
2007-04-29 11:32:27 +00:00
|
|
|
|
|
|
|
%description
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
Urwid is a console user interface library. It includes many features
|
|
|
|
useful for text console application developers including:
|
2011-12-08 22:42:44 +00:00
|
|
|
- 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 or built-in 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
|
|
|
|
- 256 and 88 color mode support
|
|
|
|
- Python 3.2 support
|
2007-04-29 11:32:27 +00:00
|
|
|
|
|
|
|
%prep
|
2011-12-08 22:42:44 +00:00
|
|
|
%setup -q -n "urwid-%{version}"
|
2007-04-29 11:32:27 +00:00
|
|
|
|
|
|
|
%build
|
2011-12-08 22:42:44 +00:00
|
|
|
%__python setup.py build
|
2007-04-29 11:32:27 +00:00
|
|
|
|
|
|
|
%install
|
2012-06-11 07:44:27 +00:00
|
|
|
%__python setup.py install --prefix="%{_prefix}" --root="%{buildroot}"
|
2013-01-15 14:17:19 +00:00
|
|
|
# remove shebangs from all scripts
|
|
|
|
find %{buildroot}%{python_sitearch} -name '*.py' \
|
|
|
|
-exec sed -i -e '1{/^#!/d}' {} \;
|
2012-09-24 11:09:03 +00:00
|
|
|
|
2012-06-11 07:44:27 +00:00
|
|
|
%files
|
- Update to version 1.0.0:
* New support for Python 3.2 from the same 2.x code base,
requires distribute instead of setuptools (by Kirk McDonald,
Wendell, Marien Zwart) everything except TwistedEventLoop and
GLibEventLoop is supported
* New experimental Terminal widget with xterm emulation and
terminal.py example program (by aszlig)
* Edit widget now supports a mask (for passwords), has a
insert_text_result() method for full-field validation and
normalizes input text to Unicode or bytes based on the caption
type used
* New TreeWidget, TreeNode, ParentNode, TreeWalker
and TreeListBox classes for lazy expanding/collapsing tree
views factored out of browse.py example program, with new
treesample.py example program (by Rob Lanphier)
* MainLoop now calls draw_screen() just before going idle, so extra
calls to draw_screen() in user code may now be removed
* New MainLoop.watch_pipe() method for subprocess or threaded
communication with the process/thread updating the UI, and new
subproc.py example demonstrating its use
* New PopUpLauncher and PopUpTarget widgets and MainLoop option
for creating pop-ups and drop-downs, and new pop_up.py example
program
* New twisted_serve_ssh.py example (by Ali Afshar) that serves
multiple displays over ssh from the same application using
Twisted and the TwistedEventLoop
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=9
2011-09-23 10:18:43 +00:00
|
|
|
%defattr(-,root,root,-)
|
2014-07-14 12:26:18 +00:00
|
|
|
%doc COPYING README.rst
|
2012-06-11 07:44:27 +00:00
|
|
|
%{python_sitearch}/urwid/
|
|
|
|
%{python_sitearch}/urwid-%{version}-py%{py_ver}.egg-info
|
2007-04-29 11:32:27 +00:00
|
|
|
|
2010-01-26 12:27:09 +00:00
|
|
|
%changelog
|