5b97b5b
%global srcname setuptools
Matej Stuchlik ce1bf68
63cc681
#  WARNING  When bootstrapping, disable tests as well,
63cc681
#           because tests need pip.
5b97b5b
%bcond_with bootstrap
a9c42b4
%bcond_without tests
Robert Kuska 30ed86d
7a29601
%bcond_without python2
7a29601
5b97b5b
%if %{without bootstrap}
5b97b5b
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
5b97b5b
%if %{with python2}
Matej Stuchlik ce1bf68
%global python2_record %{python2_sitelib}/%{srcname}-%{version}.dist-info/RECORD
5b97b5b
%endif
Matej Stuchlik ce1bf68
%global python3_record %{python3_sitelib}/%{srcname}-%{version}.dist-info/RECORD
Matej Stuchlik ce1bf68
%endif
d7f5288
%global python_wheeldir %{_datadir}/python-wheels
9eb4e2d
9eb4e2d
Name:           python-setuptools
818fa29
# When updating, update the bundled libraries versions bellow!
ce6a163
Version:        41.6.0
ba8576a
Release:        1%{?dist}
613f26d
Summary:        Easily build and distribute Python packages
818fa29
# setuptools is MIT
818fa29
# packaging is BSD or ASL 2.0
818fa29
# pyparsing is MIT
818fa29
# six is MIT
818fa29
License:        MIT and (BSD or ASL 2.0)
33cc460
URL:            https://pypi.python.org/pypi/%{srcname}
818fa29
Source0:        %{pypi_source %{srcname} %{version} zip}
9eb4e2d
dbcd0a1
# In Fedora, sudo setup.py install installs to /usr/local/lib/pythonX.Y/site-packages
dbcd0a1
# But pythonX doesn't own that dir, that would be against FHS
dbcd0a1
# We need to create it if it doesn't exist
dbcd0a1
# https://bugzilla.redhat.com/show_bug.cgi?id=1576924
dbcd0a1
Patch0:         create-site-packages.patch
dbcd0a1
9eb4e2d
BuildArch:      noarch
5b97b5b
825148c
BuildRequires:  gcc
5b97b5b
%if %{with python2}
777077a
BuildRequires:  python2-devel
5b97b5b
%if %{without bootstrap}
5e5ba5a
BuildRequires:  python2-pip
5e5ba5a
BuildRequires:  python2-wheel
5b97b5b
%endif # without bootstrap
261a941
%if %{with tests}
99188dc
BuildRequires:  python2-futures
63cc681
BuildRequires:  python2-pip
49b1915
BuildRequires:  python2-pytest
49b1915
BuildRequires:  python2-mock
f404b22
%endif # with tests
5b97b5b
%endif # with python2
Robert Kuska 30ed86d
41b54b7
BuildRequires:  python3-devel
f404b22
%if %{with tests}
63cc681
BuildRequires:  python3-pip
e820e7a
BuildRequires:  python3-pytest
26aa65e
BuildRequires:  python3-mock
261a941
BuildRequires:  python3-pytest-fixture-config
261a941
BuildRequires:  python3-pytest-virtualenv
f404b22
%endif # with tests
5b97b5b
%if %{without bootstrap}
Matej Stuchlik ce1bf68
BuildRequires:  python3-pip
Matej Stuchlik ce1bf68
BuildRequires:  python3-wheel
76f349f
# python3 bootstrap: this is built before the final build of python3, which
76f349f
# adds the dependency on python3-rpm-generators, so we require it manually
76f349f
BuildRequires:  python3-rpm-generators
5b97b5b
%endif # without bootstrap
9eb4e2d
6f21ed3
%description
613f26d
Setuptools is a collection of enhancements to the Python distutils that allow
6f21ed3
you to more easily build and distribute Python packages, especially ones that
6f21ed3
have dependencies on other packages.
6f21ed3
c8db69c
This package also contains the runtime components of setuptools, necessary to
6f21ed3
execute the software that requires pkg_resources.py.
6f21ed3
818fa29
# Virtual provides for the packages bundled by setuptools.
818fa29
# You can find the versions in setuptools/setuptools/_vendor/vendored.txt
818fa29
%global bundled() %{expand:
818fa29
Provides: bundled(python%{1}dist(packaging)) = 16.8
818fa29
Provides: bundled(python%{1}dist(pyparsing)) = 2.2.1
818fa29
Provides: bundled(python%{1}dist(six)) = 1.10.0
818fa29
}
5b97b5b
5b97b5b
%if %{with python2}
Thomas Spura dcb79ce
%package -n python2-setuptools
Thomas Spura dcb79ce
Summary:        Easily build and distribute Python packages
Thomas Spura dcb79ce
%{?python_provide:%python_provide python2-setuptools}
818fa29
%{bundled 2}
5b97b5b
Thomas Spura dcb79ce
%description -n python2-setuptools
Thomas Spura dcb79ce
Setuptools is a collection of enhancements to the Python distutils that allow
Thomas Spura dcb79ce
you to more easily build and distribute Python packages, especially ones that
Thomas Spura dcb79ce
have dependencies on other packages.
Thomas Spura dcb79ce
Thomas Spura dcb79ce
This package also contains the runtime components of setuptools, necessary to
Thomas Spura dcb79ce
execute the software that requires pkg_resources.py.
Thomas Spura dcb79ce
5b97b5b
%endif # with python2
5b97b5b
5b97b5b
41b54b7
%package -n python3-setuptools
41b54b7
Summary:        Easily build and distribute Python 3 packages
f19e714
Conflicts:      python-setuptools < %{version}-%{release}
Thomas Spura dcb79ce
%{?python_provide:%python_provide python3-setuptools}
818fa29
%{bundled 3}
41b54b7
41b54b7
%description -n python3-setuptools
41b54b7
Setuptools is a collection of enhancements to the Python 3 distutils that allow
41b54b7
you to more easily build and distribute Python 3 packages, especially ones that
41b54b7
have dependencies on other packages.
41b54b7
c8db69c
This package also contains the runtime components of setuptools, necessary to
41b54b7
execute the software that requires pkg_resources.py.
957130b
d7f5288
%if %{without bootstrap}
d7f5288
%package wheel
d7f5288
Summary:        The setuptools wheel
818fa29
%{bundled 2}
818fa29
%{bundled 3}
d7f5288
d7f5288
%description wheel
d7f5288
A Python wheel of setuptools to use with venv.
d7f5288
%endif
d7f5288
41b54b7
9eb4e2d
%prep
dbcd0a1
%autosetup -p1 -n %{srcname}-%{version}
60c300d
rm -r %{srcname}.egg-info
476c777
Orion Poplawski 17a8507
# Strip shbang
9d511ca
find setuptools pkg_resources -name \*.py | xargs sed -i -e '1 {/^#!\//d}'
476c777
# Remove bundled exes
476c777
rm -f setuptools/*.exe
Robert Kuska 30ed86d
# These tests require internet connection
Robert Kuska 30ed86d
rm setuptools/tests/test_integration.py 
9d511ca
# Spurious executable perm https://github.com/pypa/setuptools/pull/1441
9d511ca
chmod -x README.rst
5cd637b
9eb4e2d
%build
60c300d
# Warning, different bootstrap meaning here, has nothing to do with our bcond
60c300d
# This bootstraps .egg-info directory needed to build setuptools
60c300d
%{__python3} bootstrap.py
60c300d
5b97b5b
%if %{without bootstrap}
d7f5288
%py3_build_wheel
Matej Stuchlik ce1bf68
%else
d7f5288
%if %{with python2}
09798fc
%py2_build
5b97b5b
%endif # with python2
9eb4e2d
09798fc
%py3_build
Matej Stuchlik ce1bf68
%endif
5b97b5b
5cd637b
41b54b7
%install
f19e714
# Must do the python2 install first because the scripts in /usr/bin are
4d41ef0
# overwritten with every setup.py install (and we want /usr/bin/pip to be
f19e714
# the python3 version).
f19e714
%if %{with python2}
5b97b5b
%if %{without bootstrap}
f19e714
%py2_install_wheel %{python_wheelname}
Matej Stuchlik ce1bf68
35eb21a
# Remove /usr/bin/easy_install from the record as later on we delete the file
f19e714
sed -i '/\/usr\/bin\/easy_install,/d' %{buildroot}%{python2_record}
Matej Stuchlik ce1bf68
%else
f19e714
%py2_install
Matej Stuchlik ce1bf68
%endif
41b54b7
35eb21a
# TODO: we have to remove this by hand now, but it'd be nice if we wouldn't have to
35eb21a
# (pip install wheel doesn't overwrite)
35eb21a
rm %{buildroot}%{_bindir}/easy_install
35eb21a
f19e714
rm -rf %{buildroot}%{python2_sitelib}/setuptools/tests
5b97b5b
%if %{without bootstrap}
f19e714
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python2_record}
Matej Stuchlik ce1bf68
%endif
41b54b7
f19e714
find %{buildroot}%{python2_sitelib} -name '*.exe' | xargs rm -f
f19e714
%endif # with python2
5b97b5b
6f21ed3
5b97b5b
%if %{without bootstrap}
f19e714
%py3_install_wheel %{python_wheelname}
Matej Stuchlik ce1bf68
%else
f19e714
%py3_install
Matej Stuchlik ce1bf68
%endif
6f21ed3
f19e714
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
5b97b5b
%if %{without bootstrap}
f19e714
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python3_record}
Matej Stuchlik ce1bf68
%endif
6f21ed3
f19e714
find %{buildroot}%{python3_sitelib} -name '*.exe' | xargs rm -f
Orion Poplawski 17a8507
Orion Poplawski 17a8507
# Don't ship these
Orion Poplawski 17a8507
rm -r docs/{Makefile,conf.py,_*}
41b54b7
d7f5288
%if %{without bootstrap}
d7f5288
mkdir -p %{buildroot}%{python_wheeldir}
d7f5288
install -p dist/%{python_wheelname} -t %{buildroot}%{python_wheeldir}
d7f5288
%endif
d7f5288
5b97b5b
f404b22
%if %{with tests}
41b54b7
%check
5b97b5b
%if %{with python2}
261a941
# see https://github.com/pypa/setuptools/issues/1170 for PYTHONDONTWRITEBYTECODE
60c300d
# several tests are xfailed with POSIX locale, so we set C.utf-8 (not needed on py3)
fafacf1
# test_virtualenv is ignored to break dependency on python2-pytest-virtualenv
fafacf1
LANG=C.utf-8 PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) pytest-%{python2_version} \
fafacf1
    --ignore setuptools/tests/test_virtualenv.py \
ce6a163
    --deselect=setuptools/tests/test_setuptools.py::TestDepends::testRequire
5b97b5b
%endif # with python2
5cd637b
60c300d
# --ignore=pavement.py: No python3-paver in Fedora (the test is only collected on py3)
ce6a163
#   pavement.py is only used by upstream to do releases and vendoring, we don't ship it
ce6a163
# --deselect=setuptools/tests/test_setuptools.py::TestDepends::testRequire
ce6a163
#   Test failure reported upstream: https://github.com/pypa/setuptools/issues/1896
ce6a163
PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) pytest-%{python3_version} \
ce6a163
    --ignore=pavement.py \
ce6a163
    --deselect=setuptools/tests/test_setuptools.py::TestDepends::testRequire
f404b22
%endif # with tests
5cd637b
5b97b5b
5b97b5b
%if %{with python2}
Thomas Spura 1cf160c
%files -n python2-setuptools
49b1915
%license LICENSE
49b1915
%doc docs/* CHANGES.rst README.rst
476c777
%{python2_sitelib}/*
12348a2
%{_bindir}/easy_install-2.*
5b97b5b
%endif # with python2
5cd637b
41b54b7
%files -n python3-setuptools
54eaa03
%license LICENSE
54eaa03
%doc docs/* CHANGES.rst README.rst
Orion Poplawski a6f3bb1
%{python3_sitelib}/easy_install.py
Orion Poplawski a6f3bb1
%{python3_sitelib}/pkg_resources/
Orion Poplawski a6f3bb1
%{python3_sitelib}/setuptools*/
Orion Poplawski a6f3bb1
%{python3_sitelib}/__pycache__/*
f19e714
%{_bindir}/easy_install
12348a2
%{_bindir}/easy_install-3.*
9eb4e2d
d7f5288
%if %{without bootstrap}
d7f5288
%files wheel
d7f5288
%license LICENSE
d7f5288
# we own the dir for simplicity
d7f5288
%dir %{python_wheeldir}/
d7f5288
%{python_wheeldir}/%{python_wheelname}
d7f5288
%endif
d7f5288
5673c1a
9eb4e2d
%changelog
ce6a163
* Mon Nov 04 2019 Tomas Orsava <torsava@redhat.com> - 41.6.0-1
ce6a163
- Upgrade to 41.6.0 (#1758945).
ce6a163
- https://setuptools.readthedocs.io/en/latest/history.html#v41-6-0
ce6a163
- Disabled a failing upstream test: https://github.com/pypa/setuptools/issues/1896
ce6a163
ba8576a
* Tue Sep 03 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 41.2.0-1
ba8576a
- Upgrade to 41.2.0 (#1742718).
ba8576a
- https://setuptools.readthedocs.io/en/latest/history.html#v41-2-0
ba8576a
0d8306d
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 41.0.1-4
0d8306d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
0d8306d
f19e714
* Tue Jul 16 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-3
f19e714
- Make /usr/bin/easy_install Python 3
f19e714
- Drop obsoleted Obsoletes
f19e714
fafacf1
* Fri Jun 21 2019 Petr Viktorin <pviktori@redhat.com> - 41.0.1-2
fafacf1
- Remove optional test dependencies for Python 2
fafacf1
- Skip test_virtualenv on Python 2
fafacf1
60c300d
* Thu Apr 25 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-1
60c300d
- Update to 41.0.1 (#1695846)
60c300d
- https://github.com/pypa/setuptools/blob/v41.0.1/CHANGES.rst
60c300d
60c300d
* Tue Feb 05 2019 Miro Hrončok <mhroncok@redhat.com> - 40.8.0-1
16c85a9
- Update to 40.8.0 (#1672756)
16c85a9
- https://github.com/pypa/setuptools/blob/v40.8.0/CHANGES.rst
16c85a9
1201c70
* Sun Feb 03 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.3-1
1201c70
- Hotfix update to 40.7.3 (#1672084)
1201c70
- https://github.com/pypa/setuptools/blob/v40.7.3/CHANGES.rst
1201c70
5c0280d
* Sat Feb 02 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.2-1
5c0280d
- Hotfix update to 40.7.2 (#1671608)
0bc8110
- https://github.com/pypa/setuptools/blob/v40.7.2/CHANGES.rst
5c0280d
799b830
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 40.7.1-2
799b830
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
799b830
968ef33
* Tue Jan 29 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.1-1
968ef33
- Hotfix update to 40.7.1 (#1670243)
0bc8110
- https://github.com/pypa/setuptools/blob/v40.7.1/CHANGES.rst
968ef33
99188dc
* Mon Jan 28 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.0-1
99188dc
- Update to 40.7.0 (#1669876)
99188dc
- https://github.com/pypa/setuptools/blob/v40.7.0/CHANGES.rst
99188dc
818fa29
* Mon Sep 24 2018 Miro Hrončok <mhroncok@redhat.com> - 40.4.3-1
818fa29
- Update to 40.4.3 to fix dire DeprecationWarnings (#1627071)
818fa29
- List vendored libraries
818fa29
- https://github.com/pypa/setuptools/blob/v40.4.3/CHANGES.rst
818fa29
7b33de4
* Wed Sep 19 2018 Randy Barlow <bowlofeggs@fedoraproject.org> - 40.4.1-1
7b33de4
- Update to 40.4.1 (#1599307).
7b33de4
- https://github.com/pypa/setuptools/blob/v40.4.1/CHANGES.rst
7b33de4
4d41ef0
* Wed Aug 15 2018 Petr Viktorin <pviktori@redhat.com> - 39.2.0-7
d7f5288
- Add a subpackage with wheels
4d41ef0
- Remove the python3 bcond
4d41ef0
- Remove macros for RHEL 6
4d41ef0
dbcd0a1
* Thu Jul 19 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-6
dbcd0a1
- Create /usr/local/lib/pythonX.Y when needed (#1576924)
dbcd0a1
a392970
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 39.2.0-5
a392970
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a392970
fe55d31
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-4
fe55d31
- Rebuilt for Python 3.7
fe55d31
bfe604d
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-3
bfe604d
- Bootstrap for Python 3.7
bfe604d
df1f529
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-2
df1f529
- Bootstrap for Python 3.7
df1f529
6499290
* Wed May 23 2018 Charalampos Stratakis <cstratak@redhat.com> - 39.2.0-1
6499290
- update to 39.2.0 Fixes bug #1572889
6499290
8171b31
* Tue Mar 20 2018 Charalampos Stratakis <cstratak@redhat.com> - 39.0.1-1
8171b31
- update to 39.0.1 Fixes bug #1531527
8171b31
08d9f76
* Wed Mar 14 2018 Tomas Orsava <torsava@redhat.com> - 38.4.0-4
08d9f76
- Skip test_virtualenv due to broken executable detection
08d9f76
c02db14
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 38.4.0-3
c02db14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
c02db14
aab1e86
* Tue Jan 16 2018 Troy Dawson <tdawson@redhat.com> - 38.4.0-2
aab1e86
- Update conditional
aab1e86
5599dc6
* Tue Jan 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 38.4.0-1
5599dc6
- update to 38.4.0 Fixes bug #1531527
5599dc6
1c591cc
* Tue Jan 02 2018 Charalampos Stratakis <cstratak@redhat.com> - 38.2.5-1
1c591cc
- update to 38.2.5 Fixes bug #1528968
1c591cc
afde1d3
* Tue Nov 21 2017 Miro Hrončok <mhroncok@redhat.com> - 37.0.0-1
afde1d3
- Update to 37.0.0 (fixes #1474126)
afde1d3
- Removed not needed pip3 patch (upstream included different version of fix)
afde1d3
261a941
* Tue Nov 21 2017 Miro Hrončok <mhroncok@redhat.com> - 36.5.0-1
261a941
- Update to 36.5.0 (related to #1474126)
261a941
0324999
* Thu Nov 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-8
0324999
- Remove the platform-python subpackage
0324999
a9c42b4
* Sun Aug 20 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-7
a9c42b4
- Re-enable tests to finish bootstrapping the platform-python stack
a9c42b4
  (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
a9c42b4
5673c1a
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-6
5673c1a
- Add the platform-python subpackage
f404b22
- Disable tests so platform-python stack can be bootstrapped
5673c1a
  (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
5673c1a
54eaa03
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-5
54eaa03
- Add Patch 0 that fixes a test suite failure on Python 3 in absence of
54eaa03
  the Python 2 version of pip
54eaa03
- Move docs to their proper place
54eaa03
5b97b5b
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-4
5b97b5b
- Switch macros to bcond's and make Python 2 optional to facilitate building
5b97b5b
  the Python 2 and Python 3 modules.
5b97b5b
c15bf68
* Tue Aug 08 2017 Michal Cyprian <mcyprian@redhat.com> - 36.2.0-3
c15bf68
- Revert "Add --executable option to easy_install command"
c15bf68
  This enhancement is currently not needed and it can possibly
c15bf68
  collide with `pip --editable`option
c15bf68
4b01dd0
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 36.2.0-2
4b01dd0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4b01dd0
f3ae28b
* Sat Jul 15 2017 Charalampos Stratakis <cstratak@redhat.com> - 36.2.0-1
f3ae28b
- update to 36.2.0. Fixes bug #1470908
f3ae28b
5e5ba5a
* Thu Jun 15 2017 Charalampos Stratakis <cstratak@redhat.com> - 36.0.1-1
5e5ba5a
- update to 36.0.1. Fixes bug #1458093
5e5ba5a
39db8e7
* Sat May 27 2017 Kevin Fenzi <kevin@scrye.com> - 35.0.2-1
39db8e7
- update to 35.0.2. Fixes bug #1446622
39db8e7
c64e6d0
* Sun Apr 23 2017 Kevin Fenzi <kevin@scrye.com> - 35.0.1-1
c64e6d0
- Update to 35.0.1. Fixes bug #1440388
c64e6d0
7ed39ba
* Sat Mar 25 2017 Kevin Fenzi <kevin@scrye.com> - 34.3.2-1
7ed39ba
- Update to 34.3.2. Fixes bug #1428818
7ed39ba
7cd743d
* Sat Feb 25 2017 Kevin Fenzi <kevin@scrye.com> - 34.3.0-1
7cd743d
- Update to 34.3.0. Fixes bug #1426463
7cd743d
68d566a
* Fri Feb 17 2017 Michal Cyprian <mcyprian@redhat.com> - 34.2.0-2
68d566a
- Add --executable option to easy_install command
68d566a
b683c31
* Thu Feb 16 2017 Charalampos Stratakis <cstratak@redhat.com> - 34.2.0-1
b683c31
- Update to 34.2.0. Fixes bug #1421676
b683c31
49b1915
* Sat Feb 04 2017 Kevin Fenzi <kevin@scrye.com> - 34.1.1-1
49b1915
- Update to 34.1.1. Fixes bug #1412268
49b1915
- Fix License tag. Fixes bug #1412268
49b1915
- Add Requires for fomerly bundled projects: six, packaging appdirs
49b1915
09798fc
* Tue Jan 03 2017 Michal Cyprian <mcyprian@redhat.com> - 32.3.1-2
09798fc
- Use python macros in build and install sections
09798fc
8991d4b
* Thu Dec 29 2016 Kevin Fenzi <kevin@scrye.com> - 32.3.1-1
8991d4b
- Update to 32.3.1. Fixes bug #1409091
8991d4b
595fb5d
* Wed Dec 28 2016 Kevin Fenzi <kevin@scrye.com> - 32.3.0-1
595fb5d
- Update to 32.3.0. Fixes bug #1408564
595fb5d
b6b9a02
* Fri Dec 23 2016 Kevin Fenzi <kevin@scrye.com> - 32.2.0-1
b6b9a02
- Update to 32.2.0. Fixes bug #1400310
b6b9a02
98a8755
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 30.4.0-2
98a8755
- Enable tests
98a8755
71b0d8b
* Sun Dec 11 2016 Kevin Fenzi <kevin@scrye.com> - 30.4.0-1
71b0d8b
- Update to 30.4.0. Fixes bug #1400310
71b0d8b
03fe032
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 28.8.0-3
03fe032
- Rebuild for Python 3.6 with wheel
03fe032
- Disable tests
03fe032
8c279e2
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 28.8.0-2
8c279e2
- Rebuild for Python 3.6 without wheel
8c279e2
c12d9ea
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 28.8.0-1
c12d9ea
- Update to 28.8.1. Fixes bug #1392722
c12d9ea
4c3f2dd
* Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 28.7.1-1
4c3f2dd
- Update to 28.7.1. Fixes bug #1389917
4c3f2dd
28abf51
* Tue Oct 25 2016 Kevin Fenzi <kevin@scrye.com> - 28.6.1-1
28abf51
- Update to 28.6.1. Fixes bug #1387071
28abf51
bc2deb3
* Tue Oct 18 2016 Kevin Fenzi <kevin@scrye.com> - 28.6.0-1
bc2deb3
- Update to 28.6.0. Fixes bug #1385655
bc2deb3
536a44e
* Sat Oct 08 2016 Kevin Fenzi <kevin@scrye.com> - 28.3.0-1
536a44e
- Update to 28.3.0. Fixes bug #1382971
536a44e
a423577
* Sun Oct 02 2016 Kevin Fenzi <kevin@scrye.com> - 28.2.0-1
a423577
- Update to 28.2.0. Fixes bug #1381099
a423577
0694ab1
* Sun Oct 02 2016 Kevin Fenzi <kevin@scrye.com> - 28.1.0-1
0694ab1
- Update to 28.1.0. Fixes bug #1381066
0694ab1
40b8a24
* Wed Sep 28 2016 Kevin Fenzi <kevin@scrye.com> - 28.0.0-1
40b8a24
- Update to 28.0.0. Fixes bug #1380073
40b8a24
3595eed
* Sun Sep 25 2016 Kevin Fenzi <kevin@scrye.com> - 27.3.0-1
3595eed
- Update to 27.3.0. Fixes bug #1378067
3595eed
3595eed
* Sat Sep 17 2016 Kevin Fenzi <kevin@scrye.com> - 27.2.0-1
3595eed
- Update to 27.2.0. Fixes bug #1376298
3595eed
51abccf
* Sat Sep 10 2016 Kevin Fenzi <kevin@scrye.com> - 27.1.2-1
51abccf
- Update to 27.1.2. Fixes bug #1370777
51abccf
5e74326
* Sat Aug 27 2016 Kevin Fenzi <kevin@scrye.com> - 26.0.0-1
5e74326
- Update to 26.0.0. Fixes bug #1370777
5e74326
985c3e4
* Wed Aug 10 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.6-1
985c3e4
- Update to 25.1.6. Fixes bug #1362325
985c3e4
cfc5033
* Fri Jul 29 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.1-1
cfc5033
- Update to 25.1.1. Fixes bug #1361465
cfc5033
03ea61e
* Thu Jul 28 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.0-1
03ea61e
- Update to 25.1.0
03ea61e
490452e
* Sat Jul 23 2016 Kevin Fenzi <kevin@scrye.com> - 25.0.0-1
490452e
- Update to 25.0.0
490452e
097b18f
* Fri Jul 22 2016 Kevin Fenzi <kevin@scrye.com> - 24.2.0-1
097b18f
- Update to 24.2.0. Fixes bug #1352734
097b18f
e0cf35d
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 24.0.1-2
e0cf35d
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
e0cf35d
f9de207
* Mon Jul 04 2016 Kevin Fenzi <kevin@scrye.com> - 24.0.1-1
f9de207
- Update to 24.0.1. Fixes bug #1352532
f9de207
c49f016
* Wed Jun 15 2016 Kevin Fenzi <kevin@scrye.com> - 23.0.0-1
c49f016
- Update to 23.0.0. Fixes bug #1346542
c49f016
9d08e9c
* Tue Jun 07 2016 Kevin Fenzi <kevin@scrye.com> - 22.0.5-1
9d08e9c
- Update to 22.0.5. Fixes bug #1342706
9d08e9c
bacd969
* Thu Jun 02 2016 Kevin Fenzi <kevin@scrye.com> - 20.0.0-1
bacd969
- Upgrade to 22.0.0
bacd969
6d3f1b5
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
6d3f1b5
- fix source URL
6d3f1b5
366cec7
* Sun May 29 2016 Kevin Fenzi <kevin@scrye.com> - 21.2.2-1
366cec7
- Update to 21.2.2. Fixes bug #1332357
366cec7
65e959b
* Thu Apr 28 2016 Kevin Fenzi <kevin@scrye.com> - 20.10.1-1
366cec7
- Update to 20.10.1. Fixes bug #1330375
65e959b
e00b04c
* Sat Apr 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.9.0-1
e00b04c
- Update to 20.9.0. Fixes bug #1327827
e00b04c
f4f30dd
* Fri Apr 15 2016 Kevin Fenzi <kevin@scrye.com> - 20.8.1-1
f4f30dd
- Update to 20.8.1. Fixes bug #1325910
f4f30dd
d925ebd
* Thu Mar 31 2016 Kevin Fenzi <kevin@scrye.com> - 20.6.7-1
d925ebd
- Update to 20.6.7. Fixes bug #1322836
d925ebd
4e99b57
* Wed Mar 30 2016 Kevin Fenzi <kevin@scrye.com> - 20.4-1
4e99b57
- Update to 20.4. Fixes bug #1319366
4e99b57
d0dd2dc
* Wed Mar 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.3-1
d0dd2dc
- Update to 20.3. Fixes bug #1311967
d0dd2dc
d0dd2dc
* Sat Feb 27 2016 Kevin Fenzi <kevin@scrye.com> - 20.2.2-1
d0dd2dc
- Update to 20.2.2. Fixes bug #1311967
d0dd2dc
4e940f4
* Sat Feb 13 2016 Kevin Fenzi <kevin@scrye.com> - 20.1.1-1
4e940f4
- Update to 20.1.1. Fixes bug #130719
4e940f4
a14fdec
* Fri Feb 12 2016 Kevin Fenzi <kevin@scrye.com> - 20.1-1
a14fdec
- Update to 20.1. Fixes bug #1307000
a14fdec
1c801de
* Mon Feb 08 2016 Kevin Fenzi <kevin@scrye.com> - 20.0-1
1c801de
- Update to 20.0. Fixes bug #1305394
1c801de
f84dab8
* Sat Feb 06 2016 Kevin Fenzi <kevin@scrye.com> - 19.7-1
f84dab8
- Update to 19.7. Fixes bug #1304563
f84dab8
Orion Poplawski a6f3bb1
* Wed Feb 3 2016 Orion Poplawski <orion@cora.nwra.com> - 19.6.2-2
Orion Poplawski a6f3bb1
- Fix python3 package file ownership
Orion Poplawski a6f3bb1
f4e5fa1
* Sun Jan 31 2016 Kevin Fenzi <kevin@scrye.com> - 19.6.2-1
f4e5fa1
- Update to 19.6.2. Fixes bug #1303397
f4e5fa1
b74244d
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.6-1
b74244d
- Update to 19.6.
b74244d
dbf1999
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.5-1
dbf1999
- Update to 19.5. Fixes bug #1301313
dbf1999
610d7f0
* Mon Jan 18 2016 Kevin Fenzi <kevin@scrye.com> - 19.4-1
610d7f0
- Update to 19.4. Fixes bug #1299288
610d7f0
Orion Poplawski 17a8507
* Tue Jan 12 2016 Orion Poplawski <orion@cora.nwra.com> - 19.2-2
Orion Poplawski 17a8507
- Cleanup spec from python3-setuptools review
Orion Poplawski 17a8507
872a523
* Fri Jan 08 2016 Kevin Fenzi <kevin@scrye.com> - 19.2-1
872a523
- Update to 19.2. Fixes bug #1296755
872a523
6da2a57
* Fri Dec 18 2015 Kevin Fenzi <kevin@scrye.com> - 19.1.1-1
6da2a57
- Update to 19.1.1. Fixes bug #1292658
6da2a57
1f272ef
* Tue Dec 15 2015 Kevin Fenzi <kevin@scrye.com> - 18.8.1-1
1f272ef
- Update to 18.8.1. Fixes bug #1291678
1f272ef
ef2ce6b
* Sat Dec 12 2015 Kevin Fenzi <kevin@scrye.com> - 18.8-1
ef2ce6b
- Update to 18.8. Fixes bug #1290942
ef2ce6b
77b3af5
* Fri Dec 04 2015 Kevin Fenzi <kevin@scrye.com> - 18.7.1-1
77b3af5
- Update to 18.7.1. Fixes bug #1287372
77b3af5
d428811
* Wed Nov 25 2015 Kevin Fenzi <kevin@scrye.com> - 18.6.1-1
d428811
- Update to 18.6.1. Fixes bug #1270578
d428811
Thomas Spura 9c8c1dc
* Sun Nov 15 2015 Thomas Spura <tomspur@fedoraproject.org> - 18.5-3
Thomas Spura 9c8c1dc
- Try to disable zip_safe bug #1271776
Thomas Spura dcb79ce
- Add python2 subpackage
Thomas Spura 9c8c1dc
Robert Kuska ddc5109
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 18.5-2
Robert Kuska ddc5109
- Add patch so it is possible to set test_args variable
Robert Kuska ddc5109
Robert Kuska f0c424a
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 18.5-1
Robert Kuska f0c424a
- Update to 18.5. Fixes bug #1270578
Robert Kuska f0c424a
Robert Kuska 3bceb75
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.coM> - 18.4-1
Robert Kuska 3bceb75
- Update to 18.4. Fixes bug #1270578
Robert Kuska 3bceb75
- Build with wheel and check phase
Robert Kuska 3bceb75
Robert Kuska 59b00d7
* Wed Sep 23 2015 Robert Kuska <rkuska@redhat.com> - 18.3.2-2
Robert Kuska 59b00d7
- Python3.5 rebuild: rebuild without wheel and check phase
Robert Kuska 59b00d7
40a235d
* Tue Sep 22 2015 Kevin Fenzi <kevin@scrye.com> 18.3.2-1
40a235d
- Update to 18.3.2. Fixes bug #1264902
40a235d
3124d2a
* Mon Sep 07 2015 Kevin Fenzi <kevin@scrye.com> 18.3.1-1
3124d2a
- Update to 18.3.1. Fixes bug #1256188
3124d2a
1948609
* Wed Aug 05 2015 Kevin Fenzi <kevin@scrye.com> 18.1-1
1948609
- Update to 18.1. Fixes bug #1249436
1948609
3b5412d
* Mon Jun 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 18.0.1-2
3b5412d
- Explicitely provide python2-setuptools
3b5412d
ed92a85
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 18.0.1-1
ed92a85
- Update to 18.0.1
ed92a85
95fc2fd
* Sat Jun 20 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-3
95fc2fd
- Drop no longer needed Requires/BuildRequires on python-backports-ssl_match_hostname
95fc2fd
- Fixes bug #1231325
95fc2fd
803e257
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.1.1-2
803e257
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
803e257
56c0bed
* Wed Jun 10 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-1
56c0bed
- Update to 17.1.1. Fixes bug 1229507
56c0bed
b7d0940
* Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 17.1-1
b7d0940
- Update to 17.1. Fixes bug 1229066
b7d0940
b9c3800
* Sat May 30 2015 Kevin Fenzi <kevin@scrye.com> 17.0-1
b9c3800
- Update to 17
b9c3800
33cc460
* Mon May 18 2015 Kevin Fenzi <kevin@scrye.com> 16.0-1
33cc460
- Update to 16
33cc460
537464b
* Mon Apr 27 2015 Ralph Bean <rbean@redhat.com> - 15.2-1
537464b
- new version
537464b
0d10df2
* Sat Apr 04 2015 Ralph Bean <rbean@redhat.com> - 15.0-1
0d10df2
- new version
0d10df2
5f49414
* Sun Mar 22 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
5f49414
- new version
5f49414
23c5e5c
* Sat Mar 21 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
23c5e5c
- new version
23c5e5c
f236084
* Mon Mar 16 2015 Ralph Bean <rbean@redhat.com> - 14.3-1
f236084
- new version
f236084
97c3f90
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.2-1
97c3f90
- new version
97c3f90
fa0e18c
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.1.1-1
fa0e18c
- new version
fa0e18c
c4a3fc4
* Fri Mar 06 2015 Ralph Bean <rbean@redhat.com> - 13.0.2-1
c4a3fc4
- new version
c4a3fc4
a19d4dc
* Thu Mar 05 2015 Ralph Bean <rbean@redhat.com> - 12.4-1
a19d4dc
- new version
a19d4dc
badee2e
* Fri Feb 27 2015 Ralph Bean <rbean@redhat.com> - 12.3-1
badee2e
- new version
badee2e
09e41c2
* Tue Jan 20 2015 Kevin Fenzi <kevin@scrye.com> 12.0.3-1
09e41c2
- Update to 12.0.3
09e41c2
Robert Kuska 30ed86d
* Fri Jan 09 2015 Slavek Kabrda <bkabrda@redhat.com> - 11.3.1-2
Robert Kuska 30ed86d
- Huge spec cleanup
Robert Kuska 30ed86d
- Make spec buildable on all Fedoras and RHEL 6 and 7
Robert Kuska 30ed86d
- Make tests actually run
Robert Kuska 30ed86d
2076c5d
* Wed Jan 07 2015 Kevin Fenzi <kevin@scrye.com> 11.3.1-1
2076c5d
- Update to 11.3.1. Fixes bugs: #1179393 and #1178817
2076c5d
26aa65e
* Sun Jan 04 2015 Kevin Fenzi <kevin@scrye.com> 11.0-1
26aa65e
- Update to 11.0. Fixes bug #1178421
26aa65e
9b15a13
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 8.2.1-1
9b15a13
- Update to 8.2.1. Fixes bug #1175229
9b15a13
5b30c33
* Thu Oct 23 2014 Ralph Bean <rbean@redhat.com> - 7.0-1
5b30c33
- Latest upstream.  Fixes bug #1154590.
5b30c33
e5aa4a4
* Mon Oct 13 2014 Ralph Bean <rbean@redhat.com> - 6.1-1
e5aa4a4
- Latest upstream.  Fixes bug #1152130.
e5aa4a4
476c777
* Sat Oct 11 2014 Ralph Bean <rbean@redhat.com> - 6.0.2-2
476c777
- Modernized python2 macros.
476c777
- Inlined locale environment variables in the %%check section.
476c777
- Remove bundled egg-info and .exes.
476c777
e820e7a
* Fri Oct 03 2014 Kevin Fenzi <kevin@scrye.com> 6.0.2-1
e820e7a
- Update to 6.0.2
e820e7a
e820e7a
* Sat Sep 27 2014 Kevin Fenzi <kevin@scrye.com> 6.0.1-1
e820e7a
- Update to 6.0.1. Fixes bug #1044444
e820e7a
1ea385e
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-8
1ea385e
- Remove the python-setuptools-devel Virtual Provides as per this Fedora 21
1ea385e
  Change: http://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
1ea385e
54399fa
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-7
54399fa
- And another bug in sdist
54399fa
72f65d9
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-6
72f65d9
- Fix a bug in the sdist command
72f65d9
77f7c9e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-5
77f7c9e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
77f7c9e
Matej Stuchlik 68adb7b
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-4
Matej Stuchlik 68adb7b
- Rebuild as wheel for Python 3.4
Matej Stuchlik 68adb7b
b03ea8d
* Thu Apr 24 2014 Tomas Radej <tradej@redhat.com> - 2.0-3
b03ea8d
- Rebuilt for tag f21-python
b03ea8d
Matej Stuchlik ce1bf68
* Wed Apr 23 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-2
Matej Stuchlik ce1bf68
- Add a switch to build setuptools as wheel
Matej Stuchlik ce1bf68
b3dd72b
* Mon Dec  9 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-1
b3dd72b
- Update to new upstream release with a few things removed from the API:
b3dd72b
  Changelog: https://pypi.python.org/pypi/setuptools#id139
b3dd72b
db6ebee
* Mon Nov 18 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
db6ebee
- Update to 1.4 that gives easy_install pypi credential handling
db6ebee
8b4da0d
* Thu Nov  7 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-1
8b4da0d
- Minor upstream update to reign in overzealous warnings
8b4da0d
c8db69c
* Mon Nov  4 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-1
c8db69c
- Upstream update that pulls in our security patches
c8db69c
6dfb759
* Mon Oct 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.7-1
6dfb759
- Update to newer upstream release that has our patch to the unittests
6dfb759
- Fix for http://bugs.python.org/issue17997#msg194950 which affects us since
6dfb759
  setuptools copies that code. Changed to use
6dfb759
  python-backports-ssl_match_hostname so that future issues can be fixed in
6dfb759
  that package.
6dfb759
306cac0
* Sat Oct 26 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.6-1
306cac0
- Update to newer upstream release.  Some minor incompatibilities listed but
306cac0
  they should affect few, if any consumers.
306cac0
c9dde15
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
c9dde15
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
c9dde15
994ec72
* Tue Jul 23 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.6-1
994ec72
- Upstream update -- just fixes python-2.4 compat
994ec72
28aeb2e
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.5-1
28aeb2e
- Update to 0.9.5
28aeb2e
  - package_index can handle hashes other than md5
28aeb2e
  - Fix security vulnerability in SSL certificate validation
28aeb2e
  - https://bugzilla.redhat.com/show_bug.cgi?id=963260
28aeb2e
23d2121
* Fri Jul  5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8-1
23d2121
- Update to upstream 0.8  release.  Codebase now runs on anything from
23d2121
  python-2.4 to python-3.3 without having to be translated by 2to3.
23d2121
3fa6764
* Wed Jul  3 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.7-1
3fa6764
- Update to 0.7.7 upstream release
3fa6764
3fa6764
* Mon Jun 10 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-2
3fa6764
- Update to the setuptools-0.7 branch that merges distribute and setuptools
3fa6764
895ce1e
* Thu Apr 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.36-1
895ce1e
- Update to upstream 0.6.36.  Many bugfixes
895ce1e
0c781ab
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.28-4
0c781ab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
0c781ab
c72fb46
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-3
c72fb46
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
c72fb46
f450465
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-2
f450465
- remove rhel logic from with_python3 conditional
895ce1e
a4d5040
* Mon Jul 23 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.28-1
a4d5040
- New upstream release:
a4d5040
  - python-3.3 fixes
a4d5040
  - honor umask when setuptools is used to install other modules
a4d5040
a064d3c
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.27-3
a064d3c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a064d3c
0ef78f7
* Mon Jun 11 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-2
0ef78f7
- Fix easy_install.py having a python3 shebang in the python2 package
0ef78f7
8a178e8
* Thu Jun  7 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-1
8a178e8
- Upstream bugfix
8a178e8
0d1fa92
* Tue May 15 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-2
0d1fa92
- Upstream bugfix
0d1fa92
899a186
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.24-2
899a186
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
899a186
2f152e5
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-1
2f152e5
- Upstream bugfix
2f152e5
- Compile the win32 launcher binary using mingw
2f152e5
2f152e5
* Sun Aug 21 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.21-1
efecd02
- Upstream bugfix release
efecd02
2f152e5
* Thu Jul 14 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.19-1
ab8f0e6
- Upstream bugfix release
ab8f0e6
8e9734f
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-7
8e9734f
- Switch to patch that I got in to upstream
8e9734f
d9f5a2d
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-6
4649b90
- Fix build on python-3.2
4649b90
1caf2b4
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-5
1caf2b4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
1caf2b4
50fa7ba
* Sun Aug 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-4
50fa7ba
- rebuild with python3.2
50fa7ba
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
50fa7ba
957130b
* Tue Aug 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-3
957130b
- Update description to mention this is distribute
957130b
ccbd844
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-2
ccbd844
- bump for building against python 2.7
ccbd844
dc62950
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-1
dc62950
- update to new version
dc62950
- all patches are upsteam
dc62950
12348a2
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-7
12348a2
- generalize path of easy_install-2.6 and -3.1 to -2.* and -3.*
12348a2
cfc2baf
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-6
cfc2baf
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
cfc2baf
1983a88
* Sat Jul 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-5
1983a88
- Upstream patch for compatibility problem with setuptools
1983a88
- Minor spec cleanups
1983a88
- Provide python-distribute for those who see an import distribute and need
1983a88
  to get the proper package.
1983a88
0b8aaaa
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-4
0b8aaaa
- Fix race condition in unittests under the python-2.6.x on F-14.
0b8aaaa
29bf732
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-3
29bf732
- Fix few more buildroot macros
29bf732
62f00c4
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-2
62f00c4
- Include data that's needed for running tests
62f00c4
777077a
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-1
777077a
- Update to upstream 0.6.13
777077a
- Minor specfile formatting fixes
777077a
41002be
* Thu Feb 04 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-3
41002be
- First build with python3 support enabled.
41002be
  
6dfb759
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-2
a3c3519
- Really disable the python3 portion
a3c3519
6dfb759
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-1
41b54b7
- Update the python3 portions but disable for now.
41b54b7
- Update to 0.6.10
41b54b7
- Remove %%pre scriptlet as the file has a different name than the old
41b54b7
  package's directory
41b54b7
41b54b7
* Tue Jan 26 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-4
41b54b7
- Fix install to make /usr/bin/easy_install the py2 version
41b54b7
- Don't need python3-tools since the library is now in the python3 package
41b54b7
- Few other changes to cleanup style
41b54b7
6dfb759
* Fri Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.9-2
41b54b7
- add python3 subpackage
41b54b7
6e1ff0c
* Mon Dec 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-1
6e1ff0c
- New upstream bugfix release.
6e1ff0c
ab5df01
* Sun Dec 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-2
ab5df01
- Test rebuild
ab5df01
42e5fe4
* Mon Nov 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-1
42e5fe4
- Update to 0.6.8.
42e5fe4
- Fix directory => file transition when updating from setuptools-0.6c9.
42e5fe4
becc145
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-2
becc145
- Fix duplicate inclusion of files.
becc145
- Only Obsolete old versions of python-setuptools-devel
becc145
16cfaec
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-1
16cfaec
- Move easy_install back into the main package as the needed files have been
16cfaec
  moved from python-devel to the main python package.
16cfaec
- Update to 0.6.7 bugfix.
16cfaec
875dd74
* Fri Oct 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
875dd74
- Upstream bugfix release.
875dd74
e1be309
* Mon Oct 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-1
e1be309
- First build from the distribute codebase -- distribute-0.6.4.
e1be309
- Remove svn patch as upstream has chosen to go with an easier change for now.
e1be309
03aa0df
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-5
03aa0df
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
03aa0df
66503d5
* Tue Jul 14 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c9-4
66503d5
- Apply SVN-1.6 versioning patch (rhbz #511021)
66503d5
6a010e7
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-3
6a010e7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild