diff options
author | BodgeMaster <unknown> | 2022-02-05 18:02:33 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-02-06 07:16:59 +0000 |
commit | e74e6087b08e1757af51ae7656fe1e6e6d5ce699 (patch) | |
tree | 91562da1fffbe92b11865fbbe0a1eb4936b699a8 /Ports | |
parent | d49a5163665a79b6c886657f73c59259e86a0e22 (diff) | |
download | serenity-e74e6087b08e1757af51ae7656fe1e6e6d5ce699.zip |
Ports: Update nano to version 6.0
This is just a bump of the version number in a couple places.
Tested to work.
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/nano/package.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index e8c8699be5..74fb16bf12 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -121,7 +121,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`mruby`](mruby/) | mruby | 3.0.0 | https://mruby.org/ | | [`mrsh`](mrsh/) | mrsh | d9763a3 | https://mrsh.sh/ | | [`mysthous`](mysthous/) | Hi-Res Adventure #1: Mystery House | 1.0 | https://www.scummvm.org/games/#games-hires1 | -| [`nano`](nano/) | GNU nano | 5.8 | https://www.nano-editor.org/ | +| [`nano`](nano/) | GNU nano | 6.0 | https://www.nano-editor.org/ | | [`nasm`](nasm/) | Netwide Assembler (NASM) | 2.15.05 | https://www.nasm.us/ | | [`ncdu`](ncdu/) | Ncdu | 1.16 | https://dev.yorhel.nl/ncdu | | [`ncurses`](ncurses/) | ncurses | 6.3 | https://invisible-island.net/ncurses/announce.html | diff --git a/Ports/nano/package.sh b/Ports/nano/package.sh index 2a63f19c11..b418e11969 100755 --- a/Ports/nano/package.sh +++ b/Ports/nano/package.sh @@ -1,10 +1,10 @@ #!/usr/bin/env -S bash ../.port_include.sh port=nano -version=5.8 +version=6.0 useconfigure="true" use_fresh_config_sub=true -files="https://www.nano-editor.org/dist/v5/nano-${version}.tar.xz nano-${version}.tar.xz -https://www.nano-editor.org/dist/v5/nano-${version}.tar.xz.asc nano-${version}.tar.xz.asc" +files="https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz nano-${version}.tar.xz +https://www.nano-editor.org/dist/v6/nano-${version}.tar.xz.asc nano-${version}.tar.xz.asc" configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--disable-browser" "--disable-utf8") depends=("ncurses") auth_type="sig" |