Blame SPECS/python3-setuptools.spec

60623e
%global srcname setuptools
60623e
60623e
#  WARNING  When bootstrapping, disable tests as well,
60623e
#           because tests need pip.
60623e
%bcond_with bootstrap
60623e
# RHEL7: Tests disabled because the minimal RHEL7 Python 3 stack does not
60623e
# contain test dependencies
60623e
%bcond_with tests
60623e
60623e
%if %{without bootstrap}
60623e
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
60623e
%global python3_wheelname %python_wheelname
60623e
%global python3_record %{python3_sitelib}/%{srcname}-%{version}.dist-info/RECORD
60623e
%endif
60623e
60623e
Name:           python3-setuptools
60623e
# When updating, update the bundled libraries versions bellow!
60623e
Version:        39.2.0
60623e
Release:        10%{?dist}
60623e
Summary:        Easily build and distribute Python 3 packages
60623e
60623e
Group:          Applications/System
60623e
# setuptools is MIT
60623e
# packaging is BSD or ASL 2.0
60623e
# pyparsing is MIT
60623e
# six is MIT
60623e
License:        MIT and (BSD or ASL 2.0)
60623e
URL:            https://pypi.python.org/pypi/%{srcname}
60623e
Source0:        https://files.pythonhosted.org/packages/source/s/%{srcname}/%{srcname}-%{version}.zip
60623e
60623e
60623e
# Workaround for rhbz#1691402:
60623e
# Define __python to be /usr/bin/python3 so that brp-python-bytecompile uses it
60623e
# as the default_python, and doesn't exit bytecompilation when it doesn't find
60623e
# /usr/bin/python, which is not installed
60623e
%global __python %{__python3}
60623e
60623e
60623e
%{?python_provide:%python_provide python3-setuptools}
60623e
60623e
# In Fedora, sudo setup.py install installs to /usr/local/lib/pythonX.Y/site-packages
60623e
# But pythonX doesn't own that dir, that would be against FHS
60623e
# We need to create it if it doesn't exist
60623e
# https://bugzilla.redhat.com/show_bug.cgi?id=1576924
60623e
Patch0:         create-site-packages.patch
60623e
60623e
BuildArch:      noarch
60623e
60623e
BuildRequires:  gcc
60623e
BuildRequires:  python3-devel
60623e
%if %{with tests}
60623e
BuildRequires:  python3-pip
60623e
BuildRequires:  python3-pytest
60623e
BuildRequires:  python3-mock
60623e
BuildRequires:  python3-pytest-fixture-config
60623e
BuildRequires:  python3-pytest-virtualenv
60623e
%endif # with tests
60623e
%if %{without bootstrap}
60623e
BuildRequires:  python3-pip
60623e
BuildRequires:  python3-wheel
60623e
# RHEL7: python-setuptools is rebuilt before the final build of python3, which
60623e
# adds the dependency on python3-rpm-generators, so we require it manually.
60623e
BuildRequires:  python3-rpm-generators
60623e
%endif # without bootstrap
60623e
60623e
# We're replacing the functionality of the python36 packages from EPEL
60623e
Provides: python36-setuptools = %{version}-%{release}
60623e
Obsoletes: python36-setuptools < %{version}-%{release}
60623e
60623e
# Virtual provides for the packages bundled by setuptools.
60623e
# You can find the versions in setuptools/setuptools/_vendor/vendored.txt
60623e
%global bundled() %{expand:
60623e
Provides: bundled(python%{1}dist(packaging)) = 16.8
60623e
Provides: bundled(python%{1}dist(pyparsing)) = 2.1.10
60623e
Provides: bundled(python%{1}dist(six)) = 1.10.0
60623e
}
60623e
%{bundled 3}
60623e
60623e
%description
60623e
Setuptools is a collection of enhancements to the Python 3 distutils that allow
60623e
you to more easily build and distribute Python 3 packages, especially ones that
60623e
have dependencies on other packages.
60623e
60623e
This package also contains the runtime components of setuptools, necessary to
60623e
execute the software that requires pkg_resources.py.
60623e
60623e
%prep
60623e
%autosetup -p1 -n %{srcname}-%{version}
60623e
60623e
# We can't remove .egg-info (but it doesn't matter, since it'll be rebuilt):
60623e
#  The problem is that to properly execute setuptools' setup.py,
60623e
#   it is needed for setuptools to be loaded as a Distribution
60623e
#   (with egg-info or .dist-info dir), it's not sufficient
60623e
#   to just have them on PYTHONPATH
60623e
#  Running "setup.py install" without having setuptools installed
60623e
#   as a distribution gives warnings such as
60623e
#    ... distutils/dist.py:267: UserWarning: Unknown distribution option: 'entry_points'
60623e
#   and doesn't create "easy_install" and .egg-info directory
60623e
# Note: this is only a problem if bootstrapping wheel or building on RHEL,
60623e
#  otherwise setuptools are installed as dependency into buildroot
60623e
60623e
# Strip shbang
60623e
find setuptools pkg_resources -name \*.py | xargs sed -i -e '1 {/^#!\//d}'
60623e
# Remove bundled exes
60623e
rm -f setuptools/*.exe
60623e
# These tests require internet connection
60623e
rm setuptools/tests/test_integration.py 
60623e
60623e
%build
60623e
%if %{without bootstrap}
60623e
%py3_build_wheel
60623e
%else
60623e
%py3_build
60623e
%endif
60623e
60623e
60623e
%install
60623e
# Must do the python3 install first because the scripts in /usr/bin are
60623e
# overwritten with every setup.py install (and we want the python2 version to
60623e
# be the default for now).
60623e
%if %{without bootstrap}
60623e
%py3_install_wheel %{python3_wheelname}
60623e
60623e
# Remove /usr/bin/easy_install from the record as later on we delete the file
60623e
sed -i '/\/usr\/bin\/easy_install,/d' %{buildroot}%{python3_record}
60623e
%else
60623e
%py3_install
60623e
%endif
60623e
60623e
# TODO: we have to remove this by hand now, but it'd be nice if we wouldn't have to
60623e
# (pip install wheel doesn't overwrite)
60623e
rm %{buildroot}%{_bindir}/easy_install
60623e
60623e
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
60623e
%if %{without bootstrap}
60623e
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python3_record}
60623e
%endif
60623e
60623e
find %{buildroot}%{python3_sitelib} -name '*.exe' | xargs rm -f
60623e
60623e
# Don't ship these
60623e
rm -r docs/{Makefile,conf.py,_*}
60623e
60623e
%if %{with tests}
60623e
%check
60623e
# --ignore=setuptools/tests/test_virtualenv.py: because virtualenv executable
60623e
#   is configured only for Python 2 version of virtualenv—this needs to be fixed
60623e
#   in the `python-pytest-virtualenv` package
60623e
PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) py.test-%{python3_version} --ignore=setuptools/tests/test_virtualenv.py
60623e
%endif # with tests
60623e
60623e
60623e
%files
60623e
%license LICENSE
60623e
%doc docs/* CHANGES.rst README.rst
60623e
%{python3_sitelib}/easy_install.py
60623e
%{python3_sitelib}/pkg_resources/
60623e
%{python3_sitelib}/setuptools*/
60623e
%{python3_sitelib}/__pycache__/*
60623e
%{_bindir}/easy_install-3.*
60623e
60623e
60623e
%changelog
60623e
* Thu Mar 21 2019 Tomas Orsava <torsava@redhat.com> - 39.2.0-10
60623e
- Add a workaround for a bug in bytecompilation (rhbz#1691402)
60623e
Resolves: rhbz#1660563
60623e
60623e
* Thu Mar 14 2019 Tomas Orsava <torsava@redhat.com> - 39.2.0-9
60623e
- Finish bootstrapping in RHEL-7.7
60623e
Resolves: rhbz#1660563
60623e
60623e
* Mon Jan 28 2019 Lumír Balhar <lbalhar@redhat.com> - 39.2.0-8
60623e
- SRPM renamed from python-setuptools to python3-setuptools
60623e
- Package prepared to contain only Python 3 version
60623e
Resolves: rhbz#1660563
60623e
60623e
* Mon Jan 14 2019 Lumír Balhar <lbalhar@redhat.com> - 39.2.0-7
60623e
- Converting specfile from F28 to RHEL7
60623e
- Tests disabled because the minimal RHEL7 Python 3 stack does not contain test
60623e
  dependencies
60623e
- Disabled building of the Python 2 subpackage
60623e
Resolves: rhbz#1660563
60623e
60623e
* Thu Jul 19 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-6
60623e
- Create /usr/local/lib/pythonX.Y when needed (#1576924)
60623e
60623e
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 39.2.0-5
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
60623e
60623e
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-4
60623e
- Rebuilt for Python 3.7
60623e
60623e
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-3
60623e
- Bootstrap for Python 3.7
60623e
60623e
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-2
60623e
- Bootstrap for Python 3.7
60623e
60623e
* Wed May 23 2018 Charalampos Stratakis <cstratak@redhat.com> - 39.2.0-1
60623e
- update to 39.2.0 Fixes bug #1572889
60623e
60623e
* Tue Mar 20 2018 Charalampos Stratakis <cstratak@redhat.com> - 39.0.1-1
60623e
- update to 39.0.1 Fixes bug #1531527
60623e
60623e
* Wed Mar 14 2018 Tomas Orsava <torsava@redhat.com> - 38.4.0-4
60623e
- Skip test_virtualenv due to broken executable detection
60623e
60623e
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 38.4.0-3
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
60623e
60623e
* Tue Jan 16 2018 Troy Dawson <tdawson@redhat.com> - 38.4.0-2
60623e
- Update conditional
60623e
60623e
* Tue Jan 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 38.4.0-1
60623e
- update to 38.4.0 Fixes bug #1531527
60623e
60623e
* Tue Jan 02 2018 Charalampos Stratakis <cstratak@redhat.com> - 38.2.5-1
60623e
- update to 38.2.5 Fixes bug #1528968
60623e
60623e
* Tue Nov 21 2017 Miro Hrončok <mhroncok@redhat.com> - 37.0.0-1
60623e
- Update to 37.0.0 (fixes #1474126)
60623e
- Removed not needed pip3 patch (upstream included different version of fix)
60623e
60623e
* Tue Nov 21 2017 Miro Hrončok <mhroncok@redhat.com> - 36.5.0-1
60623e
- Update to 36.5.0 (related to #1474126)
60623e
60623e
* Thu Nov 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-8
60623e
- Remove the platform-python subpackage
60623e
60623e
* Sun Aug 20 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-7
60623e
- Re-enable tests to finish bootstrapping the platform-python stack
60623e
  (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
60623e
60623e
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-6
60623e
- Add the platform-python subpackage
60623e
- Disable tests so platform-python stack can be bootstrapped
60623e
  (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
60623e
60623e
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-5
60623e
- Add Patch 0 that fixes a test suite failure on Python 3 in absence of
60623e
  the Python 2 version of pip
60623e
- Move docs to their proper place
60623e
60623e
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-4
60623e
- Switch macros to bcond's and make Python 2 optional to facilitate building
60623e
  the Python 2 and Python 3 modules.
60623e
60623e
* Tue Aug 08 2017 Michal Cyprian <mcyprian@redhat.com> - 36.2.0-3
60623e
- Revert "Add --executable option to easy_install command"
60623e
  This enhancement is currently not needed and it can possibly
60623e
  collide with `pip --editable`option
60623e
60623e
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 36.2.0-2
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
60623e
60623e
* Sat Jul 15 2017 Charalampos Stratakis <cstratak@redhat.com> - 36.2.0-1
60623e
- update to 36.2.0. Fixes bug #1470908
60623e
60623e
* Thu Jun 15 2017 Charalampos Stratakis <cstratak@redhat.com> - 36.0.1-1
60623e
- update to 36.0.1. Fixes bug #1458093
60623e
60623e
* Sat May 27 2017 Kevin Fenzi <kevin@scrye.com> - 35.0.2-1
60623e
- update to 35.0.2. Fixes bug #1446622
60623e
60623e
* Sun Apr 23 2017 Kevin Fenzi <kevin@scrye.com> - 35.0.1-1
60623e
- Update to 35.0.1. Fixes bug #1440388
60623e
60623e
* Sat Mar 25 2017 Kevin Fenzi <kevin@scrye.com> - 34.3.2-1
60623e
- Update to 34.3.2. Fixes bug #1428818
60623e
60623e
* Sat Feb 25 2017 Kevin Fenzi <kevin@scrye.com> - 34.3.0-1
60623e
- Update to 34.3.0. Fixes bug #1426463
60623e
60623e
* Fri Feb 17 2017 Michal Cyprian <mcyprian@redhat.com> - 34.2.0-2
60623e
- Add --executable option to easy_install command
60623e
60623e
* Thu Feb 16 2017 Charalampos Stratakis <cstratak@redhat.com> - 34.2.0-1
60623e
- Update to 34.2.0. Fixes bug #1421676
60623e
60623e
* Sat Feb 04 2017 Kevin Fenzi <kevin@scrye.com> - 34.1.1-1
60623e
- Update to 34.1.1. Fixes bug #1412268
60623e
- Fix License tag. Fixes bug #1412268
60623e
- Add Requires for fomerly bundled projects: six, packaging appdirs
60623e
60623e
* Tue Jan 03 2017 Michal Cyprian <mcyprian@redhat.com> - 32.3.1-2
60623e
- Use python macros in build and install sections
60623e
60623e
* Thu Dec 29 2016 Kevin Fenzi <kevin@scrye.com> - 32.3.1-1
60623e
- Update to 32.3.1. Fixes bug #1409091
60623e
60623e
* Wed Dec 28 2016 Kevin Fenzi <kevin@scrye.com> - 32.3.0-1
60623e
- Update to 32.3.0. Fixes bug #1408564
60623e
60623e
* Fri Dec 23 2016 Kevin Fenzi <kevin@scrye.com> - 32.2.0-1
60623e
- Update to 32.2.0. Fixes bug #1400310
60623e
60623e
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 30.4.0-2
60623e
- Enable tests
60623e
60623e
* Sun Dec 11 2016 Kevin Fenzi <kevin@scrye.com> - 30.4.0-1
60623e
- Update to 30.4.0. Fixes bug #1400310
60623e
60623e
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 28.8.0-3
60623e
- Rebuild for Python 3.6 with wheel
60623e
- Disable tests
60623e
60623e
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 28.8.0-2
60623e
- Rebuild for Python 3.6 without wheel
60623e
60623e
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 28.8.0-1
60623e
- Update to 28.8.1. Fixes bug #1392722
60623e
60623e
* Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 28.7.1-1
60623e
- Update to 28.7.1. Fixes bug #1389917
60623e
60623e
* Tue Oct 25 2016 Kevin Fenzi <kevin@scrye.com> - 28.6.1-1
60623e
- Update to 28.6.1. Fixes bug #1387071
60623e
60623e
* Tue Oct 18 2016 Kevin Fenzi <kevin@scrye.com> - 28.6.0-1
60623e
- Update to 28.6.0. Fixes bug #1385655
60623e
60623e
* Sat Oct 08 2016 Kevin Fenzi <kevin@scrye.com> - 28.3.0-1
60623e
- Update to 28.3.0. Fixes bug #1382971
60623e
60623e
* Sun Oct 02 2016 Kevin Fenzi <kevin@scrye.com> - 28.2.0-1
60623e
- Update to 28.2.0. Fixes bug #1381099
60623e
60623e
* Sun Oct 02 2016 Kevin Fenzi <kevin@scrye.com> - 28.1.0-1
60623e
- Update to 28.1.0. Fixes bug #1381066
60623e
60623e
* Wed Sep 28 2016 Kevin Fenzi <kevin@scrye.com> - 28.0.0-1
60623e
- Update to 28.0.0. Fixes bug #1380073
60623e
60623e
* Sun Sep 25 2016 Kevin Fenzi <kevin@scrye.com> - 27.3.0-1
60623e
- Update to 27.3.0. Fixes bug #1378067
60623e
60623e
* Sat Sep 17 2016 Kevin Fenzi <kevin@scrye.com> - 27.2.0-1
60623e
- Update to 27.2.0. Fixes bug #1376298
60623e
60623e
* Sat Sep 10 2016 Kevin Fenzi <kevin@scrye.com> - 27.1.2-1
60623e
- Update to 27.1.2. Fixes bug #1370777
60623e
60623e
* Sat Aug 27 2016 Kevin Fenzi <kevin@scrye.com> - 26.0.0-1
60623e
- Update to 26.0.0. Fixes bug #1370777
60623e
60623e
* Wed Aug 10 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.6-1
60623e
- Update to 25.1.6. Fixes bug #1362325
60623e
60623e
* Fri Jul 29 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.1-1
60623e
- Update to 25.1.1. Fixes bug #1361465
60623e
60623e
* Thu Jul 28 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.0-1
60623e
- Update to 25.1.0
60623e
60623e
* Sat Jul 23 2016 Kevin Fenzi <kevin@scrye.com> - 25.0.0-1
60623e
- Update to 25.0.0
60623e
60623e
* Fri Jul 22 2016 Kevin Fenzi <kevin@scrye.com> - 24.2.0-1
60623e
- Update to 24.2.0. Fixes bug #1352734
60623e
60623e
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 24.0.1-2
60623e
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
60623e
60623e
* Mon Jul 04 2016 Kevin Fenzi <kevin@scrye.com> - 24.0.1-1
60623e
- Update to 24.0.1. Fixes bug #1352532
60623e
60623e
* Wed Jun 15 2016 Kevin Fenzi <kevin@scrye.com> - 23.0.0-1
60623e
- Update to 23.0.0. Fixes bug #1346542
60623e
60623e
* Tue Jun 07 2016 Kevin Fenzi <kevin@scrye.com> - 22.0.5-1
60623e
- Update to 22.0.5. Fixes bug #1342706
60623e
60623e
* Thu Jun 02 2016 Kevin Fenzi <kevin@scrye.com> - 20.0.0-1
60623e
- Upgrade to 22.0.0
60623e
60623e
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
60623e
- fix source URL
60623e
60623e
* Sun May 29 2016 Kevin Fenzi <kevin@scrye.com> - 21.2.2-1
60623e
- Update to 21.2.2. Fixes bug #1332357
60623e
60623e
* Thu Apr 28 2016 Kevin Fenzi <kevin@scrye.com> - 20.10.1-1
60623e
- Update to 20.10.1. Fixes bug #1330375
60623e
60623e
* Sat Apr 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.9.0-1
60623e
- Update to 20.9.0. Fixes bug #1327827
60623e
60623e
* Fri Apr 15 2016 Kevin Fenzi <kevin@scrye.com> - 20.8.1-1
60623e
- Update to 20.8.1. Fixes bug #1325910
60623e
60623e
* Thu Mar 31 2016 Kevin Fenzi <kevin@scrye.com> - 20.6.7-1
60623e
- Update to 20.6.7. Fixes bug #1322836
60623e
60623e
* Wed Mar 30 2016 Kevin Fenzi <kevin@scrye.com> - 20.4-1
60623e
- Update to 20.4. Fixes bug #1319366
60623e
60623e
* Wed Mar 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.3-1
60623e
- Update to 20.3. Fixes bug #1311967
60623e
60623e
* Sat Feb 27 2016 Kevin Fenzi <kevin@scrye.com> - 20.2.2-1
60623e
- Update to 20.2.2. Fixes bug #1311967
60623e
60623e
* Sat Feb 13 2016 Kevin Fenzi <kevin@scrye.com> - 20.1.1-1
60623e
- Update to 20.1.1. Fixes bug #130719
60623e
60623e
* Fri Feb 12 2016 Kevin Fenzi <kevin@scrye.com> - 20.1-1
60623e
- Update to 20.1. Fixes bug #1307000
60623e
60623e
* Mon Feb 08 2016 Kevin Fenzi <kevin@scrye.com> - 20.0-1
60623e
- Update to 20.0. Fixes bug #1305394
60623e
60623e
* Sat Feb 06 2016 Kevin Fenzi <kevin@scrye.com> - 19.7-1
60623e
- Update to 19.7. Fixes bug #1304563
60623e
60623e
* Wed Feb 3 2016 Orion Poplawski <orion@cora.nwra.com> - 19.6.2-2
60623e
- Fix python3 package file ownership
60623e
60623e
* Sun Jan 31 2016 Kevin Fenzi <kevin@scrye.com> - 19.6.2-1
60623e
- Update to 19.6.2. Fixes bug #1303397
60623e
60623e
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.6-1
60623e
- Update to 19.6.
60623e
60623e
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.5-1
60623e
- Update to 19.5. Fixes bug #1301313
60623e
60623e
* Mon Jan 18 2016 Kevin Fenzi <kevin@scrye.com> - 19.4-1
60623e
- Update to 19.4. Fixes bug #1299288
60623e
60623e
* Tue Jan 12 2016 Orion Poplawski <orion@cora.nwra.com> - 19.2-2
60623e
- Cleanup spec from python3-setuptools review
60623e
60623e
* Fri Jan 08 2016 Kevin Fenzi <kevin@scrye.com> - 19.2-1
60623e
- Update to 19.2. Fixes bug #1296755
60623e
60623e
* Fri Dec 18 2015 Kevin Fenzi <kevin@scrye.com> - 19.1.1-1
60623e
- Update to 19.1.1. Fixes bug #1292658
60623e
60623e
* Tue Dec 15 2015 Kevin Fenzi <kevin@scrye.com> - 18.8.1-1
60623e
- Update to 18.8.1. Fixes bug #1291678
60623e
60623e
* Sat Dec 12 2015 Kevin Fenzi <kevin@scrye.com> - 18.8-1
60623e
- Update to 18.8. Fixes bug #1290942
60623e
60623e
* Fri Dec 04 2015 Kevin Fenzi <kevin@scrye.com> - 18.7.1-1
60623e
- Update to 18.7.1. Fixes bug #1287372
60623e
60623e
* Wed Nov 25 2015 Kevin Fenzi <kevin@scrye.com> - 18.6.1-1
60623e
- Update to 18.6.1. Fixes bug #1270578
60623e
60623e
* Sun Nov 15 2015 Thomas Spura <tomspur@fedoraproject.org> - 18.5-3
60623e
- Try to disable zip_safe bug #1271776
60623e
- Add python2 subpackage
60623e
60623e
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 18.5-2
60623e
- Add patch so it is possible to set test_args variable
60623e
60623e
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 18.5-1
60623e
- Update to 18.5. Fixes bug #1270578
60623e
60623e
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.coM> - 18.4-1
60623e
- Update to 18.4. Fixes bug #1270578
60623e
- Build with wheel and check phase
60623e
60623e
* Wed Sep 23 2015 Robert Kuska <rkuska@redhat.com> - 18.3.2-2
60623e
- Python3.5 rebuild: rebuild without wheel and check phase
60623e
60623e
* Tue Sep 22 2015 Kevin Fenzi <kevin@scrye.com> 18.3.2-1
60623e
- Update to 18.3.2. Fixes bug #1264902
60623e
60623e
* Mon Sep 07 2015 Kevin Fenzi <kevin@scrye.com> 18.3.1-1
60623e
- Update to 18.3.1. Fixes bug #1256188
60623e
60623e
* Wed Aug 05 2015 Kevin Fenzi <kevin@scrye.com> 18.1-1
60623e
- Update to 18.1. Fixes bug #1249436
60623e
60623e
* Mon Jun 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 18.0.1-2
60623e
- Explicitely provide python2-setuptools
60623e
60623e
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 18.0.1-1
60623e
- Update to 18.0.1
60623e
60623e
* Sat Jun 20 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-3
60623e
- Drop no longer needed Requires/BuildRequires on python-backports-ssl_match_hostname
60623e
- Fixes bug #1231325
60623e
60623e
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.1.1-2
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
60623e
60623e
* Wed Jun 10 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-1
60623e
- Update to 17.1.1. Fixes bug 1229507
60623e
60623e
* Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 17.1-1
60623e
- Update to 17.1. Fixes bug 1229066
60623e
60623e
* Sat May 30 2015 Kevin Fenzi <kevin@scrye.com> 17.0-1
60623e
- Update to 17
60623e
60623e
* Mon May 18 2015 Kevin Fenzi <kevin@scrye.com> 16.0-1
60623e
- Update to 16
60623e
60623e
* Mon Apr 27 2015 Ralph Bean <rbean@redhat.com> - 15.2-1
60623e
- new version
60623e
60623e
* Sat Apr 04 2015 Ralph Bean <rbean@redhat.com> - 15.0-1
60623e
- new version
60623e
60623e
* Sun Mar 22 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
60623e
- new version
60623e
60623e
* Sat Mar 21 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
60623e
- new version
60623e
60623e
* Mon Mar 16 2015 Ralph Bean <rbean@redhat.com> - 14.3-1
60623e
- new version
60623e
60623e
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.2-1
60623e
- new version
60623e
60623e
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.1.1-1
60623e
- new version
60623e
60623e
* Fri Mar 06 2015 Ralph Bean <rbean@redhat.com> - 13.0.2-1
60623e
- new version
60623e
60623e
* Thu Mar 05 2015 Ralph Bean <rbean@redhat.com> - 12.4-1
60623e
- new version
60623e
60623e
* Fri Feb 27 2015 Ralph Bean <rbean@redhat.com> - 12.3-1
60623e
- new version
60623e
60623e
* Tue Jan 20 2015 Kevin Fenzi <kevin@scrye.com> 12.0.3-1
60623e
- Update to 12.0.3
60623e
60623e
* Fri Jan 09 2015 Slavek Kabrda <bkabrda@redhat.com> - 11.3.1-2
60623e
- Huge spec cleanup
60623e
- Make spec buildable on all Fedoras and RHEL 6 and 7
60623e
- Make tests actually run
60623e
60623e
* Wed Jan 07 2015 Kevin Fenzi <kevin@scrye.com> 11.3.1-1
60623e
- Update to 11.3.1. Fixes bugs: #1179393 and #1178817
60623e
60623e
* Sun Jan 04 2015 Kevin Fenzi <kevin@scrye.com> 11.0-1
60623e
- Update to 11.0. Fixes bug #1178421
60623e
60623e
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 8.2.1-1
60623e
- Update to 8.2.1. Fixes bug #1175229
60623e
60623e
* Thu Oct 23 2014 Ralph Bean <rbean@redhat.com> - 7.0-1
60623e
- Latest upstream.  Fixes bug #1154590.
60623e
60623e
* Mon Oct 13 2014 Ralph Bean <rbean@redhat.com> - 6.1-1
60623e
- Latest upstream.  Fixes bug #1152130.
60623e
60623e
* Sat Oct 11 2014 Ralph Bean <rbean@redhat.com> - 6.0.2-2
60623e
- Modernized python2 macros.
60623e
- Inlined locale environment variables in the %%check section.
60623e
- Remove bundled egg-info and .exes.
60623e
60623e
* Fri Oct 03 2014 Kevin Fenzi <kevin@scrye.com> 6.0.2-1
60623e
- Update to 6.0.2
60623e
60623e
* Sat Sep 27 2014 Kevin Fenzi <kevin@scrye.com> 6.0.1-1
60623e
- Update to 6.0.1. Fixes bug #1044444
60623e
60623e
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-8
60623e
- Remove the python-setuptools-devel Virtual Provides as per this Fedora 21
60623e
  Change: http://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
60623e
60623e
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-7
60623e
- And another bug in sdist
60623e
60623e
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-6
60623e
- Fix a bug in the sdist command
60623e
60623e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-5
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
60623e
60623e
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-4
60623e
- Rebuild as wheel for Python 3.4
60623e
60623e
* Thu Apr 24 2014 Tomas Radej <tradej@redhat.com> - 2.0-3
60623e
- Rebuilt for tag f21-python
60623e
60623e
* Wed Apr 23 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-2
60623e
- Add a switch to build setuptools as wheel
60623e
60623e
* Mon Dec  9 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-1
60623e
- Update to new upstream release with a few things removed from the API:
60623e
  Changelog: https://pypi.python.org/pypi/setuptools#id139
60623e
60623e
* Mon Nov 18 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
60623e
- Update to 1.4 that gives easy_install pypi credential handling
60623e
60623e
* Thu Nov  7 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-1
60623e
- Minor upstream update to reign in overzealous warnings
60623e
60623e
* Mon Nov  4 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-1
60623e
- Upstream update that pulls in our security patches
60623e
60623e
* Mon Oct 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.7-1
60623e
- Update to newer upstream release that has our patch to the unittests
60623e
- Fix for http://bugs.python.org/issue17997#msg194950 which affects us since
60623e
  setuptools copies that code. Changed to use
60623e
  python-backports-ssl_match_hostname so that future issues can be fixed in
60623e
  that package.
60623e
60623e
* Sat Oct 26 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.6-1
60623e
- Update to newer upstream release.  Some minor incompatibilities listed but
60623e
  they should affect few, if any consumers.
60623e
60623e
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
60623e
60623e
* Tue Jul 23 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.6-1
60623e
- Upstream update -- just fixes python-2.4 compat
60623e
60623e
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.5-1
60623e
- Update to 0.9.5
60623e
  - package_index can handle hashes other than md5
60623e
  - Fix security vulnerability in SSL certificate validation
60623e
  - https://bugzilla.redhat.com/show_bug.cgi?id=963260
60623e
60623e
* Fri Jul  5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8-1
60623e
- Update to upstream 0.8  release.  Codebase now runs on anything from
60623e
  python-2.4 to python-3.3 without having to be translated by 2to3.
60623e
60623e
* Wed Jul  3 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.7-1
60623e
- Update to 0.7.7 upstream release
60623e
60623e
* Mon Jun 10 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-2
60623e
- Update to the setuptools-0.7 branch that merges distribute and setuptools
60623e
60623e
* Thu Apr 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.36-1
60623e
- Update to upstream 0.6.36.  Many bugfixes
60623e
60623e
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.28-4
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
60623e
60623e
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-3
60623e
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
60623e
60623e
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-2
60623e
- remove rhel logic from with_python3 conditional
60623e
60623e
* Mon Jul 23 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.28-1
60623e
- New upstream release:
60623e
  - python-3.3 fixes
60623e
  - honor umask when setuptools is used to install other modules
60623e
60623e
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.27-3
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
60623e
60623e
* Mon Jun 11 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-2
60623e
- Fix easy_install.py having a python3 shebang in the python2 package
60623e
60623e
* Thu Jun  7 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-1
60623e
- Upstream bugfix
60623e
60623e
* Tue May 15 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-2
60623e
- Upstream bugfix
60623e
60623e
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.24-2
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
60623e
60623e
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-1
60623e
- Upstream bugfix
60623e
- Compile the win32 launcher binary using mingw
60623e
60623e
* Sun Aug 21 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.21-1
60623e
- Upstream bugfix release
60623e
60623e
* Thu Jul 14 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.19-1
60623e
- Upstream bugfix release
60623e
60623e
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-7
60623e
- Switch to patch that I got in to upstream
60623e
60623e
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-6
60623e
- Fix build on python-3.2
60623e
60623e
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-5
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
60623e
60623e
* Sun Aug 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-4
60623e
- rebuild with python3.2
60623e
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
60623e
60623e
* Tue Aug 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-3
60623e
- Update description to mention this is distribute
60623e
60623e
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-2
60623e
- bump for building against python 2.7
60623e
60623e
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-1
60623e
- update to new version
60623e
- all patches are upsteam
60623e
60623e
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-7
60623e
- generalize path of easy_install-2.6 and -3.1 to -2.* and -3.*
60623e
60623e
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-6
60623e
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
60623e
60623e
* Sat Jul 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-5
60623e
- Upstream patch for compatibility problem with setuptools
60623e
- Minor spec cleanups
60623e
- Provide python-distribute for those who see an import distribute and need
60623e
  to get the proper package.
60623e
60623e
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-4
60623e
- Fix race condition in unittests under the python-2.6.x on F-14.
60623e
60623e
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-3
60623e
- Fix few more buildroot macros
60623e
60623e
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-2
60623e
- Include data that's needed for running tests
60623e
60623e
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-1
60623e
- Update to upstream 0.6.13
60623e
- Minor specfile formatting fixes
60623e
60623e
* Thu Feb 04 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-3
60623e
- First build with python3 support enabled.
60623e
  
60623e
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-2
60623e
- Really disable the python3 portion
60623e
60623e
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-1
60623e
- Update the python3 portions but disable for now.
60623e
- Update to 0.6.10
60623e
- Remove %%pre scriptlet as the file has a different name than the old
60623e
  package's directory
60623e
60623e
* Tue Jan 26 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-4
60623e
- Fix install to make /usr/bin/easy_install the py2 version
60623e
- Don't need python3-tools since the library is now in the python3 package
60623e
- Few other changes to cleanup style
60623e
60623e
* Fri Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.9-2
60623e
- add python3 subpackage
60623e
60623e
* Mon Dec 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-1
60623e
- New upstream bugfix release.
60623e
60623e
* Sun Dec 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-2
60623e
- Test rebuild
60623e
60623e
* Mon Nov 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-1
60623e
- Update to 0.6.8.
60623e
- Fix directory => file transition when updating from setuptools-0.6c9.
60623e
60623e
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-2
60623e
- Fix duplicate inclusion of files.
60623e
- Only Obsolete old versions of python-setuptools-devel
60623e
60623e
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-1
60623e
- Move easy_install back into the main package as the needed files have been
60623e
  moved from python-devel to the main python package.
60623e
- Update to 0.6.7 bugfix.
60623e
60623e
* Fri Oct 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
60623e
- Upstream bugfix release.
60623e
60623e
* Mon Oct 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-1
60623e
- First build from the distribute codebase -- distribute-0.6.4.
60623e
- Remove svn patch as upstream has chosen to go with an easier change for now.
60623e
60623e
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-5
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
60623e
60623e
* Tue Jul 14 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c9-4
60623e
- Apply SVN-1.6 versioning patch (rhbz #511021)
60623e
60623e
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-3
60623e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild