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