diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-09-12 14:08:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 12:08:37 -0700 |
commit | 94af1d2dfe88c41ef041402d80094bbce74ee0a6 (patch) | |
tree | 6c4f1b0903b1c5385c496302b2d83610a5403f40 | |
parent | d4bc1b8be2f239b5febc437ba7c71d34d535d674 (diff) | |
download | spack-94af1d2dfe88c41ef041402d80094bbce74ee0a6.tar.gz spack-94af1d2dfe88c41ef041402d80094bbce74ee0a6.tar.bz2 spack-94af1d2dfe88c41ef041402d80094bbce74ee0a6.tar.xz spack-94af1d2dfe88c41ef041402d80094bbce74ee0a6.zip |
tl-expected: add v1.1.0; deprecated custom calver version (#46036)
* tl-expected: add v1.1.0; deprecated calver version
* tl-expected: fix url
-rw-r--r-- | var/spack/repos/builtin/packages/tl-expected/package.py | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/var/spack/repos/builtin/packages/tl-expected/package.py b/var/spack/repos/builtin/packages/tl-expected/package.py index 0bd6107cfc..bffc895b9e 100644 --- a/var/spack/repos/builtin/packages/tl-expected/package.py +++ b/var/spack/repos/builtin/packages/tl-expected/package.py @@ -10,18 +10,20 @@ class TlExpected(CMakePackage): """C++11/14/17 std::expected with functional-style extensions.""" homepage = "https://tl.tartanllama.xyz/en/latest/" - url = "https://github.com/TartanLlama/expected/archive/1.0.0.tar.gz" + url = "https://github.com/TartanLlama/expected/archive/refs/tags/v1.0.0.tar.gz" git = "https://github.com/TartanLlama/expected.git" maintainers("charmoniumQ") - license("CC0-1.0") + license("CC0-1.0", checked_by="wdconinc") - # Note that the 1.0.0 has this issue: - # https://github.com/TartanLlama/expected/issues/114 - # But no new patch version has been released, - # so I will use the latest commit at the time of writing: - version("2022-11-24", commit="b74fecd4448a1a5549402d17ddc51e39faa5020c") + version("1.1.0", sha256="1db357f46dd2b24447156aaf970c4c40a793ef12a8a9c2ad9e096d9801368df6") + with default_args(deprecated=True): + # Note that the 1.0.0 has this issue: + # https://github.com/TartanLlama/expected/issues/114 + # But no new patch version has been released, + # so I will use the latest commit at the time of writing: + version("2022-11-24", commit="b74fecd4448a1a5549402d17ddc51e39faa5020c") version("1.0.0", sha256="8f5124085a124113e75e3890b4e923e3a4de5b26a973b891b3deb40e19c03cee") - depends_on("cxx", type="build") # generated + depends_on("cxx", type="build") |