diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-03-28 13:28:38 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-03-28 10:38:02 -0700 |
commit | 022aed2541619827c0995d40776cacc4023bd23f (patch) | |
tree | 882880eb22325653cedd59c35da2d6143512954e /Ports/sed | |
parent | 4917a610abdd3c21aff36d54ac03ca7e68c06522 (diff) | |
download | serenity-022aed2541619827c0995d40776cacc4023bd23f.zip |
Ports: Upgrade to sed 4.8
Diffstat (limited to 'Ports/sed')
-rwxr-xr-x | Ports/sed/package.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ports/sed/package.sh b/Ports/sed/package.sh index d72439cdd0..2214b335d0 100755 --- a/Ports/sed/package.sh +++ b/Ports/sed/package.sh @@ -1,11 +1,11 @@ #!/usr/bin/env -S bash ../.port_include.sh port=sed -version=4.2.1 +version=4.8 useconfigure="true" use_fresh_config_sub="true" config_sub_path=build-aux/config.sub -files="https://ftpmirror.gnu.org/gnu/sed/sed-${version}.tar.bz2 sed-${version}.tar.bz2 -https://ftpmirror.gnu.org/gnu/sed/sed-${version}.tar.bz2.sig sed-${version}.tar.bz2.sig +files="https://ftpmirror.gnu.org/gnu/sed/sed-${version}.tar.gz sed-${version}.tar.gz +https://ftpmirror.gnu.org/gnu/sed/sed-${version}.tar.gz.sig sed-${version}.tar.gz.sig https://ftpmirror.gnu.org/gnu/gnu-keyring.gpg gnu-keyring.gpg" auth_type="sig" -auth_opts=("--keyring" "./gnu-keyring.gpg" "sed-${version}.tar.bz2.sig") +auth_opts=("--keyring" "./gnu-keyring.gpg" "sed-${version}.tar.gz.sig") |