Rebased to a new upstream version 8.1.2

Updated the prefix-stripping patch due to upstream changes in pip/wheel.py
This commit is contained in:
Tomas Orsava 2016-05-17 16:57:08 +02:00
parent 4734344324
commit 7df5bbee66
4 changed files with 47 additions and 25 deletions

1
.gitignore vendored
View File

@ -14,3 +14,4 @@ pip-0.7.2.tar.gz
/pip-7.1.0.tar.gz /pip-7.1.0.tar.gz
/pip-7.1.0-tests.tar.gz /pip-7.1.0-tests.tar.gz
/pip-8.0.2.tar.gz /pip-8.0.2.tar.gz
/pip-8.1.2.tar.gz

View File

@ -1,14 +1,24 @@
commit aefacbb76661520415a1c35028f2984e70cfe0bf From 7b3991c99cd8bb9358e109901d4aa8f51269a87a Mon Sep 17 00:00:00 2001
Author: Slavek Kabrda <bkabrda@redhat.com> From: Tomas Orsava <tomas.n@orsava.cz>
Date: Fri Nov 29 13:24:58 2013 +0100 Date: Tue, 17 May 2016 16:40:37 +0200
Subject: [PATCH] Allow stripping given prefix from wheel RECORD files
Allow stripping given prefix from wheel RECORD files Update of a previous patch [0] by Slavek Kabrda <bkabrda@redhat.com>.
Changes in the pip/wheel.py file in upstream prevented #2 hunk from being
applied cleanly.
[0] pip-1.5rc1-allow-stripping-prefix-from-wheel-RECORD-files.patch
---
pip/commands/install.py | 9 +++++++++
pip/req/req_install.py | 13 +++++++++----
pip/wheel.py | 8 ++++++--
3 files changed, 24 insertions(+), 6 deletions(-)
diff --git a/pip/commands/install.py b/pip/commands/install.py diff --git a/pip/commands/install.py b/pip/commands/install.py
index 1693d01..0287c06 100644 index 7ddde93..e31bd3e 100644
--- a/pip/commands/install.py --- a/pip/commands/install.py
+++ b/pip/commands/install.py +++ b/pip/commands/install.py
@@ -137,6 +137,14 @@ class InstallCommand(Command): @@ -137,6 +137,14 @@ class InstallCommand(RequirementCommand):
"directory.") "directory.")
cmd_opts.add_option( cmd_opts.add_option(
@ -23,7 +33,7 @@ index 1693d01..0287c06 100644
'--prefix', '--prefix',
dest='prefix_path', dest='prefix_path',
metavar='dir', metavar='dir',
@@ -345,6 +353,7 @@ class InstallCommand(Command): @@ -315,6 +323,7 @@ class InstallCommand(RequirementCommand):
global_options, global_options,
root=options.root_path, root=options.root_path,
prefix=options.prefix_path, prefix=options.prefix_path,
@ -31,12 +41,11 @@ index 1693d01..0287c06 100644
) )
reqs = sorted( reqs = sorted(
requirement_set.successfully_installed, requirement_set.successfully_installed,
diff --git a/pip/req/req_install.py b/pip/req/req_install.py diff --git a/pip/req/req_install.py b/pip/req/req_install.py
index 3ae306d..c171130 100644 index 9e9fbbb..47f263f 100644
--- a/pip/req/req_install.py --- a/pip/req/req_install.py
+++ b/pip/req/req_install.py +++ b/pip/req/req_install.py
@@ -615,17 +615,21 @@ exec(compile(open(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec')) @@ -818,8 +818,7 @@ class InstallRequirement(object):
else: else:
return True return True
@ -46,8 +55,7 @@ index 3ae306d..c171130 100644
if self.editable: if self.editable:
self.install_editable( self.install_editable(
install_options, global_options, prefix=prefix) install_options, global_options, prefix=prefix)
return @@ -828,7 +827,12 @@ class InstallRequirement(object):
if self.is_wheel:
version = pip.wheel.wheel_version(self.source_dir) version = pip.wheel.wheel_version(self.source_dir)
pip.wheel.check_compatibility(version, self.name) pip.wheel.check_compatibility(version, self.name)
@ -61,7 +69,7 @@ index 3ae306d..c171130 100644
self.install_succeeded = True self.install_succeeded = True
return return
@@ -844,15 +848,16 @@ exec(compile(open(__file__).read().replace('\\r\\n', '\\n'), __file__, 'exec')) @@ -1021,7 +1025,7 @@ class InstallRequirement(object):
def is_wheel(self): def is_wheel(self):
return self.link and self.link.is_wheel return self.link and self.link.is_wheel
@ -70,8 +78,7 @@ index 3ae306d..c171130 100644
move_wheel_files( move_wheel_files(
self.name, self.req, wheeldir, self.name, self.req, wheeldir,
user=self.use_user_site, user=self.use_user_site,
home=self.target_dir, @@ -1030,6 +1034,7 @@ class InstallRequirement(object):
root=root,
prefix=prefix, prefix=prefix,
pycompile=self.pycompile, pycompile=self.pycompile,
isolated=self.isolated, isolated=self.isolated,
@ -80,10 +87,10 @@ index 3ae306d..c171130 100644
def get_dist(self): def get_dist(self):
diff --git a/pip/wheel.py b/pip/wheel.py diff --git a/pip/wheel.py b/pip/wheel.py
index fa3e270..3a366d0 100644 index b257d76..6d78ce6 100644
--- a/pip/wheel.py --- a/pip/wheel.py
+++ b/pip/wheel.py +++ b/pip/wheel.py
@@ -136,7 +136,7 @@ def get_entrypoints(filename): @@ -238,7 +238,7 @@ def get_entrypoints(filename):
def move_wheel_files(name, req, wheeldir, user=False, home=None, root=None, def move_wheel_files(name, req, wheeldir, user=False, home=None, root=None,
@ -92,12 +99,19 @@ index fa3e270..3a366d0 100644
"""Install a wheel""" """Install a wheel"""
if not scheme: if not scheme:
@@ -357,6 +357,8 @@ if __name__ == '__main__': @@ -522,7 +522,11 @@ if __name__ == '__main__':
writer.writerow(row) writer.writerow(row)
for f in generated: for f in generated:
h, l = rehash(f) h, l = rehash(f)
+ if strip_file_prefix and f.startswith(strip_file_prefix): - writer.writerow((normpath(f, lib_dir), h, l))
+ f = os.path.join(os.sep, os.path.relpath(f, strip_file_prefix)) + final_path = normpath(f, lib_dir)
writer.writerow((f, h, l)) + if strip_file_prefix and final_path.startswith(strip_file_prefix):
+ final_path = os.path.join(os.sep,
+ os.path.relpath(final_path, strip_file_prefix))
+ writer.writerow((final_path, h, l))
for f in installed: for f in installed:
writer.writerow((installed[f], '', '')) writer.writerow((installed[f], '', ''))
shutil.move(temp_record, record)
--
2.5.5

View File

@ -21,14 +21,14 @@
%endif %endif
Name: python-%{srcname} Name: python-%{srcname}
Version: 8.0.2 Version: 8.1.2
Release: 1%{?dist} Release: 1%{?dist}
Summary: A tool for installing and managing Python packages Summary: A tool for installing and managing Python packages
Group: Development/Libraries Group: Development/Libraries
License: MIT License: MIT
URL: http://www.pip-installer.org URL: http://www.pip-installer.org
Source0: http://pypi.python.org/packages/source/p/pip/%{srcname}-%{version}.tar.gz Source0: https://files.pythonhosted.org/packages/source/p/%{srcname}/%{srcname}-%{version}.tar.gz
# to get tests: # to get tests:
# git clone https://github.com/pypa/pip && cd pip # git clone https://github.com/pypa/pip && cd pip
@ -37,7 +37,9 @@ Source0: http://pypi.python.org/packages/source/p/pip/%{srcname}-%{versio
Source1: pip-8.0.2-tests.tar.gz Source1: pip-8.0.2-tests.tar.gz
%endif %endif
Patch0: pip-1.5rc1-allow-stripping-prefix-from-wheel-RECORD-files.patch # Patch until the following issue gets implemented upstream:
# https://github.com/pypa/pip/issues/1351
Patch0: allow-stripping-given-prefix-from-wheel-RECORD-files.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@ -235,6 +237,11 @@ popd
%endif # with_python3 %endif # with_python3
%changelog %changelog
* Tue May 17 2016 Tomas Orsava <torsava@redhat.com> - 8.1.2-1
- Update to 8.1.2
- Moved to a new PyPI URL format
- Updated the prefix-stripping patch because of upstream changes in pip/wheel.py
* Mon Feb 22 2016 Slavek Kabrda <bkabrda@redhat.com> - 8.0.2-1 * Mon Feb 22 2016 Slavek Kabrda <bkabrda@redhat.com> - 8.0.2-1
- Update to 8.0.2 - Update to 8.0.2

View File

@ -1 +1 @@
3a73c4188f8dbad6a1e6f6d44d117eeb pip-8.0.2.tar.gz 87083c0b9867963b29f7aba3613e8f4a pip-8.1.2.tar.gz