1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-05 19:14:54 +00:00

Ports: Update OpenSSL to 1.1.1p

This also changes the source to fetch OpenSSL from the OpenSSL site, as
1.1.1p is not currently available from the usual source.
This commit is contained in:
Luke Wilde 2022-06-21 17:54:55 +01:00 committed by Linus Groh
parent 83ae4ee767
commit 69c451e485
2 changed files with 3 additions and 3 deletions

View File

@ -164,7 +164,7 @@ This list is also available at [ports.serenityos.net](https://ports.serenityos.n
| [`oksh`](oksh/) | oksh | 7.1 | https://github.com/ibara/oksh |
| [`OpenJDK`](OpenJDK/) | OpenJDK | 17.0.2 | https://openjdk.java.net/ |
| [`openssh`](openssh/) | OpenSSH | 9.0-94eb685 | https://github.com/openssh/openssh-portable |
| [`openssl`](openssl/) | OpenSSL | 1.1.1o | https://www.openssl.org/ |
| [`openssl`](openssl/) | OpenSSL | 1.1.1p | 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/ |

View File

@ -1,10 +1,10 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=openssl
branch='1.1.1'
version="${branch}o"
version="${branch}p"
useconfigure=true
configscript=Configure
files="https://ftp.nluug.nl/security/openssl/openssl-${version}.tar.gz openssl-${version}.tar.gz 9384a2b0570dd80358841464677115df785edb941c71211f75076d72fe6b438f"
files="https://www.openssl.org/source/openssl-${version}.tar.gz openssl-${version}.tar.gz bf61b62aaa66c7c7639942a94de4c9ae8280c08f17d4eac2e44644d9fc8ace6f"
auth_type=sha256
depends=("zlib")