From 7eb8d13f84d5f185837951da5c4515deb9b5dc4f Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Sat, 30 Apr 2022 15:44:15 +0200 Subject: [PATCH] Ports: Update `mc` to 4.8.28 This also switches us from the GitHub tag archive to using the actual release tarballs, which don't require us to run autoconf anymore. --- Ports/AvailablePorts.md | 2 +- Ports/mc/package.sh | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 4833fd2303..b0ac4b6828 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -131,7 +131,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`mandoc`](mandoc/) | mandoc | 1.14.5 | https://mandoc.bsd.lv/ | | [`mawk`](mawk/) | mawk | 1.3.4-20200120 | https://invisible-island.net/mawk/ | | [`mbedtls`](mbedtls/) | Mbed TLS | 2.16.2 | https://tls.mbed.org/ | -| [`mc`](mc/) | Midnight Commander | 4.8.27 | http://midnight-commander.org/ | +| [`mc`](mc/) | Midnight Commander | 4.8.28 | https://midnight-commander.org/ | | [`mgba`](mgba/) | Game Boy, Game Boy Color and Game Boy Advance emulator | 0.9.3 | https://mgba.io/ | | [`milkytracker`](milkytracker/) | milkytracker | 1.03.00 | https://github.com/milkytracker/MilkyTracker | | [`mold`](mold/) | A Modern Linker | 1.0.2 | https://github.com/rui314/mold | diff --git a/Ports/mc/package.sh b/Ports/mc/package.sh index c67a55f7e8..93c1fe3259 100755 --- a/Ports/mc/package.sh +++ b/Ports/mc/package.sh @@ -1,8 +1,8 @@ #!/usr/bin/env -S bash ../.port_include.sh port=mc -version=4.8.27 +version=4.8.28 useconfigure=true -files="https://github.com/MidnightCommander/mc/archive/refs/tags/${version}.tar.gz ${port}-${version}.tar.gz 3bab1460d187e1f09409be4bb8550ea7dab125fb9b50036a8dbd2b16e8b1985b" +files="http://ftp.midnight-commander.org/mc-${version}.tar.xz ${port}-${version}.tar.xz e994d9be9a7172e9ac4a4ad62107921f6aa312e668b056dfe5b8bcebbaf53803" auth_type=sha256 depends=("gettext" "glib" "libtool" "ncurses" "vim") configopts=( @@ -17,7 +17,3 @@ configopts=( ) use_fresh_config_sub=true config_sub_path=config/config.sub - -pre_patch() { - run ./autogen.sh -}