diff options
author | James Taliaferro <44253038+taliaferro@users.noreply.github.com> | 2024-08-01 09:40:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-01 09:40:28 -0700 |
commit | e669fcafd090448ca56322772ed47082e8cd0a50 (patch) | |
tree | fe4eb1456aa3664f3cb00a00f2f6504f12665053 /var | |
parent | 2dbbcf3ca5dc5a6413c6733846c22a9860910174 (diff) | |
download | spack-e669fcafd090448ca56322772ed47082e8cd0a50.tar.gz spack-e669fcafd090448ca56322772ed47082e8cd0a50.tar.bz2 spack-e669fcafd090448ca56322772ed47082e8cd0a50.tar.xz spack-e669fcafd090448ca56322772ed47082e8cd0a50.zip |
kakoune: add v2024.05.18 (#45460)
* update Kakoune, explicitly make install dirs first
* blacken
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/kakoune/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/kakoune/package.py b/var/spack/repos/builtin/packages/kakoune/package.py index b9aa23e04c..a55761fcb6 100644 --- a/var/spack/repos/builtin/packages/kakoune/package.py +++ b/var/spack/repos/builtin/packages/kakoune/package.py @@ -19,6 +19,9 @@ class Kakoune(MakefilePackage): license("Unlicense") version( + "2024.05.18", sha256="dae8ac2e61d21d9bcd10145aa70b421234309a7b0bc57fad91bc34dbae0cb9fa" + ) + version( "2024.05.09", sha256="2190bddfd3af590c0593c38537088976547506f47bd6eb6c0e22350dbd16a229" ) version( @@ -40,4 +43,4 @@ class Kakoune(MakefilePackage): @property def install_targets(self): - return ["-e", f"PREFIX={prefix}", "install"] + return ["-e", f"PREFIX={prefix}", "installdirs", "install"] |