]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-149254: Bump OpenSSL version for Android. (#149273)
authorRussell Keith-Magee <russell@keith-magee.com>
Sat, 2 May 2026 08:51:21 +0000 (16:51 +0800)
committerGitHub <noreply@github.com>
Sat, 2 May 2026 08:51:21 +0000 (16:51 +0800)
Bump OpenSSL version to 3.0.20 for Android.

Android/android.py
Misc/NEWS.d/next/Security/2026-05-02-16-27-17.gh-issue-149254.ng1cPU.rst [new file with mode: 0644]

index ecd5b3f1893fcb1d612d4a767b4bd89180764ce8..235b42160b3f3cc049178d060d0338fb7bf07944 100755 (executable)
@@ -213,8 +213,13 @@ def make_build_python(context):
 def unpack_deps(host, prefix_dir, cache_dir):
     os.chdir(prefix_dir)
     deps_url = "https://github.com/beeware/cpython-android-source-deps/releases/download"
-    for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.19-1",
-                     "sqlite-3.50.4-0", "xz-5.4.6-1"]:
+    for name_ver in [
+        "bzip2-1.0.8-3",
+        "libffi-3.4.4-3",
+        "openssl-3.0.20-0",
+        "sqlite-3.50.4-0",
+        "xz-5.4.6-1"
+    ]:
         filename = f"{name_ver}-{host}.tar.gz"
         out_path = download(f"{deps_url}/{name_ver}/{filename}", cache_dir)
         shutil.unpack_archive(out_path)
diff --git a/Misc/NEWS.d/next/Security/2026-05-02-16-27-17.gh-issue-149254.ng1cPU.rst b/Misc/NEWS.d/next/Security/2026-05-02-16-27-17.gh-issue-149254.ng1cPU.rst
new file mode 100644 (file)
index 0000000..410abab
--- /dev/null
@@ -0,0 +1 @@
+Bumps the OpenSSL version to 3.0.20 on Android.