diff options
author | Brendan Coles <bcoles@gmail.com> | 2021-04-17 11:45:23 +0000 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-04-17 18:29:50 +0200 |
commit | 65a89ea67efa1663b8e94affcd257c960aef7b8d (patch) | |
tree | 18396048cdf4d9b17e9baf539ce504e448c7f755 /Ports | |
parent | 4a2c0d721f5f8b2fba4355556e729c6f13f26b6c (diff) | |
download | serenity-65a89ea67efa1663b8e94affcd257c960aef7b8d.zip |
Ports: vim: Pin version to latest release rather than use master branch
Diffstat (limited to 'Ports')
-rw-r--r-- | Ports/AvailablePorts.md | 2 | ||||
-rwxr-xr-x | Ports/vim/package.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index e0bd9cbdc1..c3c10dfa6f 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 caf4b86a39..4d5ed13efa 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" |