Blame SPECS/python2-setuptools.spec

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