Skip to content

Commit ae54858

Browse files
committed
add v0.1.0-2023.03.11-06.34.34
1 parent 4aab337 commit ae54858

File tree

8 files changed

+2991
-4
lines changed

8 files changed

+2991
-4
lines changed

Package.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ let package = Package(
1515
]),
1616
],
1717
targets: [
18-
.binaryTarget(name: "libpython3", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-04.44.06/libpython3.xcframework.zip", checksum: "libpython3.xcframework_CHECKSUM"),
19-
.binaryTarget(name: "libssl", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-04.44.06/libssl.xcframework.zip", checksum: "libssl.xcframework_CHECKSUM"),
20-
.binaryTarget(name: "libcrypto", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-04.44.06/libcrypto.xcframework.zip", checksum: "libcrypto.xcframework_CHECKSUM"),
21-
.binaryTarget(name: "libffi", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-04.44.06/libffi.xcframework.zip", checksum: "libffi.xcframework_CHECKSUM"),
18+
.binaryTarget(name: "libpython3", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-06.34.34/libpython3.xcframework.zip", checksum: "4633f6d794cc8e4e104e1f0defdafbd24e1cc797e1cacb4b477eb3f578b2b558"),
19+
.binaryTarget(name: "libssl", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-06.34.34/libssl.xcframework.zip", checksum: "49d770d18457dcd9ef3be14f563ee495626ff933ac9fd55f86b69f52965f58bf"),
20+
.binaryTarget(name: "libcrypto", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-06.34.34/libcrypto.xcframework.zip", checksum: "c7a44f659553ad6f79a293cb62fb1771271786a6ba732db62b954279e83d1c95"),
21+
.binaryTarget(name: "libffi", url: "https://github.com/kewlbear/Python-iOS/releases/download/v0.1.0-2023.03.11-06.34.34/libffi.xcframework.zip", checksum: "77a6078d3845ce916e512e4bf70c7c78101834ccf74e4c47b8afd1c3d6345a0b"),
2222
.target(name: "LinkPython",
2323
dependencies: [
2424
"libpython3",

Sources/PythonSupport/lib/python3.10/config-3.10-darwin/Makefile

+2,220
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,377 @@
1+
# -*- makefile -*-
2+
# The file Setup is used by the makesetup script to construct the files
3+
# Makefile and config.c, from Makefile.pre and config.c.in,
4+
# respectively. Note that Makefile.pre is created from Makefile.pre.in
5+
# by the toplevel configure script.
6+
7+
# (VPATH notes: Setup and Makefile.pre are in the build directory, as
8+
# are Makefile and config.c; the *.in files are in the source directory.)
9+
10+
# Each line in this file describes one or more optional modules.
11+
# Modules configured here will not be compiled by the setup.py script,
12+
# so the file can be used to override setup.py's behavior.
13+
# Tag lines containing just the word "*static*", "*shared*" or "*disabled*"
14+
# (without the quotes but with the stars) are used to tag the following module
15+
# descriptions. Tag lines may alternate throughout this file. Modules are
16+
# built statically when they are preceded by a "*static*" tag line or when
17+
# there is no tag line between the start of the file and the module
18+
# description. Modules are built as a shared library when they are preceded by
19+
# a "*shared*" tag line. Modules are not built at all, not by the Makefile,
20+
# nor by the setup.py script, when they are preceded by a "*disabled*" tag
21+
# line.
22+
23+
# Lines have the following structure:
24+
#
25+
# <module> ... [<sourcefile> ...] [<cpparg> ...] [<library> ...]
26+
#
27+
# <sourcefile> is anything ending in .c (.C, .cc, .c++ are C++ files)
28+
# <cpparg> is anything starting with -I, -D, -U or -C
29+
# <library> is anything ending in .a or beginning with -l or -L
30+
# <module> is anything else but should be a valid Python
31+
# identifier (letters, digits, underscores, beginning with non-digit)
32+
#
33+
# (As the makesetup script changes, it may recognize some other
34+
# arguments as well, e.g. *.so and *.sl as libraries. See the big
35+
# case statement in the makesetup script.)
36+
#
37+
# Lines can also have the form
38+
#
39+
# <name> = <value>
40+
#
41+
# which defines a Make variable definition inserted into Makefile.in
42+
#
43+
# The build process works like this:
44+
#
45+
# 1. Build all modules that are declared as static in Modules/Setup,
46+
# combine them into libpythonxy.a, combine that into python.
47+
# 2. Build all modules that are listed as shared in Modules/Setup.
48+
# 3. Invoke setup.py. That builds all modules that
49+
# a) are not builtin, and
50+
# b) are not listed in Modules/Setup, and
51+
# c) can be build on the target
52+
#
53+
# Therefore, modules declared to be shared will not be
54+
# included in the config.c file, nor in the list of objects to be
55+
# added to the library archive, and their linker options won't be
56+
# added to the linker options. Rules to create their .o files and
57+
# their shared libraries will still be added to the Makefile, and
58+
# their names will be collected in the Make variable SHAREDMODS. This
59+
# is used to build modules as shared libraries. (They can be
60+
# installed using "make sharedinstall", which is implied by the
61+
# toplevel "make install" target.) (For compatibility,
62+
# *noconfig* has the same effect as *shared*.)
63+
#
64+
# NOTE: As a standard policy, as many modules as can be supported by a
65+
# platform should be present. The distribution comes with all modules
66+
# enabled that are supported by most platforms and don't require you
67+
# to ftp sources from elsewhere.
68+
69+
70+
# Some special rules to define PYTHONPATH.
71+
# Edit the definitions below to indicate which options you are using.
72+
# Don't add any whitespace or comments!
73+
74+
# Directories where library files get installed.
75+
# DESTLIB is for Python modules; MACHDESTLIB for shared libraries.
76+
DESTLIB=$(LIBDEST)
77+
MACHDESTLIB=$(BINLIBDEST)
78+
79+
# NOTE: all the paths are now relative to the prefix that is computed
80+
# at run time!
81+
82+
# Standard path -- don't edit.
83+
# No leading colon since this is the first entry.
84+
# Empty since this is now just the runtime prefix.
85+
DESTPATH=
86+
87+
# Site specific path components -- should begin with : if non-empty
88+
SITEPATH=
89+
90+
# Standard path components for test modules
91+
TESTPATH=
92+
93+
COREPYTHONPATH=$(DESTPATH)$(SITEPATH)$(TESTPATH)
94+
PYTHONPATH=$(COREPYTHONPATH)
95+
96+
97+
# The modules listed here can't be built as shared libraries for
98+
# various reasons; therefore they are listed here instead of in the
99+
# normal order.
100+
101+
# This only contains the minimal set of modules required to run the
102+
# setup.py script in the root of the Python source tree.
103+
104+
posix -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal posixmodule.c # posix (UNIX) system calls
105+
errno errnomodule.c # posix (UNIX) errno values
106+
pwd pwdmodule.c # this is needed to find out the user's home dir
107+
# if $HOME is not set
108+
_sre -DPy_BUILD_CORE_BUILTIN _sre.c # Fredrik Lundh's new regular expressions
109+
_codecs _codecsmodule.c # access to the builtin codecs and codec registry
110+
_weakref _weakref.c # weak references
111+
_functools -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal _functoolsmodule.c # Tools for working with functions and callable objects
112+
_operator -DPy_BUILD_CORE_BUILTIN _operator.c # operator.add() and similar goodies
113+
_collections _collectionsmodule.c # Container types
114+
_abc -DPy_BUILD_CORE_BUILTIN _abc.c # Abstract base classes
115+
itertools itertoolsmodule.c # Functions creating iterators for efficient looping
116+
atexit atexitmodule.c # Register functions to be run at interpreter-shutdown
117+
_signal -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal signalmodule.c
118+
_stat _stat.c # stat.h interface
119+
time -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal timemodule.c # -lm # time operations and variables
120+
_thread -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal _threadmodule.c # low-level threading interface
121+
122+
# access to ISO C locale support
123+
_locale -DPy_BUILD_CORE_BUILTIN _localemodule.c # -lintl
124+
125+
# Standard I/O baseline
126+
_io -DPy_BUILD_CORE_BUILTIN -I$(srcdir)/Include/internal -I$(srcdir)/Modules/_io _io/_iomodule.c _io/iobase.c _io/fileio.c _io/bytesio.c _io/bufferedio.c _io/textio.c _io/stringio.c
127+
128+
# faulthandler module
129+
faulthandler faulthandler.c
130+
131+
# debug tool to trace memory blocks allocated by Python
132+
#
133+
# bpo-35053: The module must be builtin since _Py_NewReference()
134+
# can call _PyTraceMalloc_NewReference().
135+
_tracemalloc _tracemalloc.c
136+
137+
# The rest of the modules listed in this file are all commented out by
138+
# default. Usually they can be detected and built as dynamically
139+
# loaded modules by the new setup.py script added in Python 2.1. If
140+
# you're on a platform that doesn't support dynamic loading, want to
141+
# compile modules statically into the Python binary, or need to
142+
# specify some odd set of compiler switches, you can uncomment the
143+
# appropriate lines below.
144+
145+
# ======================================================================
146+
147+
# The Python symtable module depends on .h files that setup.py doesn't track
148+
_symtable symtablemodule.c
149+
150+
# Uncommenting the following line tells makesetup that all following
151+
# modules are to be built as shared libraries (see above for more
152+
# detail; also note that *static* or *disabled* cancels this effect):
153+
154+
#*shared*
155+
156+
# GNU readline. Unlike previous Python incarnations, GNU readline is
157+
# now incorporated in an optional module, configured in the Setup file
158+
# instead of by a configure script switch. You may have to insert a
159+
# -L option pointing to the directory where libreadline.* lives,
160+
# and you may have to change -ltermcap to -ltermlib or perhaps remove
161+
# it, depending on your system -- see the GNU readline instructions.
162+
# It's okay for this to be a shared library, too.
163+
164+
#readline readline.c -lreadline -ltermcap
165+
166+
167+
# Modules that should always be present (non UNIX dependent):
168+
169+
#array -DPy_BUILD_CORE_MODULE arraymodule.c # array objects
170+
#cmath cmathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # complex math library functions
171+
#math mathmodule.c _math.c -DPy_BUILD_CORE_MODULE # -lm # math library functions, e.g. sin()
172+
#_contextvars _contextvarsmodule.c # Context Variables
173+
#_struct -DPy_BUILD_CORE_MODULE _struct.c # binary structure packing/unpacking
174+
#_weakref _weakref.c # basic weak reference support
175+
#_testcapi _testcapimodule.c # Python C API test module
176+
#_testinternalcapi _testinternalcapi.c -I$(srcdir)/Include/internal -DPy_BUILD_CORE_MODULE # Python internal C API test module
177+
#_random _randommodule.c -DPy_BUILD_CORE_MODULE # Random number generator
178+
#_elementtree -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DUSE_PYEXPAT_CAPI _elementtree.c # elementtree accelerator
179+
#_pickle -DPy_BUILD_CORE_MODULE _pickle.c # pickle accelerator
180+
#_datetime _datetimemodule.c # datetime accelerator
181+
#_zoneinfo _zoneinfo.c -DPy_BUILD_CORE_MODULE # zoneinfo accelerator
182+
#_bisect _bisectmodule.c # Bisection algorithms
183+
#_heapq _heapqmodule.c -DPy_BUILD_CORE_MODULE # Heap queue algorithm
184+
#_asyncio _asynciomodule.c # Fast asyncio Future
185+
#_json -I$(srcdir)/Include/internal -DPy_BUILD_CORE_BUILTIN _json.c # _json speedups
186+
#_statistics _statisticsmodule.c # statistics accelerator
187+
188+
#unicodedata unicodedata.c -DPy_BUILD_CORE_BUILTIN # static Unicode character database
189+
190+
191+
# Modules with some UNIX dependencies -- on by default:
192+
# (If you have a really backward UNIX, select and socket may not be
193+
# supported...)
194+
195+
#fcntl fcntlmodule.c # fcntl(2) and ioctl(2)
196+
#spwd spwdmodule.c # spwd(3)
197+
#grp grpmodule.c # grp(3)
198+
#select selectmodule.c # select(2); not on ancient System V
199+
200+
# Memory-mapped files (also works on Win32).
201+
#mmap mmapmodule.c
202+
203+
# CSV file helper
204+
#_csv _csv.c
205+
206+
# Socket module helper for socket(2)
207+
#_socket socketmodule.c
208+
209+
# Socket module helper for SSL support; you must comment out the other
210+
# socket line above, and edit the OPENSSL variable:
211+
# OPENSSL=/path/to/openssl/directory
212+
# _ssl _ssl.c \
213+
# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
214+
# -lssl -lcrypto
215+
#_hashlib _hashopenssl.c \
216+
# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
217+
# -lcrypto
218+
219+
# To statically link OpenSSL:
220+
# _ssl _ssl.c \
221+
# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
222+
# -l:libssl.a -Wl,--exclude-libs,libssl.a \
223+
# -l:libcrypto.a -Wl,--exclude-libs,libcrypto.a
224+
#_hashlib _hashopenssl.c \
225+
# -I$(OPENSSL)/include -L$(OPENSSL)/lib \
226+
# -l:libcrypto.a -Wl,--exclude-libs,libcrypto.a
227+
228+
# The crypt module is now disabled by default because it breaks builds
229+
# on many systems (where -lcrypt is needed), e.g. Linux (I believe).
230+
231+
#_crypt _cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems
232+
233+
234+
# Some more UNIX dependent modules -- off by default, since these
235+
# are not supported by all UNIX systems:
236+
237+
#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere
238+
#termios termios.c # Steen Lumholt's termios module
239+
#resource resource.c # Jeremy Hylton's rlimit interface
240+
241+
#_posixsubprocess -DPy_BUILD_CORE_BUILTIN _posixsubprocess.c # POSIX subprocess module helper
242+
243+
# Multimedia modules -- off by default.
244+
# These don't work for 64-bit platforms!!!
245+
# #993173 says audioop works on 64-bit platforms, though.
246+
# These represent audio samples or images as strings:
247+
248+
#audioop audioop.c # Operations on audio samples
249+
250+
251+
# Note that the _md5 and _sha modules are normally only built if the
252+
# system does not have the OpenSSL libs containing an optimized version.
253+
254+
# The _md5 module implements the RSA Data Security, Inc. MD5
255+
# Message-Digest Algorithm, described in RFC 1321.
256+
257+
#_md5 md5module.c
258+
259+
260+
# The _sha module implements the SHA checksum algorithms.
261+
# (NIST's Secure Hash Algorithms.)
262+
#_sha1 sha1module.c
263+
#_sha256 sha256module.c -DPy_BUILD_CORE_BUILTIN
264+
#_sha512 sha512module.c -DPy_BUILD_CORE_BUILTIN
265+
#_sha3 _sha3/sha3module.c
266+
267+
# _blake module
268+
#_blake2 _blake2/blake2module.c _blake2/blake2b_impl.c _blake2/blake2s_impl.c
269+
270+
# The _tkinter module.
271+
#
272+
# The command for _tkinter is long and site specific. Please
273+
# uncomment and/or edit those parts as indicated. If you don't have a
274+
# specific extension (e.g. Tix or BLT), leave the corresponding line
275+
# commented out. (Leave the trailing backslashes in! If you
276+
# experience strange errors, you may want to join all uncommented
277+
# lines and remove the backslashes -- the backslash interpretation is
278+
# done by the shell's "read" command and it may not be implemented on
279+
# every system.
280+
281+
# *** Always uncomment this (leave the leading underscore in!):
282+
# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
283+
# *** Uncomment and edit to reflect where your Tcl/Tk libraries are:
284+
# -L/usr/local/lib \
285+
# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
286+
# -I/usr/local/include \
287+
# *** Uncomment and edit to reflect where your X11 header files are:
288+
# -I/usr/X11R6/include \
289+
# *** Or uncomment this for Solaris:
290+
# -I/usr/openwin/include \
291+
# *** Uncomment and edit for Tix extension only:
292+
# -DWITH_TIX -ltix8.1.8.2 \
293+
# *** Uncomment and edit for BLT extension only:
294+
# -DWITH_BLT -I/usr/local/blt/blt8.0-unoff/include -lBLT8.0 \
295+
# *** Uncomment and edit for PIL (TkImaging) extension only:
296+
# (See http://www.pythonware.com/products/pil/ for more info)
297+
# -DWITH_PIL -I../Extensions/Imaging/libImaging tkImaging.c \
298+
# *** Uncomment and edit for TOGL extension only:
299+
# -DWITH_TOGL togl.c \
300+
# *** Uncomment and edit to reflect your Tcl/Tk versions:
301+
# -ltk8.2 -ltcl8.2 \
302+
# *** Uncomment and edit to reflect where your X11 libraries are:
303+
# -L/usr/X11R6/lib \
304+
# *** Or uncomment this for Solaris:
305+
# -L/usr/openwin/lib \
306+
# *** Uncomment these for TOGL extension only:
307+
# -lGL -lGLU -lXext -lXmu \
308+
# *** Uncomment for AIX:
309+
# -lld \
310+
# *** Always uncomment this; X11 libraries to link with:
311+
# -lX11
312+
313+
# Lance Ellinghaus's syslog module
314+
#syslog syslogmodule.c # syslog daemon interface
315+
316+
317+
# Curses support, requiring the System V version of curses, often
318+
# provided by the ncurses library. e.g. on Linux, link with -lncurses
319+
# instead of -lcurses).
320+
321+
#_curses _cursesmodule.c -lcurses -ltermcap -DPy_BUILD_CORE_MODULE
322+
# Wrapper for the panel library that's part of ncurses and SYSV curses.
323+
#_curses_panel _curses_panel.c -lpanel -lncurses
324+
325+
326+
# Modules that provide persistent dictionary-like semantics. You will
327+
# probably want to arrange for at least one of them to be available on
328+
# your machine, though none are defined by default because of library
329+
# dependencies. The Python module dbm/__init__.py provides an
330+
# implementation independent wrapper for these; dbm/dumb.py provides
331+
# similar functionality (but slower of course) implemented in Python.
332+
333+
#_dbm _dbmmodule.c # dbm(3) may require -lndbm or similar
334+
335+
# Anthony Baxter's gdbm module. GNU dbm(3) will require -lgdbm:
336+
337+
#_gdbm _gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm
338+
339+
340+
# Helper module for various ascii-encoders
341+
#binascii binascii.c
342+
343+
# Andrew Kuchling's zlib module.
344+
# This require zlib 1.1.3 (or later).
345+
# See http://www.gzip.org/zlib/
346+
#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
347+
348+
# Interface to the Expat XML parser
349+
# More information on Expat can be found at www.libexpat.org.
350+
#
351+
#pyexpat expat/xmlparse.c expat/xmlrole.c expat/xmltok.c pyexpat.c -I$(srcdir)/Modules/expat -DHAVE_EXPAT_CONFIG_H -DXML_POOR_ENTROPY -DUSE_PYEXPAT_CAPI
352+
353+
# Hye-Shik Chang's CJKCodecs
354+
355+
# multibytecodec is required for all the other CJK codec modules
356+
#_multibytecodec cjkcodecs/multibytecodec.c
357+
358+
#_codecs_cn cjkcodecs/_codecs_cn.c
359+
#_codecs_hk cjkcodecs/_codecs_hk.c
360+
#_codecs_iso2022 cjkcodecs/_codecs_iso2022.c
361+
#_codecs_jp cjkcodecs/_codecs_jp.c
362+
#_codecs_kr cjkcodecs/_codecs_kr.c
363+
#_codecs_tw cjkcodecs/_codecs_tw.c
364+
365+
# Example -- included for reference only:
366+
# xx xxmodule.c
367+
368+
# Another example -- the 'xxsubtype' module shows C-level subtyping in action
369+
xxsubtype xxsubtype.c
370+
371+
# Uncommenting the following line tells makesetup that all following modules
372+
# are not built (see above for more detail).
373+
#
374+
#*disabled*
375+
#
376+
#_sqlite3 _tkinter _curses pyexpat
377+
#_codecs_jp _codecs_kr _codecs_tw unicodedata

0 commit comments

Comments
 (0)