forked from pool/python-urwid
license update: LGPL-2.1+ LGPL without version is not acceptable OBS-URL: https://build.opensuse.org/request/show/129219 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-urwid?expand=0&rev=13
65 lines
2.3 KiB
RPMSpec
65 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-urwid
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# 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.
|
|
#
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
Name: python-urwid
|
|
Version: 1.0.2
|
|
Release: 0
|
|
Url: http://excess.org/urwid/
|
|
Summary: A full-featured console (xterm et al.) user interface library
|
|
License: LGPL-2.1+
|
|
Group: Development/Languages/Python
|
|
Source: http://excess.org/urwid/urwid-%{version}.tar.gz
|
|
Source99: python-urwid-rpmlintrc
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: python-setuptools
|
|
BuildRequires: python-devel
|
|
%if 0%{?suse_version}
|
|
%py_requires
|
|
Requires: python-curses
|
|
%endif
|
|
|
|
%description
|
|
Urwid is a console user interface library. 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 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
|
|
|
|
%prep
|
|
%setup -q -n "urwid-%{version}"
|
|
|
|
%build
|
|
%__python setup.py build
|
|
|
|
%install
|
|
%__python setup.py install --prefix="%{_prefix}" --root="%{buildroot}"
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc CHANGELOG reference.html tutorial.html
|
|
%{python_sitearch}/urwid/
|
|
%{python_sitearch}/urwid-%{version}-py%{py_ver}.egg-info
|
|
|
|
%changelog
|