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