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