From 65a89ea67efa1663b8e94affcd257c960aef7b8d Mon Sep 17 00:00:00 2001 From: Brendan Coles Date: Sat, 17 Apr 2021 11:45:23 +0000 Subject: [PATCH] Ports: vim: Pin version to latest release rather than use master branch --- Ports/AvailablePorts.md | 2 +- Ports/vim/package.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index e0bd9cbdc15..c3c10dfa6f5 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -107,7 +107,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`tinycc`](tinycc/) | Tiny C Compiler (TinyCC) | dev | https://github.com/TinyCC/tinycc | | [`tinyscheme`](tinyscheme/) | TinyScheme Interpreter | 1.42 | https://sourceforge.net/projects/tinyscheme/ | | [`tr`](tr/) | tr (OpenBSD) | 6.7 | https://github.com/ibara/libpuffy | -| [`vim`](vim/) | Vim | | https://www.vim.org/ | +| [`vim`](vim/) | Vim | 8.2.2772 | https://www.vim.org/ | | [`vitetris`](vitetris/) | vitetris | 0.59.1 | https://github.com/vicgeralds/vitetris | | [`vttest`](vttest/) | vttest | 20210210 | https://invisible-island.net/vttest/ | | [`yasm`](yasm/) | Yasm Modular Assembler | 1.3.0 | https://yasm.tortall.net/ | diff --git a/Ports/vim/package.sh b/Ports/vim/package.sh index caf4b86a393..4d5ed13efaf 100755 --- a/Ports/vim/package.sh +++ b/Ports/vim/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh port=vim -version=git -workdir=vim-master +version=8.2.2772 +workdir="${port}-${version}" useconfigure="true" -files="https://github.com/vim/vim/archive/master.tar.gz vim-git.tar.gz 9f999815c6afc320612d55f93f0db67b" +files="https://github.com/vim/vim/archive/refs/tags/v${version}.tar.gz vim-v${version}.tar.gz 0dbd7323008c1d95d0396e119210630f" auth_type=md5 configopts="--with-tlib=tinfo --with-features=normal" depends="ncurses"