Blame SPECS/python3x-setuptools.spec

e4083f
%global srcname setuptools
e4083f
e4083f
#  WARNING  When bootstrapping, disable tests as well,
e4083f
#           because tests need pip.
e4083f
%bcond_with bootstrap
e4083f
%bcond_with tests
e4083f
e4083f
%if %{without bootstrap}
e4083f
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
e4083f
%global python3_record %{python3_sitelib}/%{srcname}-%{version}.dist-info/RECORD
e4083f
%endif
e4083f
%global python_wheeldir %{_datadir}/python38-wheels
e4083f
e4083f
Name:           python3x-setuptools
e4083f
# When updating, update the bundled libraries versions bellow!
e4083f
Version:        41.6.0
fe0f15
Release:        5%{?dist}
e4083f
Summary:        Easily build and distribute Python packages
e4083f
# setuptools is MIT
e4083f
# packaging is BSD or ASL 2.0
e4083f
# pyparsing is MIT
e4083f
# six is MIT
e4083f
License:        MIT and (BSD or ASL 2.0)
e4083f
URL:            https://pypi.python.org/pypi/%{srcname}
e4083f
Source0:        %{pypi_source %{srcname} %{version} zip}
e4083f
e4083f
# In Fedora, sudo setup.py install installs to /usr/local/lib/pythonX.Y/site-packages
e4083f
# But pythonX doesn't own that dir, that would be against FHS
e4083f
# We need to create it if it doesn't exist
e4083f
# https://bugzilla.redhat.com/show_bug.cgi?id=1576924
e4083f
Patch0:         create-site-packages.patch
e4083f
e4083f
BuildArch:      noarch
e4083f
# Exclude i686 arch. Due to a modularity issue it's being added to the
e4083f
# x86_64 compose of CRB, but we don't want to ship it at all.
e4083f
# See: https://projects.engineering.redhat.com/browse/RCM-72605
e4083f
ExcludeArch:    i686
e4083f
e4083f
BuildRequires:  gcc
e4083f
e4083f
BuildRequires:  python%{python3_pkgversion}-devel
e4083f
BuildRequires:  python%{python3_pkgversion}-rpm-macros
e4083f
%if %{with tests}
e4083f
BuildRequires:  python%{python3_pkgversion}-pip
e4083f
BuildRequires:  python%{python3_pkgversion}-pytest
e4083f
BuildRequires:  python%{python3_pkgversion}-mock
e4083f
BuildRequires:  python%{python3_pkgversion}-pytest-fixture-config
e4083f
BuildRequires:  python%{python3_pkgversion}-pytest-virtualenv
e4083f
%endif # with tests
e4083f
%if %{without bootstrap}
e4083f
BuildRequires:  python%{python3_pkgversion}-pip
e4083f
BuildRequires:  python%{python3_pkgversion}-wheel
e4083f
%endif # without bootstrap
e4083f
e4083f
%description
e4083f
Setuptools is a collection of enhancements to the Python distutils that allow
e4083f
you to more easily build and distribute Python packages, especially ones that
e4083f
have dependencies on other packages.
e4083f
e4083f
This package also contains the runtime components of setuptools, necessary to
e4083f
execute the software that requires pkg_resources.py.
e4083f
e4083f
# Virtual provides for the packages bundled by setuptools.
e4083f
# You can find the versions in setuptools/setuptools/_vendor/vendored.txt
e4083f
%global bundled() %{expand:
e4083f
Provides: bundled(python%{1}dist(packaging)) = 16.8
e4083f
Provides: bundled(python%{1}dist(pyparsing)) = 2.2.1
e4083f
Provides: bundled(python%{1}dist(six)) = 1.10.0
e4083f
}
e4083f
e4083f
%package -n python%{python3_pkgversion}-setuptools
e4083f
Summary:        Easily build and distribute Python 3 packages
e4083f
%{?python_provide:%python_provide python%{python3_pkgversion}-setuptools}
e4083f
%{bundled 3.8}
e4083f
e4083f
%if %{with bootstrap}
e4083f
Provides:       python%{python3_version}dist(setuptools) = %{version}
e4083f
%endif
e4083f
fe0f15
# Require alternatives version that implements the --keep-foreign flag
fe0f15
Requires(postun): alternatives >= 1.19.1-1
e4083f
# python38 installs the alternatives master symlink to which we attach a slave
e4083f
Requires: python38
e4083f
Requires(post): python38
e4083f
Requires(postun): python38
e4083f
e4083f
e4083f
%description -n python%{python3_pkgversion}-setuptools
e4083f
Setuptools is a collection of enhancements to the Python 3 distutils that allow
e4083f
you to more easily build and distribute Python 3 packages, especially ones that
e4083f
have dependencies on other packages.
e4083f
e4083f
This package also contains the runtime components of setuptools, necessary to
e4083f
execute the software that requires pkg_resources.py.
e4083f
e4083f
%if %{without bootstrap}
e4083f
%package -n python%{python3_pkgversion}-setuptools-wheel
e4083f
Summary:        The setuptools wheel
e4083f
%{bundled 3.8}
e4083f
e4083f
%description -n python%{python3_pkgversion}-setuptools-wheel
e4083f
A Python wheel of setuptools to use with venv.
e4083f
%endif
e4083f
e4083f
e4083f
%prep
e4083f
%autosetup -p1 -n %{srcname}-%{version}
e4083f
rm -r %{srcname}.egg-info
e4083f
e4083f
# Strip shbang
e4083f
find setuptools pkg_resources -name \*.py | xargs sed -i -e '1 {/^#!\//d}'
e4083f
# Remove bundled exes
e4083f
rm -f setuptools/*.exe
e4083f
# These tests require internet connection
e4083f
rm setuptools/tests/test_integration.py 
e4083f
# Spurious executable perm https://github.com/pypa/setuptools/pull/1441
e4083f
chmod -x README.rst
e4083f
e4083f
%build
e4083f
# Warning, different bootstrap meaning here, has nothing to do with our bcond
e4083f
# This bootstraps .egg-info directory needed to build setuptools
e4083f
%{__python3} bootstrap.py
e4083f
e4083f
%if %{without bootstrap}
e4083f
%py3_build_wheel
e4083f
%else
e4083f
e4083f
%py3_build
e4083f
%endif
e4083f
e4083f
e4083f
%install
e4083f
%if %{without bootstrap}
e4083f
%py3_install_wheel %{python_wheelname}
e4083f
%else
e4083f
%py3_install
e4083f
%endif
e4083f
e4083f
rm -rf %{buildroot}%{python3_sitelib}/setuptools/tests
e4083f
%if %{without bootstrap}
e4083f
sed -i '/^setuptools\/tests\//d' %{buildroot}%{python3_record}
e4083f
%endif
e4083f
e4083f
find %{buildroot}%{python3_sitelib} -name '*.exe' | xargs rm -f
e4083f
e4083f
# Don't ship these
e4083f
rm -r docs/{Makefile,conf.py,_*}
e4083f
e4083f
%if %{without bootstrap}
e4083f
mkdir -p %{buildroot}%{python_wheeldir}
e4083f
install -p dist/%{python_wheelname} -t %{buildroot}%{python_wheeldir}
e4083f
%endif
e4083f
e4083f
# Remove unversioned easy_install
e4083f
rm %{buildroot}%{_bindir}/easy_install
e4083f
e4083f
# All ghost files controlled by alternatives need to exist for the files
e4083f
# section check to succeed
e4083f
touch %{buildroot}%{_bindir}/easy_install-3
e4083f
e4083f
e4083f
%if %{with tests}
e4083f
%check
e4083f
# --ignore=pavement.py: No python3-paver in Fedora
e4083f
#   pavement.py is only used by upstream to do releases and vendoring, we don't ship it
e4083f
# --deselect=setuptools/tests/test_setuptools.py::TestDepends::testRequire
e4083f
#   Test failure reported upstream: https://github.com/pypa/setuptools/issues/1896
e4083f
PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=$(pwd) pytest-%{python3_version} \
e4083f
    --ignore=pavement.py \
e4083f
    --deselect=setuptools/tests/test_setuptools.py::TestDepends::testRequire
e4083f
%endif # with tests
e4083f
e4083f
e4083f
%post -n python%{python3_pkgversion}-setuptools
e4083f
alternatives --add-slave python3 %{_bindir}/python3.8 \
e4083f
    %{_bindir}/easy_install-3 \
e4083f
    easy_install-3 \
e4083f
    %{_bindir}/easy_install-3.8 \
e4083f
e4083f
%postun -n python%{python3_pkgversion}-setuptools
e4083f
# Do this only during uninstall process (not during update)
e4083f
if [ $1 -eq 0 ]; then
fe0f15
    alternatives --keep-foreign --remove-slave python3 %{_bindir}/python3.8 \
e4083f
        easy_install-3
e4083f
fi
e4083f
e4083f
e4083f
%files -n python%{python3_pkgversion}-setuptools
e4083f
%license LICENSE
e4083f
%doc docs/* CHANGES.rst README.rst
e4083f
%{python3_sitelib}/easy_install.py
e4083f
%{python3_sitelib}/pkg_resources/
e4083f
%{python3_sitelib}/setuptools*/
e4083f
%{python3_sitelib}/__pycache__/*
e4083f
%{_bindir}/easy_install-3.*
e4083f
%ghost %{_bindir}/easy_install-3
e4083f
e4083f
%if %{without bootstrap}
e4083f
%files -n python%{python3_pkgversion}-setuptools-wheel
e4083f
%license LICENSE
e4083f
# we own the dir for simplicity
e4083f
%dir %{python_wheeldir}/
e4083f
%{python_wheeldir}/%{python_wheelname}
e4083f
%endif
e4083f
e4083f
e4083f
%changelog
fe0f15
* Mon Aug 02 2021 Tomas Orsava <torsava@redhat.com> - 41.6.0-5
fe0f15
- Adjusted the postun scriptlets to enable upgrading to RHEL 9
fe0f15
- Resolves: rhbz#1933055
fe0f15
e4083f
* Mon Mar 09 2020 Tomas Orsava <torsava@redhat.com> - 41.6.0-4
e4083f
- Implement the alternatives system for the executables
e4083f
- Resolves: rhbz#1807041
e4083f
e4083f
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 41.6.0-3
e4083f
- Exclude unsupported i686 arch
e4083f
e4083f
* Mon Nov 18 2019 Tomas Orsava <torsava@redhat.com> - 41.6.0-2
e4083f
- Convert to RHEL8 python38 module
e4083f
e4083f
* Mon Nov 04 2019 Tomas Orsava <torsava@redhat.com> - 41.6.0-1
e4083f
- Upgrade to 41.6.0 (#1758945).
e4083f
- https://setuptools.readthedocs.io/en/latest/history.html#v41-6-0
e4083f
- Disabled a failing upstream test: https://github.com/pypa/setuptools/issues/1896
e4083f
e4083f
* Tue Sep 03 2019 Randy Barlow <bowlofeggs@fedoraproject.org> - 41.2.0-1
e4083f
- Upgrade to 41.2.0 (#1742718).
e4083f
- https://setuptools.readthedocs.io/en/latest/history.html#v41-2-0
e4083f
e4083f
* Mon Aug 26 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-9
e4083f
- Move python2-setuptools to a separate package
e4083f
e4083f
* Sun Aug 18 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-8
e4083f
- Rebuilt for Python 3.8
e4083f
e4083f
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-7
e4083f
- Bootstrap for Python 3.8
e4083f
e4083f
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-6
e4083f
- Provide pythonXdist(setuptools) when bootstrapping
e4083f
e4083f
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-5
e4083f
- Bootstrap for Python 3.8
e4083f
e4083f
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 41.0.1-4
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e4083f
e4083f
* Tue Jul 16 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-3
e4083f
- Make /usr/bin/easy_install Python 3
e4083f
- Drop obsoleted Obsoletes
e4083f
e4083f
* Fri Jun 21 2019 Petr Viktorin <pviktori@redhat.com> - 41.0.1-2
e4083f
- Remove optional test dependencies for Python 2
e4083f
- Skip test_virtualenv on Python 2
e4083f
e4083f
* Thu Apr 25 2019 Miro Hrončok <mhroncok@redhat.com> - 41.0.1-1
e4083f
- Update to 41.0.1 (#1695846)
e4083f
- https://github.com/pypa/setuptools/blob/v41.0.1/CHANGES.rst
e4083f
e4083f
* Tue Feb 05 2019 Miro Hrončok <mhroncok@redhat.com> - 40.8.0-1
e4083f
- Update to 40.8.0 (#1672756)
e4083f
- https://github.com/pypa/setuptools/blob/v40.8.0/CHANGES.rst
e4083f
e4083f
* Sun Feb 03 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.3-1
e4083f
- Hotfix update to 40.7.3 (#1672084)
e4083f
- https://github.com/pypa/setuptools/blob/v40.7.3/CHANGES.rst
e4083f
e4083f
* Sat Feb 02 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.2-1
e4083f
- Hotfix update to 40.7.2 (#1671608)
e4083f
- https://github.com/pypa/setuptools/blob/v40.7.2/CHANGES.rst
e4083f
e4083f
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 40.7.1-2
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e4083f
e4083f
* Tue Jan 29 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.1-1
e4083f
- Hotfix update to 40.7.1 (#1670243)
e4083f
- https://github.com/pypa/setuptools/blob/v40.7.1/CHANGES.rst
e4083f
e4083f
* Mon Jan 28 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.0-1
e4083f
- Update to 40.7.0 (#1669876)
e4083f
- https://github.com/pypa/setuptools/blob/v40.7.0/CHANGES.rst
e4083f
e4083f
* Mon Sep 24 2018 Miro Hrončok <mhroncok@redhat.com> - 40.4.3-1
e4083f
- Update to 40.4.3 to fix dire DeprecationWarnings (#1627071)
e4083f
- List vendored libraries
e4083f
- https://github.com/pypa/setuptools/blob/v40.4.3/CHANGES.rst
e4083f
e4083f
* Wed Sep 19 2018 Randy Barlow <bowlofeggs@fedoraproject.org> - 40.4.1-1
e4083f
- Update to 40.4.1 (#1599307).
e4083f
- https://github.com/pypa/setuptools/blob/v40.4.1/CHANGES.rst
e4083f
e4083f
* Wed Aug 15 2018 Petr Viktorin <pviktori@redhat.com> - 39.2.0-7
e4083f
- Add a subpackage with wheels
e4083f
- Remove the python3 bcond
e4083f
- Remove macros for RHEL 6
e4083f
e4083f
* Thu Jul 19 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-6
e4083f
- Create /usr/local/lib/pythonX.Y when needed (#1576924)
e4083f
e4083f
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 39.2.0-5
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e4083f
e4083f
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-4
e4083f
- Rebuilt for Python 3.7
e4083f
e4083f
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-3
e4083f
- Bootstrap for Python 3.7
e4083f
e4083f
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 39.2.0-2
e4083f
- Bootstrap for Python 3.7
e4083f
e4083f
* Wed May 23 2018 Charalampos Stratakis <cstratak@redhat.com> - 39.2.0-1
e4083f
- update to 39.2.0 Fixes bug #1572889
e4083f
e4083f
* Tue Mar 20 2018 Charalampos Stratakis <cstratak@redhat.com> - 39.0.1-1
e4083f
- update to 39.0.1 Fixes bug #1531527
e4083f
e4083f
* Wed Mar 14 2018 Tomas Orsava <torsava@redhat.com> - 38.4.0-4
e4083f
- Skip test_virtualenv due to broken executable detection
e4083f
e4083f
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 38.4.0-3
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e4083f
e4083f
* Tue Jan 16 2018 Troy Dawson <tdawson@redhat.com> - 38.4.0-2
e4083f
- Update conditional
e4083f
e4083f
* Tue Jan 16 2018 Charalampos Stratakis <cstratak@redhat.com> - 38.4.0-1
e4083f
- update to 38.4.0 Fixes bug #1531527
e4083f
e4083f
* Tue Jan 02 2018 Charalampos Stratakis <cstratak@redhat.com> - 38.2.5-1
e4083f
- update to 38.2.5 Fixes bug #1528968
e4083f
e4083f
* Tue Nov 21 2017 Miro Hrončok <mhroncok@redhat.com> - 37.0.0-1
e4083f
- Update to 37.0.0 (fixes #1474126)
e4083f
- Removed not needed pip3 patch (upstream included different version of fix)
e4083f
e4083f
* Tue Nov 21 2017 Miro Hrončok <mhroncok@redhat.com> - 36.5.0-1
e4083f
- Update to 36.5.0 (related to #1474126)
e4083f
e4083f
* Thu Nov 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-8
e4083f
- Remove the platform-python subpackage
e4083f
e4083f
* Sun Aug 20 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-7
e4083f
- Re-enable tests to finish bootstrapping the platform-python stack
e4083f
  (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
e4083f
e4083f
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-6
e4083f
- Add the platform-python subpackage
e4083f
- Disable tests so platform-python stack can be bootstrapped
e4083f
  (https://fedoraproject.org/wiki/Changes/Platform_Python_Stack)
e4083f
e4083f
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-5
e4083f
- Add Patch 0 that fixes a test suite failure on Python 3 in absence of
e4083f
  the Python 2 version of pip
e4083f
- Move docs to their proper place
e4083f
e4083f
* Wed Aug 09 2017 Tomas Orsava <torsava@redhat.com> - 36.2.0-4
e4083f
- Switch macros to bcond's and make Python 2 optional to facilitate building
e4083f
  the Python 2 and Python 3 modules.
e4083f
e4083f
* Tue Aug 08 2017 Michal Cyprian <mcyprian@redhat.com> - 36.2.0-3
e4083f
- Revert "Add --executable option to easy_install command"
e4083f
  This enhancement is currently not needed and it can possibly
e4083f
  collide with `pip --editable`option
e4083f
e4083f
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 36.2.0-2
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e4083f
e4083f
* Sat Jul 15 2017 Charalampos Stratakis <cstratak@redhat.com> - 36.2.0-1
e4083f
- update to 36.2.0. Fixes bug #1470908
e4083f
e4083f
* Thu Jun 15 2017 Charalampos Stratakis <cstratak@redhat.com> - 36.0.1-1
e4083f
- update to 36.0.1. Fixes bug #1458093
e4083f
e4083f
* Sat May 27 2017 Kevin Fenzi <kevin@scrye.com> - 35.0.2-1
e4083f
- update to 35.0.2. Fixes bug #1446622
e4083f
e4083f
* Sun Apr 23 2017 Kevin Fenzi <kevin@scrye.com> - 35.0.1-1
e4083f
- Update to 35.0.1. Fixes bug #1440388
e4083f
e4083f
* Sat Mar 25 2017 Kevin Fenzi <kevin@scrye.com> - 34.3.2-1
e4083f
- Update to 34.3.2. Fixes bug #1428818
e4083f
e4083f
* Sat Feb 25 2017 Kevin Fenzi <kevin@scrye.com> - 34.3.0-1
e4083f
- Update to 34.3.0. Fixes bug #1426463
e4083f
e4083f
* Fri Feb 17 2017 Michal Cyprian <mcyprian@redhat.com> - 34.2.0-2
e4083f
- Add --executable option to easy_install command
e4083f
e4083f
* Thu Feb 16 2017 Charalampos Stratakis <cstratak@redhat.com> - 34.2.0-1
e4083f
- Update to 34.2.0. Fixes bug #1421676
e4083f
e4083f
* Sat Feb 04 2017 Kevin Fenzi <kevin@scrye.com> - 34.1.1-1
e4083f
- Update to 34.1.1. Fixes bug #1412268
e4083f
- Fix License tag. Fixes bug #1412268
e4083f
- Add Requires for fomerly bundled projects: six, packaging appdirs
e4083f
e4083f
* Tue Jan 03 2017 Michal Cyprian <mcyprian@redhat.com> - 32.3.1-2
e4083f
- Use python macros in build and install sections
e4083f
e4083f
* Thu Dec 29 2016 Kevin Fenzi <kevin@scrye.com> - 32.3.1-1
e4083f
- Update to 32.3.1. Fixes bug #1409091
e4083f
e4083f
* Wed Dec 28 2016 Kevin Fenzi <kevin@scrye.com> - 32.3.0-1
e4083f
- Update to 32.3.0. Fixes bug #1408564
e4083f
e4083f
* Fri Dec 23 2016 Kevin Fenzi <kevin@scrye.com> - 32.2.0-1
e4083f
- Update to 32.2.0. Fixes bug #1400310
e4083f
e4083f
* Tue Dec 13 2016 Stratakis Charalampos <cstratak@redhat.com> - 30.4.0-2
e4083f
- Enable tests
e4083f
e4083f
* Sun Dec 11 2016 Kevin Fenzi <kevin@scrye.com> - 30.4.0-1
e4083f
- Update to 30.4.0. Fixes bug #1400310
e4083f
e4083f
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 28.8.0-3
e4083f
- Rebuild for Python 3.6 with wheel
e4083f
- Disable tests
e4083f
e4083f
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 28.8.0-2
e4083f
- Rebuild for Python 3.6 without wheel
e4083f
e4083f
* Wed Nov 09 2016 Kevin Fenzi <kevin@scrye.com> - 28.8.0-1
e4083f
- Update to 28.8.1. Fixes bug #1392722
e4083f
e4083f
* Mon Oct 31 2016 Kevin Fenzi <kevin@scrye.com> - 28.7.1-1
e4083f
- Update to 28.7.1. Fixes bug #1389917
e4083f
e4083f
* Tue Oct 25 2016 Kevin Fenzi <kevin@scrye.com> - 28.6.1-1
e4083f
- Update to 28.6.1. Fixes bug #1387071
e4083f
e4083f
* Tue Oct 18 2016 Kevin Fenzi <kevin@scrye.com> - 28.6.0-1
e4083f
- Update to 28.6.0. Fixes bug #1385655
e4083f
e4083f
* Sat Oct 08 2016 Kevin Fenzi <kevin@scrye.com> - 28.3.0-1
e4083f
- Update to 28.3.0. Fixes bug #1382971
e4083f
e4083f
* Sun Oct 02 2016 Kevin Fenzi <kevin@scrye.com> - 28.2.0-1
e4083f
- Update to 28.2.0. Fixes bug #1381099
e4083f
e4083f
* Sun Oct 02 2016 Kevin Fenzi <kevin@scrye.com> - 28.1.0-1
e4083f
- Update to 28.1.0. Fixes bug #1381066
e4083f
e4083f
* Wed Sep 28 2016 Kevin Fenzi <kevin@scrye.com> - 28.0.0-1
e4083f
- Update to 28.0.0. Fixes bug #1380073
e4083f
e4083f
* Sun Sep 25 2016 Kevin Fenzi <kevin@scrye.com> - 27.3.0-1
e4083f
- Update to 27.3.0. Fixes bug #1378067
e4083f
e4083f
* Sat Sep 17 2016 Kevin Fenzi <kevin@scrye.com> - 27.2.0-1
e4083f
- Update to 27.2.0. Fixes bug #1376298
e4083f
e4083f
* Sat Sep 10 2016 Kevin Fenzi <kevin@scrye.com> - 27.1.2-1
e4083f
- Update to 27.1.2. Fixes bug #1370777
e4083f
e4083f
* Sat Aug 27 2016 Kevin Fenzi <kevin@scrye.com> - 26.0.0-1
e4083f
- Update to 26.0.0. Fixes bug #1370777
e4083f
e4083f
* Wed Aug 10 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.6-1
e4083f
- Update to 25.1.6. Fixes bug #1362325
e4083f
e4083f
* Fri Jul 29 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.1-1
e4083f
- Update to 25.1.1. Fixes bug #1361465
e4083f
e4083f
* Thu Jul 28 2016 Kevin Fenzi <kevin@scrye.com> - 25.1.0-1
e4083f
- Update to 25.1.0
e4083f
e4083f
* Sat Jul 23 2016 Kevin Fenzi <kevin@scrye.com> - 25.0.0-1
e4083f
- Update to 25.0.0
e4083f
e4083f
* Fri Jul 22 2016 Kevin Fenzi <kevin@scrye.com> - 24.2.0-1
e4083f
- Update to 24.2.0. Fixes bug #1352734
e4083f
e4083f
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 24.0.1-2
e4083f
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
e4083f
e4083f
* Mon Jul 04 2016 Kevin Fenzi <kevin@scrye.com> - 24.0.1-1
e4083f
- Update to 24.0.1. Fixes bug #1352532
e4083f
e4083f
* Wed Jun 15 2016 Kevin Fenzi <kevin@scrye.com> - 23.0.0-1
e4083f
- Update to 23.0.0. Fixes bug #1346542
e4083f
e4083f
* Tue Jun 07 2016 Kevin Fenzi <kevin@scrye.com> - 22.0.5-1
e4083f
- Update to 22.0.5. Fixes bug #1342706
e4083f
e4083f
* Thu Jun 02 2016 Kevin Fenzi <kevin@scrye.com> - 20.0.0-1
e4083f
- Upgrade to 22.0.0
e4083f
e4083f
* Tue May 31 2016 Nils Philippsen <nils@redhat.com>
e4083f
- fix source URL
e4083f
e4083f
* Sun May 29 2016 Kevin Fenzi <kevin@scrye.com> - 21.2.2-1
e4083f
- Update to 21.2.2. Fixes bug #1332357
e4083f
e4083f
* Thu Apr 28 2016 Kevin Fenzi <kevin@scrye.com> - 20.10.1-1
e4083f
- Update to 20.10.1. Fixes bug #1330375
e4083f
e4083f
* Sat Apr 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.9.0-1
e4083f
- Update to 20.9.0. Fixes bug #1327827
e4083f
e4083f
* Fri Apr 15 2016 Kevin Fenzi <kevin@scrye.com> - 20.8.1-1
e4083f
- Update to 20.8.1. Fixes bug #1325910
e4083f
e4083f
* Thu Mar 31 2016 Kevin Fenzi <kevin@scrye.com> - 20.6.7-1
e4083f
- Update to 20.6.7. Fixes bug #1322836
e4083f
e4083f
* Wed Mar 30 2016 Kevin Fenzi <kevin@scrye.com> - 20.4-1
e4083f
- Update to 20.4. Fixes bug #1319366
e4083f
e4083f
* Wed Mar 16 2016 Kevin Fenzi <kevin@scrye.com> - 20.3-1
e4083f
- Update to 20.3. Fixes bug #1311967
e4083f
e4083f
* Sat Feb 27 2016 Kevin Fenzi <kevin@scrye.com> - 20.2.2-1
e4083f
- Update to 20.2.2. Fixes bug #1311967
e4083f
e4083f
* Sat Feb 13 2016 Kevin Fenzi <kevin@scrye.com> - 20.1.1-1
e4083f
- Update to 20.1.1. Fixes bug #130719
e4083f
e4083f
* Fri Feb 12 2016 Kevin Fenzi <kevin@scrye.com> - 20.1-1
e4083f
- Update to 20.1. Fixes bug #1307000
e4083f
e4083f
* Mon Feb 08 2016 Kevin Fenzi <kevin@scrye.com> - 20.0-1
e4083f
- Update to 20.0. Fixes bug #1305394
e4083f
e4083f
* Sat Feb 06 2016 Kevin Fenzi <kevin@scrye.com> - 19.7-1
e4083f
- Update to 19.7. Fixes bug #1304563
e4083f
e4083f
* Wed Feb 3 2016 Orion Poplawski <orion@cora.nwra.com> - 19.6.2-2
e4083f
- Fix python3 package file ownership
e4083f
e4083f
* Sun Jan 31 2016 Kevin Fenzi <kevin@scrye.com> - 19.6.2-1
e4083f
- Update to 19.6.2. Fixes bug #1303397
e4083f
e4083f
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.6-1
e4083f
- Update to 19.6.
e4083f
e4083f
* Mon Jan 25 2016 Kevin Fenzi <kevin@scrye.com> - 19.5-1
e4083f
- Update to 19.5. Fixes bug #1301313
e4083f
e4083f
* Mon Jan 18 2016 Kevin Fenzi <kevin@scrye.com> - 19.4-1
e4083f
- Update to 19.4. Fixes bug #1299288
e4083f
e4083f
* Tue Jan 12 2016 Orion Poplawski <orion@cora.nwra.com> - 19.2-2
e4083f
- Cleanup spec from python3-setuptools review
e4083f
e4083f
* Fri Jan 08 2016 Kevin Fenzi <kevin@scrye.com> - 19.2-1
e4083f
- Update to 19.2. Fixes bug #1296755
e4083f
e4083f
* Fri Dec 18 2015 Kevin Fenzi <kevin@scrye.com> - 19.1.1-1
e4083f
- Update to 19.1.1. Fixes bug #1292658
e4083f
e4083f
* Tue Dec 15 2015 Kevin Fenzi <kevin@scrye.com> - 18.8.1-1
e4083f
- Update to 18.8.1. Fixes bug #1291678
e4083f
e4083f
* Sat Dec 12 2015 Kevin Fenzi <kevin@scrye.com> - 18.8-1
e4083f
- Update to 18.8. Fixes bug #1290942
e4083f
e4083f
* Fri Dec 04 2015 Kevin Fenzi <kevin@scrye.com> - 18.7.1-1
e4083f
- Update to 18.7.1. Fixes bug #1287372
e4083f
e4083f
* Wed Nov 25 2015 Kevin Fenzi <kevin@scrye.com> - 18.6.1-1
e4083f
- Update to 18.6.1. Fixes bug #1270578
e4083f
e4083f
* Sun Nov 15 2015 Thomas Spura <tomspur@fedoraproject.org> - 18.5-3
e4083f
- Try to disable zip_safe bug #1271776
e4083f
- Add python2 subpackage
e4083f
e4083f
* Fri Nov 06 2015 Robert Kuska <rkuska@redhat.com> - 18.5-2
e4083f
- Add patch so it is possible to set test_args variable
e4083f
e4083f
* Tue Nov 03 2015 Robert Kuska <rkuska@redhat.com> - 18.5-1
e4083f
- Update to 18.5. Fixes bug #1270578
e4083f
e4083f
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.coM> - 18.4-1
e4083f
- Update to 18.4. Fixes bug #1270578
e4083f
- Build with wheel and check phase
e4083f
e4083f
* Wed Sep 23 2015 Robert Kuska <rkuska@redhat.com> - 18.3.2-2
e4083f
- Python3.5 rebuild: rebuild without wheel and check phase
e4083f
e4083f
* Tue Sep 22 2015 Kevin Fenzi <kevin@scrye.com> 18.3.2-1
e4083f
- Update to 18.3.2. Fixes bug #1264902
e4083f
e4083f
* Mon Sep 07 2015 Kevin Fenzi <kevin@scrye.com> 18.3.1-1
e4083f
- Update to 18.3.1. Fixes bug #1256188
e4083f
e4083f
* Wed Aug 05 2015 Kevin Fenzi <kevin@scrye.com> 18.1-1
e4083f
- Update to 18.1. Fixes bug #1249436
e4083f
e4083f
* Mon Jun 29 2015 Pierre-Yves Chibon <pingou@pingoured.fr> - 18.0.1-2
e4083f
- Explicitely provide python2-setuptools
e4083f
e4083f
* Thu Jun 25 2015 Kevin Fenzi <kevin@scrye.com> 18.0.1-1
e4083f
- Update to 18.0.1
e4083f
e4083f
* Sat Jun 20 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-3
e4083f
- Drop no longer needed Requires/BuildRequires on python-backports-ssl_match_hostname
e4083f
- Fixes bug #1231325
e4083f
e4083f
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 17.1.1-2
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e4083f
e4083f
* Wed Jun 10 2015 Kevin Fenzi <kevin@scrye.com> 17.1.1-1
e4083f
- Update to 17.1.1. Fixes bug 1229507
e4083f
e4083f
* Sun Jun 07 2015 Kevin Fenzi <kevin@scrye.com> 17.1-1
e4083f
- Update to 17.1. Fixes bug 1229066
e4083f
e4083f
* Sat May 30 2015 Kevin Fenzi <kevin@scrye.com> 17.0-1
e4083f
- Update to 17
e4083f
e4083f
* Mon May 18 2015 Kevin Fenzi <kevin@scrye.com> 16.0-1
e4083f
- Update to 16
e4083f
e4083f
* Mon Apr 27 2015 Ralph Bean <rbean@redhat.com> - 15.2-1
e4083f
- new version
e4083f
e4083f
* Sat Apr 04 2015 Ralph Bean <rbean@redhat.com> - 15.0-1
e4083f
- new version
e4083f
e4083f
* Sun Mar 22 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
e4083f
- new version
e4083f
e4083f
* Sat Mar 21 2015 Ralph Bean <rbean@redhat.com> - 14.3.1-1
e4083f
- new version
e4083f
e4083f
* Mon Mar 16 2015 Ralph Bean <rbean@redhat.com> - 14.3-1
e4083f
- new version
e4083f
e4083f
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.2-1
e4083f
- new version
e4083f
e4083f
* Sun Mar 15 2015 Ralph Bean <rbean@redhat.com> - 14.1.1-1
e4083f
- new version
e4083f
e4083f
* Fri Mar 06 2015 Ralph Bean <rbean@redhat.com> - 13.0.2-1
e4083f
- new version
e4083f
e4083f
* Thu Mar 05 2015 Ralph Bean <rbean@redhat.com> - 12.4-1
e4083f
- new version
e4083f
e4083f
* Fri Feb 27 2015 Ralph Bean <rbean@redhat.com> - 12.3-1
e4083f
- new version
e4083f
e4083f
* Tue Jan 20 2015 Kevin Fenzi <kevin@scrye.com> 12.0.3-1
e4083f
- Update to 12.0.3
e4083f
e4083f
* Fri Jan 09 2015 Slavek Kabrda <bkabrda@redhat.com> - 11.3.1-2
e4083f
- Huge spec cleanup
e4083f
- Make spec buildable on all Fedoras and RHEL 6 and 7
e4083f
- Make tests actually run
e4083f
e4083f
* Wed Jan 07 2015 Kevin Fenzi <kevin@scrye.com> 11.3.1-1
e4083f
- Update to 11.3.1. Fixes bugs: #1179393 and #1178817
e4083f
e4083f
* Sun Jan 04 2015 Kevin Fenzi <kevin@scrye.com> 11.0-1
e4083f
- Update to 11.0. Fixes bug #1178421
e4083f
e4083f
* Fri Dec 26 2014 Kevin Fenzi <kevin@scrye.com> 8.2.1-1
e4083f
- Update to 8.2.1. Fixes bug #1175229
e4083f
e4083f
* Thu Oct 23 2014 Ralph Bean <rbean@redhat.com> - 7.0-1
e4083f
- Latest upstream.  Fixes bug #1154590.
e4083f
e4083f
* Mon Oct 13 2014 Ralph Bean <rbean@redhat.com> - 6.1-1
e4083f
- Latest upstream.  Fixes bug #1152130.
e4083f
e4083f
* Sat Oct 11 2014 Ralph Bean <rbean@redhat.com> - 6.0.2-2
e4083f
- Modernized python2 macros.
e4083f
- Inlined locale environment variables in the %%check section.
e4083f
- Remove bundled egg-info and .exes.
e4083f
e4083f
* Fri Oct 03 2014 Kevin Fenzi <kevin@scrye.com> 6.0.2-1
e4083f
- Update to 6.0.2
e4083f
e4083f
* Sat Sep 27 2014 Kevin Fenzi <kevin@scrye.com> 6.0.1-1
e4083f
- Update to 6.0.1. Fixes bug #1044444
e4083f
e4083f
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-8
e4083f
- Remove the python-setuptools-devel Virtual Provides as per this Fedora 21
e4083f
  Change: http://fedoraproject.org/wiki/Changes/Remove_Python-setuptools-devel
e4083f
e4083f
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-7
e4083f
- And another bug in sdist
e4083f
e4083f
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-6
e4083f
- Fix a bug in the sdist command
e4083f
e4083f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-5
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e4083f
e4083f
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-4
e4083f
- Rebuild as wheel for Python 3.4
e4083f
e4083f
* Thu Apr 24 2014 Tomas Radej <tradej@redhat.com> - 2.0-3
e4083f
- Rebuilt for tag f21-python
e4083f
e4083f
* Wed Apr 23 2014 Matej Stuchlik <mstuchli@redhat.com> - 2.0-2
e4083f
- Add a switch to build setuptools as wheel
e4083f
e4083f
* Mon Dec  9 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.0-1
e4083f
- Update to new upstream release with a few things removed from the API:
e4083f
  Changelog: https://pypi.python.org/pypi/setuptools#id139
e4083f
e4083f
* Mon Nov 18 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.4-1
e4083f
- Update to 1.4 that gives easy_install pypi credential handling
e4083f
e4083f
* Thu Nov  7 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-1
e4083f
- Minor upstream update to reign in overzealous warnings
e4083f
e4083f
* Mon Nov  4 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3-1
e4083f
- Upstream update that pulls in our security patches
e4083f
e4083f
* Mon Oct 28 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.7-1
e4083f
- Update to newer upstream release that has our patch to the unittests
e4083f
- Fix for http://bugs.python.org/issue17997#msg194950 which affects us since
e4083f
  setuptools copies that code. Changed to use
e4083f
  python-backports-ssl_match_hostname so that future issues can be fixed in
e4083f
  that package.
e4083f
e4083f
* Sat Oct 26 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.1.6-1
e4083f
- Update to newer upstream release.  Some minor incompatibilities listed but
e4083f
  they should affect few, if any consumers.
e4083f
e4083f
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.6-2
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e4083f
e4083f
* Tue Jul 23 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.6-1
e4083f
- Upstream update -- just fixes python-2.4 compat
e4083f
e4083f
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.9.5-1
e4083f
- Update to 0.9.5
e4083f
  - package_index can handle hashes other than md5
e4083f
  - Fix security vulnerability in SSL certificate validation
e4083f
  - https://bugzilla.redhat.com/show_bug.cgi?id=963260
e4083f
e4083f
* Fri Jul  5 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.8-1
e4083f
- Update to upstream 0.8  release.  Codebase now runs on anything from
e4083f
  python-2.4 to python-3.3 without having to be translated by 2to3.
e4083f
e4083f
* Wed Jul  3 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.7-1
e4083f
- Update to 0.7.7 upstream release
e4083f
e4083f
* Mon Jun 10 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.7.2-2
e4083f
- Update to the setuptools-0.7 branch that merges distribute and setuptools
e4083f
e4083f
* Thu Apr 11 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.36-1
e4083f
- Update to upstream 0.6.36.  Many bugfixes
e4083f
e4083f
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.28-4
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e4083f
e4083f
* Fri Aug 03 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-3
e4083f
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
e4083f
e4083f
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 0.6.28-2
e4083f
- remove rhel logic from with_python3 conditional
e4083f
e4083f
* Mon Jul 23 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.28-1
e4083f
- New upstream release:
e4083f
  - python-3.3 fixes
e4083f
  - honor umask when setuptools is used to install other modules
e4083f
e4083f
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.27-3
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e4083f
e4083f
* Mon Jun 11 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-2
e4083f
- Fix easy_install.py having a python3 shebang in the python2 package
e4083f
e4083f
* Thu Jun  7 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.27-1
e4083f
- Upstream bugfix
e4083f
e4083f
* Tue May 15 2012 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-2
e4083f
- Upstream bugfix
e4083f
e4083f
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.24-2
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e4083f
e4083f
* Mon Oct 17 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.24-1
e4083f
- Upstream bugfix
e4083f
- Compile the win32 launcher binary using mingw
e4083f
e4083f
* Sun Aug 21 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.21-1
e4083f
- Upstream bugfix release
e4083f
e4083f
* Thu Jul 14 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.19-1
e4083f
- Upstream bugfix release
e4083f
e4083f
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-7
e4083f
- Switch to patch that I got in to upstream
e4083f
e4083f
* Tue Feb 22 2011 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-6
e4083f
- Fix build on python-3.2
e4083f
e4083f
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-5
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e4083f
e4083f
* Sun Aug 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-4
e4083f
- rebuild with python3.2
e4083f
  http://lists.fedoraproject.org/pipermail/devel/2010-August/141368.html
e4083f
e4083f
* Tue Aug 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.14-3
e4083f
- Update description to mention this is distribute
e4083f
e4083f
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-2
e4083f
- bump for building against python 2.7
e4083f
e4083f
* Thu Jul 22 2010 Thomas Spura <tomspur@fedoraproject.org> - 0.6.14-1
e4083f
- update to new version
e4083f
- all patches are upsteam
e4083f
e4083f
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-7
e4083f
- generalize path of easy_install-2.6 and -3.1 to -2.* and -3.*
e4083f
e4083f
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.13-6
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
e4083f
e4083f
* Sat Jul 3 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-5
e4083f
- Upstream patch for compatibility problem with setuptools
e4083f
- Minor spec cleanups
e4083f
- Provide python-distribute for those who see an import distribute and need
e4083f
  to get the proper package.
e4083f
e4083f
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-4
e4083f
- Fix race condition in unittests under the python-2.6.x on F-14.
e4083f
e4083f
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-3
e4083f
- Fix few more buildroot macros
e4083f
e4083f
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-2
e4083f
- Include data that's needed for running tests
e4083f
e4083f
* Thu Jun 10 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.13-1
e4083f
- Update to upstream 0.6.13
e4083f
- Minor specfile formatting fixes
e4083f
e4083f
* Thu Feb 04 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-3
e4083f
- First build with python3 support enabled.
e4083f
  
e4083f
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-2
e4083f
- Really disable the python3 portion
e4083f
e4083f
* Fri Jan 29 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.10-1
e4083f
- Update the python3 portions but disable for now.
e4083f
- Update to 0.6.10
e4083f
- Remove %%pre scriptlet as the file has a different name than the old
e4083f
  package's directory
e4083f
e4083f
* Tue Jan 26 2010 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-4
e4083f
- Fix install to make /usr/bin/easy_install the py2 version
e4083f
- Don't need python3-tools since the library is now in the python3 package
e4083f
- Few other changes to cleanup style
e4083f
e4083f
* Fri Jan 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.9-2
e4083f
- add python3 subpackage
e4083f
e4083f
* Mon Dec 14 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.9-1
e4083f
- New upstream bugfix release.
e4083f
e4083f
* Sun Dec 13 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-2
e4083f
- Test rebuild
e4083f
e4083f
* Mon Nov 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.8-1
e4083f
- Update to 0.6.8.
e4083f
- Fix directory => file transition when updating from setuptools-0.6c9.
e4083f
e4083f
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-2
e4083f
- Fix duplicate inclusion of files.
e4083f
- Only Obsolete old versions of python-setuptools-devel
e4083f
e4083f
* Tue Nov 3 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.7-1
e4083f
- Move easy_install back into the main package as the needed files have been
e4083f
  moved from python-devel to the main python package.
e4083f
- Update to 0.6.7 bugfix.
e4083f
e4083f
* Fri Oct 16 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.6-1
e4083f
- Upstream bugfix release.
e4083f
e4083f
* Mon Oct 12 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 0.6.4-1
e4083f
- First build from the distribute codebase -- distribute-0.6.4.
e4083f
- Remove svn patch as upstream has chosen to go with an easier change for now.
e4083f
e4083f
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-5
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e4083f
e4083f
* Tue Jul 14 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 0.6c9-4
e4083f
- Apply SVN-1.6 versioning patch (rhbz #511021)
e4083f
e4083f
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6c9-3
e4083f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild