portable-python 1.10.0__tar.gz → 1.10.2__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.10.0/src/portable_python.egg-info → portable_python-1.10.2}/PKG-INFO +1 -1
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/external/xcpython.py +4 -5
- {portable_python-1.10.0 → portable_python-1.10.2/src/portable_python.egg-info}/PKG-INFO +1 -1
- {portable_python-1.10.0 → portable_python-1.10.2}/DEVELOP.md +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/LICENSE +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/MANIFEST.in +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/README.rst +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/SECURITY.md +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/pyproject.toml +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/requirements.txt +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/setup.cfg +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/setup.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/__init__.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/__main__.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/cli.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/config.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/cpython.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/external/__init__.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/external/_inspect.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/external/xtkinter.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/inspector.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/tracking.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python/versions.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/SOURCES.txt +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/dependency_links.txt +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/entry_points.txt +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/requires.txt +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/top_level.txt +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_build.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_cleanup.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_failed.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_inspector.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_invoker.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_list.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_prefix.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_recompress.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_report.py +0 -0
- {portable_python-1.10.0 → portable_python-1.10.2}/tests/test_setup.py +0 -0
|
@@ -93,6 +93,7 @@ class Gdbm(ModuleBuilder):
|
|
|
93
93
|
else:
|
|
94
94
|
yield "--enable-shared=no"
|
|
95
95
|
yield "--enable-static=yes"
|
|
96
|
+
yield "--enable-libgdbm-compat"
|
|
96
97
|
yield "--with-pic=yes"
|
|
97
98
|
yield "--disable-nls"
|
|
98
99
|
yield "--disable-dependency-tracking"
|
|
@@ -129,7 +130,7 @@ class LibFFI(ModuleBuilder):
|
|
|
129
130
|
|
|
130
131
|
@property
|
|
131
132
|
def version(self):
|
|
132
|
-
return self.cfg_version("3.
|
|
133
|
+
return self.cfg_version("3.5.2")
|
|
133
134
|
|
|
134
135
|
def c_configure_args(self):
|
|
135
136
|
if config_args := self.cfg_configure(self.deps_lib_dir, self.deps_lib64_dir):
|
|
@@ -201,7 +202,7 @@ class Ncurses(ModuleBuilder):
|
|
|
201
202
|
|
|
202
203
|
@property
|
|
203
204
|
def url(self):
|
|
204
|
-
return self.cfg_url(self.version) or f"https://
|
|
205
|
+
return self.cfg_url(self.version) or f"https://ftpmirror.gnu.org/gnu/ncurses/ncurses-{self.version}.tar.gz"
|
|
205
206
|
|
|
206
207
|
@property
|
|
207
208
|
def version(self):
|
|
@@ -313,11 +314,9 @@ class Sqlite(ModuleBuilder):
|
|
|
313
314
|
yield config_args
|
|
314
315
|
|
|
315
316
|
else:
|
|
316
|
-
yield "--
|
|
317
|
-
yield "--enable-static=yes"
|
|
317
|
+
yield "--disable-shared"
|
|
318
318
|
yield "--disable-tcl"
|
|
319
319
|
yield "--disable-readline"
|
|
320
|
-
yield "--with-pic=yes"
|
|
321
320
|
|
|
322
321
|
def _do_linux_compile(self):
|
|
323
322
|
self.run_configure("./configure", self.c_configure_args())
|
|
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
|
|
File without changes
|
{portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{portable_python-1.10.0 → portable_python-1.10.2}/src/portable_python.egg-info/top_level.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
|