diff options
author | Pierre Blanchard <147173952+blapie@users.noreply.github.com> | 2024-03-12 10:04:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-12 11:04:17 +0100 |
commit | 03e22adb5b5a3ab099380142c286889d2ccd2fa5 (patch) | |
tree | 6a3ad44daf5637d613eaa3cf4b93c221bfa37f66 | |
parent | 5f5fc78236f8ad84121ac1d9aabf47d509676349 (diff) | |
download | spack-03e22adb5b5a3ab099380142c286889d2ccd2fa5.tar.gz spack-03e22adb5b5a3ab099380142c286889d2ccd2fa5.tar.bz2 spack-03e22adb5b5a3ab099380142c286889d2ccd2fa5.tar.xz spack-03e22adb5b5a3ab099380142c286889d2ccd2fa5.zip |
sleef: add v3.6 (#42978)
-rw-r--r-- | var/spack/repos/builtin/packages/sleef/package.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/sleef/package.py b/var/spack/repos/builtin/packages/sleef/package.py index d9ab3bbe12..55854015aa 100644 --- a/var/spack/repos/builtin/packages/sleef/package.py +++ b/var/spack/repos/builtin/packages/sleef/package.py @@ -10,18 +10,17 @@ class Sleef(CMakePackage): """SIMD Library for Evaluating Elementary Functions, vectorized libm and DFT.""" homepage = "https://sleef.org" - url = "https://github.com/shibatch/sleef/archive/3.2.tar.gz" + url = "https://github.com/shibatch/sleef/archive/3.6.tar.gz" git = "https://github.com/shibatch/sleef.git" + maintainers("blapie") + license("BSL-1.0") version("master", branch="master") + version("3.6", commit="a99491afee2bae0b11e9ffbf3211349f43a5fd10", preferred=True) version("3.5.1_2020-12-22", commit="e0a003ee838b75d11763aa9c3ef17bf71a725bff") # py-torch@1.8: - version( - "3.5.1", - sha256="415ee9b1bcc5816989d3d4d92afd0cd3f9ee89cbd5a33eb008e69751e40438ab", - preferred=True, - ) + version("3.5.1", sha256="415ee9b1bcc5816989d3d4d92afd0cd3f9ee89cbd5a33eb008e69751e40438ab") version( "3.4.0_2019-07-30", commit="7f523de651585fe25cade462efccca647dcc8d02" ) # py-torch@1.3:1.7 |