2018-08-21 10:10:46 +00:00
|
|
|
diff --git a/lib-python/3/ensurepip/__init__.py b/lib-python/3/ensurepip/__init__.py
|
2022-03-30 09:19:29 +00:00
|
|
|
index e510cc7..8b736b8 100644
|
2018-08-21 10:10:46 +00:00
|
|
|
--- a/lib-python/3/ensurepip/__init__.py
|
|
|
|
+++ b/lib-python/3/ensurepip/__init__.py
|
2022-01-26 23:30:08 +00:00
|
|
|
@@ -1,3 +1,5 @@
|
2018-08-21 10:10:46 +00:00
|
|
|
+import distutils.version
|
|
|
|
+import glob
|
|
|
|
import os
|
|
|
|
import os.path
|
2021-11-11 10:43:54 +00:00
|
|
|
import sys
|
2022-03-30 09:19:29 +00:00
|
|
|
@@ -6,13 +8,28 @@ import tempfile
|
2022-01-26 23:30:08 +00:00
|
|
|
import subprocess
|
|
|
|
from importlib import resources
|
2021-05-20 23:35:55 +00:00
|
|
|
|
2022-01-26 23:30:08 +00:00
|
|
|
-from . import _bundled
|
2021-05-20 23:35:55 +00:00
|
|
|
|
2022-03-30 09:19:29 +00:00
|
|
|
+__all__ = ["version", "bootstrap"]
|
2021-05-20 23:35:55 +00:00
|
|
|
|
2022-01-26 23:30:08 +00:00
|
|
|
+_WHEEL_DIR = "/usr/share/python-wheels/"
|
|
|
|
+
|
2020-02-12 12:30:25 +00:00
|
|
|
+_wheels = {}
|
|
|
|
+
|
2018-08-21 10:10:46 +00:00
|
|
|
+def _get_most_recent_wheel_version(pkg):
|
|
|
|
+ prefix = os.path.join(_WHEEL_DIR, "{}-".format(pkg))
|
2020-02-12 12:30:25 +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-21 10:10:46 +00:00
|
|
|
+
|
|
|
|
+
|
|
|
|
+_SETUPTOOLS_VERSION = _get_most_recent_wheel_version("setuptools")
|
|
|
|
+
|
|
|
|
+_PIP_VERSION = _get_most_recent_wheel_version("pip")
|
2022-03-30 09:19:29 +00:00
|
|
|
|
|
|
|
-__all__ = ["version", "bootstrap"]
|
|
|
|
-_SETUPTOOLS_VERSION = "58.1.0"
|
|
|
|
-_PIP_VERSION = "22.0.4"
|
2019-05-24 08:29:13 +00:00
|
|
|
_PROJECTS = [
|
2021-05-20 23:35:55 +00:00
|
|
|
("setuptools", _SETUPTOOLS_VERSION, "py3"),
|
2022-01-26 23:30:08 +00:00
|
|
|
("pip", _PIP_VERSION, "py3"),
|
2022-03-30 09:19:29 +00:00
|
|
|
@@ -101,13 +118,10 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
2020-02-12 12:30:25 +00:00
|
|
|
# additional paths that need added to sys.path
|
2018-08-21 10:10:46 +00:00
|
|
|
additional_paths = []
|
2021-05-20 23:35:55 +00:00
|
|
|
for project, version, py_tag in _PROJECTS:
|
|
|
|
- wheel_name = "{}-{}-{}-none-any.whl".format(project, version, py_tag)
|
2022-01-26 23:30:08 +00:00
|
|
|
- whl = resources.read_binary(
|
|
|
|
- _bundled,
|
|
|
|
- wheel_name,
|
2018-08-21 10:10:46 +00:00
|
|
|
- )
|
|
|
|
- with open(os.path.join(tmpdir, wheel_name), "wb") as fp:
|
|
|
|
- fp.write(whl)
|
2020-02-12 12:30:25 +00:00
|
|
|
+ wheel_name = _wheels[project][version]
|
2018-08-21 10:10:46 +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())
|
2021-11-11 10:43:54 +00:00
|
|
|
|
2018-08-21 10:10:46 +00:00
|
|
|
additional_paths.append(os.path.join(tmpdir, wheel_name))
|
2021-11-11 10:43:54 +00:00
|
|
|
|