1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

Ports: vim: Pin version to latest release rather than use master branch

This commit is contained in:
Brendan Coles 2021-04-17 11:45:23 +00:00 committed by Linus Groh
parent 4a2c0d721f
commit 65a89ea67e
2 changed files with 4 additions and 4 deletions

View file

@ -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 | | [`tinycc`](tinycc/) | Tiny C Compiler (TinyCC) | dev | https://github.com/TinyCC/tinycc |
| [`tinyscheme`](tinyscheme/) | TinyScheme Interpreter | 1.42 | https://sourceforge.net/projects/tinyscheme/ | | [`tinyscheme`](tinyscheme/) | TinyScheme Interpreter | 1.42 | https://sourceforge.net/projects/tinyscheme/ |
| [`tr`](tr/) | tr (OpenBSD) | 6.7 | https://github.com/ibara/libpuffy | | [`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 | | [`vitetris`](vitetris/) | vitetris | 0.59.1 | https://github.com/vicgeralds/vitetris |
| [`vttest`](vttest/) | vttest | 20210210 | https://invisible-island.net/vttest/ | | [`vttest`](vttest/) | vttest | 20210210 | https://invisible-island.net/vttest/ |
| [`yasm`](yasm/) | Yasm Modular Assembler | 1.3.0 | https://yasm.tortall.net/ | | [`yasm`](yasm/) | Yasm Modular Assembler | 1.3.0 | https://yasm.tortall.net/ |

View file

@ -1,9 +1,9 @@
#!/usr/bin/env -S bash ../.port_include.sh #!/usr/bin/env -S bash ../.port_include.sh
port=vim port=vim
version=git version=8.2.2772
workdir=vim-master workdir="${port}-${version}"
useconfigure="true" 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 auth_type=md5
configopts="--with-tlib=tinfo --with-features=normal" configopts="--with-tlib=tinfo --with-features=normal"
depends="ncurses" depends="ncurses"