diff options
author | Swann Perarnau <swann.perarnau@gmail.com> | 2021-07-30 04:22:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 11:22:20 +0200 |
commit | c1de2e926d26467ebc0e34b801da70a8338e8f26 (patch) | |
tree | 752d6f589f0a83e83b644f4a0f763ad644a7635c | |
parent | 189ff91f25b4a73cb41c3914d2aac8436841f580 (diff) | |
download | spack-c1de2e926d26467ebc0e34b801da70a8338e8f26.tar.gz spack-c1de2e926d26467ebc0e34b801da70a8338e8f26.tar.bz2 spack-c1de2e926d26467ebc0e34b801da70a8338e8f26.tar.xz spack-c1de2e926d26467ebc0e34b801da70a8338e8f26.zip |
aml: update website, repository, and maintainer (#25140)
AML moved its repository and website during spring 2021.
Signed-off-by: Swann Perarnau <swann@anl.gov>
-rw-r--r-- | var/spack/repos/builtin/packages/aml/package.py | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/aml/package.py b/var/spack/repos/builtin/packages/aml/package.py index f282067300..f6f73d4f71 100644 --- a/var/spack/repos/builtin/packages/aml/package.py +++ b/var/spack/repos/builtin/packages/aml/package.py @@ -11,22 +11,23 @@ from spack import * class Aml(AutotoolsPackage): """AML: Building Blocks for Memory Management.""" - homepage = "https://xgitlab.cels.anl.gov/argo/aml" + homepage = "https://argo-aml.readthedocs.io/" url = "https://www.mcs.anl.gov/research/projects/argo/downloads/aml-0.1.0.tar.gz" - git = "https://xgitlab.cels.anl.gov/argo/aml.git" + git = "https://github.com/anlsys/aml.git" + maintainers = ['perarnau'] test_requires_compiler = True version('0.1.0', sha256='cc89a8768693f1f11539378b21cdca9f0ce3fc5cb564f9b3e4154a051dcea69b') - version('develop', branch='staging', submodules=True) version('master', branch='master', submodules=True) depends_on('numactl') - depends_on('m4', type='build') - depends_on('autoconf', type='build') - depends_on('automake', type='build') - depends_on('libtool', type='build') + with when('@master'): + depends_on('m4', type='build') + depends_on('autoconf', type='build') + depends_on('automake', type='build') + depends_on('libtool', type='build') @run_after('install') def cache_test_sources(self): |