portable-python 1.9.3__tar.gz → 1.9.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {portable_python-1.9.3/src/portable_python.egg-info → portable_python-1.9.5}/PKG-INFO +1 -1
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/cpython.py +2 -1
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/external/xcpython.py +5 -0
- {portable_python-1.9.3 → portable_python-1.9.5/src/portable_python.egg-info}/PKG-INFO +1 -1
- {portable_python-1.9.3 → portable_python-1.9.5}/DEVELOP.md +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/LICENSE +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/MANIFEST.in +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/README.rst +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/SECURITY.md +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/pyproject.toml +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/requirements.txt +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/setup.cfg +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/setup.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/__init__.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/__main__.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/cli.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/config.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/external/__init__.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/external/_inspect.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/external/tkinter.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/inspector.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/tracking.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python/versions.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/SOURCES.txt +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/dependency_links.txt +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/entry_points.txt +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/requires.txt +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/top_level.txt +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_build.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_cleanup.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_failed.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_inspector.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_invoker.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_list.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_prefix.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_recompress.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_report.py +0 -0
- {portable_python-1.9.3 → portable_python-1.9.5}/tests/test_setup.py +0 -0
|
@@ -203,7 +203,8 @@ class Cpython(PythonBuilder):
|
|
|
203
203
|
make_args.append(f"PROFILE_TASK={pgo_tests}")
|
|
204
204
|
|
|
205
205
|
self.run_make(*make_args)
|
|
206
|
-
|
|
206
|
+
# Don't parallelize `make install`, see https://github.com/python/cpython/issues/109796
|
|
207
|
+
self.run_make("install", f"DESTDIR={self.destdir}", cpu_count=0)
|
|
207
208
|
|
|
208
209
|
def _finalize(self):
|
|
209
210
|
is_shared = self.setup.prefix or self.has_configure_opt("--enable-shared", "yes")
|
|
@@ -143,6 +143,11 @@ class Openssl(ModuleBuilder):
|
|
|
143
143
|
|
|
144
144
|
@property
|
|
145
145
|
def url(self):
|
|
146
|
+
if self.version and self.version.startswith("1.1.1"):
|
|
147
|
+
# Not sure why URL suddenly changed for this on github...
|
|
148
|
+
vfolder = self.version.replace(".", "_")
|
|
149
|
+
return f"https://github.com/openssl/openssl/releases/download/OpenSSL_{vfolder}/openssl-{self.version}.tar.gz"
|
|
150
|
+
|
|
146
151
|
return f"https://github.com/openssl/openssl/releases/download/openssl-{self.version}/openssl-{self.version}.tar.gz"
|
|
147
152
|
|
|
148
153
|
@property
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{portable_python-1.9.3 → portable_python-1.9.5}/src/portable_python.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|