summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorbernhardkaindl <43588962+bernhardkaindl@users.noreply.github.com>2021-10-01 23:48:33 +0200
committerGitHub <noreply@github.com>2021-10-01 23:48:33 +0200
commit9893718f78a7358a7a3d5c3f317fb16a38e80db6 (patch)
tree84f3c282e1a2db9536948f352d619da5e0645b96 /var
parent2f630226e7722b7e2087c7771086e5745edce98c (diff)
downloadspack-9893718f78a7358a7a3d5c3f317fb16a38e80db6.tar.gz
spack-9893718f78a7358a7a3d5c3f317fb16a38e80db6.tar.bz2
spack-9893718f78a7358a7a3d5c3f317fb16a38e80db6.tar.xz
spack-9893718f78a7358a7a3d5c3f317fb16a38e80db6.zip
axel(download manager): fix build, bump version (#26140)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/axel/package.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/var/spack/repos/builtin/packages/axel/package.py b/var/spack/repos/builtin/packages/axel/package.py
index 0c68680a2d..763c05acb6 100644
--- a/var/spack/repos/builtin/packages/axel/package.py
+++ b/var/spack/repos/builtin/packages/axel/package.py
@@ -10,18 +10,15 @@ class Axel(AutotoolsPackage):
"""Axel is a light command line download accelerator for Linux and Unix"""
homepage = "https://github.com/axel-download-accelerator/axel"
- url = "https://github.com/axel-download-accelerator/axel/archive/v2.16.1.tar.gz"
+ url = 'https://github.com/axel-download-accelerator/axel/releases/download/v2.17.10/axel-2.17.10.tar.bz2'
- version('2.16.1', sha256='64529add74df3db828f704b42d4ec3fcdacb8142c84f051f9213637c337e706c')
+ version('2.17.10', sha256='c0d26eba6b94945cd98c5b69ca6df2744639d17bfd49047ef51a8a48f067de10')
+ version('2.16.1', sha256='763066efc61e4f7be2eb59afa049bdbc520837e01c95a78f403e542ad82f2719')
- depends_on('m4', type='build')
- depends_on('autoconf', type='build')
- depends_on('automake', type='build')
- depends_on('libtool', type='build')
depends_on('pkgconfig', type='build')
+ # For systems not providing libintl APU in the system libc (glibc integrated it)
depends_on('gettext')
depends_on('openssl')
- def autoreconf(self, spec, prefix):
- bash = which('bash')
- bash('./autogen.sh')
+ def installcheck(self):
+ Executable(self.prefix.bin.axel)('--version')