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