diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-09-01 08:12:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-01 08:12:14 -0500 |
commit | 4920f1cff14b5a5f0224e2307745eabf2be77ec4 (patch) | |
tree | 1effae9a90fade0a5a63b5f335220b76b64f689a /var | |
parent | c5c3b65c60be0034e140929135c8e4d7e2ade940 (diff) | |
download | spack-4920f1cff14b5a5f0224e2307745eabf2be77ec4.tar.gz spack-4920f1cff14b5a5f0224e2307745eabf2be77ec4.tar.bz2 spack-4920f1cff14b5a5f0224e2307745eabf2be77ec4.tar.xz spack-4920f1cff14b5a5f0224e2307745eabf2be77ec4.zip |
Vim: add version 8.1.0338 (#9155)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/vim/package.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/vim/package.py b/var/spack/repos/builtin/packages/vim/package.py index 407ad12df9..e1c6d8bc55 100644 --- a/var/spack/repos/builtin/packages/vim/package.py +++ b/var/spack/repos/builtin/packages/vim/package.py @@ -35,8 +35,9 @@ class Vim(AutotoolsPackage): """ homepage = "http://www.vim.org" - url = "https://github.com/vim/vim/archive/v8.0.1376.tar.gz" + url = "https://github.com/vim/vim/archive/v8.1.0338.tar.gz" + version('8.1.0338', '94191b4141245a5deb4955c4a80359bb') version('8.1.0001', 'edb6f5c67cb3100ea9e3966a43b9c9da') version('8.0.1376', '62855881a2d96d48956859d74cfb8a3b') version('8.0.0503', '82b77bd5cb38b70514bed47cfe033b8c') @@ -142,6 +143,10 @@ class Vim(AutotoolsPackage): return configure_args + # Tests must be run in serial + def check(self): + make('test', parallel=False) + # Run the install phase with -j 1. There seems to be a problem with # parallel builds that results in the creation of the links (e.g. view) # to the vim binary silently failing. |