Blame SPECS/python-pip.spec

e4c486
%{?scl:%scl_package python-%{srcname}}
e4c486
%{!?scl:%global pkg_name %{name}}
e4c486
%global python3_pkgversion %{nil}
e4c486
e4c486
# SCL: Tests and doc disabled due to missing dependencies
e4c486
%bcond_with tests
e4c486
%bcond_with doc
e4c486
e4c486
%global srcname pip
e4c486
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
e4c486
%global python_wheeldir %{_datadir}/python38-wheels
e4c486
e4c486
%if %{with doc}
e4c486
%global pypa_theme_commit_hash d2e63fbfc62af3b7050f619b2f5bb8658985b931
e4c486
%endif
e4c486
e4c486
%global bashcompdir %(pkg-config --variable=completionsdir bash-completion 2>/dev/null)
e4c486
e4c486
Name:           %{?scl_prefix}python-%{srcname}
e4c486
# When updating, update the bundled libraries versions bellow!
e4c486
# You can use vendor_meta.sh in the dist git repo
e4c486
Version:        19.3.1
54c5d5
Release:        2%{?dist}
e4c486
Summary:        A tool for installing and managing Python packages
e4c486
e4c486
# We bundle a lot of libraries with pip, which itself is under MIT license.
e4c486
# Here is the list of the libraries with corresponding licenses:
e4c486
e4c486
# appdirs: MIT
e4c486
# certifi: MPLv2.0
e4c486
# chardet: LGPLv2
e4c486
# colorama: BSD
e4c486
# CacheControl: ASL 2.0
e4c486
# contextlib2: Python
e4c486
# distlib: Python
e4c486
# distro: ASL 2.0
e4c486
# html5lib: MIT
e4c486
# idna: BSD
e4c486
# ipaddress: Python
e4c486
# msgpack: ASL 2.0
e4c486
# packaging: ASL 2.0 or BSD
e4c486
# pep517: MIT
e4c486
# progress: ISC
e4c486
# pyparsing: MIT
e4c486
# pytoml: MIT
e4c486
# requests: ASL 2.0
e4c486
# retrying: ASL 2.0
e4c486
# setuptools: MIT
e4c486
# six: MIT
e4c486
# urllib3: MIT
e4c486
# webencodings: BSD
e4c486
e4c486
License:        MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)
e4c486
URL:            https://pip.pypa.io/
e4c486
Source0:        https://github.com/pypa/pip/archive/%{version}/%{srcname}-%{version}.tar.gz
e4c486
e4c486
BuildArch:      noarch
e4c486
e4c486
%{?scl:Requires: %{scl}-runtime}
e4c486
%{?scl:BuildRequires: %{scl}-runtime}
e4c486
%if %{with tests}
e4c486
BuildRequires:  /usr/bin/git
e4c486
BuildRequires:  /usr/bin/bzr
e4c486
BuildRequires:  /usr/bin/svn
e4c486
BuildRequires:  %{?scl_prefix}python-setuptools-wheel
e4c486
BuildRequires:  %{?scl_prefix}python-wheel-wheel
e4c486
%endif
e4c486
e4c486
# Themes required to build the docs.
e4c486
%if %{with doc}
e4c486
Source1:        https://github.com/pypa/pypa-docs-theme/archive/%{pypa_theme_commit_hash}.tar.gz
e4c486
Source2:        https://github.com/python/python-docs-theme/archive/2018.2.tar.gz
e4c486
%endif
e4c486
e4c486
# Downstream only patch
e4c486
# Emit a warning to the user if pip install is run with root privileges
e4c486
# Issue upstream: https://github.com/pypa/pip/issues/4288
e4c486
Patch1:         emit-a-warning-when-running-with-root-privileges.patch
e4c486
e4c486
# Add path to the doc themes to conf.py
e4c486
Patch2:         html_theme_path.patch
e4c486
e4c486
# Prevent removing of the system packages installed under /usr/lib
e4c486
# when pip install -U is executed.
e4c486
# https://bugzilla.redhat.com/show_bug.cgi?id=1550368#c24
e4c486
Patch3:         remove-existing-dist-only-if-path-conflicts.patch
e4c486
e4c486
# Use the system level root certificate instead of the one bundled in certifi
e4c486
# https://bugzilla.redhat.com/show_bug.cgi?id=1655253
e4c486
Patch4:         dummy-certifi.patch
e4c486
e4c486
# Mark tests that need the Internet as network tests so we can skip them
e4c486
# https://github.com/pypa/pip/pull/7359
e4c486
Patch5:         network-tests.patch
e4c486
54c5d5
# Patch for CVE-2021-3572 - pip incorrectly handled unicode separators in git references
54c5d5
# Upstream PR: https://github.com/pypa/pip/pull/9827
54c5d5
# Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1962856
54c5d5
Patch6:         CVE-2021-3572.patch
54c5d5
e4c486
# Downstream only patch
e4c486
# Users might have local installations of pip from using
e4c486
# `pip install --user --upgrade pip` on older/newer versions.
e4c486
# If they do that and they run `pip` or  `pip3`, the one from /usr/bin is used.
e4c486
# However that's the one from this RPM package and the import in there might
e4c486
# fail (it tries to import from ~/.local, but older or newer pip is there with
e4c486
# a bit different API).
e4c486
# We add this patch as a dirty workaround to make /usr/bin/pip* work with
e4c486
# both pip10+ (from this RPM) and older or newer (19.3+) pip (from whatever).
e4c486
# A proper fix is to put ~/.local/bin in front of /usr/bin in the PATH,
e4c486
# however others are against that and we cannot change it for existing
e4c486
# installs/user homes anyway.
e4c486
# https://bugzilla.redhat.com/show_bug.cgi?id=1569488
e4c486
# https://bugzilla.redhat.com/show_bug.cgi?id=1571650
e4c486
# https://bugzilla.redhat.com/show_bug.cgi?id=1767212
e4c486
# WARNING: /usr/bin/pip* are entrypoints, this cannot be applied in %%prep!
e4c486
# %%patch10 doesn't work outside of %%prep, so we add it as a source
e4c486
Source10:        pip-allow-different-versions.patch
e4c486
e4c486
e4c486
# Virtual provides for the packages bundled by pip.
e4c486
# You can find the versions in src/pip/_vendor/vendor.txt file.
e4c486
%global bundled() %{expand:
e4c486
Provides: bundled(python%{1}dist(appdirs)) = 1.4.3
e4c486
Provides: bundled(python%{1}dist(CacheControl)) = 0.12.5
e4c486
Provides: bundled(python%{1}dist(certifi)) = 2019.9.11
e4c486
Provides: bundled(python%{1}dist(chardet)) = 3.0.4
e4c486
Provides: bundled(python%{1}dist(colorama)) = 0.4.1
e4c486
Provides: bundled(python%{1}dist(contextlib2)) = 0.6.0
e4c486
Provides: bundled(python%{1}dist(distlib)) = 0.2.9.post0
e4c486
Provides: bundled(python%{1}dist(distro)) = 1.4.0
e4c486
Provides: bundled(python%{1}dist(html5lib)) = 1.0.1
e4c486
Provides: bundled(python%{1}dist(idna)) = 2.8
e4c486
Provides: bundled(python%{1}dist(ipaddress)) = 1.0.22
e4c486
Provides: bundled(python%{1}dist(msgpack)) = 0.6.2
e4c486
Provides: bundled(python%{1}dist(packaging)) = 19.2
e4c486
Provides: bundled(python%{1}dist(pep517)) = 0.7.0
e4c486
Provides: bundled(python%{1}dist(progress)) = 1.5
e4c486
Provides: bundled(python%{1}dist(pyparsing)) = 2.4.2
e4c486
Provides: bundled(python%{1}dist(pytoml)) = 0.1.21
e4c486
Provides: bundled(python%{1}dist(requests)) = 2.22.0
e4c486
Provides: bundled(python%{1}dist(retrying)) = 1.3.3
e4c486
Provides: bundled(python%{1}dist(setuptools)) = 41.4.0
e4c486
Provides: bundled(python%{1}dist(six)) = 1.12.0
e4c486
Provides: bundled(python%{1}dist(urllib3)) = 1.25.6
e4c486
Provides: bundled(python%{1}dist(webencodings)) = 0.5.1
e4c486
}
e4c486
e4c486
# Some manylinux1 wheels need libcrypt.so.1.
e4c486
# Manylinux1, a common (as of 2019) platform tag for binary wheels, relies
e4c486
# on a glibc version that included ancient crypto functions, which were
e4c486
# moved to libxcrypt and then removed in:
e4c486
#  https://fedoraproject.org/wiki/Changes/FullyRemoveDeprecatedAndUnsafeFunctionsFromLibcrypt
e4c486
# The manylinux1 standard assumed glibc would keep ABI compatibility,
e4c486
# but that's only the case if libcrypt.so.1 (libxcrypt-compat) is around.
e4c486
# This should be solved in the next manylinux standard (but it may be
e4c486
# a long time until manylinux1 is phased out).
e4c486
# See: https://github.com/pypa/manylinux/issues/305
e4c486
# Note that manylinux is only applicable to x86 (both 32 and 64 bits)
e4c486
# SCL: No rich dependencies or Recommends tags on RHEL7
e4c486
# %%global crypt_compat_recommends() %%{expand:
e4c486
# Recommends: (libcrypt.so.1()(64bit) if python%{1}(x86-64))
e4c486
# Recommends: (libcrypt.so.1 if python%{1}(x86-32))
e4c486
# }
e4c486
e4c486
e4c486
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-devel
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-rpm-macros
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-setuptools
e4c486
BuildRequires:  bash-completion
e4c486
%if %{with tests}
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-mock
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-pytest
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-pretend
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-freezegun
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-scripttest
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-virtualenv
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-pyyaml
e4c486
%endif
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-wheel
e4c486
BuildRequires:  ca-certificates
e4c486
Requires:       ca-certificates
e4c486
Requires:       %{?scl_prefix}python%{python3_pkgversion}-setuptools
e4c486
e4c486
# Virtual provides for the packages bundled by pip:
e4c486
%{bundled 3.8}
e4c486
e4c486
# %%{crypt_compat_recommends 38}
e4c486
e4c486
e4c486
%description
e4c486
pip is a package management system used to install and manage software packages
e4c486
written in Python. Many packages can be found in the Python Package Index
e4c486
(PyPI). pip is a recursive acronym that can stand for either "Pip Installs
e4c486
Packages" or "Pip Installs Python".
e4c486
e4c486
e4c486
e4c486
%if %{with doc}
e4c486
e4c486
%package doc
e4c486
Summary:        A documentation for a tool for installing and managing Python packages
e4c486
e4c486
BuildRequires:  %{?scl_prefix}python%{python3_pkgversion}-sphinx
e4c486
e4c486
e4c486
%description doc
e4c486
A documentation for a tool for installing and managing Python packages
e4c486
e4c486
%endif
e4c486
e4c486
e4c486
%package -n %{?scl_prefix}python%{python3_pkgversion}-%{srcname}-wheel
e4c486
Summary:        The pip wheel
e4c486
Requires:       ca-certificates
e4c486
e4c486
# Virtual provides for the packages bundled by pip:
e4c486
%{bundled 3.8}
e4c486
e4c486
# %%{crypt_compat_recommends 38}
e4c486
e4c486
e4c486
%description -n %{?scl_prefix}python%{python3_pkgversion}-%{srcname}-wheel
e4c486
A Python wheel of pip to use with venv.
e4c486
e4c486
e4c486
%prep
e4c486
%{?scl:scl enable %{scl} - << \EOF}
e4c486
set -ex
e4c486
%setup -q -n %{srcname}-%{version}
e4c486
%if %{with doc}
e4c486
pushd docs/html
e4c486
tar -xf %{SOURCE1}
e4c486
mv pypa-docs-theme-%{pypa_theme_commit_hash} pypa
e4c486
tar -xf %{SOURCE2}
e4c486
mv python-docs-theme-2018.2 python-docs-theme
e4c486
popd
e4c486
%endif
e4c486
e4c486
%patch1 -p1
e4c486
%patch2 -p1
e4c486
%patch3 -p1
e4c486
%patch4 -p1
e4c486
%patch5 -p1
54c5d5
%patch6 -p1
e4c486
e4c486
# this goes together with patch4
e4c486
rm src/pip/_vendor/certifi/*.pem
e4c486
e4c486
%if %{with tests}
e4c486
# tests expect wheels in here
e4c486
ln -s %{python_wheeldir} tests/data/common_wheels
e4c486
%endif
e4c486
e4c486
%{?scl:EOF}
e4c486
e4c486
e4c486
%build
e4c486
%{?scl:scl enable %{scl} - << \EOF}
e4c486
set -ex
e4c486
%py3_build_wheel
e4c486
e4c486
%if %{with doc}
e4c486
export PYTHONPATH=./src/
e4c486
# from tox.ini
e4c486
sphinx-build-3 -b html docs/html docs/build/html
e4c486
sphinx-build-3 -b man  docs/man  docs/build/man  -c docs/html
e4c486
rm docs/build/html/.buildinfo
e4c486
%endif
e4c486
e4c486
%{?scl:EOF}
e4c486
e4c486
e4c486
%install
e4c486
%{?scl:scl enable %{scl} - << \EOF}
e4c486
set -ex
e4c486
e4c486
# The following is similar to %%py3_install_wheel, but we don't have
e4c486
# /usr/bin/pip yet, so we install using the wheel directly.
e4c486
# (This is not standard wheel usage, but the pip wheel supports it -- see
e4c486
#  pip/__main__.py)
e4c486
%{__python3} dist/%{python_wheelname}/pip install \
e4c486
    -I 'dist/%{python_wheelname}' \
e4c486
    --root %{buildroot} \
e4c486
    --no-deps
e4c486
e4c486
%if %{with doc}
e4c486
pushd docs/build/man
e4c486
install -d %{buildroot}%{_mandir}/man1
e4c486
for MAN in *1; do
e4c486
install -pm0644 $MAN %{buildroot}%{_mandir}/man1/${MAN/pip/pip3.8}
e4c486
done
e4c486
popd
e4c486
%endif
e4c486
e4c486
# before we ln -s anything, we apply Source10 patch to all pips:
e4c486
for PIP in %{buildroot}%{_bindir}/pip*; do
e4c486
  patch -p1 --no-backup-if-mismatch $PIP < %{SOURCE10}
e4c486
done
e4c486
e4c486
e4c486
mkdir -p %{buildroot}%{bashcompdir}
e4c486
PYTHONPATH=%{buildroot}%{python3_sitelib} \
e4c486
    %{buildroot}%{_bindir}/pip completion --bash \
e4c486
    > %{buildroot}%{bashcompdir}/pip3.8
e4c486
e4c486
# Make bash completion apply to all the 5 symlinks we install
e4c486
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 pip{,-}%{python3_version}/" \
e4c486
    -e s/_pip_completion/_pip38_completion/ \
e4c486
    %{buildroot}%{bashcompdir}/pip3.8
e4c486
e4c486
e4c486
# Provide symlinks to executables to comply with Fedora guidelines for Python
e4c486
ln -s ./pip%{python3_version} %{buildroot}%{_bindir}/pip-%{python3_version}
e4c486
ln -s ./pip-%{python3_version} %{buildroot}%{_bindir}/pip-3
e4c486
e4c486
e4c486
# Make sure the INSTALLER is not pip, otherwise Patch2 won't work
e4c486
# TODO Maybe we should make all our python packages have this?
e4c486
echo rpm > %{buildroot}%{python3_sitelib}/pip-%{version}.dist-info/INSTALLER
e4c486
e4c486
mkdir -p %{buildroot}%{python_wheeldir}
e4c486
install -p dist/%{python_wheelname} -t %{buildroot}%{python_wheeldir}
e4c486
e4c486
%{?scl:EOF}
e4c486
e4c486
e4c486
%if %{with tests}
e4c486
%check
e4c486
%{?scl:scl enable %{scl} - << \EOF}
e4c486
set -ex
e4c486
# bash completion tests only work from installed package
e4c486
# needs unaltered sys.path and we cannot do that in %%check
e4c486
#     test_pep517_and_build_options
e4c486
#     test_config_file_venv_option
e4c486
# TODO investigate failures
e4c486
#     test_uninstall_non_local_distutils
e4c486
pytest_k='not completion and
e4c486
          not test_pep517_and_build_options and
e4c486
          not test_config_file_venv_option and
e4c486
          not test_uninstall_non_local_distutils'
e4c486
e4c486
mkdir _bin
e4c486
export PATH="$PWD/_bin:$PATH"
e4c486
e4c486
export PYTHONPATH=%{buildroot}%{python3_sitelib}
e4c486
ln -sf %{buildroot}%{_bindir}/pip3 _bin/pip
e4c486
%{__python3} -m pytest -m 'not network' -k "$(echo $pytest_k)" -v
e4c486
e4c486
%{?scl:EOF}
e4c486
%endif
e4c486
e4c486
e4c486
%files
e4c486
%license LICENSE.txt
e4c486
%doc README.rst
e4c486
%if %{with doc}
e4c486
%{_mandir}/man1/pip3.8.*
e4c486
%{_mandir}/man1/pip3.8-*.*
e4c486
%endif
e4c486
%{_bindir}/pip
e4c486
%{_bindir}/pip3
e4c486
%{_bindir}/pip-3
e4c486
%{_bindir}/pip%{python3_version}
e4c486
%{_bindir}/pip-%{python3_version}
e4c486
%{python3_sitelib}/pip*
e4c486
%dir %{bashcompdir}
e4c486
%{bashcompdir}/pip3.8
e4c486
e4c486
%if %{with doc}
e4c486
%files doc
e4c486
%license LICENSE.txt
e4c486
%doc README.rst
e4c486
%doc docs/build/html
e4c486
%endif
e4c486
e4c486
%files -n %{?scl_prefix}python%{python3_pkgversion}-%{srcname}-wheel
e4c486
%license LICENSE.txt
e4c486
# we own the dir for simplicity
e4c486
%dir %{python_wheeldir}/
e4c486
%{python_wheeldir}/%{python_wheelname}
e4c486
e4c486
e4c486
%changelog
54c5d5
* Wed Jul 14 2021 Charalampos Stratakis <cstratak@redhat.com> - 19.3.1-2
54c5d5
- Fix for CVE-2021-3572 - pip incorrectly handled unicode separators in git references
54c5d5
Resolves: rhbz#1962856
54c5d5
e4c486
* Thu Apr 23 2020 Lumír Balhar <lbalhar@redhat.com> - 19.3.1
e4c486
- Rebase to 19.3.1 to enable support for manylinux2014
e4c486
Resolves: rhbz#1827267
e4c486
- + some other fixes from Fedora 32 where we have the same version now
e4c486
e4c486
* Thu Apr 23 2020 Tomas Orsava <torsava@redhat.com> - 19.2.3-8
e4c486
- Fix file conflict with python3-pip
e4c486
- Resolves: rhbz#1827168
e4c486
e4c486
* Fri Feb 07 2020 Tomas Orsava <torsava@redhat.com> - 19.2.3-7
e4c486
- Rebuild
e4c486
- Resolves: rhbz#1671025
e4c486
e4c486
* Thu Jan 30 2020 Tomas Orsava <torsava@redhat.com> - 19.2.3-6
e4c486
- Add unversioned binaries
e4c486
- Resolves: rhbz#1671025
e4c486
e4c486
* Wed Jan 29 2020 Tomas Orsava <torsava@redhat.com> - 19.2.3-5
e4c486
- Modified the specfile for the rh-python38 RHSCL
e4c486
- Resolves: rhbz#1671025
e4c486
e4c486
* Fri Dec 13 2019 Tomas Orsava <torsava@redhat.com> - 19.2.3-4
e4c486
- Exclude unsupported i686 arch
e4c486
e4c486
* Wed Nov 20 2019 Tomas Orsava <torsava@redhat.com> - 19.2.3-3
e4c486
- Modify for RHEL8
e4c486
e4c486
* Wed Oct 30 2019 Miro Hrončok <mhroncok@redhat.com> - 19.2.3-2
e4c486
- Make /usr/bin/pip(3) work with user-installed pip 19.3+ (#1767212)
e4c486
e4c486
* Mon Sep 02 2019 Miro Hrončok <mhroncok@redhat.com> - 19.2.3-1
e4c486
- Update to 19.2.3 (#1742230)
e4c486
- Drop patch that should strip path prefixes from RECORD files, the paths are relative
e4c486
e4c486
* Wed Aug 21 2019 Petr Viktorin <pviktori@redhat.com> - 19.1.1-8
e4c486
- Remove python2-pip
e4c486
- Make pip bootstrap itself, rather than with an extra bootstrap RPM build
e4c486
e4c486
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-7
e4c486
- Rebuilt for Python 3.8
e4c486
e4c486
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-6
e4c486
- Bootstrap for Python 3.8
e4c486
e4c486
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-5
e4c486
- Bootstrap for Python 3.8
e4c486
e4c486
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.1.1-4
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e4c486
e4c486
* Mon Jul 15 2019 Petr Viktorin <pviktori@redhat.com> - 19.1.1-3
e4c486
- Recommend libcrypt.so.1 for manylinux1 compatibility
e4c486
- Make /usr/bin/pip Python 3
e4c486
e4c486
* Mon Jun 10 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-2
e4c486
- Fix root warning when pip is invoked via python -m pip
e4c486
- Remove a redundant second WARNING prefix form the abovementioned warning
e4c486
e4c486
* Wed May 15 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-1
e4c486
- Update to 19.1.1 (#1706995)
e4c486
e4c486
* Thu Apr 25 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1-1
e4c486
- Update to 19.1 (#1702525)
e4c486
e4c486
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.3-1
e4c486
- Update to 19.0.3 (#1679277)
e4c486
e4c486
* Wed Feb 13 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.2-1
e4c486
- Update to 19.0.2 (#1668492)
e4c486
e4c486
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.1-3
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
e4c486
e4c486
* Mon Dec 03 2018 Miro Hrončok <mhroncok@redhat.com> - 18.1-2
e4c486
- Use the system level root certificate instead of the one bundled in certifi
e4c486
e4c486
* Thu Nov 22 2018 Miro Hrončok <mhroncok@redhat.com> - 18.1-1
e4c486
- Update to 18.1 (#1652089)
e4c486
e4c486
* Tue Sep 18 2018 Victor Stinner <vstinner@redhat.com> - 18.0-4
e4c486
- Prevent removing of the system packages installed under /usr/lib
e4c486
  when pip install -U is executed. Original patch by Michal Cyprian.
e4c486
  Resolves: rhbz#1550368.
e4c486
e4c486
* Wed Aug 08 2018 Miro Hrončok <mhroncok@redhat.com> - 18.0-3
e4c486
- Create python-pip-wheel package with the wheel
e4c486
e4c486
* Tue Jul 31 2018 Miro Hrončok <mhroncok@redhat.com> - 18.0-2
e4c486
- Remove redundant "Unicode"" from License
e4c486
e4c486
* Mon Jul 23 2018 Marcel Plch <mplch@redhat.com> - 18.0-7
e4c486
- Update to 18.0
e4c486
e4c486
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.3-6
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
e4c486
e4c486
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-5
e4c486
- Rebuilt for Python 3.7
e4c486
e4c486
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-4
e4c486
- Bootstrap for Python 3.7
e4c486
e4c486
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-3
e4c486
- Bootstrap for Python 3.7
e4c486
e4c486
* Fri May 04 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-2
e4c486
- Allow to import pip10's main from pip9's /usr/bin/pip
e4c486
- Do not show the "new version of pip" warning outside of venv
e4c486
Resolves: rhbz#1569488
e4c486
Resolves: rhbz#1571650
e4c486
Resolves: rhbz#1573755
e4c486
e4c486
* Thu Mar 29 2018 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-1
e4c486
- Update to 9.0.3
e4c486
e4c486
* Wed Feb 21 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.1-16
e4c486
- Include built HTML documentation (in the new -doc subpackage) and man page
e4c486
e4c486
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-15
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
e4c486
e4c486
* Mon Dec 04 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-14
e4c486
- Reintroduce the ipaddress module in the python3 subpackage.
e4c486
e4c486
* Mon Nov 20 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-13
e4c486
- Add virtual provides for the bundled libraries. (rhbz#1096912)
e4c486
e4c486
* Tue Aug 29 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-12
e4c486
- Switch macros to bcond's and make Python 2 optional to facilitate building
e4c486
  the Python 2 and Python 3 modules
e4c486
e4c486
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-11
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e4c486
e4c486
* Tue May 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-10
e4c486
- Modernized package descriptions
e4c486
Resolves: rhbz#1452568
e4c486
e4c486
* Tue Mar 21 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-9
e4c486
- Fix typo in the sudo pip warning
e4c486
e4c486
* Fri Mar 03 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-8
e4c486
- Patch 1 update: No sudo pip warning in venv or virtualenv
e4c486
e4c486
* Thu Feb 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-7
e4c486
- Patch 1 update: Customize the warning with the proper version of the pip
e4c486
  command
e4c486
e4c486
* Tue Feb 14 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-6
e4c486
- Added patch 1: Emit a warning when running with root privileges
e4c486
e4c486
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-5
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
e4c486
e4c486
* Mon Jan 02 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-4
e4c486
- Provide symlinks to executables to comply with Fedora guidelines for Python
e4c486
Resolves: rhbz#1406922
e4c486
e4c486
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-3
e4c486
- Rebuild for Python 3.6 with wheel
e4c486
e4c486
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-2
e4c486
- Rebuild for Python 3.6 without wheel
e4c486
e4c486
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 9.0.1-1
e4c486
- Update to 9.0.1
e4c486
e4c486
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 8.1.2-5
e4c486
- Enable EPEL Python 3 builds
e4c486
- Use new python macros
e4c486
- Cleanup spec
e4c486
e4c486
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-4
e4c486
- Updated the test sources
e4c486
e4c486
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-3
e4c486
- Moved python-pip into the python2-pip subpackage
e4c486
- Added the python_provide macro
e4c486
e4c486
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-2
e4c486
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
e4c486
e4c486
* Tue May 17 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-1
e4c486
- Update to 8.1.2
e4c486
- Moved to a new PyPI URL format
e4c486
- Updated the prefix-stripping patch because of upstream changes in pip/wheel.py
e4c486
e4c486
* Mon Feb 22 2016 Slavek Kabrda <bkabrda@redhat.com> - 8.0.2-1
e4c486
- Update to 8.0.2
e4c486
e4c486
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.0-4
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
e4c486
e4c486
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-3
e4c486
- Rebuilt for Python3.5 rebuild
e4c486
- With wheel set to 1
e4c486
e4c486
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-2
e4c486
- Rebuilt for Python3.5 rebuild
e4c486
e4c486
* Wed Jul 01 2015 Slavek Kabrda <bkabrda@redhat.com> - 7.1.0-1
e4c486
- Update to 7.1.0
e4c486
e4c486
* Tue Jun 30 2015 Ville Skyttä <ville.skytta@iki.fi> - 7.0.3-3
e4c486
- Install bash completion
e4c486
- Ship LICENSE.txt as %%license where available
e4c486
e4c486
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.3-2
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
e4c486
e4c486
* Thu Jun 04 2015 Matej Stuchlik <mstuchli@redhat.com> - 7.0.3-1
e4c486
- Update to 7.0.3
e4c486
e4c486
* Fri Mar 06 2015 Matej Stuchlik <mstuchli@redhat.com> - 6.0.8-1
e4c486
- Update to 6.0.8
e4c486
e4c486
* Thu Dec 18 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.5.6-5
e4c486
- Only enable tests on Fedora.
e4c486
e4c486
* Mon Dec 01 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-4
e4c486
- Add tests
e4c486
- Add patch skipping tests requiring Internet access
e4c486
e4c486
* Tue Nov 18 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-3
e4c486
- Added patch for local dos with predictable temp dictionary names
e4c486
  (http://seclists.org/oss-sec/2014/q4/655)
e4c486
e4c486
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-2
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e4c486
e4c486
* Sun May 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-1
e4c486
- Update to 1.5.6
e4c486
e4c486
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-4
e4c486
- Rebuild as wheel for Python 3.4
e4c486
e4c486
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-3
e4c486
- Disable build_wheel
e4c486
e4c486
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-2
e4c486
- Rebuild as wheel for Python 3.4
e4c486
e4c486
* Mon Apr 07 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-1
e4c486
- Updated to 1.5.4
e4c486
e4c486
* Mon Oct 14 2013 Tim Flink <tflink@fedoraproject.org> - 1.4.1-1
e4c486
- Removed patch for CVE 2013-2099 as it has been included in the upstream 1.4.1 release
e4c486
- Updated version to 1.4.1
e4c486
e4c486
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-5
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
e4c486
e4c486
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-4
e4c486
- Fix for CVE 2013-2099
e4c486
e4c486
* Thu May 23 2013 Tim Flink <tflink@fedoraproject.org> - 1.3.1-3
e4c486
- undo python2 executable rename to python-pip. fixes #958377
e4c486
- fix summary to match upstream
e4c486
e4c486
* Mon May 06 2013 Kevin Kofler <Kevin@tigcc.ticalc.org> - 1.3.1-2
e4c486
- Fix main package Summary, it's for Python 2, not 3 (#877401)
e4c486
e4c486
* Fri Apr 26 2013 Jon Ciesla <limburgher@gmail.com> - 1.3.1-1
e4c486
- Update to 1.3.1, fix for CVE-2013-1888.
e4c486
e4c486
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e4c486
e4c486
* Tue Oct 09 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-2
e4c486
- Fixing files for python3-pip
e4c486
e4c486
* Thu Oct 04 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-1
e4c486
- Update to upstream 1.2.1
e4c486
- Change binary from pip-python to python-pip (RHBZ#855495)
e4c486
- Add alias from python-pip to pip-python, to be removed at a later date
e4c486
e4c486
* Tue May 15 2012 Tim Flink <tflink@fedoraproject.org> - 1.1.0-1
e4c486
- Update to upstream 1.1.0
e4c486
e4c486
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
e4c486
e4c486
* Sat Oct 22 2011 Tim Flink <tflink@fedoraproject.org> - 1.0.2-1
e4c486
- update to 1.0.2 and added python3 subpackage
e4c486
e4c486
* Wed Jun 22 2011 Tim Flink <tflink@fedoraproject.org> - 0.8.3-1
e4c486
- update to 0.8.3 and project home page
e4c486
e4c486
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-2
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e4c486
e4c486
* Mon Dec 20 2010 Luke Macken <lmacken@redhat.com> - 0.8.2-1
e4c486
- update to 0.8.2 of pip
e4c486
* Mon Aug 30 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.8-1
e4c486
- update to 0.8 of pip
e4c486
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-5
e4c486
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
e4c486
e4c486
* Wed Jul 7 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.2-1
e4c486
- update to 0.7.2 of pip
e4c486
* Sun May 23 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.1-1
e4c486
- update to 0.7.1 of pip
e4c486
* Fri Jan 1 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1.4
e4c486
- fix dependency issue
e4c486
* Fri Dec 18 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-2
e4c486
- fix spec file
e4c486
* Thu Dec 17 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-1
e4c486
- upgrade to 0.6.1 of pip
e4c486
* Mon Aug 31 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.4-1
e4c486
- Initial package