2020-07-20 19:52:13 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-05-07 15:13:12 +00:00
|
|
|
From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>
|
|
|
|
Date: Wed, 15 Aug 2018 15:36:29 +0200
|
2019-07-29 22:48:16 +00:00
|
|
|
Subject: [PATCH] 00189: Instead of bundled wheels, use our RPM packaged wheels
|
2019-05-07 15:13:12 +00:00
|
|
|
|
|
|
|
We keep them in /usr/share/python-wheels
|
2020-07-20 19:52:13 +00:00
|
|
|
|
|
|
|
Downstream only: upstream bundles
|
|
|
|
We might eventually pursuit upstream support, but it's low prio
|
2019-05-07 15:13:12 +00:00
|
|
|
---
|
2020-02-27 12:12:49 +00:00
|
|
|
Lib/ensurepip/__init__.py | 33 ++++++++++++++++++++++-----------
|
|
|
|
1 file changed, 22 insertions(+), 11 deletions(-)
|
2019-05-07 15:13:12 +00:00
|
|
|
|
2018-08-15 13:36:29 +00:00
|
|
|
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
|
2020-10-09 10:25:22 +00:00
|
|
|
index cb2882e336..984e587ea0 100644
|
2018-08-15 13:36:29 +00:00
|
|
|
--- a/Lib/ensurepip/__init__.py
|
|
|
|
+++ b/Lib/ensurepip/__init__.py
|
2020-03-24 17:56:52 +00:00
|
|
|
@@ -1,3 +1,5 @@
|
2018-08-15 13:36:29 +00:00
|
|
|
+import distutils.version
|
|
|
|
+import glob
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
2020-12-08 08:44:22 +00:00
|
|
|
@@ -6,16 +8,28 @@ import tempfile
|
2020-10-06 06:21:43 +00:00
|
|
|
import subprocess
|
2019-11-26 00:08:45 +00:00
|
|
|
from importlib import resources
|
2018-08-15 13:36:29 +00:00
|
|
|
|
2019-11-26 00:08:45 +00:00
|
|
|
-from . import _bundled
|
|
|
|
-
|
2018-08-15 13:36:29 +00:00
|
|
|
|
|
|
|
|
2019-11-26 00:08:45 +00:00
|
|
|
__all__ = ["version", "bootstrap"]
|
2018-08-15 13:36:29 +00:00
|
|
|
|
2019-11-26 00:08:45 +00:00
|
|
|
+_WHEEL_DIR = "/usr/share/python-wheels/"
|
2020-07-20 19:52:13 +00:00
|
|
|
|
2020-10-09 10:25:22 +00:00
|
|
|
-_SETUPTOOLS_VERSION = "47.1.0"
|
2020-02-11 21:28:39 +00:00
|
|
|
+_wheels = {}
|
2020-07-20 19:52:13 +00:00
|
|
|
|
2020-10-06 06:21:43 +00:00
|
|
|
-_PIP_VERSION = "20.2.3"
|
2018-08-15 13:36:29 +00:00
|
|
|
+def _get_most_recent_wheel_version(pkg):
|
|
|
|
+ prefix = os.path.join(_WHEEL_DIR, "{}-".format(pkg))
|
2020-02-11 21:28:39 +00:00
|
|
|
+ _wheels[pkg] = {}
|
|
|
|
+ for suffix in "-py2.py3-none-any.whl", "-py3-none-any.whl":
|
|
|
|
+ pattern = "{}*{}".format(prefix, suffix)
|
|
|
|
+ for path in glob.glob(pattern):
|
|
|
|
+ version_str = path[len(prefix):-len(suffix)]
|
|
|
|
+ _wheels[pkg][version_str] = os.path.basename(path)
|
|
|
|
+ return str(max(_wheels[pkg], key=distutils.version.LooseVersion))
|
2018-08-15 13:36:29 +00:00
|
|
|
+
|
2020-07-20 19:52:13 +00:00
|
|
|
+
|
2018-08-15 13:36:29 +00:00
|
|
|
+_SETUPTOOLS_VERSION = _get_most_recent_wheel_version("setuptools")
|
2020-07-20 19:52:13 +00:00
|
|
|
+
|
2018-08-15 13:36:29 +00:00
|
|
|
+_PIP_VERSION = _get_most_recent_wheel_version("pip")
|
|
|
|
|
|
|
|
_PROJECTS = [
|
2020-07-04 20:02:37 +00:00
|
|
|
("setuptools", _SETUPTOOLS_VERSION, "py3"),
|
2020-10-06 06:21:43 +00:00
|
|
|
@@ -105,13 +119,10 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
2020-02-11 21:28:39 +00:00
|
|
|
# additional paths that need added to sys.path
|
2018-08-15 13:36:29 +00:00
|
|
|
additional_paths = []
|
2020-07-04 20:02:37 +00:00
|
|
|
for project, version, py_tag in _PROJECTS:
|
|
|
|
- wheel_name = "{}-{}-{}-none-any.whl".format(project, version, py_tag)
|
2019-11-20 09:35:05 +00:00
|
|
|
- whl = resources.read_binary(
|
|
|
|
- _bundled,
|
|
|
|
- wheel_name,
|
2018-08-15 13:36:29 +00:00
|
|
|
- )
|
|
|
|
- with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
|
|
|
- fp.write(whl)
|
2020-02-11 21:28:39 +00:00
|
|
|
+ wheel_name = _wheels[project][version]
|
2018-08-15 13:36:29 +00:00
|
|
|
+ with open(os.path.join(_WHEEL_DIR, wheel_name), "rb") as sfp:
|
|
|
|
+ with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
|
|
|
+ fp.write(sfp.read())
|
|
|
|
|
|
|
|
additional_paths.append(os.path.join(tmpdir, wheel_name))
|
|
|
|
|