2019-11-26 00:08:45 +00:00
|
|
|
From dad501bdd3ee8d8e22f66416998aeb50c0e7983e 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
|
|
|
|
---
|
2019-11-26 00:08:45 +00:00
|
|
|
Lib/ensurepip/__init__.py | 27 +++++++++++++++++----------
|
|
|
|
1 file changed, 17 insertions(+), 10 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
|
2019-11-26 00:08:45 +00:00
|
|
|
index 386ed6c25c..19e7c8787e 100644
|
2018-08-15 13:36:29 +00:00
|
|
|
--- a/Lib/ensurepip/__init__.py
|
|
|
|
+++ b/Lib/ensurepip/__init__.py
|
2019-11-26 00:08:45 +00:00
|
|
|
@@ -1,19 +1,29 @@
|
2018-08-15 13:36:29 +00:00
|
|
|
+import distutils.version
|
|
|
|
+import glob
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
import sys
|
2019-11-26 00:08:45 +00:00
|
|
|
import tempfile
|
|
|
|
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/"
|
|
|
|
+
|
|
|
|
+
|
2018-08-15 13:36:29 +00:00
|
|
|
+def _get_most_recent_wheel_version(pkg):
|
|
|
|
+ prefix = os.path.join(_WHEEL_DIR, "{}-".format(pkg))
|
|
|
|
+ suffix = "-py2.py3-none-any.whl"
|
|
|
|
+ pattern = "{}*{}".format(prefix, suffix)
|
|
|
|
+ versions = (p[len(prefix):-len(suffix)] for p in glob.glob(pattern))
|
|
|
|
+ return str(max(versions, key=distutils.version.LooseVersion))
|
|
|
|
+
|
2019-11-26 00:08:45 +00:00
|
|
|
|
|
|
|
-_SETUPTOOLS_VERSION = "41.2.0"
|
2018-08-15 13:36:29 +00:00
|
|
|
+_SETUPTOOLS_VERSION = _get_most_recent_wheel_version("setuptools")
|
2019-11-26 00:08:45 +00:00
|
|
|
|
|
|
|
-_PIP_VERSION = "19.2.3"
|
2018-08-15 13:36:29 +00:00
|
|
|
+_PIP_VERSION = _get_most_recent_wheel_version("pip")
|
|
|
|
|
|
|
|
_PROJECTS = [
|
|
|
|
("setuptools", _SETUPTOOLS_VERSION),
|
2019-11-26 00:08:45 +00:00
|
|
|
@@ -99,12 +109,9 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
2018-08-15 13:36:29 +00:00
|
|
|
additional_paths = []
|
|
|
|
for project, version in _PROJECTS:
|
|
|
|
wheel_name = "{}-{}-py2.py3-none-any.whl".format(project, version)
|
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)
|
|
|
|
+ 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))
|
|
|
|
|
2019-05-07 15:13:12 +00:00
|
|
|
--
|
2019-11-20 09:35:05 +00:00
|
|
|
2.23.0
|
2019-05-07 15:13:12 +00:00
|
|
|
|