fastjet: use mirror for sources (#29357)

as a workaround for https://github.com/spack/spack/issues/20050
This commit is contained in:
Valentin Volkl 2022-03-17 13:21:36 +01:00 committed by GitHub
parent 9ba41449a9
commit 3544b0274f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,11 @@ class Fastjet(AutotoolsPackage):
"""
homepage = "http://fastjet.fr/"
url = "http://fastjet.fr/repo/fastjet-3.3.3.tar.gz"
# The server that hosts fastjet.fr rejects range request
# which causes spack to fail during fetching. Until this is fixed, use
# a mirror instead of the upstream url
# url = "http://fastjet.fr/repo/fastjet-3.4.0.tar.gz"
url = "https://lcgpackages.web.cern.ch/tarFiles/sources/fastjet-3.3.4.tar.gz"
tags = ['hep']