91e348
# we have a circular (build) dependency with the (new) pytest package
91e348
# when generating the docs or running the testsuite
91e348
%bcond_with docs
91e348
# the testsuite is curremtly not compatible with pytest 3, see
91e348
# https://github.com/pytest-dev/py/issues/104
91e348
%if 0%{?fedora} || 0%{?rhel} > 7
91e348
%bcond_with tests
91e348
%else
91e348
%bcond_without tests
91e348
%endif
91e348
91e348
%bcond_with python2
91e348
%bcond_without python3
91e348
91e348
%global pytest_version_lb 2.9.0
91e348
%global pytest_version_ub 2.10
91e348
91e348
%global srcname py
91e348
91e348
Name:           python-%{srcname}
91e348
Version:        1.8.0
91e348
Release:        8%{?dist}
91e348
Summary:        Library with cross-python path, ini-parsing, io, code, log facilities
91e348
License:        MIT and Public Domain
91e348
#               main package: MIT, except: doc/style.css: Public Domain
91e348
URL:            http://py.readthedocs.io/
91e348
Source:         %{pypi_source}
91e348
BuildArch:      noarch
91e348
# Exclude i686 arch. Due to a modularity issue it's being added to the
91e348
# x86_64 compose of CRB, but we don't want to ship it at all.
91e348
# See: https://projects.engineering.redhat.com/browse/RCM-72605
91e348
ExcludeArch:    i686
91e348
91e348
%if %{with tests}
91e348
# needed by the testsuite
91e348
BuildRequires:  subversion
91e348
%endif # with tests
91e348
91e348
%description
91e348
The py lib is a Python development support library featuring the
91e348
following tools and modules:
91e348
91e348
  * py.path: uniform local and svn path objects
91e348
  * py.apipkg: explicit API control and lazy-importing
91e348
  * py.iniconfig: easy parsing of .ini files
91e348
  * py.code: dynamic code generation and introspection
91e348
  * py.path: uniform local and svn path objects
91e348
91e348
91e348
%if %{with python2}
91e348
%package -n python2-%{srcname}
91e348
Summary:        Library with cross-python path, ini-parsing, io, code, log facilities
91e348
BuildRequires:  python2-devel
91e348
BuildRequires:  python2-setuptools
91e348
BuildRequires:  python2-setuptools_scm
91e348
%if %{with tests}
91e348
BuildRequires:  python2-pytest >= %{pytest_version_lb}, python2-pytest < %{pytest_version_ub}
91e348
%endif # with tests
91e348
Requires:       python2-setuptools
91e348
%{?python_provide:%python_provide python2-%{srcname}}
91e348
Provides:       bundled(python2-apipkg) = 1.4
91e348
Provides:       bundled(python2-iniconfig) = 1.0.0
91e348
91e348
%description -n python2-%{srcname}
91e348
The py lib is a Python development support library featuring the
91e348
following tools and modules:
91e348
91e348
  * py.path: uniform local and svn path objects
91e348
  * py.apipkg: explicit API control and lazy-importing
91e348
  * py.iniconfig: easy parsing of .ini files
91e348
  * py.code: dynamic code generation and introspection
91e348
  * py.path: uniform local and svn path objects
91e348
91e348
%endif # with python2
91e348
91e348
91e348
%if %{with python3}
91e348
%package -n python%{python3_pkgversion}-%{srcname}
91e348
Summary:        Library with cross-python path, ini-parsing, io, code, log facilities
91e348
BuildRequires:  python%{python3_pkgversion}-devel
91e348
BuildRequires:  python%{python3_pkgversion}-setuptools
91e348
BuildRequires:  python%{python3_pkgversion}-rpm-macros
91e348
%if %{with docs}
91e348
BuildRequires:  %{_bindir}/sphinx-build
91e348
%endif # with_docs
91e348
%if %{with tests}
91e348
BuildRequires:  python%{python3_pkgversion}-pytest >= %{pytest_version_lb}
91e348
BuildRequires:  python%{python3_pkgversion}-pytest < %{pytest_version_ub}
91e348
%endif # with tests
91e348
Requires:       python%{python3_pkgversion}-setuptools
91e348
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
91e348
Provides:       bundled(python%{python3_pkgversion}-apipkg) = 1.4
91e348
Provides:       bundled(python%{python3_pkgversion}-iniconfig) = 1.0.0
91e348
91e348
%description -n python%{python3_pkgversion}-%{srcname}
91e348
The py lib is a Python development support library featuring the
91e348
following tools and modules:
91e348
91e348
  * py.path: uniform local and svn path objects
91e348
  * py.apipkg: explicit API control and lazy-importing
91e348
  * py.iniconfig: easy parsing of .ini files
91e348
  * py.code: dynamic code generation and introspection
91e348
  * py.path: uniform local and svn path objects
91e348
91e348
%endif # with python3
91e348
91e348
91e348
%prep
91e348
%autosetup -n %{srcname}-%{version}
91e348
91e348
# remove shebangs and fix permissions
91e348
find . \
91e348
   -type f -a \( -name '*.py' -o -name 'py.*' \) \
91e348
   -exec sed -i '1{/^#!/d}' {} \; \
91e348
   -exec chmod u=rw,go=r {} \;
91e348
91e348
# Remove dependency of setuptools-scm
91e348
sed -i "/ *use_scm_version=.*,/d" setup.py
91e348
sed -i "s/ *setup_requires=.*/version='%{version}',/" setup.py
91e348
91e348
%build
91e348
%if %{with python2}
91e348
%py2_build
91e348
%endif # with python2
91e348
91e348
%if %{with python3}
91e348
%py3_build
91e348
%if %{with docs}
91e348
make -C doc html PYTHONPATH=$(pwd)
91e348
rm -rf doc/_build/html/.buildinfo
91e348
%endif # with docs
91e348
%endif # with python3
91e348
91e348
91e348
%install
91e348
%if %{with python2}
91e348
%py2_install
91e348
%endif # with python2
91e348
91e348
%if %{with python3}
91e348
%py3_install
91e348
%endif # with python3
91e348
91e348
91e348
%check
91e348
%if %{with tests}
91e348
# disable failing Subversion checks for now
91e348
91e348
%if %{with python2}
91e348
PYTHONPATH=%{buildroot}%{python2_sitelib} \
91e348
LC_ALL=C.UTF-8 \
91e348
py.test-%{python2_version} -r s -k"-TestWCSvnCommandPath" testing
91e348
%endif # with python2
91e348
91e348
%if %{with python3}
91e348
PYTHONPATH=%{buildroot}%{python3_sitelib} \
91e348
py.test-%{python3_version} -r s -k"-TestWCSvnCommandPath" testing
91e348
%endif # with python3
91e348
91e348
%endif # with tests
91e348
91e348
91e348
%if %{with python2}
91e348
%files -n python2-%{srcname}
91e348
%doc CHANGELOG
91e348
%doc README.rst
91e348
%license LICENSE
91e348
%{python2_sitelib}/py-*.egg-info/
91e348
%{python2_sitelib}/py/
91e348
%endif # with python2
91e348
91e348
91e348
%if %{with python3}
91e348
%files -n python%{python3_pkgversion}-%{srcname}
91e348
%doc CHANGELOG
91e348
%doc README.rst
91e348
%license LICENSE
91e348
%if %{with docs}
91e348
%doc doc/_build/html
91e348
%endif # with_docs
91e348
%{python3_sitelib}/py-*.egg-info/
91e348
%{python3_sitelib}/py/
91e348
%endif # with python3
91e348
91e348
91e348
%changelog
91e348
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 1.8.0-8
91e348
- Exclude unsupported i686 arch
91e348
91e348
* Tue Nov 19 2019 Lumír Balhar <lbalhar@redhat.com> - 1.8.0-7
91e348
- Adjusted for Python 3.8 module in RHEL 8
91e348
91e348
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 1.8.0-6
91e348
- Rebuilt for Python 3.8.0rc1 (#1748018)
91e348
91e348
* Fri Aug 16 2019 Miro Hrončok <mhroncok@redhat.com> - 1.8.0-5
91e348
- Rebuilt for Python 3.8
91e348
91e348
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 1.8.0-4
91e348
- Bootstrap for Python 3.8
91e348
91e348
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
91e348
91e348
* Mon Apr 15 2019 Thomas Moschny <thomas.moschny@gmx.de> - 1.8.0-1
91e348
- Update to 1.8.0.
91e348
- Update spec file.
91e348
91e348
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-3
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
91e348
91e348
* Sun Nov 18 2018 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 1.7.0-2
91e348
- Drop explicit locale setting for python3, use C.UTF-8 for python2
91e348
  See https://fedoraproject.org/wiki/Changes/Remove_glibc-langpacks-all_from_buildroot
91e348
91e348
* Sun Nov 11 2018 Thomas Moschny <thomas.moschny@gmx.de> - 1.7.0-1
91e348
- Update to 1.7.0.
91e348
91e348
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-3
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
91e348
91e348
* Mon Jul 02 2018 Miro Hrončok <mhroncok@redhat.com> - 1.5.4-2
91e348
- Rebuilt for Python 3.7
91e348
91e348
* Thu Jun 28 2018 Thomas Moschny <thomas.moschny@gmx.de> - 1.5.4-1
91e348
- Update to 1.5.4.
91e348
- Add BR on setuptools_scm.
91e348
91e348
* Sat Jun 16 2018 Miro Hrončok <mhroncok@redhat.com> - 1.5.3-3
91e348
- Rebuilt for Python 3.7
91e348
91e348
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 1.5.3-2
91e348
- Bootstrap for Python 3.7
91e348
91e348
* Thu Mar 22 2018 Thomas Moschny <thomas.moschny@gmx.de> - 1.5.3-1
91e348
- Update to 1.5.3.
91e348
91e348
* Mon Feb 12 2018 Iryna Shcherbina <ishcherb@redhat.com> - 1.5.2-3
91e348
- Update Python 2 dependency declarations to new packaging standards
91e348
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
91e348
91e348
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.2-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
91e348
91e348
* Thu Nov 16 2017 Thomas Moschny <thomas.moschny@gmx.de> - 1.5.2-1
91e348
- Update to 1.5.2.
91e348
91e348
* Wed Nov 15 2017 Thomas Moschny <thomas.moschny@gmx.de> - 1.5.1-1
91e348
- Update to 1.5.1.
91e348
- Update list of vendored packages.
91e348
- Fix HTML doc path.
91e348
91e348
* Wed Nov 15 2017 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.34-8
91e348
- Restore earlier structure of the spec file, also fixing previously
91e348
  introduced problems.
91e348
91e348
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.34-7
91e348
- Use better Obsoletes for platform-python
91e348
91e348
* Fri Nov 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.34-6
91e348
- Remove platform-python subpackage
91e348
91e348
* Tue Sep 05 2017 Troy Dawson <tdawson@redhat.com> - 1.4.34-5
91e348
- Cleanup spec file conditionals
91e348
91e348
* Fri Aug 11 2017 Tomas Orsava <torsava@redhat.com> - 1.4.34-4
91e348
- Switch with_docs and run_test macros to bcond_without docs, tests
91e348
91e348
* Thu Aug 10 2017 Tomas Orsava <torsava@redhat.com> - 1.4.34-3
91e348
- Added the platform-python subpackage
91e348
91e348
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.34-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
91e348
91e348
* Mon Jun  5 2017 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.34-1
91e348
- Update to 1.4.34.
91e348
91e348
* Sun Mar 19 2017 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.33-1
91e348
- Update to 1.4.33.
91e348
91e348
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.32-3
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
91e348
91e348
* Fri Dec 30 2016 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.32-2
91e348
- Enable tests for Fedora<26.
91e348
91e348
* Thu Dec 29 2016 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.32-1
91e348
- Update to 1.4.32.
91e348
91e348
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 1.4.31-5
91e348
- Rebuild for Python 3.6
91e348
- Disable tests
91e348
91e348
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.31-4
91e348
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
91e348
91e348
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.31-3
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
91e348
91e348
* Sat Jan 23 2016 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.31-2
91e348
- Re-enable checks and docs.
91e348
91e348
* Sat Jan 23 2016 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.31-1
91e348
- Update to 1.4.31.
91e348
- Follow updated Python packaging guidelines.
91e348
- Add Provides tag for bundled apipkg.
91e348
91e348
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 1.4.30-3
91e348
- Rebuilt for Python3.5 rebuild
91e348
- With check and docs
91e348
91e348
* Wed Sep 23 2015 Robert Kuska <rkuska@redhat.com> - 1.4.30-2
91e348
- Rebuilt for Python3.5 rebuild without check and docs
91e348
91e348
* Mon Jul 27 2015 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.30-1
91e348
- Update to 1.4.30.
91e348
91e348
* Thu Jun 25 2015 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.29-1
91e348
- Update to 1.4.29.
91e348
91e348
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.28-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
91e348
91e348
* Fri May 29 2015 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.28-1
91e348
- Update to 1.4.28.
91e348
- Modernize spec file.
91e348
- Apply updates Python packaging guidelines.
91e348
- Mark LICENSE with %%license.
91e348
91e348
* Sat Dec  6 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.26-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Tue Dec  2 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.26-1
91e348
- Update to 1.4.26.
91e348
91e348
* Sat Oct 11 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.25-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Sat Oct 11 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.25-1
91e348
- Update to 1.4.25.
91e348
91e348
* Wed Aug  6 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.23-1
91e348
- Update to 1.4.23.
91e348
91e348
* Fri Aug  1 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.22-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Fri Aug  1 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.22-1
91e348
- Update to 1.4.22.
91e348
91e348
* Fri Jul 18 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.21-1
91e348
- Update to 1.4.21.
91e348
91e348
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.20-3.1
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
91e348
91e348
* Fri May 09 2014 Dennis Gilmore <dennis@ausil.us> - 1.4.20-2.1
91e348
- rebuild for python 3.4 disable tests for circular deps
91e348
91e348
* Fri Apr 18 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.20-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Fri Apr 18 2014 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.20-1
91e348
- Update to 1.4.20.
91e348
91e348
* Sun Nov 10 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.18-1
91e348
- Update to 1.4.18.
91e348
91e348
* Mon Oct  7 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.17-2
91e348
- Only run tests from the 'testing' subdir in %%check.
91e348
91e348
* Fri Oct  4 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.17-1
91e348
- Update to 1.4.17.
91e348
91e348
* Thu Oct  3 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.16-1
91e348
- Update to 1.4.16.
91e348
91e348
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.15-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
91e348
91e348
* Sun Jun 30 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.15-1
91e348
- Update to 1.4.15.
91e348
- Disable failing Subversion checks for now.
91e348
91e348
* Wed Jun 12 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.14-2
91e348
- Use python-sphinx for rhel > 6 (rhbz#973321).
91e348
- Update URL.
91e348
- Fix changelog entry with an incorrect date (rhbz#973325).
91e348
91e348
* Sat May 11 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.14-1
91e348
- Update to 1.4.14.
91e348
91e348
* Sat Mar  2 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.13-1
91e348
- Update to 1.4.13.
91e348
91e348
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
91e348
91e348
* Fri Nov 23 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.12-1
91e348
- Update to 1.4.12.
91e348
91e348
* Sat Oct 27 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.11-1
91e348
- Update to 1.4.11.
91e348
91e348
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.10-2
91e348
- Re-enable doc building and testsuite.
91e348
- Minor testsuite fixes.
91e348
91e348
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.10-1
91e348
- Update to 1.4.10.
91e348
91e348
* Fri Oct 12 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-8
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Thu Oct 11 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-7
91e348
- Add conditional for sphinx on rhel.
91e348
- Remove rhel logic from with_python3 conditional.
91e348
91e348
* Wed Oct 10 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-6
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Sat Aug  4 2012 David Malcolm <dmalcolm@redhat.com> - 1.4.9-5
91e348
- Temporarily disable docs and testsuite.
91e348
91e348
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.4.9-4
91e348
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
91e348
91e348
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-3
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
91e348
91e348
* Fri Jun 15 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Thu Jun 14 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-1
91e348
- Update to 1.4.9.
91e348
91e348
* Sat Jun  9 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.8-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Wed Jun  6 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.8-1
91e348
- Update to 1.4.8.
91e348
91e348
* Wed Feb  8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.7-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Wed Feb  8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.7-1
91e348
- Update to 1.4.7.
91e348
91e348
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-3
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
91e348
91e348
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.6-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.6-1
91e348
- Update to 1.4.6.
91e348
- Remove %%prerelease macro.
91e348
- Temporarily disable docs and testsuite.
91e348
91e348
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-4
91e348
- Rebuilt for glibc bug#747377
91e348
91e348
* Sat Sep  3 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.5-3
91e348
- Fix: python3 dependencies.
91e348
91e348
* Tue Aug 30 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.5-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Sat Aug 27 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.5-1
91e348
- Update to 1.4.5.
91e348
91e348
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.4-2
91e348
- Re-enable doc building and testsuite.
91e348
91e348
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.4-1
91e348
- Update to 1.4.4.
91e348
- Upstream provides a .zip archive only.
91e348
- pytest and pycmd are separate packages now.
91e348
- Disable building html docs und the testsuite to break the circular
91e348
  build dependency with pytest.
91e348
- Update summary and description.
91e348
- Remove BRs no longer needed.
91e348
- Create a Python 3 subpackage.
91e348
91e348
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
91e348
91e348
* Sat Sep 18 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.4-1
91e348
- Update to 1.3.4
91e348
91e348
* Fri Aug 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.3-2
91e348
- Add dependency on python-setuptools (see bz 626808).
91e348
91e348
* Sat Jul 31 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.3-1
91e348
- Update to 1.3.3.
91e348
91e348
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.2-2
91e348
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
91e348
91e348
* Sat Jul 10 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.2-1
91e348
- Update to 1.3.2.
91e348
- Do cleanups already in %%prep to avoid inconsistent mtimes between
91e348
  source files and bytecode.
91e348
91e348
* Sat May 29 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.1-1
91e348
- Update to 1.3.1.
91e348
91e348
* Sat May  8 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.0-1
91e348
- Update to 1.3.0.
91e348
- Remove some backup (.orig) files.
91e348
91e348
* Sun Feb 14 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.2.1-1
91e348
- Update to 1.2.1.
91e348
91e348
* Wed Jan 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.2.0-1
91e348
- Update to 1.2.0.
91e348
- Adjust summary and %%description.
91e348
- Use %%global instead of %%define.
91e348
91e348
* Sat Nov 28 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.1.1-1
91e348
- Update to 1.1.1.
91e348
91e348
* Sat Nov 21 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.1.0-1
91e348
- Update to 1.1.0. Upstream reorganized the package's structure and
91e348
  cleaned up the install process, so the specfile could be greatly
91e348
  simplified.
91e348
- Dropped licenses for files no longer present from the License tag.
91e348
91e348
* Thu Aug 27 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.2-1
91e348
- Update to 1.0.2.
91e348
- One failing test is no longer part of the testsuite, thus needs not
91e348
  to be skipped anymore.
91e348
- Some developer docs are missing this time in upstream's tarfile, so
91e348
  cannot be moved to %%{_docdir}
91e348
91e348
* Thu Aug 13 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.0-1
91e348
- Update to 1.0.0.
91e348
- Re-enable SVN tests in %%check.
91e348
91e348
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-1.b8
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
91e348
91e348
* Wed Jul 22 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.0-0.b8
91e348
- Update to 1.0.0b8.
91e348
- Remove patches applied upstream.
91e348
- Greenlets have been removed upstream. So, package is noarch and
91e348
  - installs to %%{python_sitelib} again
91e348
  - %%ifarch sections have been removed.
91e348
- Don't remove files used by the testsuite for now.
91e348
- Add dependency on python-pygments, pylint and pexpect (for the
91e348
  testsuite).
91e348
91e348
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-7
91e348
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
91e348
91e348
* Wed Jan 14 2009 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-6
91e348
- Use system doctest module again, as this wasn't the real cause of
91e348
  the test failure. Instead, remove the failing test for now.
91e348
91e348
* Fri Dec 12 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-5
91e348
- Add patch from trunk fixing a subversion 1.5 problem (pylib
91e348
  issue66).
91e348
- Don't replace doctest compat module (pylib issue67).
91e348
91e348
* Fri Nov 21 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-4
91e348
- Use dummy_greenlet on ppc and ppc64.
91e348
91e348
* Tue Oct  7 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-3
91e348
- Replace compat modules by stubs using the system modules instead.
91e348
- Add patch from trunk fixing a timing issue in the tests.
91e348
91e348
* Tue Sep 30 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-2
91e348
- Update license information.
91e348
- Fix the tests.
91e348
91e348
* Sun Sep  7 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-1
91e348
- Update to 0.9.2.
91e348
- Upstream now uses setuptools and installs to %%{python_sitearch}.
91e348
- Remove %%{srcname} macro.
91e348
- More detailed information about licenses.
91e348
91e348
* Thu Aug 21 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.1-1
91e348
- New package.