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