diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-09-16 14:03:39 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 12:03:39 -0700 |
commit | 9c222aee67906ba620754e3fcf840be9cd62e0f8 (patch) | |
tree | f346a63a70fd9d167aed0bdd5a09a8b0d8ccc21a | |
parent | fcc28d72e82b9724166f3868b513a597d3ae2257 (diff) | |
download | spack-9c222aee67906ba620754e3fcf840be9cd62e0f8.tar.gz spack-9c222aee67906ba620754e3fcf840be9cd62e0f8.tar.bz2 spack-9c222aee67906ba620754e3fcf840be9cd62e0f8.tar.xz spack-9c222aee67906ba620754e3fcf840be9cd62e0f8.zip |
libedit: add v3.1-20240517, v3.1-20240808 (#46366)
-rw-r--r-- | var/spack/repos/builtin/packages/libedit/package.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/libedit/package.py b/var/spack/repos/builtin/packages/libedit/package.py index 5a85f50e33..98ecb9251b 100644 --- a/var/spack/repos/builtin/packages/libedit/package.py +++ b/var/spack/repos/builtin/packages/libedit/package.py @@ -12,9 +12,15 @@ class Libedit(AutotoolsPackage): homepage = "https://thrysoee.dk/editline/" url = "https://thrysoee.dk/editline/libedit-20170329-3.1.tar.gz" - license("BSD-3-Clause") + license("BSD-3-Clause", checked_by="wdconinc") version( + "3.1-20240808", sha256="5f0573349d77c4a48967191cdd6634dd7aa5f6398c6a57fe037cc02696d6099f" + ) + version( + "3.1-20240517", sha256="3a489097bb4115495f3bd85ae782852b7097c556d9500088d74b6fa38dbd12ff" + ) + version( "3.1-20230828", sha256="4ee8182b6e569290e7d1f44f0f78dac8716b35f656b76528f699c69c98814dad" ) version( @@ -33,7 +39,7 @@ class Libedit(AutotoolsPackage): "3.1-20150325", sha256="c88a5e4af83c5f40dda8455886ac98923a9c33125699742603a88a0253fcc8c5" ) - depends_on("c", type="build") # generated + depends_on("c", type="build") depends_on("pkgconfig", type="build") depends_on("ncurses") |