a096270
%bcond_with bootstrap
a096270
%bcond_with tests
a096270
222c069
%bcond_without python2
a096270
%bcond_without python3
2611854
%if %{without python3}
2611854
%bcond_with doc
2611854
%else
2611854
%bcond_without doc
2611854
%endif
Peter Halliday fc2018e
Peter Halliday fc2018e
%global srcname pip
222c069
%global python_wheelname %{srcname}-%{version}-py2.py3-none-any.whl
a096270
%if %{without bootstrap}
222c069
%if %{with python2}
222c069
%global python2_wheelname %python_wheelname
222c069
%endif
a096270
%if %{with python3}
222c069
%global python3_wheelname %python_wheelname
Matej Stuchlik dd9e7dc
%endif
Matej Stuchlik dd9e7dc
%endif
Peter Halliday fc2018e
2a78863
# Note that with disabled python3, bashcomp2 will be disabled as well because
2a78863
# bashcompdir will point to a different path than with python3 enabled.
25a2de7
%global bashcompdir %(b=$(pkg-config --variable=completionsdir bash-completion 2>/dev/null); echo ${b:-%{_sysconfdir}/bash_completion.d})
25a2de7
%if "%{bashcompdir}" != "%{_sysconfdir}/bash_completion.d"
25a2de7
%global bashcomp2 1
25a2de7
%endif
25a2de7
Peter Halliday fc2018e
Name:           python-%{srcname}
5fc56f6
# When updating, update the bundled libraries versions bellow!
3989bcb
Version:        9.0.3
d02d7aa
Release:        2%{?dist}
f5a26f9
Summary:        A tool for installing and managing Python packages
Peter Halliday fc2018e
Peter Halliday fc2018e
Group:          Development/Libraries
Peter Halliday fc2018e
License:        MIT
74924e0
URL:            http://www.pip-installer.org
7df5bbe
Source0:        https://files.pythonhosted.org/packages/source/p/%{srcname}/%{srcname}-%{version}.tar.gz
Matej Stuchlik a7c7b12
47ea835
BuildArch:      noarch
47ea835
d7cbed0
%if %{with tests}
222c069
BuildRequires:  git
222c069
BuildRequires:  bzr
d7cbed0
%endif
222c069
Matej Stuchlik 9297164
# to get tests:
686a4e2
# git clone https://github.com/pypa/pip && cd pip
Orion Poplawski 3d2b99c
# git checkout 9.0.1 && tar -czvf ../pip-9.0.1-tests.tar.gz tests/
a096270
%if %{with tests}
Orion Poplawski 3d2b99c
Source1:        pip-9.0.1-tests.tar.gz
Matej Stuchlik f50907e
%endif
Matej Stuchlik 9297164
7df5bbe
# Patch until the following issue gets implemented upstream:
7df5bbe
# https://github.com/pypa/pip/issues/1351
7df5bbe
Patch0:         allow-stripping-given-prefix-from-wheel-RECORD-files.patch
Matej Stuchlik a7c7b12
3d0a786
# Downstream only patch
3d0a786
# Emit a warning to the user if pip install is run with root privileges
3d0a786
# Issue upstream: https://github.com/pypa/pip/issues/4288
3d0a786
Patch1:         emit-a-warning-when-running-with-root-privileges.patch
3d0a786
d02d7aa
# Downstream only patch
d02d7aa
# Users are upgrading pip9 to pip10 by various manners,
d02d7aa
# one of them is `pip install --user --upgrade pip`.
d02d7aa
# If they do that and they run `pip` or  `pip3`, the one from /usr/bin is used.
d02d7aa
# However that's the one from this RPM package (pip9) and the import in there
d02d7aa
# fails (it tries to import from ~/.local, but pip10 is there with a bit
d02d7aa
# different API).
d02d7aa
# We add this patch as a dirty workaround to make /usr/bin/pip* work with
d02d7aa
# both pip9 (from this RPM) and pip10 (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
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
d02d7aa
Source10:        pip9-allow-pip10-import.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
222c069
%if %{with python2}
47ea835
%package -n python2-%{srcname}
47ea835
Summary:        A tool for installing and managing Python 2 packages
47ea835
Group:          Development/Libraries
Orion Poplawski 6190fb2
BuildRequires:  python2-devel
5fc56f6
BuildRequires:  python2-setuptools
a096270
%if %{with tests}
5fc56f6
BuildRequires:  python2-mock
5fc56f6
BuildRequires:  python2-pytest
5fc56f6
BuildRequires:  python2-pretend
5fc56f6
BuildRequires:  python2-freezegun
5fc56f6
BuildRequires:  python2-pytest-capturelog
5fc56f6
BuildRequires:  python2-scripttest
5fc56f6
BuildRequires:  python2-virtualenv
4669cc9
%endif
a096270
%if %{without bootstrap}
Orion Poplawski 6190fb2
BuildRequires:  python2-pip
5fc56f6
BuildRequires:  python2-wheel
Matej Stuchlik dd9e7dc
%endif
5fc56f6
Requires:       python2-setuptools
5fc56f6
5fc56f6
# Virtual provides for the packages bundled by pip.
5fc56f6
# You can find the versions in pip/_vendor/vendor.txt file.
5fc56f6
# Don't forget to update this bellow for python3 as well.
5fc56f6
Provides: bundled(python2dist(appdirs)) = 1.4.0
5fc56f6
Provides: bundled(python2dist(cachecontrol)) = 0.11.7
5fc56f6
Provides: bundled(python2dist(colorama)) = 0.3.7
5fc56f6
Provides: bundled(python2dist(distlib)) = 0.2.4
5fc56f6
Provides: bundled(python2dist(distro)) = 1.0.1
5fc56f6
Provides: bundled(python2dist(html5lib)) = 1.0b10
5fc56f6
Provides: bundled(python2dist(ipaddress) = 1.0.17
5fc56f6
Provides: bundled(python2dist(lockfile)) = 0.12.2
5fc56f6
Provides: bundled(python2dist(packaging)) = 16.8
5fc56f6
Provides: bundled(python2dist(setuptools)) = 28.8.0
5fc56f6
Provides: bundled(python2dist(progress)) = 1.2
5fc56f6
Provides: bundled(python2dist(pyparsing)) = 2.1.10
5fc56f6
Provides: bundled(python2dist(requests)) = 2.11.1
5fc56f6
Provides: bundled(python2dist(retrying)) = 1.3.3
5fc56f6
Provides: bundled(python2dist(six)) = 1.10.0
5fc56f6
Provides: bundled(python2dist(webencodings)) = 0.5
5fc56f6
5fc56f6
# Bundled within the requests bundle
5fc56f6
Provides: bundled(python2dist(chardet)) = 2.3.0
5fc56f6
Provides: bundled(python2dist(urllib3)) = 1.16
5fc56f6
47ea835
%{?python_provide:%python_provide python2-%{srcname}}
Peter Halliday fc2018e
47ea835
%description -n python2-%{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".
Peter Halliday fc2018e
222c069
%endif # with python2
222c069
aded0dc
a096270
%if %{with python3}
Orion Poplawski 6190fb2
%package -n python%{python3_pkgversion}-%{srcname}
f5a26f9
Summary:        A tool for installing and managing Python3 packages
aded0dc
Group:          Development/Libraries
aded0dc
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-devel
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-setuptools
25a2de7
BuildRequires:  bash-completion
a096270
%if %{with tests}
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}-pytest-capturelog
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-scripttest
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-virtualenv
Matej Stuchlik f50907e
%endif
a096270
%if %{without bootstrap}
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-pip
Orion Poplawski 6190fb2
BuildRequires:  python%{python3_pkgversion}-wheel
Matej Stuchlik dd9e7dc
%endif
Orion Poplawski 6190fb2
Requires:  python%{python3_pkgversion}-setuptools
5fc56f6
5fc56f6
# Virtual provides for the packages bundled by pip.
5fc56f6
# See the python2 list above for instructions.
5fc56f6
Provides: bundled(python3dist(appdirs)) = 1.4.0
5fc56f6
Provides: bundled(python3dist(cachecontrol)) = 0.11.7
5fc56f6
Provides: bundled(python3dist(colorama)) = 0.3.7
5fc56f6
Provides: bundled(python3dist(distlib)) = 0.2.4
5fc56f6
Provides: bundled(python3dist(distro)) = 1.0.1
5fc56f6
Provides: bundled(python3dist(html5lib)) = 1.0b10
dab9696
Provides: bundled(python3dist(ipaddress) = 1.0.17
5fc56f6
Provides: bundled(python3dist(lockfile)) = 0.12.2
5fc56f6
Provides: bundled(python3dist(packaging)) = 16.8
5fc56f6
Provides: bundled(python3dist(setuptools)) = 28.8.0
5fc56f6
Provides: bundled(python3dist(progress)) = 1.2
5fc56f6
Provides: bundled(python3dist(pyparsing)) = 2.1.10
5fc56f6
Provides: bundled(python3dist(requests)) = 2.11.1
5fc56f6
Provides: bundled(python3dist(retrying)) = 1.3.3
5fc56f6
Provides: bundled(python3dist(six)) = 1.10.0
5fc56f6
Provides: bundled(python3dist(webencodings)) = 0.5
5fc56f6
5fc56f6
# Bundled within the requests bundle
5fc56f6
Provides: bundled(python3dist(chardet)) = 2.3.0
5fc56f6
Provides: bundled(python3dist(urllib3)) = 1.16
5fc56f6
Orion Poplawski 6190fb2
%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
aded0dc
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
2611854
2611854
%description doc
2611854
A documentation for a tool for installing and managing Python packages
2611854
2611854
%endif
2611854
a096270
%endif # with python3
Peter Halliday fc2018e
47ea835
Peter Halliday fc2018e
%prep
2611854
%if %{with doc} && %{without python3}
2611854
echo "This combination (with doc, without python3) is unsupported"
2611854
exit 1
2611854
%endif
2611854
Peter Halliday fc2018e
%setup -q -n %{srcname}-%{version}
a096270
%if %{with tests}
Matej Stuchlik 9297164
tar -xf %{SOURCE1}
Matej Stuchlik f50907e
%endif
08349fb
08349fb
%patch0 -p1
3d0a786
%patch1 -p1
08349fb
Orion Poplawski 6190fb2
sed -i '1d' pip/__init__.py
aded0dc
5fc56f6
# Remove ordereddict as it is only required for python <= 2.6
5fc56f6
rm pip/_vendor/ordereddict.py
5fc56f6
f5a26f9
Peter Halliday fc2018e
%build
222c069
%if %{with python2}
a096270
%if %{without bootstrap}
Orion Poplawski 6190fb2
%py2_build_wheel
Matej Stuchlik dd9e7dc
%else
Orion Poplawski 6190fb2
%py2_build
Matej Stuchlik dd9e7dc
%endif
222c069
%endif # with python2
Peter Halliday fc2018e
a096270
%if %{with python3}
a096270
%if %{without bootstrap}
Orion Poplawski 6190fb2
%py3_build_wheel
Matej Stuchlik dd9e7dc
%else
Orion Poplawski 6190fb2
%py3_build
Matej Stuchlik dd9e7dc
%endif
a096270
%endif # with python3
aded0dc
2611854
%if %{with doc}
2611854
pushd docs
2611854
make html
2611854
make man
2611854
rm _build/html/.buildinfo
2611854
popd
2611854
%endif
2611854
f5a26f9
Peter Halliday fc2018e
%install
a096270
%if %{with python3}
a096270
%if %{without bootstrap}
Orion Poplawski 6190fb2
%py3_install_wheel %{python3_wheelname}
Matej Stuchlik dd9e7dc
%else
Orion Poplawski 6190fb2
%py3_install
Matej Stuchlik dd9e7dc
%endif
aded0dc
a096270
# TODO: we have to remove this by hand now, but it'd be nice if we wouldn't have to
a096270
# (pip install wheel doesn't overwrite)
a096270
rm %{buildroot}%{_bindir}/pip
a096270
%endif # with python3
a096270
2611854
%if %{with doc}
2611854
install -d %{buildroot}%{_mandir}/man1
2611854
%if %{with python2}
2611854
install -pm0644 docs/_build/man/*.1 %{buildroot}%{_mandir}/man1/pip.1
2611854
install -pm0644 docs/_build/man/*.1 %{buildroot}%{_mandir}/man1/pip2.1
2611854
%endif
2611854
%if %{with python3}
2611854
install -pm0644 docs/_build/man/*.1 %{buildroot}%{_mandir}/man1/pip3.1
2611854
%endif
2611854
%endif # with doc
2611854
222c069
%if %{with python2}
a096270
%if %{without bootstrap}
Orion Poplawski 6190fb2
%py2_install_wheel %{python2_wheelname}
Matej Stuchlik dd9e7dc
%else
Orion Poplawski 6190fb2
%py2_install
Matej Stuchlik dd9e7dc
%endif
222c069
%endif # with python2
aded0dc
d02d7aa
# before we ln -s anything, we apply Source10 patch to all pips:
d02d7aa
for PIP in %{buildroot}%{_bindir}/pip*; do
d02d7aa
  patch -p1 $PIP < %{SOURCE10}
d02d7aa
done
d02d7aa
25a2de7
mkdir -p %{buildroot}%{bashcompdir}
222c069
%if %{with python2}
222c069
PYTHONPATH=%{buildroot}%{python2_sitelib} \
25a2de7
    %{buildroot}%{_bindir}/pip completion --bash \
25a2de7
    > %{buildroot}%{bashcompdir}/pip
222c069
%endif
a096270
%if %{with python3}
25a2de7
PYTHONPATH=%{buildroot}%{python3_sitelib} \
25a2de7
    %{buildroot}%{_bindir}/pip3 completion --bash \
25a2de7
    > %{buildroot}%{bashcompdir}/pip3
25a2de7
%endif
25a2de7
pips2=pip
25a2de7
pips3=pip3
25a2de7
for pip in %{buildroot}%{_bindir}/pip*; do
25a2de7
    pip=$(basename $pip)
25a2de7
    case $pip in
222c069
%if %{with python2}
25a2de7
        pip2*)
25a2de7
            pips2="$pips2 $pip"
25a2de7
%if 0%{?bashcomp2}
25a2de7
            ln -s pip %{buildroot}%{bashcompdir}/$pip
25a2de7
%endif
25a2de7
            ;;
222c069
%endif
a096270
%if %{with python3}
25a2de7
        pip3?*)
25a2de7
            pips3="$pips3 $pip"
25a2de7
%if 0%{?bashcomp2}
25a2de7
            ln -s pip3 %{buildroot}%{bashcompdir}/$pip
25a2de7
%endif
25a2de7
            ;;
25a2de7
%endif
25a2de7
    esac
25a2de7
done
a096270
%if %{with python3}
25a2de7
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 $pips3/" \
25a2de7
    -e s/_pip_completion/_pip3_completion/ \
25a2de7
    %{buildroot}%{bashcompdir}/pip3
25a2de7
%endif
222c069
%if %{with python2}
25a2de7
sed -i -e "s/^\\(complete.*\\) pip\$/\\1 $pips2/" \
25a2de7
    %{buildroot}%{bashcompdir}/pip
222c069
%endif
25a2de7
de16c87
# Provide symlinks to executables to comply with Fedora guidelines for Python
222c069
%if %{with python2}
de16c87
ln -s ./pip%{python2_version} %{buildroot}%{_bindir}/pip-%{python2_version}
de16c87
ln -s ./pip-%{python2_version} %{buildroot}%{_bindir}/pip-2
222c069
%endif
222c069
%if %{with python3}
222c069
ln -s ./pip%{python3_version} %{buildroot}%{_bindir}/pip-%{python3_version}
de16c87
ln -s ./pip-%{python3_version} %{buildroot}%{_bindir}/pip-3
222c069
%endif
de16c87
de16c87
a096270
%if %{with tests}
Matej Stuchlik 9297164
%check
222c069
%if %{with python2}
222c069
py.test-%{python2_version} -m 'not network'
222c069
%endif
222c069
%if %{with python3}
627cdf9
py.test-%{python3_version} -m 'not network'
4669cc9
%endif
222c069
%endif
Peter Halliday fc2018e
aded0dc
222c069
%if %{with python2}
47ea835
%files -n python2-%{srcname}
25a2de7
%license LICENSE.txt
2611854
%doc README.rst
2611854
%if %{with doc}
2611854
%{_mandir}/man1/pip.*
2611854
%{_mandir}/man1/pip2.*
2611854
%endif
de16c87
%{_bindir}/pip
de16c87
%{_bindir}/pip2
de16c87
%{_bindir}/pip-2
de16c87
%{_bindir}/pip%{python2_version}
de16c87
%{_bindir}/pip-%{python2_version}
222c069
%{python2_sitelib}/pip*
222c069
%dir %{bashcompdir}
222c069
%{bashcompdir}/pip
25a2de7
%if 0%{?bashcomp2}
2a78863
%{bashcompdir}/pip2*
25a2de7
%dir %(dirname %{bashcompdir})
25a2de7
%endif
222c069
%endif # with python2
Peter Halliday fc2018e
a096270
%if %{with python3}
Orion Poplawski 6190fb2
%files -n python%{python3_pkgversion}-%{srcname}
25a2de7
%license LICENSE.txt
2611854
%doc README.rst
2611854
%if %{with doc}
2611854
%{_mandir}/man1/pip3.*
2611854
%endif
de16c87
%{_bindir}/pip3
de16c87
%{_bindir}/pip-3
de16c87
%{_bindir}/pip%{python3_version}
de16c87
%{_bindir}/pip-%{python3_version}
aded0dc
%{python3_sitelib}/pip*
25a2de7
%dir %{bashcompdir}
25a2de7
%{bashcompdir}/pip3*
25a2de7
%if 0%{?bashcomp2}
25a2de7
%dir %(dirname %{bashcompdir})
25a2de7
%endif
2611854
2611854
%if %{with doc}
2611854
%files doc
2611854
%license LICENSE.txt
2611854
%doc README.rst
2611854
%doc docs/_build/html
2611854
%endif # with doc
a096270
%endif # with python3
aded0dc
Peter Halliday fc2018e
%changelog
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
d02d7aa
Resolves: rhbz#1569488
d02d7aa
Resolves: rhbz#1571650
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
Peter Halliday 365f19e
- 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