diff options
author | Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> | 2023-09-11 22:45:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-11 22:45:21 +0200 |
commit | 0e4e232ad13c05952cf399d7fd9b2081158f5da5 (patch) | |
tree | 17379af16f1a1d83f5840da368a1d5e5672ee733 | |
parent | 145d44cd97576d3c873e0cc43cf5d3fa857a523d (diff) | |
download | spack-0e4e232ad13c05952cf399d7fd9b2081158f5da5.tar.gz spack-0e4e232ad13c05952cf399d7fd9b2081158f5da5.tar.bz2 spack-0e4e232ad13c05952cf399d7fd9b2081158f5da5.tar.xz spack-0e4e232ad13c05952cf399d7fd9b2081158f5da5.zip |
Add another url for whizard (#37354)
Co-authored-by: jmcarcell <jmcarcell@users.noreply.github.com>
-rw-r--r-- | var/spack/repos/builtin/packages/whizard/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/whizard/package.py b/var/spack/repos/builtin/packages/whizard/package.py index 39290fa84b..a9ccf9de2e 100644 --- a/var/spack/repos/builtin/packages/whizard/package.py +++ b/var/spack/repos/builtin/packages/whizard/package.py @@ -12,7 +12,10 @@ class Whizard(AutotoolsPackage): and simulated event samples.""" homepage = "whizard.hepforge.org" - url = "https://whizard.hepforge.org/downloads/?f=whizard-2.8.3.tar.gz" + urls = [ + "https://launchpad.net/whizard/3.1.x/3.1.2/+download/whizard-3.1.2.tar.gz", + "https://whizard.hepforge.org/downloads/?f=whizard-2.8.3.tar.gz", + ] git = "https://gitlab.tp.nt.uni-siegen.de/whizard/public.git" tags = ["hep"] |