diff options
author | Luke Wilde <lukew@serenityos.org> | 2022-05-04 18:20:21 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-05-04 19:26:02 +0200 |
commit | 65693bd00322c45b2fffa1eca4844994bd3f8a09 (patch) | |
tree | 8f42e0fade10fd5fb8814953298303c45e6a52d9 | |
parent | 58409bcbd2c8c20d45f50f256724f057615fc26f (diff) | |
download | serenity-65693bd00322c45b2fffa1eca4844994bd3f8a09.zip |
Ports: Update OpenSSL to 1.1.1o
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/openssl/package.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index c169f0f903..669791601b 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -154,7 +154,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`ntbtls`](ntbtls/) | The Not Too Bad TLS Library | 0.2.0 | https://gnupg.org/software/ntbtls/index.html | | [`nyancat`](nyancat/) | Nyancat | | https://github.com/klange/nyancat | | [`openssh`](openssh/) | OpenSSH | 9.0-94eb685 | https://github.com/openssh/openssh-portable | -| [`openssl`](openssl/) | OpenSSL | 1.1.1n | https://www.openssl.org/ | +| [`openssl`](openssl/) | OpenSSL | 1.1.1o | https://www.openssl.org/ | | [`openttd`](openttd/) | OpenTTD | 12.2 | https://www.openttd.org/ | | [`openttd-opengfx`](openttd-opengfx/) | OpenGFX graphics for OpenTTD | 7.1 | https://www.openttd.org/ | | [`openttd-opensfx`](openttd-opensfx/) | OpenSFX audio files for OpenTTD | 1.0.3 | https://www.openttd.org/ | diff --git a/Ports/openssl/package.sh b/Ports/openssl/package.sh index 785ec8f8b4..137c0fad16 100755 --- a/Ports/openssl/package.sh +++ b/Ports/openssl/package.sh @@ -1,10 +1,10 @@ #!/usr/bin/env -S bash ../.port_include.sh port=openssl branch='1.1.1' -version="${branch}n" +version="${branch}o" useconfigure=true configscript=Configure -files="https://ftp.nluug.nl/security/openssl/openssl-${version}.tar.gz openssl-${version}.tar.gz 40dceb51a4f6a5275bde0e6bf20ef4b91bfc32ed57c0552e2e8e15463372b17a" +files="https://ftp.nluug.nl/security/openssl/openssl-${version}.tar.gz openssl-${version}.tar.gz 9384a2b0570dd80358841464677115df785edb941c71211f75076d72fe6b438f" auth_type=sha256 depends=("zlib") |