Blame SPECS/python-pip.spec

a80022
# The original RHEL 9 content set is defined by (build)dependencies
a80022
# of the packages in Fedora ELN. Hence we disable tests and documentation here
a80022
# to prevent pulling many unwanted packages in.
a80022
# Once the RHEL 9 content set is defined and/or RHEL 9 forks from ELN,
a80022
# the conditional can be removed from the Fedora spec file.
a80022
# We intentionally keep this enabled on EPEL.
a80022
%if 0%{?rhel} >= 9 && !0%{?epel}
a80022
%bcond_with tests
a80022
%bcond_with doc
a80022
%else
a80022
%bcond_without tests
a80022
%bcond_without doc
a80022
%endif
a80022
a80022
%global srcname pip
f96a86
%global base_version 21.2.3
a80022
%global upstream_version %{base_version}%{?prerel}
a5b3c9
%global python_wheel_name %{srcname}-%{upstream_version}-py3-none-any.whl
a80022
a80022
%global bashcompdir %(pkg-config --variable=completionsdir bash-completion 2>/dev/null)
a80022
a80022
Name:           python-%{srcname}
a80022
Version:        %{base_version}%{?prerel:~%{prerel}}
3f567d
Release:        6%{?dist}
a80022
Summary:        A tool for installing and managing Python packages
a80022
a80022
# We bundle a lot of libraries with pip, which itself is under MIT license.
a80022
# Here is the list of the libraries with corresponding licenses:
a80022
a80022
# appdirs: MIT
a80022
# certifi: MPLv2.0
a80022
# chardet: LGPLv2
a80022
# colorama: BSD
a80022
# CacheControl: ASL 2.0
a80022
# distlib: Python
a80022
# distro: ASL 2.0
a80022
# html5lib: MIT
a80022
# idna: BSD
a80022
# ipaddress: Python
a80022
# msgpack: ASL 2.0
a80022
# packaging: ASL 2.0 or BSD
a80022
# pep517: MIT
a80022
# progress: ISC
a80022
# pyparsing: MIT
a80022
# requests: ASL 2.0
a80022
# resolvelib: ISC
a80022
# setuptools: MIT
a80022
# six: MIT
f96a86
# tenacity: ASL 2.0
f96a86
# tomli: MIT
a80022
# urllib3: MIT
a80022
# webencodings: BSD
a80022
a80022
License:        MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)
a80022
URL:            https://pip.pypa.io/
a80022
Source0:        https://github.com/pypa/pip/archive/%{upstream_version}/%{srcname}-%{upstream_version}.tar.gz
a80022
a80022
BuildArch:      noarch
a80022
a80022
%if %{with tests}
a80022
BuildRequires:  /usr/bin/git
a80022
BuildRequires:  /usr/bin/hg
a80022
BuildRequires:  /usr/bin/bzr
a80022
BuildRequires:  /usr/bin/svn
a80022
BuildRequires:  python-setuptools-wheel
a80022
BuildRequires:  python-wheel-wheel
a80022
%endif
a80022
a80022
# Prevent removing of the system packages installed under /usr/lib
a80022
# when pip install -U is executed.
a80022
# https://bugzilla.redhat.com/show_bug.cgi?id=1550368#c24
a80022
Patch3:         remove-existing-dist-only-if-path-conflicts.patch
a80022
a80022
# Use the system level root certificate instead of the one bundled in certifi
a80022
# https://bugzilla.redhat.com/show_bug.cgi?id=1655253
a80022
Patch4:         dummy-certifi.patch
a80022
a80022
# Don't warn the user about pip._internal.main() entrypoint
a80022
# In Fedora, we use that in ensurepip and users cannot do anything about it,
a80022
# this warning is juts moot. Also, the warning breaks CPython test suite.
a80022
Patch5:         nowarn-pip._internal.main.patch
a80022
a80022
# Don't warn the user about packaging's LegacyVersion being deprecated.
a80022
# (This also breaks Python's test suite when warnings are treated as errors.)
a80022
# Upstream issue: https://github.com/pypa/packaging/issues/368
a80022
Patch6:         no-version-warning.patch
a80022
a80022
# Downstream only patch
a80022
# Users might have local installations of pip from using
a80022
# `pip install --user --upgrade pip` on older/newer versions.
a80022
# If they do that and they run `pip` or  `pip3`, the one from /usr/bin is used.
a80022
# However that's the one from this RPM package and the import in there might
a80022
# fail (it tries to import from ~/.local, but older or newer pip is there with
a80022
# a bit different API).
a80022
# We add this patch as a dirty workaround to make /usr/bin/pip* work with
a80022
# both pip10+ (from this RPM) and older or newer (19.3+) pip (from whatever).
a80022
# A proper fix is to put ~/.local/bin in front of /usr/bin in the PATH,
a80022
# however others are against that and we cannot change it for existing
a80022
# installs/user homes anyway.
a80022
# https://bugzilla.redhat.com/show_bug.cgi?id=1569488
a80022
# https://bugzilla.redhat.com/show_bug.cgi?id=1571650
a80022
# https://bugzilla.redhat.com/show_bug.cgi?id=1767212
a80022
# WARNING: /usr/bin/pip* are entrypoints, this cannot be applied in %%prep!
a80022
# %%patch10 doesn't work outside of %%prep, so we add it as a source
a80022
# Note that since pip 20, old main() import paths are preserved for backwards
a80022
# compatibility: https://github.com/pypa/pip/issues/7498
a80022
# Meaning we don't need to update any of the older pips to support 20+
a80022
# We also don't need to update Pythons to use new import path in ensurepip
a80022
Source10:        pip-allow-different-versions.patch
a80022
a80022
%description
a80022
pip is a package management system used to install and manage software packages
a80022
written in Python. Many packages can be found in the Python Package Index
a80022
(PyPI). pip is a recursive acronym that can stand for either "Pip Installs
a80022
Packages" or "Pip Installs Python".
a80022
a80022
a80022
a80022
# Virtual provides for the packages bundled by pip.
a80022
# You can generate it with:
a80022
# %%{_rpmconfigdir}/pythonbundles.py --namespace 'python%%{1}dist' src/pip/_vendor/vendor.txt
a80022
%global bundled() %{expand:
a80022
Provides: bundled(python%{1}dist(appdirs)) = 1.4.4
a80022
Provides: bundled(python%{1}dist(cachecontrol)) = 0.12.6
f96a86
Provides: bundled(python%{1}dist(certifi)) = 2021.5.30
a80022
Provides: bundled(python%{1}dist(chardet)) = 4
a80022
Provides: bundled(python%{1}dist(colorama)) = 0.4.4
f96a86
Provides: bundled(python%{1}dist(distlib)) = 0.3.2
a80022
Provides: bundled(python%{1}dist(distro)) = 1.5
a80022
Provides: bundled(python%{1}dist(html5lib)) = 1.1
f96a86
Provides: bundled(python%{1}dist(idna)) = 3.2
a80022
Provides: bundled(python%{1}dist(msgpack)) = 1.0.2
f96a86
Provides: bundled(python%{1}dist(packaging)) = 21
f96a86
Provides: bundled(python%{1}dist(pep517)) = 0.11
a80022
Provides: bundled(python%{1}dist(progress)) = 1.5
a80022
Provides: bundled(python%{1}dist(pyparsing)) = 2.4.7
f96a86
Provides: bundled(python%{1}dist(requests)) = 2.26
f96a86
Provides: bundled(python%{1}dist(resolvelib)) = 0.7.1
a80022
Provides: bundled(python%{1}dist(setuptools)) = 44
f96a86
Provides: bundled(python%{1}dist(six)) = 1.16
f96a86
Provides: bundled(python%{1}dist(tenacity)) = 8.0.1
f96a86
Provides: bundled(python%{1}dist(tomli)) = 1.0.3
f96a86
Provides: bundled(python%{1}dist(urllib3)) = 1.26.6
a80022
Provides: bundled(python%{1}dist(webencodings)) = 0.5.1
a80022
}
a80022
a80022
# Some manylinux1 wheels need libcrypt.so.1.
a80022
# Manylinux1, a common (as of 2019) platform tag for binary wheels, relies
a80022
# on a glibc version that included ancient crypto functions, which were
a80022
# moved to libxcrypt and then removed in:
a80022
#  https://fedoraproject.org/wiki/Changes/FullyRemoveDeprecatedAndUnsafeFunctionsFromLibcrypt
a80022
# The manylinux1 standard assumed glibc would keep ABI compatibility,
a80022
# but that's only the case if libcrypt.so.1 (libxcrypt-compat) is around.
a80022
# This should be solved in the next manylinux standard (but it may be
a80022
# a long time until manylinux1 is phased out).
a80022
# See: https://github.com/pypa/manylinux/issues/305
a80022
# Note that manylinux is only applicable to x86 (both 32 and 64 bits)
a80022
%global crypt_compat_recommends() %{expand:
a80022
Recommends: (libcrypt.so.1()(64bit) if python%{1}(x86-64))
a80022
Recommends: (libcrypt.so.1 if python%{1}(x86-32))
a80022
}
a80022
a80022
a80022
a80022
%package -n python%{python3_pkgversion}-%{srcname}
a80022
Summary:        A tool for installing and managing Python3 packages
a80022
a80022
BuildRequires:  python%{python3_pkgversion}-devel
a80022
# python3 bootstrap: this is rebuilt before the final build of python3, which
a80022
# adds the dependency on python3-rpm-generators, so we require it manually
a80022
# Note that the package prefix is always python3-, even if we build for 3.X
a80022
# The minimal version is for bundled provides verification script
a80022
BuildRequires:  python3-rpm-generators >= 11-8
a80022
BuildRequires:  python%{python3_pkgversion}-setuptools
a80022
BuildRequires:  bash-completion
a80022
%if %{with tests}
a80022
BuildRequires:  python%{python3_pkgversion}-cryptography
a80022
BuildRequires:  python%{python3_pkgversion}-mock
a80022
BuildRequires:  python%{python3_pkgversion}-pytest
a80022
BuildRequires:  python%{python3_pkgversion}-pretend
a80022
BuildRequires:  python%{python3_pkgversion}-freezegun
a80022
BuildRequires:  python%{python3_pkgversion}-scripttest
a80022
BuildRequires:  python%{python3_pkgversion}-virtualenv
a80022
BuildRequires:  python%{python3_pkgversion}-werkzeug
a80022
BuildRequires:  python%{python3_pkgversion}-pyyaml
a80022
%endif
a80022
BuildRequires:  python%{python3_pkgversion}-wheel
a80022
BuildRequires:  ca-certificates
a80022
Requires:       ca-certificates
a80022
a80022
# This was previously required and we keep it recommended because a lot of
a80022
# sdists installed via pip will try to import setuptools.
a80022
# But pip doesn't actually require setuptools.
a80022
# It can install wheels without them and it can build wheels in isolation mode
a80022
# (using setuptools/flit/poetry/... installed from PyPI).
a80022
# Side note: pip bundles pkg_resources from setuptools for internal usage.
a80022
Recommends:     python%{python3_pkgversion}-setuptools
a80022
a80022
# Virtual provides for the packages bundled by pip:
a80022
%{bundled 3}
a80022
a80022
Provides:       pip = %{version}-%{release}
a80022
Conflicts:      python-pip < %{version}-%{release}
a80022
a80022
%{crypt_compat_recommends 3}
a80022
a80022
# Provide platform-python-pip for backwards compatibility with RHEL 8
a80022
Provides:       platform-python-pip = %{version}-%{release}
a80022
a80022
%description -n python%{python3_pkgversion}-%{srcname}
a80022
pip is a package management system used to install and manage software packages
a80022
written in Python. Many packages can be found in the Python Package Index
a80022
(PyPI). pip is a recursive acronym that can stand for either "Pip Installs
a80022
Packages" or "Pip Installs Python".
a80022
a80022
%if %{with doc}
a80022
%package doc
a80022
Summary:        A documentation for a tool for installing and managing Python packages
a80022
a80022
BuildRequires:  python%{python3_pkgversion}-sphinx
a80022
BuildRequires:  python%{python3_pkgversion}-sphinx-inline-tabs
f96a86
BuildRequires:  python%{python3_pkgversion}-sphinx-copybutton
f96a86
BuildRequires:  python%{python3_pkgversion}-myst-parser
a80022
a80022
%description doc
a80022
A documentation for a tool for installing and managing Python packages
a80022
a80022
%endif
a80022
a5b3c9
%package -n     %{python_wheel_pkg_prefix}-%{srcname}-wheel
a80022
Summary:        The pip wheel
a80022
Requires:       ca-certificates
a5b3c9
Provides:       %{name}-wheel = %{version}-%{release}
a5b3c9
Obsoletes:      %{name}-wheel < %{version}-%{release}
a5b3c9
a5b3c9
# Older versions of python3-libs expect Python wheels at the old unversioned
a5b3c9
# location, so we conflict with the old Python versions that wouldn't work with
a5b3c9
# the new wheel location.
a5b3c9
Conflicts:      python3-libs < 3.9.9-2
a80022
a80022
# Virtual provides for the packages bundled by pip:
a80022
%{bundled 3}
a80022
a80022
%{crypt_compat_recommends 3}
a80022
a5b3c9
%description -n %{python_wheel_pkg_prefix}-%{srcname}-wheel
a80022
A Python wheel of pip to use with venv.
a80022
a80022
%prep
a80022
%autosetup -p1 -n %{srcname}-%{upstream_version}
a80022
a80022
# this goes together with patch4
a80022
rm src/pip/_vendor/certifi/*.pem
a80022
a80022
# Do not use furo as HTML theme in docs
a80022
# furo is not available in Fedora
a80022
sed -i '/html_theme = "furo"/d' docs/html/conf.py
a80022
a80022
# towncrier extension for Sphinx is not yet available in Fedora
f96a86
sed -i '/"sphinxcontrib.towncrier",/d' docs/html/conf.py
a80022
a80022
# tests expect wheels in here
a5b3c9
ln -s %{python_wheel_dir} tests/data/common_wheels
a80022
a80022
# Remove shebang from files in bundled chardet
a80022
grep -lr "^#\!/usr/bin/env python" src/pip/_vendor/chardet/ | xargs sed -i "1d"
a80022
f96a86
# Remove windows executable binaries
f96a86
rm -v src/pip/_vendor/distlib/*.exe
f96a86
sed -i '/\.exe/d' setup.py
a80022
a80022
%build
a80022
%py3_build_wheel
a80022
a80022
%if %{with doc}
a80022
export PYTHONPATH=./src/
a80022
# from tox.ini
a80022
sphinx-build-3 -b html docs/html docs/build/html
a80022
sphinx-build-3 -b man  docs/man  docs/build/man  -c docs/html
a80022
rm -rf docs/build/html/{.doctrees,.buildinfo}
a80022
%endif
a80022
a80022
a80022
%install
f96a86
# The following is similar to %%pyproject_install, but we don't have
a80022
# /usr/bin/pip yet, so we install using the wheel directly.
a80022
# (This is not standard wheel usage, but the pip wheel supports it -- see
a80022
#  pip/__main__.py)
a5b3c9
%{python3} dist/%{python_wheel_name}/pip install \
a80022
    --root %{buildroot} \
a80022
    --no-deps \
f96a86
    --disable-pip-version-check \
f96a86
    --progress-bar off \
f96a86
    --verbose \
a80022
    --ignore-installed \
f96a86
    --no-warn-script-location \
f96a86
    --no-index \
f96a86
    --no-cache-dir \
a80022
    --find-links dist \
a80022
    'pip==%{upstream_version}'
a80022
a80022
%if %{with doc}
a80022
pushd docs/build/man
a80022
install -d %{buildroot}%{_mandir}/man1
a80022
for MAN in *1; do
a80022
install -pm0644 $MAN %{buildroot}%{_mandir}/man1/$MAN
a80022
for pip in "pip3" "pip-3" "pip%{python3_version}" "pip-%{python3_version}"; do
a80022
echo ".so $MAN" > %{buildroot}%{_mandir}/man1/${MAN/pip/$pip}
a80022
done
a80022
done
a80022
popd
a80022
%endif
a80022
a80022
# before we ln -s anything, we apply Source10 patch to all pips:
a80022
for PIP in %{buildroot}%{_bindir}/pip*; do
a80022
  patch -p1 --no-backup-if-mismatch $PIP < %{SOURCE10}
a80022
done
a80022
a80022
mkdir -p %{buildroot}%{bashcompdir}
a80022
PYTHONPATH=%{buildroot}%{python3_sitelib} \
a80022
    %{buildroot}%{_bindir}/pip completion --bash \
a80022
    > %{buildroot}%{bashcompdir}/pip3
a80022
a80022
# Make bash completion apply to all the 5 symlinks we install
a80022
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 pip pip{,-}{3,%{python3_version}}/" \
a80022
    -e s/_pip_completion/_pip3_completion/ \
a80022
    %{buildroot}%{bashcompdir}/pip3
a80022
a80022
a80022
# Provide symlinks to executables to comply with Fedora guidelines for Python
a80022
ln -s ./pip%{python3_version} %{buildroot}%{_bindir}/pip-%{python3_version}
a80022
ln -s ./pip-%{python3_version} %{buildroot}%{_bindir}/pip-3
a80022
a80022
a80022
# Make sure the INSTALLER is not pip and remove RECORD
a80022
# %%pyproject macros do this for all packages
a80022
echo rpm > %{buildroot}%{python3_sitelib}/pip-%{upstream_version}.dist-info/INSTALLER
a80022
rm %{buildroot}%{python3_sitelib}/pip-%{upstream_version}.dist-info/RECORD
a80022
a5b3c9
mkdir -p %{buildroot}%{python_wheel_dir}
a5b3c9
install -p dist/%{python_wheel_name} -t %{buildroot}%{python_wheel_dir}
a80022
a80022
a80022
%if %{with tests}
a80022
%check
a80022
# Verify bundled provides are up to date
a80022
%{_rpmconfigdir}/pythonbundles.py src/pip/_vendor/vendor.txt --compare-with '%{bundled 3}'
a80022
a80022
# Upstream tests
a80022
# bash completion tests only work from installed package
a80022
# needs unaltered sys.path and we cannot do that in %%check
a80022
#     test_pep517_and_build_options
a80022
#     test_config_file_venv_option
a80022
# Incompatible with the latest virtualenv
a80022
#     test_from_link_vcs_with_source_dir_obtains_commit_id
a80022
#     test_from_link_vcs_without_source_dir
a80022
#     test_should_cache_git_sha
a80022
pytest_k='not completion and
a80022
          not test_pep517_and_build_options and
a80022
          not test_config_file_venv_option and
a80022
          not test_from_link_vcs_with_source_dir_obtains_commit_id and
a80022
          not test_from_link_vcs_without_source_dir and
a80022
          not test_should_cache_git_sha'
a80022
a80022
# --deselect'ed tests are not compatible with the latest virtualenv
a80022
# These files contain almost 500 tests so we should enable them back
a80022
# as soon as pip will be compatible upstream
a80022
# https://github.com/pypa/pip/pull/8441
a80022
%pytest -m 'not network' -k "$(echo $pytest_k)" \
a80022
    --deselect tests/functional --deselect tests/lib/test_lib.py --deselect tests/unit/test_build_env.py
a80022
%endif
a80022
a80022
a80022
%files -n python%{python3_pkgversion}-%{srcname}
a80022
%doc README.rst
f96a86
%license %{python3_sitelib}/pip-%{upstream_version}.dist-info/LICENSE.txt
a80022
%if %{with doc}
a80022
%{_mandir}/man1/pip.*
a80022
%{_mandir}/man1/pip-*.*
a80022
%{_mandir}/man1/pip3.*
a80022
%{_mandir}/man1/pip3-*.*
a80022
%endif
a80022
%{_bindir}/pip
a80022
%{_bindir}/pip3
a80022
%{_bindir}/pip-3
a80022
%{_bindir}/pip%{python3_version}
a80022
%{_bindir}/pip-%{python3_version}
a80022
%{python3_sitelib}/pip*
a80022
%dir %{bashcompdir}
a80022
%{bashcompdir}/pip3
a80022
a80022
%if %{with doc}
a80022
%files doc
a80022
%license LICENSE.txt
a80022
%doc README.rst
a80022
%doc docs/build/html
a80022
%endif
a80022
a5b3c9
%files -n %{python_wheel_pkg_prefix}-%{srcname}-wheel
a80022
%license LICENSE.txt
a80022
# we own the dir for simplicity
a5b3c9
%dir %{python_wheel_dir}/
a5b3c9
%{python_wheel_dir}/%{python_wheel_name}
a80022
a80022
%changelog
3f567d
* Thu Feb 03 2022 Tomas Orsava <torsava@redhat.com> - 21.2.3-6
3f567d
- Add automatically generated Obsoletes tag with the python39- prefix
3f567d
  for smoother upgrade from RHEL8
3f567d
- Related: rhbz#1990421
3f567d
a5b3c9
* Wed Nov 24 2021 Tomas Orsava <torsava@redhat.com> - 21.2.3-5
a5b3c9
- Conflict with old Python versions that use the old unversioned wheel location
a5b3c9
- Resolves: rhbz#1982668
a5b3c9
3f567d
* Fri Nov 5 2021 Tomas Orsava <torsava@redhat.com> - 21.2.3-4
a5b3c9
- Make the python-pip-wheel subpackage versioned (python3-pip-wheel),
a5b3c9
  and move its contents to a versioned directory /usr/share/python3-wheels
a5b3c9
- Resolves: rhbz#1982668
a5b3c9
f96a86
* Wed Oct 06 2021 Charalampos Stratakis <cstratak@redhat.com> - 21.2.3-3
f96a86
- Remove bundled windows executables
f96a86
- Resolves: rhbz#2006795
f96a86
f96a86
* Mon Sep 13 2021 Miro Hrončok <mhroncok@redhat.com> - 21.2.3-2
f96a86
- Fix broken uninstallation by a bogus downstream patch
f96a86
f96a86
* Mon Sep 13 2021 Miro Hrončok <mhroncok@redhat.com> - 21.2.3-1
f96a86
- Update to 21.2.3
f96a86
- Resolves: rhbz#1985635
f96a86
f96a86
* Mon Sep 13 2021 Lumír Balhar <lbalhar@redhat.com> - 21.1.3-1
f96a86
- Update to 21.1.3
f96a86
Resolves: rhbz#1976449
f96a86
f96a86
* Mon Sep 13 2021 Karolina Surma <ksurma@redhat.com> - 21.1.2-1
f96a86
- Update to 21.1.2
f96a86
Resolves: rhbz#1963433
f96a86
f96a86
* Mon Sep 13 2021 Karolina Surma <ksurma@redhat.com> - 21.1.1-1
f96a86
- Update to 21.1.1
f96a86
a80022
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 21.0.1-6
a80022
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
a80022
  Related: rhbz#1991688
a80022
a80022
* Wed Jul 28 2021 Tomas Orsava <torsava@redhat.com> - 21.0.1-5
a80022
- Provide the platform-python-pip name for backwards compatibility
a80022
  with RHEL 8
a80022
- Related: rhbz#1891487
a80022
a80022
* Mon May 17 2021 Karolina Surma <ksurma@redhat.com> - 21.0.1-4
a80022
- Backport security fixes from pip 21.1.1
a80022
a80022
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com>
a80022
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
a80022
a80022
* Sat Mar 13 2021 Miro Hrončok <mhroncok@redhat.com> - 21.0.1-2
a80022
- python-pip-wheel: Remove bundled provides and libcrypt recommends for Python 2
a80022
  (The wheel is Python 3 only for a while)
a80022
a80022
* Wed Feb 17 2021 Lumír Balhar <lbalhar@redhat.com> - 21.0.1-1
a80022
- Update to 21.0.1
a80022
Resolves: rhbz#1922592
a80022
a80022
* Tue Jan 26 2021 Lumír Balhar <lbalhar@redhat.com> - 21.0-1
a80022
- Update to 21.0 (#1919530)
a80022
a80022
* Thu Dec 17 2020 Petr Viktorin <pviktori@redhat.com> - 20.3.3-1
a80022
- Update to 20.3.3
a80022
a80022
* Mon Nov 30 2020 Miro Hrončok <mhroncok@redhat.com> - 20.3-1
a80022
- Update to 20.3
a80022
- Add support for PEP 600: Future manylinux Platform Tags
a80022
- New resolver
a80022
- Fixes: rhbz#1893470
a80022
a80022
* Mon Oct 19 2020 Lumír Balhar <lbalhar@redhat.com> - 20.2.4-1
a80022
- Update to 20.2.4 (#1889112)
a80022
a80022
* Wed Aug 05 2020 Tomas Orsava <torsava@redhat.com> - 20.2.2-1
a80022
- Update to 20.2.2 (#1838553)
a80022
a80022
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.1-7
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a80022
a80022
* Fri Jul 10 2020 Lumír Balhar <lbalhar@redhat.com> - 20.1.1-6
a80022
- Do not emit a warning about root privileges when --root is used
a80022
a80022
* Wed Jul 08 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.1-5
a80022
- Update bundled provides to match 20.1.1
a80022
a80022
* Tue Jun 16 2020 Lumír Balhar <lbalhar@redhat.com> - 20.1.1-4
a80022
- Deselect tests incompatible with the latest virtualenv
a80022
a80022
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.1-3
a80022
- Rebuilt for Python 3.9
a80022
a80022
* Thu May 21 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.1-2
a80022
- Bootstrap for Python 3.9
a80022
a80022
* Wed May 20 2020 Tomas Hrnciar <thrnciar@redhat.com> - 20.1.1-1
a80022
- Update to 20.1.1
a80022
a80022
* Wed Apr 29 2020 Tomas Hrnciar <thrnciar@redhat.com> - 20.1-1
a80022
- Update to 20.1
a80022
a80022
* Mon Apr 27 2020 Tomas Hrnciar <thrnciar@redhat.com> - 20.1~b1-1
a80022
- Update to 20.1~b1
a80022
a80022
* Wed Apr 15 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-4
a80022
- Only recommend setuptools, don't require them
a80022
a80022
* Fri Apr 10 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-3
a80022
- Allow setting $TMPDIR to $PWD/... during pip wheel (#1806625)
a80022
a80022
* Tue Mar 10 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-2
a80022
- Don't warn the user about pip._internal.main() entrypoint to fix ensurepip
a80022
a80022
* Mon Mar 02 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-1
a80022
- Update to 20.0.2 (#1793456)
a80022
a80022
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.3.1-2
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a80022
a80022
* Mon Nov 04 2019 Tomas Orsava <torsava@redhat.com> - 19.3.1-1
a80022
- Update to 19.3.1 (#1761508)
a80022
- Drop upstreamed patch that fixed expected output in test to not break with alpha/beta/rc Python versions
a80022
a80022
* Wed Oct 30 2019 Miro Hrončok <mhroncok@redhat.com> - 19.2.3-2
a80022
- Make /usr/bin/pip(3) work with user-installed pip 19.3+ (#1767212)
a80022
a80022
* Mon Sep 02 2019 Miro Hrončok <mhroncok@redhat.com> - 19.2.3-1
a80022
- Update to 19.2.3 (#1742230)
a80022
- Drop patch that should strip path prefixes from RECORD files, the paths are relative
a80022
a80022
* Wed Aug 21 2019 Petr Viktorin <pviktori@redhat.com> - 19.1.1-8
a80022
- Remove python2-pip
a80022
- Make pip bootstrap itself, rather than with an extra bootstrap RPM build
a80022
a80022
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-7
a80022
- Rebuilt for Python 3.8
a80022
a80022
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-6
a80022
- Bootstrap for Python 3.8
a80022
a80022
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-5
a80022
- Bootstrap for Python 3.8
a80022
a80022
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.1.1-4
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a80022
a80022
* Mon Jul 15 2019 Petr Viktorin <pviktori@redhat.com> - 19.1.1-3
a80022
- Recommend libcrypt.so.1 for manylinux1 compatibility
a80022
- Make /usr/bin/pip Python 3
a80022
a80022
* Mon Jun 10 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-2
a80022
- Fix root warning when pip is invoked via python -m pip
a80022
- Remove a redundant second WARNING prefix form the abovementioned warning
a80022
a80022
* Wed May 15 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-1
a80022
- Update to 19.1.1 (#1706995)
a80022
a80022
* Thu Apr 25 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1-1
a80022
- Update to 19.1 (#1702525)
a80022
a80022
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.3-1
a80022
- Update to 19.0.3 (#1679277)
a80022
a80022
* Wed Feb 13 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.2-1
a80022
- Update to 19.0.2 (#1668492)
a80022
a80022
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.1-3
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a80022
a80022
* Mon Dec 03 2018 Miro Hrončok <mhroncok@redhat.com> - 18.1-2
a80022
- Use the system level root certificate instead of the one bundled in certifi
a80022
a80022
* Thu Nov 22 2018 Miro Hrončok <mhroncok@redhat.com> - 18.1-1
a80022
- Update to 18.1 (#1652089)
a80022
a80022
* Tue Sep 18 2018 Victor Stinner <vstinner@redhat.com> - 18.0-4
a80022
- Prevent removing of the system packages installed under /usr/lib
a80022
  when pip install -U is executed. Original patch by Michal Cyprian.
a80022
  Resolves: rhbz#1550368.
a80022
a80022
* Wed Aug 08 2018 Miro Hrončok <mhroncok@redhat.com> - 18.0-3
a80022
- Create python-pip-wheel package with the wheel
a80022
a80022
* Tue Jul 31 2018 Miro Hrončok <mhroncok@redhat.com> - 18.0-2
a80022
- Remove redundant "Unicode" from License
a80022
a80022
* Mon Jul 23 2018 Marcel Plch <mplch@redhat.com> - 18.0-7
a80022
- Update to 18.0
a80022
a80022
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.3-6
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a80022
a80022
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-5
a80022
- Rebuilt for Python 3.7
a80022
a80022
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-4
a80022
- Bootstrap for Python 3.7
a80022
a80022
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-3
a80022
- Bootstrap for Python 3.7
a80022
a80022
* Fri May 04 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-2
a80022
- Allow to import pip10's main from pip9's /usr/bin/pip
a80022
- Do not show the "new version of pip" warning outside of venv
a80022
Resolves: rhbz#1569488
a80022
Resolves: rhbz#1571650
a80022
Resolves: rhbz#1573755
a80022
a80022
* Thu Mar 29 2018 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-1
a80022
- Update to 9.0.3
a80022
a80022
* Wed Feb 21 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.1-16
a80022
- Include built HTML documentation (in the new -doc subpackage) and man page
a80022
a80022
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-15
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a80022
a80022
* Mon Dec 04 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-14
a80022
- Reintroduce the ipaddress module in the python3 subpackage.
a80022
a80022
* Mon Nov 20 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-13
a80022
- Add virtual provides for the bundled libraries. (rhbz#1096912)
a80022
a80022
* Tue Aug 29 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-12
a80022
- Switch macros to bcond's and make Python 2 optional to facilitate building
a80022
  the Python 2 and Python 3 modules
a80022
a80022
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-11
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a80022
a80022
* Tue May 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-10
a80022
- Modernized package descriptions
a80022
Resolves: rhbz#1452568
a80022
a80022
* Tue Mar 21 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-9
a80022
- Fix typo in the sudo pip warning
a80022
a80022
* Fri Mar 03 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-8
a80022
- Patch 1 update: No sudo pip warning in venv or virtualenv
a80022
a80022
* Thu Feb 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-7
a80022
- Patch 1 update: Customize the warning with the proper version of the pip
a80022
  command
a80022
a80022
* Tue Feb 14 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-6
a80022
- Added patch 1: Emit a warning when running with root privileges
a80022
a80022
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-5
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a80022
a80022
* Mon Jan 02 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-4
a80022
- Provide symlinks to executables to comply with Fedora guidelines for Python
a80022
Resolves: rhbz#1406922
a80022
a80022
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-3
a80022
- Rebuild for Python 3.6 with wheel
a80022
a80022
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-2
a80022
- Rebuild for Python 3.6 without wheel
a80022
a80022
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 9.0.1-1
a80022
- Update to 9.0.1
a80022
a80022
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 8.1.2-5
a80022
- Enable EPEL Python 3 builds
a80022
- Use new python macros
a80022
- Cleanup spec
a80022
a80022
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-4
a80022
- Updated the test sources
a80022
a80022
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-3
a80022
- Moved python-pip into the python2-pip subpackage
a80022
- Added the python_provide macro
a80022
a80022
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-2
a80022
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
a80022
a80022
* Tue May 17 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-1
a80022
- Update to 8.1.2
a80022
- Moved to a new PyPI URL format
a80022
- Updated the prefix-stripping patch because of upstream changes in pip/wheel.py
a80022
a80022
* Mon Feb 22 2016 Slavek Kabrda <bkabrda@redhat.com> - 8.0.2-1
a80022
- Update to 8.0.2
a80022
a80022
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.0-4
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a80022
a80022
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-3
a80022
- Rebuilt for Python3.5 rebuild
a80022
- With wheel set to 1
a80022
a80022
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-2
a80022
- Rebuilt for Python3.5 rebuild
a80022
a80022
* Wed Jul 01 2015 Slavek Kabrda <bkabrda@redhat.com> - 7.1.0-1
a80022
- Update to 7.1.0
a80022
a80022
* Tue Jun 30 2015 Ville Skyttä <ville.skytta@iki.fi> - 7.0.3-3
a80022
- Install bash completion
a80022
- Ship LICENSE.txt as %%license where available
a80022
a80022
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.3-2
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a80022
a80022
* Thu Jun 04 2015 Matej Stuchlik <mstuchli@redhat.com> - 7.0.3-1
a80022
- Update to 7.0.3
a80022
a80022
* Fri Mar 06 2015 Matej Stuchlik <mstuchli@redhat.com> - 6.0.8-1
a80022
- Update to 6.0.8
a80022
a80022
* Thu Dec 18 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.5.6-5
a80022
- Only enable tests on Fedora.
a80022
a80022
* Mon Dec 01 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-4
a80022
- Add tests
a80022
- Add patch skipping tests requiring Internet access
a80022
a80022
* Tue Nov 18 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-3
a80022
- Added patch for local dos with predictable temp dictionary names
a80022
  (http://seclists.org/oss-sec/2014/q4/655)
a80022
a80022
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-2
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a80022
a80022
* Sun May 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-1
a80022
- Update to 1.5.6
a80022
a80022
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-4
a80022
- Rebuild as wheel for Python 3.4
a80022
a80022
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-3
a80022
- Disable build_wheel
a80022
a80022
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-2
a80022
- Rebuild as wheel for Python 3.4
a80022
a80022
* Mon Apr 07 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-1
a80022
- Updated to 1.5.4
a80022
a80022
* Mon Oct 14 2013 Tim Flink <tflink@fedoraproject.org> - 1.4.1-1
a80022
- Removed patch for CVE 2013-2099 as it has been included in the upstream 1.4.1 release
a80022
- Updated version to 1.4.1
a80022
a80022
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-5
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a80022
a80022
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-4
a80022
- Fix for CVE 2013-2099
a80022
a80022
* Thu May 23 2013 Tim Flink <tflink@fedoraproject.org> - 1.3.1-3
a80022
- undo python2 executable rename to python-pip. fixes #958377
a80022
- fix summary to match upstream
a80022
a80022
* Mon May 06 2013 Kevin Kofler <Kevin@tigcc.ticalc.org> - 1.3.1-2
a80022
- Fix main package Summary, it's for Python 2, not 3 (#877401)
a80022
a80022
* Fri Apr 26 2013 Jon Ciesla <limburgher@gmail.com> - 1.3.1-1
a80022
- Update to 1.3.1, fix for CVE-2013-1888.
a80022
a80022
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
a80022
a80022
* Tue Oct 09 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-2
a80022
- Fixing files for python3-pip
a80022
a80022
* Thu Oct 04 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-1
a80022
- Update to upstream 1.2.1
a80022
- Change binary from pip-python to python-pip (RHBZ#855495)
a80022
- Add alias from python-pip to pip-python, to be removed at a later date
a80022
a80022
* Tue May 15 2012 Tim Flink <tflink@fedoraproject.org> - 1.1.0-1
a80022
- Update to upstream 1.1.0
a80022
a80022
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
a80022
a80022
* Sat Oct 22 2011 Tim Flink <tflink@fedoraproject.org> - 1.0.2-1
a80022
- update to 1.0.2 and added python3 subpackage
a80022
a80022
* Wed Jun 22 2011 Tim Flink <tflink@fedoraproject.org> - 0.8.3-1
a80022
- update to 0.8.3 and project home page
a80022
a80022
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-2
a80022
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
a80022
a80022
* Mon Dec 20 2010 Luke Macken <lmacken@redhat.com> - 0.8.2-1
a80022
- update to 0.8.2 of pip
a80022
* Mon Aug 30 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.8-1
a80022
- update to 0.8 of pip
a80022
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-5
a80022
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
a80022
a80022
* Wed Jul 7 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.2-1
a80022
- update to 0.7.2 of pip
a80022
* Sun May 23 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.1-1
a80022
- update to 0.7.1 of pip
a80022
* Fri Jan 1 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1.4
a80022
- fix dependency issue
a80022
* Fri Dec 18 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-2
a80022
- fix spec file
a80022
* Thu Dec 17 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-1
a80022
- upgrade to 0.6.1 of pip
a80022
* Mon Aug 31 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.4-1
a80022
- Initial package
a80022