f444f50
# The original RHEL 9 content set is defined by (build)dependencies
f444f50
# of the packages in Fedora ELN. Hence we disable tests and documentation here
f444f50
# to prevent pulling many unwanted packages in.
f444f50
# Once the RHEL 9 content set is defined and/or RHEL 9 forks from ELN,
f444f50
# the conditional can be removed from the Fedora spec file.
f444f50
# We intentionally keep this enabled on EPEL.
f444f50
%if 0%{?rhel} >= 9 && !0%{?epel}
f444f50
%bcond_with tests
f444f50
%bcond_with doc
f444f50
%else
f3b4433
%bcond_without tests
2611854
%bcond_without doc
f444f50
%endif
Peter Halliday fc2018e
Peter Halliday fc2018e
%global srcname pip
093cb73
%global base_version 22.0.3
5540653
%global upstream_version %{base_version}%{?prerel}
b4e24c5
%global python_wheel_name %{srcname}-%{upstream_version}-py3-none-any.whl
3e1ef98
a0ac853
%global bashcompdir %(pkg-config --variable=completionsdir bash-completion 2>/dev/null)
25a2de7
Peter Halliday fc2018e
Name:           python-%{srcname}
5540653
Version:        %{base_version}%{?prerel:~%{prerel}}
093cb73
Release:        1%{?dist}
f5a26f9
Summary:        A tool for installing and managing Python packages
Marcel Plch 2e7f501
Marcel Plch 2e7f501
# We bundle a lot of libraries with pip, which itself is under MIT license.
Marcel Plch 2e7f501
# Here is the list of the libraries with corresponding licenses:
Marcel Plch 2e7f501
Marcel Plch 2e7f501
# appdirs: MIT
f6e9c06
# certifi: MPLv2.0
f6e9c06
# chardet: LGPLv2
f6e9c06
# colorama: BSD
f6e9c06
# CacheControl: ASL 2.0
Marcel Plch 2e7f501
# distlib: Python
Marcel Plch 2e7f501
# distro: ASL 2.0
Marcel Plch 2e7f501
# html5lib: MIT
f6e9c06
# idna: BSD
Marcel Plch 2e7f501
# ipaddress: Python
f6e9c06
# msgpack: ASL 2.0
710463c
# packaging: ASL 2.0 or BSD
82235d4
# pep517: MIT
f6e9c06
# progress: ISC
093cb73
# pygments: BSD
Marcel Plch 2e7f501
# pyparsing: MIT
Marcel Plch 2e7f501
# requests: ASL 2.0
8825fe5
# resolvelib: ISC
093cb73
# rich: MIT
Marcel Plch 2e7f501
# setuptools: MIT
f6e9c06
# six: MIT
5afdc00
# tenacity: ASL 2.0
d39c496
# tomli: MIT
093cb73
# typing-extensions: Python
f6e9c06
# urllib3: MIT
Marcel Plch 2e7f501
# webencodings: BSD
Marcel Plch 2e7f501
710463c
License:        MIT and Python and ASL 2.0 and BSD and ISC and LGPLv2 and MPLv2.0 and (ASL 2.0 or BSD)
f6c6360
URL:            https://pip.pypa.io/
5540653
Source0:        https://github.com/pypa/pip/archive/%{upstream_version}/%{srcname}-%{upstream_version}.tar.gz
Matej Stuchlik a7c7b12
47ea835
BuildArch:      noarch
47ea835
d7cbed0
%if %{with tests}
f3b4433
BuildRequires:  /usr/bin/git
79b09f8
BuildRequires:  /usr/bin/hg
f3b4433
BuildRequires:  /usr/bin/bzr
f3b4433
BuildRequires:  /usr/bin/svn
bbe9e6d
BuildRequires:  python-setuptools-wheel
bbe9e6d
BuildRequires:  python-wheel-wheel
d7cbed0
%endif
222c069
Michal Cyprian 50d9d64
# Prevent removing of the system packages installed under /usr/lib
Michal Cyprian 50d9d64
# when pip install -U is executed.
Michal Cyprian 50d9d64
# https://bugzilla.redhat.com/show_bug.cgi?id=1550368#c24
8b7935f
# Could be replaced with https://www.python.org/dev/peps/pep-0668/
0626df4
Patch3:         remove-existing-dist-only-if-path-conflicts.patch
Michal Cyprian 50d9d64
c75c71e
# Use the system level root certificate instead of the one bundled in certifi
c75c71e
# https://bugzilla.redhat.com/show_bug.cgi?id=1655253
c75c71e
Patch4:         dummy-certifi.patch
c75c71e
eb1cbbd
# Don't warn the user about pip._internal.main() entrypoint
eb1cbbd
# In Fedora, we use that in ensurepip and users cannot do anything about it,
eb1cbbd
# this warning is juts moot. Also, the warning breaks CPython test suite.
0626df4
Patch5:         nowarn-pip._internal.main.patch
eb1cbbd
cae1e54
# Don't warn the user about packaging's LegacyVersion being deprecated.
cae1e54
# (This also breaks Python's test suite when warnings are treated as errors.)
cae1e54
# Upstream issue: https://github.com/pypa/packaging/issues/368
cae1e54
Patch6:         no-version-warning.patch
cae1e54
d02d7aa
# Downstream only patch
Marcel Plch 2e7f501
# Users might have local installations of pip from using
3bced42
# `pip install --user --upgrade pip` on older/newer versions.
d02d7aa
# If they do that and they run `pip` or  `pip3`, the one from /usr/bin is used.
3bced42
# However that's the one from this RPM package and the import in there might
3bced42
# fail (it tries to import from ~/.local, but older or newer pip is there with
3bced42
# a bit different API).
d02d7aa
# We add this patch as a dirty workaround to make /usr/bin/pip* work with
3bced42
# both pip10+ (from this RPM) and older or newer (19.3+) pip (from whatever).
d02d7aa
# A proper fix is to put ~/.local/bin in front of /usr/bin in the PATH,
d02d7aa
# however others are against that and we cannot change it for existing
d02d7aa
# installs/user homes anyway.
d02d7aa
# https://bugzilla.redhat.com/show_bug.cgi?id=1569488
d02d7aa
# https://bugzilla.redhat.com/show_bug.cgi?id=1571650
3bced42
# https://bugzilla.redhat.com/show_bug.cgi?id=1767212
d02d7aa
# WARNING: /usr/bin/pip* are entrypoints, this cannot be applied in %%prep!
d02d7aa
# %%patch10 doesn't work outside of %%prep, so we add it as a source
f994ff1
# Note that since pip 20, old main() import paths are preserved for backwards
f994ff1
# compatibility: https://github.com/pypa/pip/issues/7498
f994ff1
# Meaning we don't need to update any of the older pips to support 20+
f994ff1
# We also don't need to update Pythons to use new import path in ensurepip
3bced42
Source10:        pip-allow-different-versions.patch
d02d7aa
47ea835
%description
db23604
pip is a package management system used to install and manage software packages
db23604
written in Python. Many packages can be found in the Python Package Index
db23604
(PyPI). pip is a recursive acronym that can stand for either "Pip Installs
db23604
Packages" or "Pip Installs Python".
Peter Halliday fc2018e
47ea835
6186a48
6186a48
# Virtual provides for the packages bundled by pip.
8253bfa
# You can generate it with:
8253bfa
# %%{_rpmconfigdir}/pythonbundles.py --namespace 'python%%{1}dist' src/pip/_vendor/vendor.txt
6186a48
%global bundled() %{expand:
093cb73
Provides: bundled(python%{1}dist(cachecontrol)) = 0.12.10
093cb73
Provides: bundled(python%{1}dist(certifi)) = 2021.10.8
093819c
Provides: bundled(python%{1}dist(chardet)) = 4
58c5acd
Provides: bundled(python%{1}dist(colorama)) = 0.4.4
093cb73
Provides: bundled(python%{1}dist(distlib)) = 0.3.4
54943eb
Provides: bundled(python%{1}dist(distro)) = 1.6
8825fe5
Provides: bundled(python%{1}dist(html5lib)) = 1.1
093cb73
Provides: bundled(python%{1}dist(idna)) = 3.3
093cb73
Provides: bundled(python%{1}dist(msgpack)) = 1.0.3
093cb73
Provides: bundled(python%{1}dist(packaging)) = 21.3
931a7e6
Provides: bundled(python%{1}dist(pep517)) = 0.12
093cb73
Provides: bundled(python%{1}dist(platformdirs)) = 2.4.1
54943eb
Provides: bundled(python%{1}dist(progress)) = 1.6
093cb73
Provides: bundled(python%{1}dist(pygments)) = 2.11.2
093cb73
Provides: bundled(python%{1}dist(pyparsing)) = 3.0.7
093cb73
Provides: bundled(python%{1}dist(requests)) = 2.27.1
093cb73
Provides: bundled(python%{1}dist(resolvelib)) = 0.8.1
093cb73
Provides: bundled(python%{1}dist(rich)) = 11
8253bfa
Provides: bundled(python%{1}dist(setuptools)) = 44
d39c496
Provides: bundled(python%{1}dist(six)) = 1.16
d39c496
Provides: bundled(python%{1}dist(tenacity)) = 8.0.1
d39c496
Provides: bundled(python%{1}dist(tomli)) = 1.0.3
093cb73
Provides: bundled(python%{1}dist(typing-extensions)) = 4.0.1
093cb73
Provides: bundled(python%{1}dist(urllib3)) = 1.26.8
82235d4
Provides: bundled(python%{1}dist(webencodings)) = 0.5.1
6186a48
}
6186a48
23345c5
# Some manylinux1 wheels need libcrypt.so.1.
23345c5
# Manylinux1, a common (as of 2019) platform tag for binary wheels, relies
23345c5
# on a glibc version that included ancient crypto functions, which were
23345c5
# moved to libxcrypt and then removed in:
23345c5
#  https://fedoraproject.org/wiki/Changes/FullyRemoveDeprecatedAndUnsafeFunctionsFromLibcrypt
23345c5
# The manylinux1 standard assumed glibc would keep ABI compatibility,
23345c5
# but that's only the case if libcrypt.so.1 (libxcrypt-compat) is around.
23345c5
# This should be solved in the next manylinux standard (but it may be
23345c5
# a long time until manylinux1 is phased out).
23345c5
# See: https://github.com/pypa/manylinux/issues/305
23345c5
# Note that manylinux is only applicable to x86 (both 32 and 64 bits)
23345c5
%global crypt_compat_recommends() %{expand:
5813f49
Recommends: (libcrypt.so.1()(64bit) if python%{1}(x86-64))
5813f49
Recommends: (libcrypt.so.1 if python%{1}(x86-32))
23345c5
}
23345c5
6186a48
aded0dc
Orion Poplawski 6190fb2
%package -n python%{python3_pkgversion}-%{srcname}
f5a26f9
Summary:        A tool for installing and managing Python3 packages
aded0dc
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-devel
7093fad
# python3 bootstrap: this is rebuilt before the final build of python3, which
7093fad
# adds the dependency on python3-rpm-generators, so we require it manually
8253bfa
# Note that the package prefix is always python3-, even if we build for 3.X
8253bfa
# The minimal version is for bundled provides verification script
8253bfa
BuildRequires:  python3-rpm-generators >= 11-8
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-setuptools
25a2de7
BuildRequires:  bash-completion
a096270
%if %{with tests}
32ac540
BuildRequires:  python%{python3_pkgversion}-cryptography
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-mock
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-pytest
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-pretend
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-freezegun
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-scripttest
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-virtualenv
f994ff1
BuildRequires:  python%{python3_pkgversion}-werkzeug
Marcel Plch 2e7f501
BuildRequires:  python%{python3_pkgversion}-pyyaml
093cb73
BuildRequires:  python%{python3_pkgversion}-tomli-w
Matej Stuchlik f50907e
%endif
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-wheel
c75c71e
BuildRequires:  ca-certificates
c75c71e
Requires:       ca-certificates
9d14512
9d14512
# This was previously required and we keep it recommended because a lot of
9d14512
# sdists installed via pip will try to import setuptools.
9d14512
# But pip doesn't actually require setuptools.
9d14512
# It can install wheels without them and it can build wheels in isolation mode
9d14512
# (using setuptools/flit/poetry/... installed from PyPI).
9d14512
# Side note: pip bundles pkg_resources from setuptools for internal usage.
9d14512
Recommends:     python%{python3_pkgversion}-setuptools
5fc56f6
6186a48
# Virtual provides for the packages bundled by pip:
6186a48
%{bundled 3}
5fc56f6
8fc8d45
Provides:       pip = %{version}-%{release}
8fc8d45
Conflicts:      python-pip < %{version}-%{release}
aded0dc
8b7935f
# The python3.10 version that added the rpm_prefix sysconfig install scheme
8b7935f
# This pip can also function with the previous version,
8b7935f
# but it would remove RPM-installed packages during sudo pip install --upgrade.
8b7935f
Requires:       python3-libs >= 3.10.0-2
8b7935f
8b7935f
5813f49
%{crypt_compat_recommends 3}
23345c5
Orion Poplawski 6190fb2
%description -n python%{python3_pkgversion}-%{srcname}
db23604
pip is a package management system used to install and manage software packages
db23604
written in Python. Many packages can be found in the Python Package Index
db23604
(PyPI). pip is a recursive acronym that can stand for either "Pip Installs
db23604
Packages" or "Pip Installs Python".
db23604
2611854
%if %{with doc}
2611854
%package doc
2611854
Summary:        A documentation for a tool for installing and managing Python packages
2611854
2611854
BuildRequires:  python%{python3_pkgversion}-sphinx
58c5acd
BuildRequires:  python%{python3_pkgversion}-sphinx-inline-tabs
5afdc00
BuildRequires:  python%{python3_pkgversion}-sphinx-copybutton
5afdc00
BuildRequires:  python%{python3_pkgversion}-myst-parser
2611854
2611854
%description doc
2611854
A documentation for a tool for installing and managing Python packages
2611854
2611854
%endif
2611854
b4e24c5
%package -n     %{python_wheel_pkg_prefix}-%{srcname}-wheel
6186a48
Summary:        The pip wheel
c75c71e
Requires:       ca-certificates
6186a48
6186a48
# Virtual provides for the packages bundled by pip:
6186a48
%{bundled 3}
6186a48
5813f49
%{crypt_compat_recommends 3}
23345c5
b4e24c5
%description -n %{python_wheel_pkg_prefix}-%{srcname}-wheel
6186a48
A Python wheel of pip to use with venv.
47ea835
Peter Halliday fc2018e
%prep
58c5acd
%autosetup -p1 -n %{srcname}-%{upstream_version}
07e4cb7
c75c71e
# this goes together with patch4
c75c71e
rm src/pip/_vendor/certifi/*.pem
08349fb
58c5acd
# Do not use furo as HTML theme in docs
58c5acd
# furo is not available in Fedora
58c5acd
sed -i '/html_theme = "furo"/d' docs/html/conf.py
58c5acd
093819c
# towncrier extension for Sphinx is not yet available in Fedora
5afdc00
sed -i '/"sphinxcontrib.towncrier",/d' docs/html/conf.py
093819c
bbe9e6d
# tests expect wheels in here
b4e24c5
ln -s %{python_wheel_dir} tests/data/common_wheels
bbe9e6d
093819c
# Remove shebang from files in bundled chardet
093819c
grep -lr "^#\!/usr/bin/env python" src/pip/_vendor/chardet/ | xargs sed -i "1d"
5540653
05b4464
# Remove windows executable binaries
05b4464
rm -v src/pip/_vendor/distlib/*.exe
05b4464
sed -i '/\.exe/d' setup.py
f5a26f9
Peter Halliday fc2018e
%build
Orion Poplawski 6190fb2
%py3_build_wheel
aded0dc
2611854
%if %{with doc}
82235d4
export PYTHONPATH=./src/
82235d4
# from tox.ini
82235d4
sphinx-build-3 -b html docs/html docs/build/html
82235d4
sphinx-build-3 -b man  docs/man  docs/build/man  -c docs/html
46e383d
rm -rf docs/build/html/{.doctrees,.buildinfo}
2611854
%endif
2611854
f5a26f9
Peter Halliday fc2018e
%install
d3f6b95
# The following is similar to %%pyproject_install, but we don't have
ef07805
# /usr/bin/pip yet, so we install using the wheel directly.
ef07805
# (This is not standard wheel usage, but the pip wheel supports it -- see
ef07805
#  pip/__main__.py)
b4e24c5
%{python3} dist/%{python_wheel_name}/pip install \
ef07805
    --root %{buildroot} \
5540653
    --no-deps \
d3f6b95
    --disable-pip-version-check \
d3f6b95
    --progress-bar off \
d3f6b95
    --verbose \
5540653
    --ignore-installed \
d3f6b95
    --no-warn-script-location \
d3f6b95
    --no-index \
d3f6b95
    --no-cache-dir \
5540653
    --find-links dist \
5540653
    'pip==%{upstream_version}'
a096270
2611854
%if %{with doc}
Marcel Plch 2e7f501
pushd docs/build/man
2611854
install -d %{buildroot}%{_mandir}/man1
Marcel Plch 2e7f501
for MAN in *1; do
Marcel Plch 2e7f501
install -pm0644 $MAN %{buildroot}%{_mandir}/man1/$MAN
542eb0f
for pip in "pip3" "pip-3" "pip%{python3_version}" "pip-%{python3_version}"; do
542eb0f
echo ".so $MAN" > %{buildroot}%{_mandir}/man1/${MAN/pip/$pip}
542eb0f
done
Marcel Plch 2e7f501
done
Marcel Plch 2e7f501
popd
9a8a1ef
%endif
2611854
d02d7aa
# before we ln -s anything, we apply Source10 patch to all pips:
d02d7aa
for PIP in %{buildroot}%{_bindir}/pip*; do
038fce3
  patch -p1 --no-backup-if-mismatch $PIP < %{SOURCE10}
d02d7aa
done
d02d7aa
25a2de7
mkdir -p %{buildroot}%{bashcompdir}
25a2de7
PYTHONPATH=%{buildroot}%{python3_sitelib} \
8fc8d45
    %{buildroot}%{_bindir}/pip completion --bash \
a0ac853
    > %{buildroot}%{bashcompdir}/pip3
a0ac853
a0ac853
# Make bash completion apply to all the 5 symlinks we install
a0ac853
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 pip pip{,-}{3,%{python3_version}}/" \
25a2de7
    -e s/_pip_completion/_pip3_completion/ \
a0ac853
    %{buildroot}%{bashcompdir}/pip3
3e1ef98
25a2de7
de16c87
# Provide symlinks to executables to comply with Fedora guidelines for Python
222c069
ln -s ./pip%{python3_version} %{buildroot}%{_bindir}/pip-%{python3_version}
de16c87
ln -s ./pip-%{python3_version} %{buildroot}%{_bindir}/pip-3
de16c87
de16c87
05d68e0
# Make sure the INSTALLER is not pip and remove RECORD
f994ff1
# %%pyproject macros do this for all packages
5540653
echo rpm > %{buildroot}%{python3_sitelib}/pip-%{upstream_version}.dist-info/INSTALLER
58c5acd
rm %{buildroot}%{python3_sitelib}/pip-%{upstream_version}.dist-info/RECORD
4b288bd
b4e24c5
mkdir -p %{buildroot}%{python_wheel_dir}
b4e24c5
install -p dist/%{python_wheel_name} -t %{buildroot}%{python_wheel_dir}
6186a48
6186a48
a096270
%if %{with tests}
Matej Stuchlik 9297164
%check
8253bfa
# Verify bundled provides are up to date
8253bfa
%{_rpmconfigdir}/pythonbundles.py src/pip/_vendor/vendor.txt --compare-with '%{bundled 3}'
8253bfa
8253bfa
# Upstream tests
bbe9e6d
# bash completion tests only work from installed package
a2422cf
# needs unaltered sys.path and we cannot do that in %%check
a2422cf
#     test_pep517_and_build_options
a2422cf
#     test_config_file_venv_option
acf982e
# Incompatible with the latest virtualenv
acf982e
#     test_from_link_vcs_with_source_dir_obtains_commit_id
acf982e
#     test_from_link_vcs_without_source_dir
acf982e
#     test_should_cache_git_sha
a2422cf
pytest_k='not completion and
a2422cf
          not test_pep517_and_build_options and
a2422cf
          not test_config_file_venv_option and
acf982e
          not test_from_link_vcs_with_source_dir_obtains_commit_id and
acf982e
          not test_from_link_vcs_without_source_dir and
acf982e
          not test_should_cache_git_sha'
f3b4433
acf982e
# --deselect'ed tests are not compatible with the latest virtualenv
acf982e
# These files contain almost 500 tests so we should enable them back
acf982e
# as soon as pip will be compatible upstream
acf982e
# https://github.com/pypa/pip/pull/8441
e195c51
%pytest -m 'not network' -k "$(echo $pytest_k)" \
acf982e
    --deselect tests/functional --deselect tests/lib/test_lib.py --deselect tests/unit/test_build_env.py
222c069
%endif
Peter Halliday fc2018e
aded0dc
Orion Poplawski 6190fb2
%files -n python%{python3_pkgversion}-%{srcname}
2611854
%doc README.rst
8f31f81
%license %{python3_sitelib}/pip-%{upstream_version}.dist-info/LICENSE.txt
2611854
%if %{with doc}
8fc8d45
%{_mandir}/man1/pip.*
add791f
%{_mandir}/man1/pip-*.*
2611854
%{_mandir}/man1/pip3.*
add791f
%{_mandir}/man1/pip3-*.*
2611854
%endif
8fc8d45
%{_bindir}/pip
de16c87
%{_bindir}/pip3
de16c87
%{_bindir}/pip-3
de16c87
%{_bindir}/pip%{python3_version}
de16c87
%{_bindir}/pip-%{python3_version}
aded0dc
%{python3_sitelib}/pip*
25a2de7
%dir %{bashcompdir}
a0ac853
%{bashcompdir}/pip3
2611854
2611854
%if %{with doc}
2611854
%files doc
2611854
%license LICENSE.txt
2611854
%doc README.rst
Marcel Plch 2e7f501
%doc docs/build/html
9a8a1ef
%endif
aded0dc
b4e24c5
%files -n %{python_wheel_pkg_prefix}-%{srcname}-wheel
6186a48
%license LICENSE.txt
6186a48
# we own the dir for simplicity
b4e24c5
%dir %{python_wheel_dir}/
b4e24c5
%{python_wheel_dir}/%{python_wheel_name}
6186a48
Peter Halliday fc2018e
%changelog
093cb73
* Wed Feb 16 2022 Lumír Balhar <lbalhar@redhat.com> - 22.0.3-1
093cb73
- Update to 22.0.3
093cb73
Resolves: rhbz#2048243
093cb73
636f3bf
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 21.3.1-2
636f3bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
636f3bf
931a7e6
* Mon Oct 25 2021 Miro Hrončok <mhroncok@redhat.com> - 21.3.1-1
931a7e6
- Update to 21.3.1
931a7e6
- Resolves: rhbz#2016682
931a7e6
54943eb
* Wed Oct 13 2021 Miro Hrončok <mhroncok@redhat.com> - 21.3-1
54943eb
- Update to 21.3
54943eb
- Resolves: rhbz#2013026
5e3e97d
- Fix incomplete pip-updates in virtual environments
54943eb
05b4464
* Wed Oct 06 2021 Charalampos Stratakis <cstratak@redhat.com> - 21.2.3-4
05b4464
- Remove bundled windows executables
05b4464
- Resolves: rhbz#2005453
05b4464
8b7935f
* Thu Sep 23 2021 Miro Hrončok <mhroncok@redhat.com> - 21.2.3-3
8b7935f
- Detect paths not to uninstall from via sysconfig's rpm_prefix install scheme
8b7935f
192c4ae
* Mon Aug 16 2021 Miro Hrončok <mhroncok@redhat.com> - 21.2.3-2
192c4ae
- Fix broken uninstallation by a bogus downstream patch
192c4ae
d39c496
* Mon Aug 09 2021 Miro Hrončok <mhroncok@redhat.com> - 21.2.3-1
d39c496
- Update to 21.2.3
d39c496
- Resolves: rhbz#1985635
d39c496
08464d3
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 21.1.3-2
08464d3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
08464d3
44c8353
* Tue Jun 29 2021 Lumír Balhar <lbalhar@redhat.com> - 21.1.3-1
44c8353
- Update to 21.1.3
44c8353
Resolves: rhbz#1976449
44c8353
de90950
* Mon Jun 07 2021 Karolina Surma <ksurma@redhat.com> - 21.1.2-1
de90950
- Update to 21.1.2
de90950
Resolves: rhbz#1963433
de90950
d2309d3
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 21.1.1-3
d2309d3
- Rebuilt for Python 3.10
d2309d3
ec8cee2
* Tue Jun 01 2021 Python Maint <python-maint@redhat.com> - 21.1.1-2
ec8cee2
- Bootstrap for Python 3.10
ec8cee2
5afdc00
* Mon May 10 2021 Karolina Surma <ksurma@redhat.com> - 21.1.1-1
5afdc00
- Update to 21.1.1
5afdc00
b476c02
* Sat Mar 13 2021 Miro Hrončok <mhroncok@redhat.com> - 21.0.1-2
b476c02
- python-pip-wheel: Remove bundled provides and libcrypt recommends for Python 2
b476c02
  (The wheel is Python 3 only for a while)
b476c02
e8f3551
* Wed Feb 17 2021 Lumír Balhar <lbalhar@redhat.com> - 21.0.1-1
e8f3551
- Update to 21.0.1
e8f3551
Resolves: rhbz#1922592
e8f3551
093819c
* Tue Jan 26 2021 Lumír Balhar <lbalhar@redhat.com> - 21.0-1
093819c
- Update to 21.0 (#1919530)
093819c
cef1efc
* Thu Dec 17 2020 Petr Viktorin <pviktori@redhat.com> - 20.3.3-1
cef1efc
- Update to 20.3.3
cef1efc
cef1efc
* Mon Nov 30 2020 Miro Hrončok <mhroncok@redhat.com> - 20.3-1
58c5acd
- Update to 20.3
58c5acd
- Add support for PEP 600: Future manylinux Platform Tags
58c5acd
- New resolver
58c5acd
- Fixes: rhbz#1893470
58c5acd
aab1da4
* Mon Oct 19 2020 Lumír Balhar <lbalhar@redhat.com> - 20.2.4-1
aab1da4
- Update to 20.2.4 (#1889112)
aab1da4
8825fe5
* Wed Aug 05 2020 Tomas Orsava <torsava@redhat.com> - 20.2.2-1
8825fe5
- Update to 20.2.2 (#1838553)
8825fe5
588f123
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 20.1.1-7
588f123
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
588f123
728b4e4
* Fri Jul 10 2020 Lumír Balhar <lbalhar@redhat.com> - 20.1.1-6
728b4e4
- Do not emit a warning about root privileges when --root is used
728b4e4
8253bfa
* Wed Jul 08 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.1-5
8253bfa
- Update bundled provides to match 20.1.1
8253bfa
acf982e
* Tue Jun 16 2020 Lumír Balhar <lbalhar@redhat.com> - 20.1.1-4
acf982e
- Deselect tests incompatible with the latest virtualenv
acf982e
230ac9c
* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.1-3
230ac9c
- Rebuilt for Python 3.9
230ac9c
97bba91
* Thu May 21 2020 Miro Hrončok <mhroncok@redhat.com> - 20.1.1-2
97bba91
- Bootstrap for Python 3.9
97bba91
5ef43e5
* Wed May 20 2020 Tomas Hrnciar <thrnciar@redhat.com> - 20.1.1-1
5ef43e5
- Update to 20.1.1
5ef43e5
0e2a444
* Wed Apr 29 2020 Tomas Hrnciar <thrnciar@redhat.com> - 20.1-1
0e2a444
- Update to 20.1
0e2a444
5540653
* Mon Apr 27 2020 Tomas Hrnciar <thrnciar@redhat.com> - 20.1~b1-1
5540653
- Update to 20.1~b1
5540653
9d14512
* Wed Apr 15 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-4
9d14512
- Only recommend setuptools, don't require them
9d14512
4347c13
* Fri Apr 10 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-3
4347c13
- Allow setting $TMPDIR to $PWD/... during pip wheel (#1806625)
4347c13
eb1cbbd
* Tue Mar 10 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-2
eb1cbbd
- Don't warn the user about pip._internal.main() entrypoint to fix ensurepip
eb1cbbd
f994ff1
* Mon Mar 02 2020 Miro Hrončok <mhroncok@redhat.com> - 20.0.2-1
f994ff1
- Update to 20.0.2 (#1793456)
f994ff1
c9ae810
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 19.3.1-2
c9ae810
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
c9ae810
f6e9c06
* Mon Nov 04 2019 Tomas Orsava <torsava@redhat.com> - 19.3.1-1
f6e9c06
- Update to 19.3.1 (#1761508)
f6e9c06
- Drop upstreamed patch that fixed expected output in test to not break with alpha/beta/rc Python versions
f6e9c06
3bced42
* Wed Oct 30 2019 Miro Hrončok <mhroncok@redhat.com> - 19.2.3-2
3bced42
- Make /usr/bin/pip(3) work with user-installed pip 19.3+ (#1767212)
3bced42
add791f
* Mon Sep 02 2019 Miro Hrončok <mhroncok@redhat.com> - 19.2.3-1
add791f
- Update to 19.2.3 (#1742230)
add791f
- Drop patch that should strip path prefixes from RECORD files, the paths are relative
add791f
ef07805
* Wed Aug 21 2019 Petr Viktorin <pviktori@redhat.com> - 19.1.1-8
9a8a1ef
- Remove python2-pip
ef07805
- Make pip bootstrap itself, rather than with an extra bootstrap RPM build
ef07805
1e1292b
* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-7
1e1292b
- Rebuilt for Python 3.8
1e1292b
0f902d1
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-6
0f902d1
- Bootstrap for Python 3.8
0f902d1
30557cd
* Wed Aug 14 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-5
30557cd
- Bootstrap for Python 3.8
30557cd
776d4ae
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 19.1.1-4
776d4ae
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
776d4ae
23345c5
* Mon Jul 15 2019 Petr Viktorin <pviktori@redhat.com> - 19.1.1-3
23345c5
- Recommend libcrypt.so.1 for manylinux1 compatibility
8fc8d45
- Make /usr/bin/pip Python 3
23345c5
de5ce17
* Mon Jun 10 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-2
de5ce17
- Fix root warning when pip is invoked via python -m pip
853f763
- Remove a redundant second WARNING prefix form the abovementioned warning
de5ce17
fa2f84f
* Wed May 15 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1.1-1
fa2f84f
- Update to 19.1.1 (#1706995)
fa2f84f
a2422cf
* Thu Apr 25 2019 Miro Hrončok <mhroncok@redhat.com> - 19.1-1
a2422cf
- Update to 19.1 (#1702525)
a2422cf
53928d9
* Wed Mar 06 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.3-1
53928d9
- Update to 19.0.3 (#1679277)
53928d9
bbe9e6d
* Wed Feb 13 2019 Miro Hrončok <mhroncok@redhat.com> - 19.0.2-1
bbe9e6d
- Update to 19.0.2 (#1668492)
bbe9e6d
047f565
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 18.1-3
047f565
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
047f565
c75c71e
* Mon Dec 03 2018 Miro Hrončok <mhroncok@redhat.com> - 18.1-2
c75c71e
- Use the system level root certificate instead of the one bundled in certifi
c75c71e
82235d4
* Thu Nov 22 2018 Miro Hrončok <mhroncok@redhat.com> - 18.1-1
82235d4
- Update to 18.1 (#1652089)
82235d4
Michal Cyprian 50d9d64
* Tue Sep 18 2018 Victor Stinner <vstinner@redhat.com> - 18.0-4
Michal Cyprian 50d9d64
- Prevent removing of the system packages installed under /usr/lib
Michal Cyprian 50d9d64
  when pip install -U is executed. Original patch by Michal Cyprian.
Michal Cyprian 50d9d64
  Resolves: rhbz#1550368.
Michal Cyprian 50d9d64
6186a48
* Wed Aug 08 2018 Miro Hrončok <mhroncok@redhat.com> - 18.0-3
6186a48
- Create python-pip-wheel package with the wheel
6186a48
710463c
* Tue Jul 31 2018 Miro Hrončok <mhroncok@redhat.com> - 18.0-2
34ceb80
- Remove redundant "Unicode" from License
710463c
Marcel Plch 2e7f501
* Mon Jul 23 2018 Marcel Plch <mplch@redhat.com> - 18.0-7
Marcel Plch 2e7f501
- Update to 18.0
Marcel Plch 2e7f501
ffbc804
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.3-6
ffbc804
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
ffbc804
2b10913
* Mon Jun 18 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-5
2b10913
- Rebuilt for Python 3.7
2b10913
cc52c4f
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-4
cc52c4f
- Bootstrap for Python 3.7
cc52c4f
1d697f0
* Wed Jun 13 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-3
1d697f0
- Bootstrap for Python 3.7
1d697f0
d02d7aa
* Fri May 04 2018 Miro Hrončok <mhroncok@redhat.com> - 9.0.3-2
d02d7aa
- Allow to import pip10's main from pip9's /usr/bin/pip
4b288bd
- Do not show the "new version of pip" warning outside of venv
d02d7aa
Resolves: rhbz#1569488
d02d7aa
Resolves: rhbz#1571650
4b288bd
Resolves: rhbz#1573755
d02d7aa
3989bcb
* Thu Mar 29 2018 Charalampos Stratakis <cstratak@redhat.com> - 9.0.3-1
3989bcb
- Update to 9.0.3
3989bcb
2611854
* Wed Feb 21 2018 Lumír Balhar <lbalhar@redhat.com> - 9.0.1-16
2611854
- Include built HTML documentation (in the new -doc subpackage) and man page
2611854
86e88e4
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-15
86e88e4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
86e88e4
dab9696
* Mon Dec 04 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-14
dab9696
- Reintroduce the ipaddress module in the python3 subpackage.
dab9696
5fc56f6
* Mon Nov 20 2017 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-13
5fc56f6
- Add virtual provides for the bundled libraries. (rhbz#1096912)
5fc56f6
222c069
* Tue Aug 29 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-12
222c069
- Switch macros to bcond's and make Python 2 optional to facilitate building
222c069
  the Python 2 and Python 3 modules
222c069
e27aaa2
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-11
e27aaa2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
e27aaa2
db23604
* Tue May 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-10
db23604
- Modernized package descriptions
db23604
Resolves: rhbz#1452568
db23604
d6fcf17
* Tue Mar 21 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-9
d6fcf17
- Fix typo in the sudo pip warning
d6fcf17
5a8e99c
* Fri Mar 03 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-8
5a8e99c
- Patch 1 update: No sudo pip warning in venv or virtualenv
5a8e99c
33d9686
* Thu Feb 23 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-7
33d9686
- Patch 1 update: Customize the warning with the proper version of the pip
33d9686
  command
33d9686
3d0a786
* Tue Feb 14 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-6
3d0a786
- Added patch 1: Emit a warning when running with root privileges
3d0a786
71bf5a7
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 9.0.1-5
71bf5a7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
71bf5a7
de16c87
* Mon Jan 02 2017 Tomas Orsava <torsava@redhat.com> - 9.0.1-4
de16c87
- Provide symlinks to executables to comply with Fedora guidelines for Python
de16c87
Resolves: rhbz#1406922
de16c87
c4e2448
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-3
c4e2448
- Rebuild for Python 3.6 with wheel
c4e2448
ce7b625
* Fri Dec 09 2016 Charalampos Stratakis <cstratak@redhat.com> - 9.0.1-2
ce7b625
- Rebuild for Python 3.6 without wheel
ce7b625
Orion Poplawski cdcedea
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 9.0.1-1
Orion Poplawski cdcedea
- Update to 9.0.1
Orion Poplawski cdcedea
Orion Poplawski 6190fb2
* Fri Nov 18 2016 Orion Poplawski <orion@cora.nwra.com> - 8.1.2-5
Orion Poplawski 6190fb2
- Enable EPEL Python 3 builds
Orion Poplawski 6190fb2
- Use new python macros
Orion Poplawski 6190fb2
- Cleanup spec
Orion Poplawski 6190fb2
627cdf9
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-4
627cdf9
- Updated the test sources
627cdf9
47ea835
* Fri Aug 05 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-3
47ea835
- Moved python-pip into the python2-pip subpackage
47ea835
- Added the python_provide macro
47ea835
4841a13
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 8.1.2-2
4841a13
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
4841a13
7df5bbe
* Tue May 17 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-1
7df5bbe
- Update to 8.1.2
7df5bbe
- Moved to a new PyPI URL format
7df5bbe
- Updated the prefix-stripping patch because of upstream changes in pip/wheel.py
7df5bbe
686a4e2
* Mon Feb 22 2016 Slavek Kabrda <bkabrda@redhat.com> - 8.0.2-1
686a4e2
- Update to 8.0.2
686a4e2
6ab95f6
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 7.1.0-4
6ab95f6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
6ab95f6
Robert Kuska d688f38
* Wed Oct 14 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-3
Robert Kuska d688f38
- Rebuilt for Python3.5 rebuild
Robert Kuska d688f38
- With wheel set to 1
Robert Kuska d688f38
Robert Kuska 459949c
* Tue Oct 13 2015 Robert Kuska <rkuska@redhat.com> - 7.1.0-2
Robert Kuska 459949c
- Rebuilt for Python3.5 rebuild
Robert Kuska 459949c
b664d72
* Wed Jul 01 2015 Slavek Kabrda <bkabrda@redhat.com> - 7.1.0-1
b664d72
- Update to 7.1.0
b664d72
25a2de7
* Tue Jun 30 2015 Ville Skyttä <ville.skytta@iki.fi> - 7.0.3-3
25a2de7
- Install bash completion
25a2de7
- Ship LICENSE.txt as %%license where available
25a2de7
fdbeb48
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 7.0.3-2
fdbeb48
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
fdbeb48
Matej Stuchlik 319306c
* Thu Jun 04 2015 Matej Stuchlik <mstuchli@redhat.com> - 7.0.3-1
Matej Stuchlik 319306c
- Update to 7.0.3
Matej Stuchlik 319306c
Matej Stuchlik f50907e
* Fri Mar 06 2015 Matej Stuchlik <mstuchli@redhat.com> - 6.0.8-1
Matej Stuchlik f50907e
- Update to 6.0.8
Matej Stuchlik f50907e
4669cc9
* Thu Dec 18 2014 Slavek Kabrda <bkabrda@redhat.com> - 1.5.6-5
4669cc9
- Only enable tests on Fedora.
4669cc9
Matej Stuchlik 9297164
* Mon Dec 01 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-4
Matej Stuchlik 9297164
- Add tests
Matej Stuchlik 9297164
- Add patch skipping tests requiring Internet access
Matej Stuchlik 9297164
Matej Stuchlik a7c7b12
* Tue Nov 18 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-3
Matej Stuchlik a7c7b12
- Added patch for local dos with predictable temp dictionary names
Matej Stuchlik a7c7b12
  (http://seclists.org/oss-sec/2014/q4/655)
Matej Stuchlik a7c7b12
e24e478
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5.6-2
e24e478
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
e24e478
Matej Stuchlik 56b65b2
* Sun May 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.6-1
Matej Stuchlik 56b65b2
- Update to 1.5.6
Matej Stuchlik 56b65b2
Matej Stuchlik 3e34703
* Fri Apr 25 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-4
Matej Stuchlik 3e34703
- Rebuild as wheel for Python 3.4
Matej Stuchlik 3e34703
Matej Stuchlik 5d7f894
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-3
Matej Stuchlik 5d7f894
- Disable build_wheel
Matej Stuchlik 5d7f894
Matej Stuchlik a48e4cb
* Thu Apr 24 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-2
Matej Stuchlik a48e4cb
- Rebuild as wheel for Python 3.4
Matej Stuchlik a48e4cb
Matej Stuchlik dd9e7dc
* Mon Apr 07 2014 Matej Stuchlik <mstuchli@redhat.com> - 1.5.4-1
Matej Stuchlik dd9e7dc
- Updated to 1.5.4
Matej Stuchlik dd9e7dc
42d5421
* Mon Oct 14 2013 Tim Flink <tflink@fedoraproject.org> - 1.4.1-1
42d5421
- Removed patch for CVE 2013-2099 as it has been included in the upstream 1.4.1 release
42d5421
- Updated version to 1.4.1
42d5421
6064dd1
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.1-5
6064dd1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
6064dd1
08349fb
* Tue Jul 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 1.3.1-4
08349fb
- Fix for CVE 2013-2099
08349fb
f5a26f9
* Thu May 23 2013 Tim Flink <tflink@fedoraproject.org> - 1.3.1-3
f5a26f9
- undo python2 executable rename to python-pip. fixes #958377
f5a26f9
- fix summary to match upstream
f5a26f9
Kevin Kofler 9a8af72
* Mon May 06 2013 Kevin Kofler <Kevin@tigcc.ticalc.org> - 1.3.1-2
Kevin Kofler 9a8af72
- Fix main package Summary, it's for Python 2, not 3 (#877401)
Kevin Kofler 9a8af72
53e39cd
* Fri Apr 26 2013 Jon Ciesla <limburgher@gmail.com> - 1.3.1-1
53e39cd
- Update to 1.3.1, fix for CVE-2013-1888.
53e39cd
2052a45
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.1-3
2052a45
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
2052a45
3a2d5ed
* Tue Oct 09 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-2
3a2d5ed
- Fixing files for python3-pip
3a2d5ed
a74e1e0
* Thu Oct 04 2012 Tim Flink <tflink@fedoraproject.org> - 1.2.1-1
a74e1e0
- Update to upstream 1.2.1
a74e1e0
- Change binary from pip-python to python-pip (RHBZ#855495)
a74e1e0
- Add alias from python-pip to pip-python, to be removed at a later date
13c1fa2
3a898a9
* Tue May 15 2012 Tim Flink <tflink@fedoraproject.org> - 1.1.0-1
3a898a9
- Update to upstream 1.1.0
3a898a9
3c8c959
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-2
3c8c959
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3c8c959
aded0dc
* Sat Oct 22 2011 Tim Flink <tflink@fedoraproject.org> - 1.0.2-1
aded0dc
- update to 1.0.2 and added python3 subpackage
aded0dc
74924e0
* Wed Jun 22 2011 Tim Flink <tflink@fedoraproject.org> - 0.8.3-1
74924e0
- update to 0.8.3 and project home page
74924e0
8709b73
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.2-2
8709b73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
8709b73
Luke Macken 9557dd6
* Mon Dec 20 2010 Luke Macken <lmacken@redhat.com> - 0.8.2-1
Luke Macken 9557dd6
- update to 0.8.2 of pip
Peter Halliday 3155cdf
* Mon Aug 30 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.8-1
Peter Halliday 3155cdf
- update to 0.8 of pip
089f2c5
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.7.2-5
089f2c5
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
089f2c5
Peter Halliday 6b45ab4
* Wed Jul 7 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.2-1
Peter Halliday 6b45ab4
- update to 0.7.2 of pip
Peter Halliday 36e99b1
* Sun May 23 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.7.1-1
Peter Halliday 6b45ab4
- update to 0.7.1 of pip
Peter Halliday 36e99b1
* Fri Jan 1 2010 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1.4
Peter Halliday 97657b9
- fix dependency issue
Matej Stuchlik dd9e7dc
* Fri Dec 18 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-2
34ceb80
- fix spec file
Matej Stuchlik dd9e7dc
* Thu Dec 17 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.6.1-1
Peter Halliday 365f19e
- upgrade to 0.6.1 of pip
Peter Halliday fc2018e
* Mon Aug 31 2009 Peter Halliday <phalliday@excelsiorsystems.net> - 0.4-1
Peter Halliday fc2018e
- Initial package
Peter Halliday 365f19e