f866d3
%bcond_with bootstrap
f866d3
%bcond_with tests
f866d3
%bcond_with doc
f866d3
f866d3
%global srcname pip
f866d3
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
f866d3
%global python2_wheeldir %{_datadir}/python2-wheels
f866d3
%if %{without bootstrap}
f866d3
%global python2_wheelname %python_wheelname
f866d3
%endif
f866d3
f866d3
# Note that with disabled python3, bashcomp2 will be disabled as well because
f866d3
# bashcompdir will point to a different path than with python3 enabled.
f866d3
%global bashcompdir %(b=$(pkg-config --variable=completionsdir bash-completion 2>/dev/null); echo ${b:-%{_sysconfdir}/bash_completion.d})
f866d3
%if "%{bashcompdir}" != "%{_sysconfdir}/bash_completion.d"
f866d3
%global bashcomp2 1
f866d3
%endif
f866d3
f866d3
Name:           python2-%{srcname}
f866d3
# When updating, update the bundled libraries versions bellow!
f866d3
Version:        9.0.3
046279
Release:        19%{?dist}
f866d3
Summary:        A tool for installing and managing Python 2 packages
f866d3
f866d3
Group:          Development/Libraries
f866d3
f866d3
# We bundle a lot of libraries with pip, which itself is under MIT license.
f866d3
# Here is the list of the libraries with corresponding licenses:
f866d3
f866d3
# appdirs: MIT
f866d3
# CacheControl: ASL 2.0
f866d3
# certifi: MPLv2.0
f866d3
# chardet: LGPLv2
f866d3
# colorama: BSD
f866d3
# distlib: Python
f866d3
# distro: ASL 2.0
f866d3
# html5lib: MIT
f866d3
# idna: BSD
f866d3
# ipaddress: Python
f866d3
# lockfile: MIT
f866d3
# packaging: ASL 2.0 or BSD
f866d3
# progress: ISC
f866d3
# pyparsing: MIT
f866d3
# requests: ASL 2.0
f866d3
# retrying: ASL 2.0
f866d3
# urllib3: MIT
f866d3
# six: MIT
f866d3
# urllib3: MIT
f866d3
# webencodings: BSD
f866d3
f866d3
License:        MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)
f866d3
URL:            http://www.pip-installer.org
f866d3
Source0:        https://files.pythonhosted.org/packages/source/p/%{srcname}/%{srcname}-%{version}.tar.gz
f866d3
# to get tests:
f866d3
# git clone https://github.com/pypa/pip && cd pip
f866d3
# git checkout 9.0.1 && tar -czvf ../pip-9.0.1-tests.tar.gz tests/
f866d3
%if %{with tests}
ed50e1
Source1:        pip-%{version}-tests.tar.gz
f866d3
%endif
f866d3
# Manpage generated by sphinx from source tarball
f866d3
# cd pip-9.0.3/docs && make man && cp _build/man/pip.1 ../../pip2.1
f866d3
Source2:        pip2.1
f866d3
f866d3
BuildArch:      noarch
f866d3
f866d3
%if %{with tests}
f866d3
BuildRequires:  git
f866d3
BuildRequires:  bzr
f866d3
%endif
f866d3
f866d3
# Patch until the following issue gets implemented upstream:
f866d3
# https://github.com/pypa/pip/issues/1351
f866d3
Patch0:         allow-stripping-given-prefix-from-wheel-RECORD-files.patch
f866d3
f866d3
# Downstream only patch
f866d3
# Emit a warning to the user if pip install is run with root privileges
f866d3
# Issue upstream: https://github.com/pypa/pip/issues/4288
f866d3
Patch1:         emit-a-warning-when-running-with-root-privileges.patch
f866d3
f866d3
# Do not show the "new version of pip" warning outside of venv
f866d3
# Upstream issue: https://github.com/pypa/pip/issues/5346
f866d3
# Fedora bug: https://bugzilla.redhat.com/show_bug.cgi?id=1573755
f866d3
Patch3:         pip-nowarn-upgrade.patch
f866d3
f866d3
# Use the system level root certificate instead of the one bundled in certifi
f866d3
# https://bugzilla.redhat.com/show_bug.cgi?id=1655253
f866d3
Patch4:         dummy-certifi.patch
f866d3
f866d3
# Patch for CVE in the bundled urllib3
f866d3
# CVE-2018-20060 Cross-host redirect does not remove Authorization header allow for credential exposure
f866d3
# https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2018-20060
f866d3
Patch5:         CVE-2018-20060.patch
f866d3
f866d3
# Patch for CVE in the bundled urllib3
f866d3
# CVE-2019-11236 CRLF injection due to not encoding the '\r\n' sequence leading to possible attack on internal service
f866d3
# https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-11236
f866d3
Patch6:         CVE-2019-11236.patch
f866d3
f866d3
# Patch for CVE in the bundled urllib3
f866d3
# CVE-2019-11324 Certification mishandle when error should be thrown
f866d3
# https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2019-11324
f866d3
Patch7:         CVE-2019-11324.patch
f866d3
f866d3
# Patch for CVE in the bundled requests
f866d3
# CVE-2018-18074 Redirect from HTTPS to HTTP does not remove Authorization header
f866d3
# This patch fixes both the CVE
f866d3
# https://bugzilla.redhat.com/show_bug.cgi?id=1643829
f866d3
# and the subsequent regression
f866d3
# https://github.com/psf/requests/pull/4851
f866d3
Patch8:         CVE-2018-18074.patch
f866d3
ed50e1
# Patch for pip install <url> allow directory traversal, leading to arbitrary file write
ed50e1
# - Upstream PR: https://github.com/pypa/pip/pull/6418/files
ed50e1
# - Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1870184
ed50e1
# Patch9 fixes the issue
ed50e1
# Patch10 adds unit tests for the issue
ed50e1
Patch9:         pip-directory-traversal-security-issue.patch
ed50e1
Patch10:        pip-directory-traversal-security-issue-tests.patch
ed50e1
f866d3
BuildRequires:  python2-devel
f866d3
BuildRequires:  python2-setuptools
f866d3
%if %{with tests}
f866d3
BuildRequires:  python2-mock
f866d3
BuildRequires:  python2-pytest
f866d3
BuildRequires:  python2-pretend
f866d3
BuildRequires:  python2-freezegun
f866d3
BuildRequires:  python2-pytest-capturelog
f866d3
BuildRequires:  python2-scripttest
f866d3
BuildRequires:  python2-virtualenv
f866d3
%endif
f866d3
%if %{without bootstrap}
f866d3
BuildRequires:  python2-pip
f866d3
BuildRequires:  python2-wheel
f866d3
%endif
f866d3
Requires:       python2-setuptools
f866d3
f866d3
# Virtual provides for the packages bundled by pip.
f866d3
# You can find the versions in pip/_vendor/vendor.txt file.
f866d3
# Don't forget to update this bellow for python3 as well.
f866d3
Provides: bundled(python2dist(appdirs)) = 1.4.0
f866d3
Provides: bundled(python2dist(cachecontrol)) = 0.11.7
f866d3
Provides: bundled(python2dist(colorama)) = 0.3.7
f866d3
Provides: bundled(python2dist(distlib)) = 0.2.4
f866d3
Provides: bundled(python2dist(distro)) = 1.0.1
f866d3
Provides: bundled(python2dist(html5lib)) = 1.0b10
f866d3
Provides: bundled(python2dist(ipaddress) = 1.0.17
f866d3
Provides: bundled(python2dist(lockfile)) = 0.12.2
f866d3
Provides: bundled(python2dist(packaging)) = 16.8
f866d3
Provides: bundled(python2dist(setuptools)) = 28.8.0
f866d3
Provides: bundled(python2dist(progress)) = 1.2
f866d3
Provides: bundled(python2dist(pyparsing)) = 2.1.10
f866d3
Provides: bundled(python2dist(requests)) = 2.11.1
f866d3
Provides: bundled(python2dist(retrying)) = 1.3.3
f866d3
Provides: bundled(python2dist(six)) = 1.10.0
f866d3
Provides: bundled(python2dist(webencodings)) = 0.5
f866d3
f866d3
# Bundled within the requests bundle
f866d3
Provides: bundled(python2dist(chardet)) = 2.3.0
f866d3
Provides: bundled(python2dist(urllib3)) = 1.16
f866d3
f866d3
%{?python_provide:%python_provide python2-%{srcname}}
f866d3
f866d3
%description
f866d3
pip is a package management system used to install and manage software packages
f866d3
written in Python. Many packages can be found in the Python Package Index
f866d3
(PyPI). pip is a recursive acronym that can stand for either "Pip Installs
f866d3
Packages" or "Pip Installs Python".
f866d3
f866d3
f866d3
%if %{with doc}
f866d3
%package doc
f866d3
Summary:        A documentation for a tool for installing and managing Python packages
f866d3
f866d3
BuildRequires:  python%{python3_pkgversion}-sphinx
f866d3
f866d3
%description doc
f866d3
A documentation for a tool for installing and managing Python packages
f866d3
f866d3
%endif
f866d3
f866d3
%if %{without bootstrap}
f866d3
%package -n python2-pip-wheel
f866d3
Summary:        The pip wheel
f866d3
f866d3
# Virtual provides for the packages bundled by pip.
f866d3
# You can find the versions in pip/_vendor/vendor.txt file.
f866d3
Provides: bundled(python2dist(appdirs)) = 1.4.0
f866d3
Provides: bundled(python2dist(cachecontrol)) = 0.11.7
f866d3
Provides: bundled(python2dist(colorama)) = 0.3.7
f866d3
Provides: bundled(python2dist(distlib)) = 0.2.4
f866d3
Provides: bundled(python2dist(distro)) = 1.0.1
f866d3
Provides: bundled(python2dist(html5lib)) = 1.0b10
f866d3
Provides: bundled(python2dist(ipaddress) = 1.0.17
f866d3
Provides: bundled(python2dist(lockfile)) = 0.12.2
f866d3
Provides: bundled(python2dist(packaging)) = 16.8
f866d3
Provides: bundled(python2dist(setuptools)) = 28.8.0
f866d3
Provides: bundled(python2dist(progress)) = 1.2
f866d3
Provides: bundled(python2dist(pyparsing)) = 2.1.10
f866d3
Provides: bundled(python2dist(requests)) = 2.11.1
f866d3
Provides: bundled(python2dist(retrying)) = 1.3.3
f866d3
Provides: bundled(python2dist(six)) = 1.10.0
f866d3
Provides: bundled(python2dist(webencodings)) = 0.5
f866d3
f866d3
%description -n python2-pip-wheel
f866d3
A Python wheel of pip to use with venv.
f866d3
%endif
f866d3
f866d3
f866d3
%prep
f866d3
%setup -q -n %{srcname}-%{version}
f866d3
%if %{with tests}
f866d3
tar -xf %{SOURCE1}
f866d3
%endif
f866d3
f866d3
%patch0 -p1
f866d3
%patch1 -p1
f866d3
%patch3 -p1
f866d3
%patch4 -p1
f866d3
f866d3
# Patching of bundled libraries
f866d3
pushd pip/_vendor/urllib3
f866d3
%patch5 -p1
f866d3
%patch6 -p1
f866d3
%patch7 -p1
f866d3
popd
f866d3
pushd pip/_vendor/requests
f866d3
%patch8 -p1
f866d3
popd
ed50e1
%patch9 -p1
ed50e1
%if %{with tests}
ed50e1
%patch10 -p1
ed50e1
%endif
f866d3
f866d3
# this goes together with patch4
f866d3
rm pip/_vendor/certifi/*.pem
f866d3
rm pip/_vendor/requests/*.pem
f866d3
sed -i '/\.pem$/d' pip.egg-info/SOURCES.txt
f866d3
f866d3
sed -i '1d' pip/__init__.py
f866d3
f866d3
# Remove ordereddict as it is only required for python <= 2.6
f866d3
rm pip/_vendor/ordereddict.py
f866d3
046279
# Remove windows executable binaries
046279
rm -v pip/_vendor/distlib/*.exe
046279
sed -i '/\.exe/d' setup.py
f866d3
f866d3
%build
f866d3
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
f866d3
%if %{without bootstrap}
f866d3
%py2_build_wheel
f866d3
%else
f866d3
%py2_build
f866d3
%endif
f866d3
f866d3
%if %{with doc}
f866d3
pushd docs
f866d3
make html
f866d3
make man
f866d3
rm _build/html/.buildinfo
f866d3
popd
f866d3
%endif
f866d3
f866d3
f866d3
%install
f866d3
%if %{with doc}
f866d3
install -d %{buildroot}%{_mandir}/man1
f866d3
install -pm0644 docs/_build/man/*.1 %{buildroot}%{_mandir}/man1/pip2.1
f866d3
%else
f866d3
# When building without doc, use pregenerated version of pip2 manual page
f866d3
mkdir -p %{buildroot}%{_mandir}/man1/
f866d3
cp %{SOURCE2} %{buildroot}%{_mandir}/man1/
f866d3
%endif # with doc
f866d3
f866d3
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
f866d3
%if %{without bootstrap}
f866d3
%py2_install_wheel %{python2_wheelname}
f866d3
%else
f866d3
%py2_install
f866d3
%endif
f866d3
f866d3
rm %{buildroot}%{_bindir}/pip{,%{python2_version}}
f866d3
f866d3
# Provide symlinks to executables to comply with Fedora guidelines for Python
f866d3
ln -s ./pip2 %{buildroot}%{_bindir}/pip-%{python2_version}
f866d3
ln -s ./pip2 %{buildroot}%{_bindir}/pip%{python2_version}
f866d3
ln -s ./pip2 %{buildroot}%{_bindir}/pip-2
f866d3
# Manpage symlink
f866d3
ln -s ./pip2.1.gz %{buildroot}%{_mandir}/man1/pip%{python2_version}.1.gz
f866d3
f866d3
mkdir -p %{buildroot}%{bashcompdir}
f866d3
PYTHONPATH=%{buildroot}%{python2_sitelib} \
f866d3
    %{buildroot}%{_bindir}/pip2 completion --bash \
f866d3
    > %{buildroot}%{bashcompdir}/pip2
f866d3
pips2="pip2"
f866d3
pips3=pip%{python3_version}
f866d3
for pip in %{buildroot}%{_bindir}/pip*; do
f866d3
    pip=$(basename $pip)
f866d3
    case $pip in
f866d3
        pip2.*|pip-2*)
f866d3
            pips2="$pips2 $pip"
f866d3
%if 0%{?bashcomp2}
f866d3
            ln -s pip2 %{buildroot}%{bashcompdir}/$pip
f866d3
%endif
f866d3
            ;;
f866d3
    esac
f866d3
done
f866d3
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 $pips2/" \
f866d3
    %{buildroot}%{bashcompdir}/pip2
f866d3
f866d3
# Make sure the INSTALLER is not pip, otherwise pip-nowarn-upgrade.patch
f866d3
# (Patch3) won't work
f866d3
mkdir -p %{buildroot}%{python2_sitelib}/pip-%{version}.dist-info
f866d3
echo rpm > %{buildroot}%{python2_sitelib}/pip-%{version}.dist-info/INSTALLER
f866d3
f866d3
f866d3
%if %{without bootstrap}
f866d3
mkdir -p %{buildroot}%{python2_wheeldir}
f866d3
install -p dist/%{python2_wheelname} -t %{buildroot}%{python2_wheeldir}
f866d3
%endif
f866d3
f866d3
%if %{with tests}
f866d3
%check
f866d3
export RHEL_ALLOW_PYTHON2_FOR_BUILD=1
f866d3
py.test-%{python2_version} -m 'not network'
f866d3
%endif
f866d3
f866d3
f866d3
%files
f866d3
%license LICENSE.txt
f866d3
%doc README.rst
f866d3
%{_mandir}/man1/pip2.*
f866d3
%{_bindir}/pip2
f866d3
%{_bindir}/pip-2
f866d3
%{_bindir}/pip%{python2_version}
f866d3
%{_bindir}/pip-%{python2_version}
f866d3
%{python2_sitelib}/pip*
f866d3
%dir %{bashcompdir}
f866d3
%{bashcompdir}/pip2
f866d3
%if 0%{?bashcomp2}
f866d3
%{bashcompdir}/pip2*
f866d3
%{bashcompdir}/pip-2*
f866d3
%dir %(dirname %{bashcompdir})
f866d3
%endif
f866d3
f866d3
%if %{with doc}
f866d3
%files doc
f866d3
%license LICENSE.txt
f866d3
%doc README.rst
f866d3
%doc docs/_build/html
f866d3
%endif # with doc
f866d3
f866d3
%if %{without bootstrap}
f866d3
%files -n python2-pip-wheel
f866d3
%license LICENSE.txt
f866d3
# we own the dir for simplicity
f866d3
%dir %{python2_wheeldir}/
f866d3
%{python2_wheeldir}/%{python2_wheelname}
f866d3
%endif
f866d3
f866d3
%changelog
046279
* Thu Oct 14 2021 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-19
046279
- Remove bundled windows executables
046279
- Resolves: rhbz#2006792
046279
ed50e1
* Wed Aug 19 2020 Tomas Orsava <torsava@redhat.com> - 9.0.3-18
ed50e1
- Patch for pip install <url> allow directory traversal, leading to arbitrary file write
ed50e1
Resolves: rhbz#1870184
ed50e1
f866d3
* Mon Mar 16 2020 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-17
f866d3
- Remove unused CA bundle from the bundled requests library
f866d3
Resolves: rhbz#1775194
f866d3
f866d3
* Tue Jan 14 2020 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-16
f866d3
- Add four new patches for CVEs in bundled urllib3 and requests
f866d3
CVE-2018-20060, CVE-2019-11236, CVE-2019-11324, CVE-2018-18074
f866d3
Resolves: rhbz#1649153
f866d3
Resolves: rhbz#1700824
f866d3
Resolves: rhbz#1702473
f866d3
Resolves: rhbz#1643829
f866d3
f866d3
* Thu Oct 24 2019 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-15
f866d3
- Use the system level root certificate instead of the one bundled in certifi
f866d3
Resolves: rhbz#1659551
f866d3
f866d3
* Tue Jun 18 2019 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-14
f866d3
- Create the python-pip-wheel subpackage
f866d3
Resolves: rhbz#1659551
f866d3
f866d3
* Thu Apr 25 2019 Tomas Orsava <torsava@redhat.com> - 9.0.3-13
f866d3
- Bumping due to problems with modular RPM upgrade path
f866d3
- Resolves: rhbz#1695587
f866d3
f866d3
* Mon Dec 10 2018 Tomas Orsava <torsava@redhat.com> - 9.0.3-12
f866d3
- Do not show the "new version of pip" warning outside of venv
f866d3
- Resolves: rhbz#1656171
f866d3
f866d3
* Tue Dec 04 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-11
f866d3
- Use pregenerated manpage for pip2 when building without doc
f866d3
- Resolves: rhbz#1655587
f866d3
f866d3
* Wed Aug 29 2018 Tomas Orsava <torsava@redhat.com> - 9.0.3-10
f866d3
- Separate the python2-pip subpackage into its own component
f866d3
- Related: rhbz#1628242
f866d3
f866d3
* Wed Aug 29 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-9
f866d3
- Fix bash completion bug when python3 is disabled
f866d3
- Resolves: rhbz#1615727
f866d3
f866d3
* Wed Aug 15 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-8
f866d3
- Remove files without full version suffix
f866d3
- Resolves: rhbz#1615727
f866d3
f866d3
* Wed Aug 08 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-7
f866d3
- Remove unversioned binaries from python2 subpackage
f866d3
- Resolves: rhbz#1613343
f866d3
f866d3
* Tue Aug 07 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-6
f866d3
- Fix python3/doc condition
f866d3
- Do not build doc in python27 module
f866d3
f866d3
* Mon Aug 06 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.3-5
f866d3
- Build python3-pip in python27 module
f866d3
f866d3
* Mon Aug 06 2018 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-4
f866d3
- Correct license information
f866d3
f866d3
* Tue Jul 03 2018 Tomas Orsava <torsava@redhat.com> - 9.0.3-3
f866d3
- This package might be built with the non-modular python2 package from RHEL8
f866d3
  buildroot and thus we need to enable it
f866d3
f866d3
* Mon Jun 25 2018 Tomas Orsava <torsava@redhat.com> - 9.0.3-2
f866d3
- Rebuild for the python27 module
f866d3
f866d3
* Thu Mar 29 2018 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-1
f866d3
- Update to 9.0.3
f866d3
f866d3
* Wed Feb 21 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.1-16
f866d3
- Include built HTML documentation (in the new -doc subpackage) and man page
f866d3
f866d3
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-15
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f866d3
f866d3
* Mon Dec 04 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-14
f866d3
- Reintroduce the ipaddress module in the python3 subpackage.
f866d3
f866d3
* Mon Nov 20 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-13
f866d3
- Add virtual provides for the bundled libraries. (rhbz#1096912)
f866d3
f866d3
* Tue Aug 29 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-12
f866d3
- Switch macros to bcond's and make Python 2 optional to facilitate building
f866d3
  the Python 2 and Python 3 modules
f866d3
f866d3
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-11
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
f866d3
f866d3
* Tue May 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-10
f866d3
- Modernized package descriptions
f866d3
Resolves: rhbz#1452568
f866d3
f866d3
* Tue Mar 21 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-9
f866d3
- Fix typo in the sudo pip warning
f866d3
f866d3
* Fri Mar 03 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-8
f866d3
- Patch 1 update: No sudo pip warning in venv or virtualenv
f866d3
f866d3
* Thu Feb 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-7
f866d3
- Patch 1 update: Customize the warning with the proper version of the pip
f866d3
  command
f866d3
f866d3
* Tue Feb 14 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-6
f866d3
- Added patch 1: Emit a warning when running with root privileges
f866d3
f866d3
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-5
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
f866d3
f866d3
* Mon Jan 02 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-4
f866d3
- Provide symlinks to executables to comply with Fedora guidelines for Python
f866d3
Resolves: rhbz#1406922
f866d3
f866d3
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-3
f866d3
- Rebuild for Python 3.6 with wheel
f866d3
f866d3
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-2
f866d3
- Rebuild for Python 3.6 without wheel
f866d3
f866d3
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 9.0.1-1
f866d3
- Update to 9.0.1
f866d3
f866d3
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 8.1.2-5
f866d3
- Enable EPEL Python 3 builds
f866d3
- Use new python macros
f866d3
- Cleanup spec
f866d3
f866d3
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-4
f866d3
- Updated the test sources
f866d3
f866d3
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-3
f866d3
- Moved python-pip into the python2-pip subpackage
f866d3
- Added the python_provide macro
f866d3
f866d3
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-2
f866d3
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
f866d3
f866d3
* Tue May 17 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-1
f866d3
- Update to 8.1.2
f866d3
- Moved to a new PyPI URL format
f866d3
- Updated the prefix-stripping patch because of upstream changes in pip/wheel.py
f866d3
f866d3
* Mon Feb 22 2016 Slavek Kabrda <bkabrda@redhat.com> - 8.0.2-1
f866d3
- Update to 8.0.2
f866d3
f866d3
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.0-4
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
f866d3
f866d3
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-3
f866d3
- Rebuilt for Python3.5 rebuild
f866d3
- With wheel set to 1
f866d3
f866d3
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-2
f866d3
- Rebuilt for Python3.5 rebuild
f866d3
f866d3
* Wed Jul 01 2015 Slavek Kabrda <bkabrda@redhat.com> - 7.1.0-1
f866d3
- Update to 7.1.0
f866d3
f866d3
* Tue Jun 30 2015 Ville Skyttä <ville.skytta@iki.fi> - 7.0.3-3
f866d3
- Install bash completion
f866d3
- Ship LICENSE.txt as %%license where available
f866d3
f866d3
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.3-2
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
f866d3
f866d3
* Thu Jun 04 2015 Matej Stuchlik <mstuchli@redhat.com> - 7.0.3-1
f866d3
- Update to 7.0.3
f866d3
f866d3
* Fri Mar 06 2015 Matej Stuchlik <mstuchli@redhat.com> - 6.0.8-1
f866d3
- Update to 6.0.8
f866d3
f866d3
* Thu Dec 18 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.5.6-5
f866d3
- Only enable tests on Fedora.
f866d3
f866d3
* Mon Dec 01 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-4
f866d3
- Add tests
f866d3
- Add patch skipping tests requiring Internet access
f866d3
f866d3
* Tue Nov 18 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-3
f866d3
- Added patch for local dos with predictable temp dictionary names
f866d3
  (http://seclists.org/oss-sec/2014/q4/655)
f866d3
f866d3
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-2
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
f866d3
f866d3
* Sun May 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-1
f866d3
- Update to 1.5.6
f866d3
f866d3
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-4
f866d3
- Rebuild as wheel for Python 3.4
f866d3
f866d3
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-3
f866d3
- Disable build_wheel
f866d3
f866d3
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-2
f866d3
- Rebuild as wheel for Python 3.4
f866d3
f866d3
* Mon Apr 07 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-1
f866d3
- Updated to 1.5.4
f866d3
f866d3
* Mon Oct 14 2013 Tim Flink <tflink@fedoraproject.org> - 1.4.1-1
f866d3
- Removed patch for CVE 2013-2099 as it has been included in the upstream 1.4.1 release
f866d3
- Updated version to 1.4.1
f866d3
f866d3
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-5
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f866d3
f866d3
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-4
f866d3
- Fix for CVE 2013-2099
f866d3
f866d3
* Thu May 23 2013 Tim Flink <tflink@fedoraproject.org> - 1.3.1-3
f866d3
- undo python2 executable rename to python-pip. fixes #958377
f866d3
- fix summary to match upstream
f866d3
f866d3
* Mon May 06 2013 Kevin Kofler <Kevin@tigcc.ticalc.org> - 1.3.1-2
f866d3
- Fix main package Summary, it's for Python 2, not 3 (#877401)
f866d3
f866d3
* Fri Apr 26 2013 Jon Ciesla <limburgher@gmail.com> - 1.3.1-1
f866d3
- Update to 1.3.1, fix for CVE-2013-1888.
f866d3
f866d3
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
f866d3
f866d3
* Tue Oct 09 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-2
f866d3
- Fixing files for python3-pip
f866d3
f866d3
* Thu Oct 04 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-1
f866d3
- Update to upstream 1.2.1
f866d3
- Change binary from pip-python to python-pip (RHBZ#855495)
f866d3
- Add alias from python-pip to pip-python, to be removed at a later date
f866d3
f866d3
* Tue May 15 2012 Tim Flink <tflink@fedoraproject.org> - 1.1.0-1
f866d3
- Update to upstream 1.1.0
f866d3
f866d3
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
f866d3
f866d3
* Sat Oct 22 2011 Tim Flink <tflink@fedoraproject.org> - 1.0.2-1
f866d3
- update to 1.0.2 and added python3 subpackage
f866d3
f866d3
* Wed Jun 22 2011 Tim Flink <tflink@fedoraproject.org> - 0.8.3-1
f866d3
- update to 0.8.3 and project home page
f866d3
f866d3
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-2
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f866d3
f866d3
* Mon Dec 20 2010 Luke Macken <lmacken@redhat.com> - 0.8.2-1
f866d3
- update to 0.8.2 of pip
f866d3
* Mon Aug 30 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.8-1
f866d3
- update to 0.8 of pip
f866d3
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-5
f866d3
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
f866d3
f866d3
* Wed Jul 7 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.2-1
f866d3
- update to 0.7.2 of pip
f866d3
* Sun May 23 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.1-1
f866d3
- update to 0.7.1 of pip
f866d3
* Fri Jan 1 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1.4
f866d3
- fix dependency issue
f866d3
* Fri Dec 18 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-2
f866d3
- fix spec file 
f866d3
* Thu Dec 17 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-1
f866d3
- upgrade to 0.6.1 of pip
f866d3
* Mon Aug 31 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.4-1
f866d3
- Initial package
f866d3