Blame SPECS/python2-pip.spec

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