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