3cd12006bb
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
630 lines
22 KiB
RPMSpec
630 lines
22 KiB
RPMSpec
# Dependencies for check and wheel introduce circular dependencies
|
|
# Set this to 0 after we've bootstrapped.
|
|
|
|
%global with_check 0
|
|
%global build_wheel 0
|
|
|
|
# define some macros for RHEL 6
|
|
%global __python2 %__python
|
|
%global python2_sitelib %python_sitelib
|
|
|
|
%global srcname setuptools
|
|
%if 0%{?build_wheel}
|
|
%global python2_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
|
|
%global python2_record %{python2_sitelib}/%{srcname}-%{version}.dist-info/RECORD
|
|
%if 0%{?with_python3}
|
|
%global python3_wheelname %python2_wheelname
|
|
%global python3_record %{python3_sitelib}/%{srcname}-%{version}.dist-info/RECORD
|
|
%endif
|
|
%endif
|
|
|
|
Name: python-setuptools
|
|
Version: 38.5.1
|
|
Release: 1.el7%{?_tis_dist}.%{tis_patch_ver}
|
|
Summary: Easily build and distribute Python packages
|
|
|
|
Group: Applications/System
|
|
# LIcensing is in flux, see https://bitbucket.org/pypa/setuptools/issues/132/missing-license
|
|
License: (Python or ZPLv2.0) and ASL 2.0
|
|
URL: https://pypi.python.org/pypi/%{srcname}
|
|
#Source0: https://files.pythonhosted.org/packages/source/s/%{srcname}/%{srcname}-%{version}.tar.gz
|
|
Source0: python-setuptools-v38.5.1.tar.gz
|
|
# PSFL
|
|
#Source1: https://hg.python.org/cpython/raw-file/tip/LICENSE
|
|
Source1: LICENSE
|
|
# ZPL
|
|
#Source2: https://raw.githubusercontent.com/zopefoundation/Zope/master/LICENSE.txt
|
|
Source2: LICENSE.txt
|
|
# ASL 2.0
|
|
#Source3: http://www.apache.org/licenses/LICENSE-2.0
|
|
Source3: LICENSE-2.0
|
|
|
|
BuildArch: noarch
|
|
BuildRequires: python2-devel
|
|
%if 0%{?build_wheel}
|
|
BuildRequires: python-pip
|
|
BuildRequires: python-wheel
|
|
%endif
|
|
%if 0%{?with_check}
|
|
BuildRequires: pytest
|
|
BuildRequires: python-mock
|
|
%endif # with_check
|
|
|
|
%if 0%{?with_python3}
|
|
BuildRequires: python3-devel
|
|
%if 0%{?with_check}
|
|
BuildRequires: python3-pytest
|
|
BuildRequires: python3-mock
|
|
%endif # with_check
|
|
%if 0%{?build_wheel}
|
|
BuildRequires: python3-pip
|
|
BuildRequires: python3-wheel
|
|
%endif # build_wheel
|
|
%endif # with_python3
|
|
|
|
# We're now back to setuptools as the package.
|
|
# Keep the python-distribute name active for a few releases. Eventually we'll
|
|
# want to get rid of the Provides and just keep the Obsoletes
|
|
Provides: python-distribute = %{version}-%{release}
|
|
Obsoletes: python-distribute < 0.6.36-2
|
|
|
|
|
|
%description
|
|
Setuptools is a collection of enhancements to the Python distutils that allow
|
|
you to more easily build and distribute Python packages, especially ones that
|
|
have dependencies on other packages.
|
|
|
|
This package also contains the runtime components of setuptools, necessary to
|
|
execute the software that requires pkg_resources.py.
|
|
|
|
%package -n python2-setuptools
|
|
Summary: Easily build and distribute Python packages
|
|
%{?python_provide:%python_provide python2-setuptools}
|
|
%description -n python2-setuptools
|
|
Setuptools is a collection of enhancements to the Python distutils that allow
|
|
you to more easily build and distribute Python packages, especially ones that
|
|
have dependencies on other packages.
|
|
|
|
This package also contains the runtime components of setuptools, necessary to
|
|
execute the software that requires pkg_resources.py.
|
|
|
|
%if 0%{?with_python3}
|
|
%package -n python3-setuptools
|
|
Summary: Easily build and distribute Python 3 packages
|
|
Group: Applications/System
|
|
%{?python_provide:%python_provide python3-setuptools}
|
|
|
|
# Note: Do not need to Require python3-backports-ssl_match_hostname because it
|
|
# has been present since python3-3.2. We do not ship python3-3.0 or
|
|
# python3-3.1 anywhere
|
|
|
|
%description -n python3-setuptools
|
|
Setuptools is a collection of enhancements to the Python 3 distutils that allow
|
|
you to more easily build and distribute Python 3 packages, especially ones that
|
|
have dependencies on other packages.
|
|
|
|
This package also contains the runtime components of setuptools, necessary to
|
|
execute the software that requires pkg_resources.py.
|
|
|
|
%endif # with_python3
|
|
|
|
%prep
|
|
%setup -q -n %{srcname}-%{version}
|
|
|
|
# We can't remove .egg-info (but it doesn't matter, since it'll be rebuilt):
|
|
# The problem is that to properly execute setuptools' setup.py,
|
|
# it is needed for setuptools to be loaded as a Distribution
|
|
# (with egg-info or .dist-info dir), it's not sufficient
|
|
# to just have them on PYTHONPATH
|
|
# Running "setup.py install" without having setuptools installed
|
|
# as a distribution gives warnings such as
|
|
# ... distutils/dist.py:267: UserWarning: Unknown distribution option: 'entry_points'
|
|
# and doesn't create "easy_install" and .egg-info directory
|
|
# Note: this is only a problem if bootstrapping wheel or building on RHEL,
|
|
# otherwise setuptools are installed as dependency into buildroot
|
|
|
|
# Strip shbang
|
|
find setuptools -name \*.py | xargs sed -i -e '1 {/^#!\//d}'
|
|
# Remove bundled exes
|
|
rm -f setuptools/*.exe
|
|
# These tests require internet connection
|
|
rm setuptools/tests/test_integration.py
|
|
|
|
%build
|
|
%if 0%{?build_wheel}
|
|
%{__python} setup.py bdist_wheel
|
|
%else
|
|
export PBR_VERSION=%{version}
|
|
%{__python} bootstrap.py
|
|
%{__python} setup.py build
|
|
%endif
|
|
|
|
%if 0%{?with_python3}
|
|
%if 0%{?build_wheel}
|
|
%{__python3} setup.py bdist_wheel
|
|
%else
|
|
%{__python3} setup.py build
|
|
%endif
|
|
%endif # with_python3
|
|
|
|
%install
|
|
# Must do the python3 install first because the scripts in /usr/bin are
|
|
# overwritten with every setup.py install (and we want the python2 version
|
|
# to be the default for now).
|
|
%if 0%{?with_python3}
|
|
%if 0%{?build_wheel}
|
|
pip3 install -I dist/%{python3_wheelname} --root %{buildroot} --strip-file-prefix %{buildroot}
|
|
|
|
# TODO: we have to remove this by hand now, but it'd be nice if we wouldn't have to
|
|
# (pip install wheel doesn't overwrite)
|
|
rm %{buildroot}%{_bindir}/easy_install
|
|
|
|
sed -i '/\/usr\/bin\/easy_install,/d' %{buildroot}%{python3_record}
|
|
%else
|
|
%{__python3} setup.py install --skip-build --root %{buildroot}
|
|
%endif
|
|
|
|
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
|
|
%if 0%{?build_wheel}
|
|
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python3_record}
|
|
%endif
|
|
|
|
find %{buildroot}%{python3_sitelib} -name '*.exe' | xargs rm -f
|
|
%endif # with_python3
|
|
|
|
%if 0%{?build_wheel}
|
|
pip2 install -I dist/%{python2_wheelname} --root %{buildroot} --strip-file-prefix %{buildroot}
|
|
%else
|
|
%{__python2} setup.py install --skip-build --root %{buildroot}
|
|
%endif
|
|
|
|
rm -rf %{buildroot}%{python2_sitelib}/setuptools/tests
|
|
%if 0%{?build_wheel}
|
|
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python2_record}
|
|
%endif
|
|
|
|
install -p -m 0644 %{SOURCE1} psfl.txt
|
|
install -p -m 0644 %{SOURCE2} zpl.txt
|
|
install -p -m 0644 %{SOURCE3} asl.txt
|
|
find %{buildroot}%{python2_sitelib} -name '*.exe' | xargs rm -f
|
|
|
|
# Don't ship these
|
|
rm -r docs/{Makefile,conf.py,_*}
|
|
|
|
%if 0%{?with_check}
|
|
%check
|
|
LANG=en_US.utf8 PYTHONPATH=$(pwd) py.test
|
|
|
|
%if 0%{?with_python3}
|
|
LANG=en_US.utf8 PYTHONPATH=$(pwd) py.test-%{python3_version}
|
|
%endif # with_python3
|
|
%endif # with_check
|
|
|
|
%files -n python2-setuptools
|
|
%license psfl.txt zpl.txt asl.txt
|
|
%doc docs/*
|
|
%{python2_sitelib}/*
|
|
%{_bindir}/easy_install
|
|
%{_bindir}/easy_install-2.*
|
|
|
|
%if 0%{?with_python3}
|
|
%files -n python3-setuptools
|
|
%license psfl.txt zpl.txt asl.txt
|
|
%doc docs/*
|
|
%{python3_sitelib}/easy_install.py
|
|
%{python3_sitelib}/pkg_resources/
|
|
%{python3_sitelib}/setuptools*/
|
|
%{python3_sitelib}/__pycache__/*
|
|
%{_bindir}/easy_install-3.*
|
|
%endif # with_python3
|
|
|
|
%changelog
|
|
* Tue Jun 07 2016 Kevin Fenzi <kevin@scrye.com> - 22.0.5-1
|
|
- Update to 22.0.5. Fixes bug #1342706
|
|
|
|
* Thu Jun 02 2016 Kevin Fenzi <kevin@scrye.com> - 20.0.0-1
|
|
- Upgrade to 22.0.0
|
|
|
|
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
|
|
- fix source URL
|
|
|
|
* Sun May 29 2016 Kevin Fenzi <kevin@scrye.com> - 21.2.2-1
|
|
- Update to 21.2.2. Fixes bug #1332357
|
|
|
|
* Thu Apr 28 2016 Kevin Fenzi <kevin@scrye.com> - 20.10.1-1
|
|
- Update to 20.10.1. Fixes bug #1330375
|
|
|
|
* Sat Apr 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.9.0-1
|
|
- Update to 20.9.0. Fixes bug #1327827
|
|
|
|
* Fri Apr 15 2016 Kevin Fenzi <kevin@scrye.com> - 20.8.1-1
|
|
- Update to 20.8.1. Fixes bug #1325910
|
|
|
|
* Thu Mar 31 2016 Kevin Fenzi <kevin@scrye.com> - 20.6.7-1
|
|
- Update to 20.6.7. Fixes bug #1322836
|
|
|
|
* Wed Mar 30 2016 Kevin Fenzi <kevin@scrye.com> - 20.4-1
|
|
- Update to 20.4. Fixes bug #1319366
|
|
|
|
* Wed Mar 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.3-1
|
|
- Update to 20.3. Fixes bug #1311967
|
|
|
|
* Sat Feb 27 2016 Kevin Fenzi <kevin@scrye.com> - 20.2.2-1
|
|
- Update to 20.2.2. Fixes bug #1311967
|
|
|
|
* Sat Feb 13 2016 Kevin Fenzi <kevin@scrye.com> - 20.1.1-1
|
|
- Update to 20.1.1. Fixes bug #130719
|
|
|
|
* Fri Feb 12 2016 Kevin Fenzi <kevin@scrye.com> - 20.1-1
|
|
- Update to 20.1. Fixes bug #1307000
|
|
|
|
* Mon Feb 08 2016 Kevin Fenzi <kevin@scrye.com> - 20.0-1
|
|
- Update to 20.0. Fixes bug #1305394
|
|
|
|
* Sat Feb 06 2016 Kevin Fenzi <kevin@scrye.com> - 19.7-1
|
|
- Update to 19.7. Fixes bug #1304563
|
|
|
|
* Wed Feb 3 2016 Orion Poplawski <orion@cora.nwra.com> - 19.6.2-2
|
|
- Fix python3 package file ownership
|
|
|
|
* Sun Jan 31 2016 Kevin Fenzi <kevin@scrye.com> - 19.6.2-1
|
|
- Update to 19.6.2. Fixes bug #1303397
|
|
|
|
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.6-1
|
|
- Update to 19.6.
|
|
|
|
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.5-1
|
|
- Update to 19.5. Fixes bug #1301313
|
|
|
|
* Mon Jan 18 2016 Kevin Fenzi <kevin@scrye.com> - 19.4-1
|
|
- Update to 19.4. Fixes bug #1299288
|
|
|
|
* Tue Jan 12 2016 Orion Poplawski <orion@cora.nwra.com> - 19.2-2
|
|
- Cleanup spec from python3-setuptools review
|
|
|
|
* Fri Jan 08 2016 Kevin Fenzi <kevin@scrye.com> - 19.2-1
|
|
- Update to 19.2. Fixes bug #1296755
|
|
|
|
* Fri Dec 18 2015 Kevin Fenzi <kevin@scrye.com> - 19.1.1-1
|
|
- Update to 19.1.1. Fixes bug #1292658
|
|
|
|
* Tue Dec 15 2015 Kevin Fenzi <kevin@scrye.com> - 18.8.1-1
|
|
- Update to 18.8.1. Fixes bug #1291678
|
|
|
|
* Sat Dec 12 2015 Kevin Fenzi <kevin@scrye.com> - 18.8-1
|
|
- Update to 18.8. Fixes bug #1290942
|
|
|
|
* Fri Dec 04 2015 Kevin Fenzi <kevin@scrye.com> - 18.7.1-1
|
|
- Update to 18.7.1. Fixes bug #1287372
|
|
|
|
* Wed Nov 25 2015 Kevin Fenzi <kevin@scrye.com> - 18.6.1-1
|
|
- Update to 18.6.1. Fixes bug #1270578
|
|
|
|
* Sun Nov 15 2015 Thomas Spura <tomspur@fedoraproject.org> - 18.5-3
|
|
- Try to disable zip_safe bug #1271776
|
|
- Add python2 subpackage
|
|
|
|
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 18.5-2
|
|
- Add patch so it is possible to set test_args variable
|
|
|
|
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 18.5-1
|
|
- Update to 18.5. Fixes bug #1270578
|
|
|
|
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.coM> - 18.4-1
|
|
- Update to 18.4. Fixes bug #1270578
|
|
- Build with wheel and check phase
|
|
|
|
* Wed Sep 23 2015 Robert Kuska <rkuska@redhat.com> - 18.3.2-2
|
|
- Python3.5 rebuild: rebuild without wheel and check phase
|
|
|
|
* Tue Sep 22 2015 Kevin Fenzi <kevin@scrye.com> 18.3.2-1
|
|
- Update to 18.3.2. Fixes bug #1264902
|
|
|
|
* Mon Sep 07 2015 Kevin Fenzi <kevin@scrye.com> 18.3.1-1
|
|
- Update to 18.3.1. Fixes bug #1256188
|
|
|
|
* Wed Aug 05 2015 Kevin Fenzi <kevin@scrye.com> 18.1-1
|
|
- Update to 18.1. Fixes bug #1249436
|
|
|
|
* Mon Jun 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 18.0.1-2
|
|
- Explicitely provide python2-setuptools
|
|
|
|
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 18.0.1-1
|
|
- Update to 18.0.1
|
|
|
|
* Sat Jun 20 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-3
|
|
- Drop no longer needed Requires/BuildRequires on python-backports-ssl_match_hostname
|
|
- Fixes bug #1231325
|
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.1.1-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Wed Jun 10 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-1
|
|
- Update to 17.1.1. Fixes bug 1229507
|
|
|
|
* Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 17.1-1
|
|
- Update to 17.1. Fixes bug 1229066
|
|
|
|
* Sat May 30 2015 Kevin Fenzi <kevin@scrye.com> 17.0-1
|
|
- Update to 17
|
|
|
|
* Mon May 18 2015 Kevin Fenzi <kevin@scrye.com> 16.0-1
|
|
- Update to 16
|
|
|
|
* Mon Apr 27 2015 Ralph Bean <rbean@redhat.com> - 15.2-1
|
|
- new version
|
|
|
|
* Sat Apr 04 2015 Ralph Bean <rbean@redhat.com> - 15.0-1
|
|
- new version
|
|
|
|
* Sun Mar 22 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
|
|
- new version
|
|
|
|
* Sat Mar 21 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
|
|
- new version
|
|
|
|
* Mon Mar 16 2015 Ralph Bean <rbean@redhat.com> - 14.3-1
|
|
- new version
|
|
|
|
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.2-1
|
|
- new version
|
|
|
|
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.1.1-1
|
|
- new version
|
|
|
|
* Fri Mar 06 2015 Ralph Bean <rbean@redhat.com> - 13.0.2-1
|
|
- new version
|
|
|
|
* Thu Mar 05 2015 Ralph Bean <rbean@redhat.com> - 12.4-1
|
|
- new version
|
|
|
|
* Fri Feb 27 2015 Ralph Bean <rbean@redhat.com> - 12.3-1
|
|
- new version
|
|
|
|
* Tue Jan 20 2015 Kevin Fenzi <kevin@scrye.com> 12.0.3-1
|
|
- Update to 12.0.3
|
|
|
|
* Fri Jan 09 2015 Slavek Kabrda <bkabrda@redhat.com> - 11.3.1-2
|
|
- Huge spec cleanup
|
|
- Make spec buildable on all Fedoras and RHEL 6 and 7
|
|
- Make tests actually run
|
|
|
|
* Wed Jan 07 2015 Kevin Fenzi <kevin@scrye.com> 11.3.1-1
|
|
- Update to 11.3.1. Fixes bugs: #1179393 and #1178817
|
|
|
|
* Sun Jan 04 2015 Kevin Fenzi <kevin@scrye.com> 11.0-1
|
|
- Update to 11.0. Fixes bug #1178421
|
|
|
|
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 8.2.1-1
|
|
- Update to 8.2.1. Fixes bug #1175229
|
|
|
|
* Thu Oct 23 2014 Ralph Bean <rbean@redhat.com> - 7.0-1
|
|
- Latest upstream. Fixes bug #1154590.
|
|
|
|
* Mon Oct 13 2014 Ralph Bean <rbean@redhat.com> - 6.1-1
|
|
- Latest upstream. Fixes bug #1152130.
|
|
|
|
* Sat Oct 11 2014 Ralph Bean <rbean@redhat.com> - 6.0.2-2
|
|
- Modernized python2 macros.
|
|
- Inlined locale environment variables in the %%check section.
|
|
- Remove bundled egg-info and .exes.
|
|
|
|
* Fri Oct 03 2014 Kevin Fenzi <kevin@scrye.com> 6.0.2-1
|
|
- Update to 6.0.2
|
|
|
|
* Sat Sep 27 2014 Kevin Fenzi <kevin@scrye.com> 6.0.1-1
|
|
- Update to 6.0.1. Fixes bug #1044444
|
|
|
|
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-8
|
|
- Remove the python-setuptools-devel Virtual Provides as per this Fedora 21
|
|
Change: http://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
|
|
|
|
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-7
|
|
- And another bug in sdist
|
|
|
|
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-6
|
|
- Fix a bug in the sdist command
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-4
|
|
- Rebuild as wheel for Python 3.4
|
|
|
|
* Thu Apr 24 2014 Tomas Radej <tradej@redhat.com> - 2.0-3
|
|
- Rebuilt for tag f21-python
|
|
|
|
* Wed Apr 23 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-2
|
|
- Add a switch to build setuptools as wheel
|
|
|
|
* Mon Dec 9 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-1
|
|
- Update to new upstream release with a few things removed from the API:
|
|
Changelog: https://pypi.python.org/pypi/setuptools#id139
|
|
|
|
* Mon Nov 18 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
|
|
- Update to 1.4 that gives easy_install pypi credential handling
|
|
|
|
* Thu Nov 7 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-1
|
|
- Minor upstream update to reign in overzealous warnings
|
|
|
|
* Mon Nov 4 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-1
|
|
- Upstream update that pulls in our security patches
|
|
|
|
* Mon Oct 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.7-1
|
|
- Update to newer upstream release that has our patch to the unittests
|
|
- Fix for http://bugs.python.org/issue17997#msg194950 which affects us since
|
|
setuptools copies that code. Changed to use
|
|
python-backports-ssl_match_hostname so that future issues can be fixed in
|
|
that package.
|
|
|
|
* Sat Oct 26 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.6-1
|
|
- Update to newer upstream release. Some minor incompatibilities listed but
|
|
they should affect few, if any consumers.
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Tue Jul 23 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.6-1
|
|
- Upstream update -- just fixes python-2.4 compat
|
|
|
|
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.5-1
|
|
- Update to 0.9.5
|
|
- package_index can handle hashes other than md5
|
|
- Fix security vulnerability in SSL certificate validation
|
|
- https://bugzilla.redhat.com/show_bug.cgi?id=963260
|
|
|
|
* Fri Jul 5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8-1
|
|
- Update to upstream 0.8 release. Codebase now runs on anything from
|
|
python-2.4 to python-3.3 without having to be translated by 2to3.
|
|
|
|
* Wed Jul 3 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.7-1
|
|
- Update to 0.7.7 upstream release
|
|
|
|
* Mon Jun 10 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-2
|
|
- Update to the setuptools-0.7 branch that merges distribute and setuptools
|
|
|
|
* Thu Apr 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.36-1
|
|
- Update to upstream 0.6.36. Many bugfixes
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.28-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-3
|
|
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
|
|
|
* Fri Aug 3 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-2
|
|
- remove rhel logic from with_python3 conditional
|
|
|
|
* Mon Jul 23 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.28-1
|
|
- New upstream release:
|
|
- python-3.3 fixes
|
|
- honor umask when setuptools is used to install other modules
|
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.27-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Mon Jun 11 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-2
|
|
- Fix easy_install.py having a python3 shebang in the python2 package
|
|
|
|
* Thu Jun 7 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-1
|
|
- Upstream bugfix
|
|
|
|
* Tue May 15 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-2
|
|
- Upstream bugfix
|
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.24-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-1
|
|
- Upstream bugfix
|
|
- Compile the win32 launcher binary using mingw
|
|
|
|
* Sun Aug 21 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.21-1
|
|
- Upstream bugfix release
|
|
|
|
* Thu Jul 14 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.19-1
|
|
- Upstream bugfix release
|
|
|
|
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-7
|
|
- Switch to patch that I got in to upstream
|
|
|
|
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-6
|
|
- Fix build on python-3.2
|
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Sun Aug 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-4
|
|
- rebuild with python3.2
|
|
http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
|
|
|
|
* Tue Aug 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-3
|
|
- Update description to mention this is distribute
|
|
|
|
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-2
|
|
- bump for building against python 2.7
|
|
|
|
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-1
|
|
- update to new version
|
|
- all patches are upsteam
|
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-7
|
|
- generalize path of easy_install-2.6 and -3.1 to -2.* and -3.*
|
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
* Sat Jul 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-5
|
|
- Upstream patch for compatibility problem with setuptools
|
|
- Minor spec cleanups
|
|
- Provide python-distribute for those who see an import distribute and need
|
|
to get the proper package.
|
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-4
|
|
- Fix race condition in unittests under the python-2.6.x on F-14.
|
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-3
|
|
- Fix few more buildroot macros
|
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-2
|
|
- Include data that's needed for running tests
|
|
|
|
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-1
|
|
- Update to upstream 0.6.13
|
|
- Minor specfile formatting fixes
|
|
|
|
* Thu Feb 04 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-3
|
|
- First build with python3 support enabled.
|
|
|
|
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-2
|
|
- Really disable the python3 portion
|
|
|
|
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-1
|
|
- Update the python3 portions but disable for now.
|
|
- Update to 0.6.10
|
|
- Remove %%pre scriptlet as the file has a different name than the old
|
|
package's directory
|
|
|
|
* Tue Jan 26 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-4
|
|
- Fix install to make /usr/bin/easy_install the py2 version
|
|
- Don't need python3-tools since the library is now in the python3 package
|
|
- Few other changes to cleanup style
|
|
|
|
* Fri Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.9-2
|
|
- add python3 subpackage
|
|
|
|
* Mon Dec 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-1
|
|
- New upstream bugfix release.
|
|
|
|
* Sun Dec 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-2
|
|
- Test rebuild
|
|
|
|
* Mon Nov 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-1
|
|
- Update to 0.6.8.
|
|
- Fix directory => file transition when updating from setuptools-0.6c9.
|
|
|
|
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-2
|
|
- Fix duplicate inclusion of files.
|
|
- Only Obsolete old versions of python-setuptools-devel
|
|
|
|
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-1
|
|
- Move easy_install back into the main package as the needed files have been
|
|
moved from python-devel to the main python package.
|
|
- Update to 0.6.7 bugfix.
|
|
|
|
* Fri Oct 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
|
|
- Upstream bugfix release.
|
|
|
|
* Mon Oct 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-1
|
|
- First build from the distribute codebase -- distribute-0.6.4.
|
|
- Remove svn patch as upstream has chosen to go with an easier change for now.
|
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
* Tue Jul 14 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c9-4
|
|
- Apply SVN-1.6 versioning patch (rhbz #511021)
|
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|