summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAurelien Bouteiller <bouteill@icl.utk.edu>2022-03-07 12:05:14 -0500
committerGitHub <noreply@github.com>2022-03-07 09:05:14 -0800
commitfe8548853d0dd500d9ffcf4955132fb2e3f0207c (patch)
tree2ffacc945f7e0b31aa5b232885d15ea4748dc1b0 /var
parent4a17099cc3752fc4209fc42fcb9422b0425c3ca4 (diff)
downloadspack-fe8548853d0dd500d9ffcf4955132fb2e3f0207c.tar.gz
spack-fe8548853d0dd500d9ffcf4955132fb2e3f0207c.tar.bz2
spack-fe8548853d0dd500d9ffcf4955132fb2e3f0207c.tar.xz
spack-fe8548853d0dd500d9ffcf4955132fb2e3f0207c.zip
PaRSEC: moved repository to GitHub, now require cmake 3.18 (#29346)
Signed-off-by: Aurelien Bouteiller <bouteill@icl.utk.edu>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/parsec/package.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/parsec/package.py b/var/spack/repos/builtin/packages/parsec/package.py
index 1c41e7a1c7..670d04bf18 100644
--- a/var/spack/repos/builtin/packages/parsec/package.py
+++ b/var/spack/repos/builtin/packages/parsec/package.py
@@ -16,16 +16,16 @@ class Parsec(CMakePackage, CudaPackage):
"""
homepage = "https://icl.utk.edu/dte"
- git = "https://bitbucket.org/icldistcomp/parsec.git"
- url = "https://bitbucket.org/icldistcomp/parsec/get/parsec-3.0.2012.tar.bz2"
- list_url = "https://bitbucket.org/icldistcomp/parsec/downloads/?tab=tags"
+ 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"
maintainers = ['abouteiller', 'bosilca', 'herault']
- tags = ['e4s']
+ tags = ['e4s']
test_requires_compiler = True
version('master', branch='master')
- version('3.0.2012', sha256='f565bcfffe106be8237b6aea3e83a5770607b7236606414b6f270244fa6ec3bc')
+ version('3.0.2012', sha256='f565bcfffe106be8237b6aea3e83a5770607b7236606414b6f270244fa6ec3bc', url='https://bitbucket.org/icldistcomp/parsec/get/parsec-3.0.2012.tar.bz2')
version('1.1.0', sha256='d2928033c121000ae0a554f1e7f757c1f22274a8b74457ecd52744ae1f70b95a', url='https://bitbucket.org/icldistcomp/parsec/get/v1.1.0.tar.bz2')
variant('build_type', default='RelWithDebInfo', description='CMake build type', values=('Debug', 'Release', 'RelWithDebInfo'))
@@ -38,7 +38,7 @@ class Parsec(CMakePackage, CudaPackage):
# TODO: Spack does not handle cross-compilation atm
# variant('xcompile', default=False, description='Cross compile')
- depends_on('cmake@3.16:', type='build')
+ depends_on('cmake@3.18:', type='build')
depends_on('python', type='build')
depends_on('flex', type='build')
depends_on('bison', type='build')