Blame SPECS/python-urwid.spec

030114
%bcond_without tests
030114
030114
%global srcname urwid
030114
030114
Name:          python-%{srcname}
030114
Version:       2.1.2
030114
Release:       4%{?dist}
030114
Summary:       Console user interface library
030114
030114
License:       LGPLv2+
030114
URL:           http://excess.org/urwid/
030114
Source0:       %{pypi_source urwid}
030114
030114
%global _description\
030114
Urwid is a Python library for making text console applications.  It has\
030114
many features including fluid interface resizing, support for UTF-8 and\
030114
CJK encodings, standard and custom text layout modes, simple markup for\
030114
setting text attributes, and a powerful, dynamic list box that handles a\
030114
mix of widget types.  It is flexible, modular, and leaves the developer in\
030114
control.
030114
030114
%description %_description
030114
030114
%package -n python3-%{srcname}
030114
Summary: %summary
030114
%{?python_provide:%python_provide python3-urwid}
030114
BuildRequires: gcc
030114
BuildRequires: python3-devel
030114
BuildRequires: python3-setuptools
030114
# needed by selftest suite for test.support
030114
BuildRequires: python3-test
030114
030114
%description -n python3-%{srcname} %_description
030114
030114
%prep
030114
%setup -q -n %{srcname}-%{version}
030114
find urwid -type f -name "*.py" -exec sed -i -e '/^#!\//, 1d' {} \;
030114
find urwid -type f -name "*.py" -exec chmod 644 {} \;
030114
030114
%build
030114
%py3_build
030114
030114
find examples -type f -exec chmod 0644 \{\} \;
030114
030114
%check
030114
%if %{with tests}
030114
# tests are failing: https://github.com/urwid/urwid/issues/344
030114
PYTHON=%{__python3} %{__python3} setup.py test || :
030114
%endif
030114
030114
%install
030114
%py3_install
030114
030114
%files -n python3-%{srcname}
030114
%license COPYING
030114
%doc README.rst examples docs
030114
%{python3_sitearch}/urwid/
030114
%{python3_sitearch}/urwid-%{version}*.egg-info/
030114
030114
%changelog
030114
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 2.1.2-4
030114
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
030114
  Related: rhbz#1991688
030114
030114
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.1.2-3
030114
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
030114
030114
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.2-2
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
030114
030114
* Mon Nov 02 2020 Tomas Tomecek <ttomecek@redhat.com> - 2.1.2-1
030114
- New upstream release 2.1.2
030114
030114
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-3
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
030114
030114
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.1.0-2
030114
- Rebuilt for Python 3.9
030114
030114
* Wed Apr 01 2020 Tomas Tomecek <ttomecek@redhat.com> - 2.1.0-1
030114
- New upstream release 2.1.0
030114
030114
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-10
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
030114
030114
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.1-9
030114
- Rebuilt for Python 3.8.0rc1 (#1748018)
030114
030114
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.1-8
030114
- Rebuilt for Python 3.8
030114
030114
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-7
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
030114
030114
* Wed May 22 2019 Miro Hrončok <mhroncok@redhat.com> - 2.0.1-6
030114
- Resurrect removed python3-urwid package
030114
030114
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-5
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
030114
030114
* Fri Jul 27 2018 David Cantrell <dcantrell@redhat.com> - 2.0.1-4
030114
- Fix FTBFS issue in rawhide (#1605975)
030114
030114
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.1-3
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
030114
030114
* Fri Jun 29 2018 Miro Hrončok <mhroncok@redhat.com> - 2.0.1-2
030114
- Rebuilt for Python 3.7
030114
030114
* Fri Jun 29 2018 David Cantrell <dcantrell@redhat.com> - 2.0.1-1
030114
- Upgrade to urwid-2.0.1
030114
030114
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 1.3.1-4
030114
- Rebuilt for Python 3.7
030114
030114
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-3
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
030114
030114
* Wed Nov 15 2017 David Cantrell <dcantrell@redhat.com> - 1.3.1-2
030114
- Apply upstream fix for EINTR handling in test_vterm test case
030114
- Apply upstream fix for test_remove_watch_file flakiness
030114
- Apply upstream fix for test_vterm handling of NUL characters
030114
030114
* Sat Aug 19 2017 Petr Viktorin <pviktori@redhat.com> - 1.3.1-1
030114
- Update to upstream bugfix release 1.3.1
030114
  See http://urwid.org/changelog.html#urwid-1-3-1
030114
030114
* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.3.0-11
030114
- Python 2 binary package renamed to python2-urwid
030114
  See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
030114
030114
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-10
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
030114
030114
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-9
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
030114
030114
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-8
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
030114
030114
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 1.3.0-7
030114
- Rebuild for Python 3.6
030114
030114
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-6
030114
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
030114
030114
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-5
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
030114
030114
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-4
030114
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
030114
030114
* Tue Nov  3 2015 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.0-3
030114
- Remove executable bit on docs so that they do not bring in extra rpm
030114
  dependencies.  This complies with packaging guidelines and fixes the
030114
  problem of python3-urwid requiring the python2 package.
030114
030114
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.0-2
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
030114
030114
* Tue Nov 25 2014 David Cantrell <dcantrell@redhat.com> - 1.3.0-1
030114
- Upgrade to urwid-1.3.0 (#1150540)
030114
030114
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-2
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
030114
030114
* Thu Jun 12 2014 David Cantrell <dcantrell@redhat.com> - 1.2.1-1
030114
- Upgrade to urwid-1.2.1 (#1047698)
030114
030114
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-5
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
030114
030114
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 1.1.1-4
030114
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
030114
030114
* Fri Dec 06 2013 Pierre-Yves Chibon <pingou@pingoured>fr - 1.1.1-3
030114
- Change BR from python-setuptools-devel to python-setuptools
030114
  See https://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
030114
030114
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
030114
030114
* Wed Nov 21 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 1.1.1 -1
030114
- Bugfix update
030114
030114
* Tue Oct 23 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 1.1.0-2
030114
- Add new docs and examples dir
030114
030114
* Tue Oct 23 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 1.1.0-1
030114
- Update to upstream 1.1.0
030114
030114
* Wed Sep 26 2012 Fabian Deutsch <fabian.deutsch@gmx.de> - 1.0.2-1
030114
- Update to upstream 1.0.2
030114
030114
* Mon Aug 27 2012 David Malcolm <dmalcolm@redhat.com> - 1.0.0-7
030114
- add missing BRs on python-test and python3-test (for test.support)
030114
030114
* Fri Aug 24 2012 David Malcolm <dmalcolm@redhat.com> - 1.0.0-6
030114
- remove rhel logic from with_python3 conditional
030114
- remove stray references to mako
030114
030114
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.0.0-5
030114
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
030114
030114
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-4
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
030114
030114
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-3
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
030114
030114
* Mon Oct 24 2011 Luke Macken <lmacken@redhat.com> - 1.0.0-2
030114
- Add a python3-urwid subpackage (#746627)
030114
030114
* Wed Oct 19 2011 Luke Macken <lmacken@redhat.com> - 1.0.0
030114
- Update to version 1.0.0
030114
- Add python-setuptools-devel to the BuildRequires
030114
- Run the test suite using the setup.py
030114
030114
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.9.1-3
030114
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
030114
030114
* Tue Jul 27 2010 David Malcolm <dmalcolm@redhat.com> - 0.9.9.1-2
030114
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
030114
030114
* Wed May 19 2010 David Cantrell <dcantrell@redhat.com> - 0.9.9.1-1
030114
- Initial package