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