diff --git a/python-urwid.changes b/python-urwid.changes index f2b1edd..e4dee49 100644 --- a/python-urwid.changes +++ b/python-urwid.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Sat Jun 9 03:18:07 UTC 2012 - highwaystar.ru@gmail.com + +- python3 package added +- spec file improved + ------------------------------------------------------------------- Thu Dec 08 22:31:27 UTC 2011 - pascal.bleser@opensuse.org diff --git a/python-urwid.spec b/python-urwid.spec index 4c7ab28..2d71e5d 100644 --- a/python-urwid.spec +++ b/python-urwid.spec @@ -1,7 +1,7 @@ # # spec file for package python-urwid # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# 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 @@ -53,13 +53,12 @@ useful for text console application developers including: %__python setup.py build %install -%__python setup.py install \ - --prefix="%{_prefix}" \ - --root="%{buildroot}" \ - --record-rpm=files.lst - -%files -f files.lst +%__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 diff --git a/python3-urwid.changes b/python3-urwid.changes new file mode 100644 index 0000000..ae4e8be --- /dev/null +++ b/python3-urwid.changes @@ -0,0 +1,5 @@ +------------------------------------------------------------------- +Sat Jun 9 03:18:25 UTC 2012 - highwaystar.ru@gmail.com + +- python3 package added + diff --git a/python3-urwid.spec b/python3-urwid.spec new file mode 100644 index 0000000..9019d25 --- /dev/null +++ b/python3-urwid.spec @@ -0,0 +1,71 @@ +# +# spec file for package python3-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: python3-urwid +Version: 1.0.1 +Release: 0 +Url: http://excess.org/urwid/ +Summary: A full-featured console (xterm et al.) user interface library +License: LGPL +Group: Development/Languages/Python +Source: http://excess.org/urwid/urwid-%{version}.tar.gz +Source99: python-urwid-rpmlintrc +BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: python3-setuptools +BuildRequires: python3-devel +BuildRequires: python3-2to3 +Requires: python3-curses + +%if 0%{?suse_version} <= 1140 +%{!?python3_sitearch: %global python3_sitearch %(python3 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} +%{!?py3_ver: %global py3_ver %(python3 -c "import sys; version=str(sys.version_info[0]) + '.' + str(sys.version_info[1]); print(version)")} +%endif +Requires: python(abi) = %{py3_ver} +%if 0%{?suse_version} && 0%{?suse_version} > 1140 +BuildRequires: python3-base +%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 +python3 setup.py build + +%install +python3 setup.py install --prefix="%{_prefix}" --root="%{buildroot}" + +%files +%defattr(-,root,root,-) +%doc CHANGELOG reference.html tutorial.html +%{python3_sitearch}/urwid +%{python3_sitearch}/urwid-%{version}-py%{py3_ver}.egg-info +%changelog