File tree Expand file tree Collapse file tree 2 files changed +13
-9
lines changed
Expand file tree Collapse file tree 2 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 99 ;;
1010 SunOS*)
1111 LDLIBRARY='libpython$(LDVERSION).so'
12- --- Python-3.8.7.orig/Lib/ctypes/__init__.py 2020-12-21 17:25:24.000000000 +0100
13- +++ Python-3.8.7/Lib/ctypes/__init__.py 2021-05-11 22:26:25.866873900 +0200
14- @@ -456,7 +456,7 @@
12+ --- Python-3.13.11/Lib/ctypes/__init__.py.orig 2025-12-15 18:35:35.827163200 +0100
13+ +++ Python-3.13.11/Lib/ctypes/__init__.py 2025-12-15 18:41:18.111377300 +0100
14+ @@ -486,9 +486,11 @@
15+
1516 if _os.name == "nt":
1617 pythonapi = PyDLL("python dll", None, _sys.dllhandle)
17- elif _sys.platform == "cygwin":
18- - pythonapi = PyDLL("libpython%d.%d.dll" % _sys.version_info[:2])
19- + pythonapi = PyDLL("msys-python%d.%d.dll" % _sys.version_info[:2])
18+ - elif _sys.platform in ["android", "cygwin"]:
19+ + elif _sys.platform in ["android"]:
20+ # These are Unix-like platforms which use a dynamically-linked libpython.
21+ pythonapi = PyDLL(_sysconfig.get_config_var("LDLIBRARY"))
22+ + elif _sys.platform == "cygwin":
23+ + pythonapi = PyDLL(_sysconfig.get_config_var("DLLLIBRARY"))
2024 else:
2125 pythonapi = PyDLL(None)
2226
Original file line number Diff line number Diff line change 33
44pkgbase=python
55pkgname=(' python' ' python-devel' )
6- pkgver=3.13.8
6+ pkgver=3.13.11
77pkgrel=1
88_pybasever=${pkgver% .* }
99pkgdesc=" Next generation of the python high-level scripting language"
@@ -44,12 +44,12 @@ source=(https://www.python.org/ftp/python/${pkgver%rc*}/Python-${pkgver}.tar.xz
4444 990-cygwin-default-to-spawn-for-multiprocessing-and-disa.patch
4545 991-fix-pc.patch
4646 EXTERNALLY-MANAGED)
47- sha256sums=(' b9910730526b298299b46b35595ced9055722df60c06ad6301f6a4e2c728a252 '
47+ sha256sums=(' 16ede7bb7cdbfa895d11b0642fa0e523f291e6487194d53cf6d3b338c3a17ea2 '
4848 ' 82cfafc5b31ad4c9bb4c9786044c39c75762dbc2656abdfdc433c23fee69c02f'
4949 ' f0bb75ca69c63894fc43e0f8218c9dbcc746935bf5ea095a724e6fb2f5dcc566'
5050 ' 9cb8b53dc72d8bfdbe59978067d707911cf3a8c79218f0b46335a09a680c14cf'
5151 ' 9d0efb7e7e913e96b9f7953802311bbc2d046a7bfdcc3ffaf11fc509731b4d18'
52- ' c334303bcd8dd4df8f195cfbdc6faae719838d14aa42ad0a894f360bc475d20b '
52+ ' 5fecb91bcb50e3470db6369e66b132611eaeeb97d4caa8d43246e91b91a2d33a '
5353 ' 85d9d042e0fa3493ec54b364e6b4fb6d2b12ba09641e01047bc84a09605ef76b'
5454 ' b439ff4f0a1f13858f8fb596414b74ed2c14fc3103d90287bb8e461ee89288b9'
5555 ' bcdb4e7922e30f7dfbd3993ffe6db2dfd0df29326bebd12203dce376ea3451d9'
You can’t perform that action at this time.
0 commit comments