summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2020-05-28 02:44:15 -0700
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2020-05-28 02:44:15 -0700
commitc0f18efeef77f171f896df8264bd685b7b44fd1a (patch)
treecfaa6c4c51f7f73991402a64df4f2895bff500d1
parentcd0483ce9b36be5dfdb5b4f921e539bd672f4b4a (diff)
Version bumped Python 3
-rw-r--r--data/_python3.7/Python-3.7.7.tar.xz (renamed from data/_python3.7/Python-3.7.3.tar.xz)bin17108364 -> 17268888 bytes
-rw-r--r--data/_python3.7/setup.diff26
2 files changed, 13 insertions, 13 deletions
diff --git a/data/_python3.7/Python-3.7.3.tar.xz b/data/_python3.7/Python-3.7.7.tar.xz
index 9d6454c5c..9972ab694 100644
--- a/data/_python3.7/Python-3.7.3.tar.xz
+++ b/data/_python3.7/Python-3.7.7.tar.xz
Binary files differ
diff --git a/data/_python3.7/setup.diff b/data/_python3.7/setup.diff
index 648b020d0..2e4049b25 100644
--- a/data/_python3.7/setup.diff
+++ b/data/_python3.7/setup.diff
@@ -1,16 +1,16 @@
-diff -ur Python-3.7.3/setup.py Python-3.7.3+iPhone/setup.py
---- Python-3.7.3/setup.py 2019-03-25 10:21:05.000000000 -1000
-+++ Python-3.7.3+iPhone/setup.py 2019-05-07 14:47:15.000000000 -1000
-@@ -98,7 +98,7 @@
- cflags = sysconfig.get_config_var('CFLAGS')
- m = re.search(r'-isysroot\s+(\S+)', cflags)
- if m is None:
-- sysroot = '/'
-+ sysroot = os.environ['PKG_ROOT'] or '/'
- else:
- sysroot = m.group(1)
- return sysroot
-@@ -611,11 +611,10 @@
+diff -Naur Python-3.7.7/setup.py Python-3.7.7+iPhone/setup.py
+--- Python-3.7.7/setup.py 2020-03-09 23:11:12.000000000 -0700
++++ Python-3.7.7+iPhone/setup.py 2020-05-28 02:31:55.000000000 -0700
+@@ -105,6 +105,8 @@
+ """
+ global MACOS_SDK_ROOT
+
++ MACOS_SDK_ROOT = os.environ['PKG_ROOT'] or '/'
++
+ # If already called, return cached result.
+ if MACOS_SDK_ROOT:
+ return MACOS_SDK_ROOT
+@@ -650,11 +652,10 @@
# Add the sysroot paths. 'sysroot' is a compiler option used to
# set the logical path of the standard system headers and
# libraries.