Blame SPECS/python3x-setuptools.spec

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