2010-05-28 11:54:03 +02:00
#
2017-04-14 18:46:04 +02:00
# spec file for package python-pip
2010-05-28 11:54:03 +02:00
#
2019-02-12 09:54:28 +01:00
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
2010-05-28 11:54:03 +02:00
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
2013-11-22 14:11:14 +01:00
2018-10-21 20:21:38 +02:00
# Please submit bugfixes or comments via https://bugs.opensuse.org/
2010-05-28 11:54:03 +02:00
#
2015-07-29 14:58:21 +02:00
2015-09-25 14:47:47 +02:00
2018-04-20 18:12:25 +02:00
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
2019-05-15 17:33:36 +02:00
%global flavor @BUILD_FLAVOR@%{nil}
%if "%{flavor}" == "test"
%define psuffix -test
2019-05-11 19:29:32 +02:00
%bcond_without test
2019-05-15 17:33:36 +02:00
%else
%define psuffix %{nil}
%bcond_with test
%endif
Name : python-pip%{psuffix}
Version : 19.1.1+git.1557777841.63878672
2010-12-21 16:41:18 +01:00
Release : 0
2019-02-12 12:29:37 +01:00
Summary : A Python package management system
2010-12-21 16:41:18 +01:00
License : MIT
2017-04-14 18:46:04 +02:00
Group : Development/Languages/Python
2018-04-20 18:12:25 +02:00
URL : http://www.pip-installer.org
2019-05-11 19:29:32 +02:00
Source : pip-%{version} .tar.xz
2019-02-12 09:54:28 +01:00
Patch0 : pip-shipped-requests-cabundle.patch
2019-07-22 10:25:30 +02:00
Patch1 : pytest5.patch
2017-04-14 18:46:04 +02:00
BuildRequires : %{python_module setuptools}
2017-02-24 15:34:50 +01:00
BuildRequires : fdupes
2017-04-14 18:46:04 +02:00
BuildRequires : python-rpm-macros
2018-04-20 18:12:25 +02:00
Requires : ca-certificates
Requires : coreutils
Requires : python-setuptools
Requires : python-xml
Requires(post) : update-alternatives
Requires(postun) : update-alternatives
Recommends: ca-certificates-mozilla
BuildArch : noarch
2017-04-14 18:46:04 +02:00
%if %{with test}
# Test requirements:
2019-05-11 19:29:32 +02:00
BuildRequires : %{python_module PyYAML}
2018-04-20 18:12:25 +02:00
BuildRequires : %{python_module docutils}
2018-04-20 10:09:42 +02:00
BuildRequires : %{python_module freezegun}
2017-04-14 18:46:04 +02:00
BuildRequires : %{python_module mock}
2018-04-20 10:09:42 +02:00
BuildRequires : %{python_module pretend}
2017-04-14 18:46:04 +02:00
BuildRequires : %{python_module pytest}
BuildRequires : %{python_module scripttest >= 1.3}
BuildRequires : %{python_module virtualenv >= 1.10}
2019-05-11 19:29:32 +02:00
BuildRequires : ca-certificates
BuildRequires : git
BuildRequires : subversion
2017-04-14 18:46:04 +02:00
%endif
2017-02-24 15:34:50 +01:00
%python_subpackages
2010-05-19 10:50:14 +02:00
2019-05-11 19:29:32 +02:00
%define upversion %(echo %{version} |cut -d+ -f 1)
2010-05-19 10:50:14 +02:00
%description
2011-09-22 11:07:16 +02:00
Pip is a replacement for easy_install. It uses mostly the same techniques for
2010-05-28 11:54:03 +02:00
finding packages, so packages that were made easy_installable should be
pip-installable as well.
2017-04-14 18:46:04 +02:00
%prep
%setup -q -n pip-%{version}
%patch0 -p1
2019-07-22 10:25:30 +02:00
%patch1 -p1
2019-02-12 09:54:28 +01:00
# remove shebangs verbosely (if only sed would offer a verbose mode...)
2019-03-11 09:30:56 +01:00
for f in $(find src -name \*.py -exec grep -l '^#!%{_bindir}/env' {} \;); do
sed -i 's|^#!%{_bindir}/env .*$||g' $f
2019-02-12 09:54:28 +01:00
done
2018-04-20 10:09:42 +02:00
rm src/pip/_vendor/certifi/cacert.pem
2010-05-19 10:50:14 +02:00
2010-05-28 11:54:03 +02:00
%build
2017-02-24 15:34:50 +01:00
%python_build
2010-05-19 10:50:14 +02:00
%install
2019-05-15 17:33:36 +02:00
%if ! %{with test}
2017-02-24 15:34:50 +01:00
%python_install
2017-04-14 18:46:04 +02:00
%prep are_alternative pip
2018-12-06 14:19:23 +01:00
%python_expand %fdupes %{buildroot} %{$python_sitelib}
2019-05-15 17:33:36 +02:00
%endif
- Update to version 1.5:
* **BACKWARD INCOMPATIBLE** pip no longer supports the --use-mirrors,
-M, and --mirrors flags. The mirroring support has been removed. In
order to use a mirror specify it as the primary index with -i or
--index-url, or as an additional index with --extra-index-url. (Pull #1098, CVE-2013-5123)
* **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by
default nor will it install externally hosted files by default. Users may opt
into installing externally hosted or insecure files or urls using
--allow-external PROJECT and --allow-unverified PROJECT. (Pull #1055)
* **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
Users may opt into respecting them again using --process-dependency-links.
* **DEPRECATION** pip install --no-install and pip install
--no-download are now formally deprecated. See Issue #906 for discussion on
possible alternatives, or lack thereof, in future releases.
* **DEPRECATION** pip zip and pip unzip are now formally deprecated.
* pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)
* pip now generates the appropriate platform-specific console scripts when
installing wheels. (Pull #1251)
* Pip now confirms a wheel is supported when installing directly from a path or
url. (Pull #1315)
* Fixed #1097, --ignore-installed now behaves again as designed, after it was
unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352).
* Fixed a bug where global scripts were being removed when uninstalling --user
installed packages (Pull #1353).
* Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176).
* Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158).
* Fixed #219, error when using --log with a failed install (Pull #1205).
* Fixed #1131, logging was buffered and choppy in Python 3.
* Fixed #70, --timeout was being ignored (Pull #1202).
* Fixed #772, error when setting PIP_EXISTS_ACTION (Pull #1201).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=30
2014-01-07 15:26:40 +01:00
2015-07-29 15:08:31 +02:00
%if %{with test}
- Update to version 1.5:
* **BACKWARD INCOMPATIBLE** pip no longer supports the --use-mirrors,
-M, and --mirrors flags. The mirroring support has been removed. In
order to use a mirror specify it as the primary index with -i or
--index-url, or as an additional index with --extra-index-url. (Pull #1098, CVE-2013-5123)
* **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by
default nor will it install externally hosted files by default. Users may opt
into installing externally hosted or insecure files or urls using
--allow-external PROJECT and --allow-unverified PROJECT. (Pull #1055)
* **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
Users may opt into respecting them again using --process-dependency-links.
* **DEPRECATION** pip install --no-install and pip install
--no-download are now formally deprecated. See Issue #906 for discussion on
possible alternatives, or lack thereof, in future releases.
* **DEPRECATION** pip zip and pip unzip are now formally deprecated.
* pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)
* pip now generates the appropriate platform-specific console scripts when
installing wheels. (Pull #1251)
* Pip now confirms a wheel is supported when installing directly from a path or
url. (Pull #1315)
* Fixed #1097, --ignore-installed now behaves again as designed, after it was
unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352).
* Fixed a bug where global scripts were being removed when uninstalling --user
installed packages (Pull #1353).
* Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176).
* Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158).
* Fixed #219, error when using --log with a failed install (Pull #1205).
* Fixed #1131, logging was buffered and choppy in Python 3.
* Fixed #70, --timeout was being ignored (Pull #1202).
* Fixed #772, error when setting PIP_EXISTS_ACTION (Pull #1201).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=30
2014-01-07 15:26:40 +01:00
%check
2019-05-15 17:33:36 +02:00
export PYTHONPATH=build/lib
2019-05-11 19:29:32 +02:00
%pytest -k 'not (network or test_config_file_venv_option or test_build_env_allow_only_one_install or test_build_env_requirements_check or test_build_env_overlay_prefix_has_priority or test_build_env_isolation)' tests/unit
2015-07-29 15:08:31 +02:00
%endif
2010-05-19 10:50:14 +02:00
- Update to version 1.4:
* **BACKWARD INCOMPATIBLE** pip now only installs stable versions by default,
and offers a new --pre option to also find pre-release and development
versions. (Pull #834)
* **BACKWARD INCOMPATIBLE** Dropped support for Python 2.5. The minimum
supported Python version for pip 1.4 is Python 2.6.
* Added support for installing and building wheel archives.
Thanks Daniel Holth, Marcus Smith, Paul Moore, and Michele Lacchia
(Pull #845)
* Applied security patch to pip's ssl support related to certificate DNS
wildcard matching (http://bugs.python.org/issue17980).
* To satisfy pip's setuptools requirement, pip now recommends setuptools>=0.8,
not distribute. setuptools and distribute are now merged into one project
called 'setuptools'. (Pull #1003)
* pip will now warn when installing a file that is either hosted externally to
the index or cannot be verified with a hash. In the future pip will default
to not installing them and will require the flags --allow-external NAME, and
--allow-insecure NAME respectively. (Pull #985)
* If an already-downloaded or cached file has a bad hash, re-download it rather
than erroring out. (Issue #963).
* pip bundle and support for installing from pybundle files is now
considered deprecated and will be removed in pip v1.5.
* Fixed a number of issues (#413, #709, #634, #602, and #939) related to
cleaning up and not reusing build directories. (Pull #865, #948)
* Added a User Agent so that pip is identifiable in logs. (Pull #901)
* Added ssl and --user support to get-pip.py. Thanks Gabriel de Perthuis.
(Pull #895)
* Fixed the proxy support, which was broken in pip 1.3.x (Pull #840)
* Fixed issue #32 - pip fails when server does not send content-type header.
Thanks Hugo Lopes Tavares and Kelsey Hightower (Pull #872).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=26
2013-07-29 16:47:58 +02:00
%pre
# Since /usr/bin/pip became ghosted to be used with update-alternatives, we have to get rid
- Update to version 1.5:
* **BACKWARD INCOMPATIBLE** pip no longer supports the --use-mirrors,
-M, and --mirrors flags. The mirroring support has been removed. In
order to use a mirror specify it as the primary index with -i or
--index-url, or as an additional index with --extra-index-url. (Pull #1098, CVE-2013-5123)
* **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by
default nor will it install externally hosted files by default. Users may opt
into installing externally hosted or insecure files or urls using
--allow-external PROJECT and --allow-unverified PROJECT. (Pull #1055)
* **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
Users may opt into respecting them again using --process-dependency-links.
* **DEPRECATION** pip install --no-install and pip install
--no-download are now formally deprecated. See Issue #906 for discussion on
possible alternatives, or lack thereof, in future releases.
* **DEPRECATION** pip zip and pip unzip are now formally deprecated.
* pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)
* pip now generates the appropriate platform-specific console scripts when
installing wheels. (Pull #1251)
* Pip now confirms a wheel is supported when installing directly from a path or
url. (Pull #1315)
* Fixed #1097, --ignore-installed now behaves again as designed, after it was
unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352).
* Fixed a bug where global scripts were being removed when uninstalling --user
installed packages (Pull #1353).
* Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176).
* Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158).
* Fixed #219, error when using --log with a failed install (Pull #1205).
* Fixed #1131, logging was buffered and choppy in Python 3.
* Fixed #70, --timeout was being ignored (Pull #1202).
* Fixed #772, error when setting PIP_EXISTS_ACTION (Pull #1201).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=30
2014-01-07 15:26:40 +01:00
# of the old binary resulting from the non-update-alternatives-ified package:
2014-11-14 16:31:02 +01:00
[ -h %{_bindir} /pip ] || rm -f %{_bindir} /pip
- Update to version 1.4:
* **BACKWARD INCOMPATIBLE** pip now only installs stable versions by default,
and offers a new --pre option to also find pre-release and development
versions. (Pull #834)
* **BACKWARD INCOMPATIBLE** Dropped support for Python 2.5. The minimum
supported Python version for pip 1.4 is Python 2.6.
* Added support for installing and building wheel archives.
Thanks Daniel Holth, Marcus Smith, Paul Moore, and Michele Lacchia
(Pull #845)
* Applied security patch to pip's ssl support related to certificate DNS
wildcard matching (http://bugs.python.org/issue17980).
* To satisfy pip's setuptools requirement, pip now recommends setuptools>=0.8,
not distribute. setuptools and distribute are now merged into one project
called 'setuptools'. (Pull #1003)
* pip will now warn when installing a file that is either hosted externally to
the index or cannot be verified with a hash. In the future pip will default
to not installing them and will require the flags --allow-external NAME, and
--allow-insecure NAME respectively. (Pull #985)
* If an already-downloaded or cached file has a bad hash, re-download it rather
than erroring out. (Issue #963).
* pip bundle and support for installing from pybundle files is now
considered deprecated and will be removed in pip v1.5.
* Fixed a number of issues (#413, #709, #634, #602, and #939) related to
cleaning up and not reusing build directories. (Pull #865, #948)
* Added a User Agent so that pip is identifiable in logs. (Pull #901)
* Added ssl and --user support to get-pip.py. Thanks Gabriel de Perthuis.
(Pull #895)
* Fixed the proxy support, which was broken in pip 1.3.x (Pull #840)
* Fixed issue #32 - pip fails when server does not send content-type header.
Thanks Hugo Lopes Tavares and Kelsey Hightower (Pull #872).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=26
2013-07-29 16:47:58 +02:00
%post
2017-04-14 18:46:04 +02:00
# can't use `python_install_alternative` because it's pipX.Y, not pip-X.Y
PRIO=$(echo %{python_version} | tr -d .)
%install _alternative pip %{_bindir}/pip%{python_version} $PRIO
- Update to version 1.4:
* **BACKWARD INCOMPATIBLE** pip now only installs stable versions by default,
and offers a new --pre option to also find pre-release and development
versions. (Pull #834)
* **BACKWARD INCOMPATIBLE** Dropped support for Python 2.5. The minimum
supported Python version for pip 1.4 is Python 2.6.
* Added support for installing and building wheel archives.
Thanks Daniel Holth, Marcus Smith, Paul Moore, and Michele Lacchia
(Pull #845)
* Applied security patch to pip's ssl support related to certificate DNS
wildcard matching (http://bugs.python.org/issue17980).
* To satisfy pip's setuptools requirement, pip now recommends setuptools>=0.8,
not distribute. setuptools and distribute are now merged into one project
called 'setuptools'. (Pull #1003)
* pip will now warn when installing a file that is either hosted externally to
the index or cannot be verified with a hash. In the future pip will default
to not installing them and will require the flags --allow-external NAME, and
--allow-insecure NAME respectively. (Pull #985)
* If an already-downloaded or cached file has a bad hash, re-download it rather
than erroring out. (Issue #963).
* pip bundle and support for installing from pybundle files is now
considered deprecated and will be removed in pip v1.5.
* Fixed a number of issues (#413, #709, #634, #602, and #939) related to
cleaning up and not reusing build directories. (Pull #865, #948)
* Added a User Agent so that pip is identifiable in logs. (Pull #901)
* Added ssl and --user support to get-pip.py. Thanks Gabriel de Perthuis.
(Pull #895)
* Fixed the proxy support, which was broken in pip 1.3.x (Pull #840)
* Fixed issue #32 - pip fails when server does not send content-type header.
Thanks Hugo Lopes Tavares and Kelsey Hightower (Pull #872).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=26
2013-07-29 16:47:58 +02:00
2017-04-19 18:04:53 +02:00
%postun
2017-04-14 18:46:04 +02:00
%uninstall_alternative pip %{_bindir} /pip%{python_version}
- Update to version 1.4:
* **BACKWARD INCOMPATIBLE** pip now only installs stable versions by default,
and offers a new --pre option to also find pre-release and development
versions. (Pull #834)
* **BACKWARD INCOMPATIBLE** Dropped support for Python 2.5. The minimum
supported Python version for pip 1.4 is Python 2.6.
* Added support for installing and building wheel archives.
Thanks Daniel Holth, Marcus Smith, Paul Moore, and Michele Lacchia
(Pull #845)
* Applied security patch to pip's ssl support related to certificate DNS
wildcard matching (http://bugs.python.org/issue17980).
* To satisfy pip's setuptools requirement, pip now recommends setuptools>=0.8,
not distribute. setuptools and distribute are now merged into one project
called 'setuptools'. (Pull #1003)
* pip will now warn when installing a file that is either hosted externally to
the index or cannot be verified with a hash. In the future pip will default
to not installing them and will require the flags --allow-external NAME, and
--allow-insecure NAME respectively. (Pull #985)
* If an already-downloaded or cached file has a bad hash, re-download it rather
than erroring out. (Issue #963).
* pip bundle and support for installing from pybundle files is now
considered deprecated and will be removed in pip v1.5.
* Fixed a number of issues (#413, #709, #634, #602, and #939) related to
cleaning up and not reusing build directories. (Pull #865, #948)
* Added a User Agent so that pip is identifiable in logs. (Pull #901)
* Added ssl and --user support to get-pip.py. Thanks Gabriel de Perthuis.
(Pull #895)
* Fixed the proxy support, which was broken in pip 1.3.x (Pull #840)
* Fixed issue #32 - pip fails when server does not send content-type header.
Thanks Hugo Lopes Tavares and Kelsey Hightower (Pull #872).
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pip?expand=0&rev=26
2013-07-29 16:47:58 +02:00
2019-05-15 17:33:36 +02:00
%if ! %{with test}
2017-02-24 15:34:50 +01:00
%files %{python_files}
2018-04-20 18:12:25 +02:00
%license LICENSE.txt
%doc AUTHORS.txt NEWS.rst README.rst
2019-05-15 17:33:36 +02:00
%python3_only %{_bindir} /pip
%{_bindir} /pip%{python_version}
2017-04-14 18:46:04 +02:00
%python2_only %{_bindir} /pip2
%python3_only %{_bindir} /pip3
%ghost %{_sysconfdir} /alternatives/pip
2019-05-11 19:29:32 +02:00
%{python_sitelib} /pip-%{upversion} -py%{python_version} .egg-info
2017-02-24 15:34:50 +01:00
%{python_sitelib} /pip
2019-05-15 17:33:36 +02:00
%endif
2010-05-19 10:50:14 +02:00
%changelog