diff options
author | Matthias Diener <matthias.diener@gmail.com> | 2018-12-10 07:28:52 -0600 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2018-12-10 14:28:52 +0100 |
commit | 2670823c1e12c3b1d3063016bc70ad3c029d3f9c (patch) | |
tree | 8668fdd52d31318e2d98a3e8e94ee58f3284048a | |
parent | 8f0fc259c8bdcbbb7d28506f872e085b5fa8356f (diff) | |
download | spack-2670823c1e12c3b1d3063016bc70ad3c029d3f9c.tar.gz spack-2670823c1e12c3b1d3063016bc70ad3c029d3f9c.tar.bz2 spack-2670823c1e12c3b1d3063016bc70ad3c029d3f9c.tar.xz spack-2670823c1e12c3b1d3063016bc70ad3c029d3f9c.zip |
cloc: URLs are now consistent (#10068)
Fixed in upstream:
https://github.com/AlDanial/cloc/issues/352
-rw-r--r-- | var/spack/repos/builtin/packages/cloc/package.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/cloc/package.py b/var/spack/repos/builtin/packages/cloc/package.py index f1ec102ecb..3342dd7424 100644 --- a/var/spack/repos/builtin/packages/cloc/package.py +++ b/var/spack/repos/builtin/packages/cloc/package.py @@ -13,9 +13,7 @@ class Cloc(Package): homepage = "https://github.com/AlDanial/cloc/" url = "https://github.com/AlDanial/cloc/releases/download/1.74/cloc-1.74.tar.gz" - # cloc versions have an inconsistent URL scheme - version('1.80', sha256='082f53530eee3f9ee84ec449eca59a77ff114250cd7daf9519679537b5b21d67', - url="https://github.com/AlDanial/cloc/releases/download/v1.80/cloc-1.80.tar.gz") + version('1.80', sha256='082f53530eee3f9ee84ec449eca59a77ff114250cd7daf9519679537b5b21d67') version('1.74', '1372da13a83862c186aa0b6b0c9b86f5') depends_on('perl') |