diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-11-12 13:31:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-12 11:31:57 -0700 |
commit | f6d6a5a480450c90b256c2f06104b057add8fa57 (patch) | |
tree | b7d7971bc320575c59cf2cdbe67ee3fbd2d0d50e /var | |
parent | 57a1ebc77ee69a15902f3e65a8467d4937c3f194 (diff) | |
download | spack-f6d6a5a480450c90b256c2f06104b057add8fa57.tar.gz spack-f6d6a5a480450c90b256c2f06104b057add8fa57.tar.bz2 spack-f6d6a5a480450c90b256c2f06104b057add8fa57.tar.xz spack-f6d6a5a480450c90b256c2f06104b057add8fa57.zip |
parsec: update urls (#47416)
* parsec: update urls
* parsec: fix homepage
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/parsec/package.py | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/var/spack/repos/builtin/packages/parsec/package.py b/var/spack/repos/builtin/packages/parsec/package.py index faba983eea..e15068a15e 100644 --- a/var/spack/repos/builtin/packages/parsec/package.py +++ b/var/spack/repos/builtin/packages/parsec/package.py @@ -15,7 +15,7 @@ class Parsec(CMakePackage, CudaPackage): parallel execution of micro-tasks on distributed, heterogeneous systems. """ - homepage = "https://icl.utk.edu/dte" + homepage = "https://github.com/icldisco/parsec" git = "https://github.com/icldisco/parsec.git" url = "https://github.com/ICLDisco/parsec/archive/refs/tags/parsec-3.0.2012.tar.gz" list_url = "https://github.com/ICLDisco/parsec/tags" @@ -27,20 +27,12 @@ class Parsec(CMakePackage, CudaPackage): license("BSD-3-Clause-Open-MPI") version("master", branch="master") - version( - "3.0.2209", - sha256="67d383d076991484cb2a265f56420abdea7cc1f329c63ac65a3e96fbfb6cc295", - url="https://bitbucket.org/icldistcomp/parsec/get/parsec-3.0.2209.tar.bz2", - ) - version( - "3.0.2012", - sha256="f565bcfffe106be8237b6aea3e83a5770607b7236606414b6f270244fa6ec3bc", - url="https://bitbucket.org/icldistcomp/parsec/get/parsec-3.0.2012.tar.bz2", - ) + version("3.0.2209", sha256="67d383d076991484cb2a265f56420abdea7cc1f329c63ac65a3e96fbfb6cc295") + version("3.0.2012", sha256="7a8403ca67305738f3974cbc7a51b64c4ec353ae9170f2468262a9a52035eff6") version( "1.1.0", - sha256="d2928033c121000ae0a554f1e7f757c1f22274a8b74457ecd52744ae1f70b95a", - url="https://bitbucket.org/icldistcomp/parsec/get/v1.1.0.tar.bz2", + sha256="d1e038713f2c1cd7db6765c891408d85648c46ee23e780fbd5e941b53c9eef85", + url="https://github.com/ICLDisco/parsec/archive/refs/tags/v1.1.0.tar.gz", ) variant( |