File tree 7 files changed +28
-18
lines changed
7 files changed +28
-18
lines changed Original file line number Diff line number Diff line change 69
69
env :
70
70
BUILD_NUMBER : ${{ env.BUILD_NUMBER }}
71
71
run : |
72
- # 2020-05-29: The iOS 13.4 SDK changed the implementation of FD_SET
73
- # to use a weak linked symbol (__darwin_check_fd_set_overflow).
74
- # This means any support package built against that SDK is incompatible
75
- # with linking against an earlier SDK.
76
- # However, you can't get the iOS 13.4 SDK on macOS Mojave (10.14),
77
- # because the latest XCode supported on Mojave (11.3.1) only provided
78
- # SDK 13.2.
79
- # So: We force the use of XCode 11.3.1, which ships with the 13.2 SDK.
80
- # For a list of SDKs available on Github Actions, see:
81
- # https://github.com/actions/virtual-environments/blob/master/images/macos/macos-10.15-Readme.md
82
- sudo xcode-select --switch /Applications/Xcode_11.3.1.app
83
-
84
72
# 2020-06-24: The Homebrew copy of gettext leaks into the macOS build
85
73
# if it is present. Uninstall gettext to make sure that doesn't happen.
86
74
# 2021-01-02: Uninstall curl as well. We need curl to download the
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ dist/Python-$(PYTHON_VER)-$1-support.$(BUILD_NUMBER).tar.gz: $$(BZIP2_FRAMEWORK-
344
344
# Build a "full" tarball with all content for test purposes
345
345
tar zcvf dist/Python-$(PYTHON_VER ) -$1-support.test-$(BUILD_NUMBER ) .tar.gz -X patch/Python/test.exclude -C build/$1/Support `ls -A build/$1/Support`
346
346
# Build a distributable tarball
347
- tar zcvf $$@ -X patch/Python/release.exclude -C build/$1/Support `ls -A build/$1/Support`
347
+ tar zcvf $$@ -X patch/Python/release.common.exclude -X patch/Python/release.$1. exclude -C build/$1/Support `ls -A build/$1/Support`
348
348
349
349
# Build OpenSSL
350
350
OpenSSL-$1: $$(OPENSSL_FRAMEWORK-$1 )
Original file line number Diff line number Diff line change 1
- # This is a list of Python standard library path patterns
2
- # we exclude from the embedded device Python-Apple-support tarballs.
1
+ # This is a list of support package path patterns that we exclude
2
+ # from all Python-Apple-support tarballs.
3
3
# It is used by `tar -X` during the Makefile build.
4
4
#
5
5
# Remove binaries; not needed for embedded builds
@@ -25,9 +25,6 @@ Python/Resources/lib/python*/lib-dynload/_xx*.so
25
25
# Remove wsgiref web app module; it's unusual that mobile apps would
26
26
# start a web app server with it.
27
27
Python/Resources/lib/python*/wsgiref
28
- # Remove command-line curses toolkit.
29
- Python/Resources/lib/python*/curses
30
- Python/Resources/lib/python*/lib-dynload/_curses*.so
31
28
# Remove config-* directory, which is used for compiling C extension modules.
32
29
Python/Resources/lib/python*/config-*
33
30
# Remove ensurepip. If user code needs pip, it can add it to
Original file line number Diff line number Diff line change
1
+ # This is a list of support package path patterns that we exclude
2
+ # from iOS Python-Apple-support tarballs.
3
+ # It is used by `tar -X` during the Makefile build.
4
+ #
5
+ # Remove command-line curses toolkit.
6
+ Python/Resources/lib/python*/curses
7
+ Python/Resources/lib/python*/lib-dynload/_curses*.so
Original file line number Diff line number Diff line change
1
+ # This is a list of support package path patterns that we exclude
2
+ # from macOS Python-Apple-support tarballs.
3
+ # It is used by `tar -X` during the Makefile build.
4
+ #
Original file line number Diff line number Diff line change
1
+ # This is a list of support package path patterns that we exclude
2
+ # from tvOS Python-Apple-support tarballs.
3
+ # It is used by `tar -X` during the Makefile build.
4
+ #
5
+ # Remove command-line curses toolkit.
6
+ Python/Resources/lib/python*/curses
7
+ Python/Resources/lib/python*/lib-dynload/_curses*.so
Original file line number Diff line number Diff line change
1
+ # This is a list of support package path patterns that we exclude
2
+ # from watchOS Python-Apple-support tarballs.
3
+ # It is used by `tar -X` during the Makefile build.
4
+ #
5
+ # Remove command-line curses toolkit.
6
+ Python/Resources/lib/python*/curses
7
+ Python/Resources/lib/python*/lib-dynload/_curses*.so
You can’t perform that action at this time.
0 commit comments