]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-131423: Update macOS installer to use OpenSSL 3.0.16. (GH-132189)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 7 Apr 2025 05:41:25 +0000 (07:41 +0200)
committerGitHub <noreply@github.com>
Mon, 7 Apr 2025 05:41:25 +0000 (01:41 -0400)
Patch by Bénédikt Tran.
(cherry picked from commit ce49022b07928d58d1aecfbcd8ea1bf1055065ed)
Co-authored-by: Ned Deily <nad@python.org>
Mac/BuildScript/build-installer.py
Misc/NEWS.d/next/macOS/2025-04-06-23-24-00.gh-issue-131423.4UcBKy.rst [new file with mode: 0644]

index 9baa98e1778a3a86f7b8b26e6f61eaa061a29575..90f18ae8ae3c204d845f1294fb2d56d6188faa79 100755 (executable)
@@ -246,9 +246,9 @@ def library_recipes():
 
     result.extend([
           dict(
-              name="OpenSSL 3.0.15",
-              url="https://github.com/openssl/openssl/releases/download/openssl-3.0.15/openssl-3.0.15.tar.gz",
-              checksum='23c666d0edf20f14249b3d8f0368acaee9ab585b09e1de82107c66e1f3ec9533',
+              name="OpenSSL 3.0.16",
+              url="https://github.com/openssl/openssl/releases/download/openssl-3.0.16/openssl-3.0.16.tar.gz",
+              checksum='57e03c50feab5d31b152af2b764f10379aecd8ee92f16c985983ce4a99f7ef86',
               buildrecipe=build_universal_openssl,
               configure=None,
               install=None,
diff --git a/Misc/NEWS.d/next/macOS/2025-04-06-23-24-00.gh-issue-131423.4UcBKy.rst b/Misc/NEWS.d/next/macOS/2025-04-06-23-24-00.gh-issue-131423.4UcBKy.rst
new file mode 100644 (file)
index 0000000..24e3ea9
--- /dev/null
@@ -0,0 +1 @@
+Update macOS installer to use OpenSSL 3.0.16. Patch by Bénédikt Tran.