summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRĂ©mi Lacroix <remi.lacroix@idris.fr>2020-07-10 15:27:07 +0200
committerGitHub <noreply@github.com>2020-07-10 08:27:07 -0500
commitea546425e8e04999683adae315c61181d7def5b6 (patch)
tree3d09f18331f9d783cb050f5c7ed74d1a321fa04b /var
parent7269a5bf5112ef1f160d1bf31691f7243c99c119 (diff)
downloadspack-ea546425e8e04999683adae315c61181d7def5b6.tar.gz
spack-ea546425e8e04999683adae315c61181d7def5b6.tar.bz2
spack-ea546425e8e04999683adae315c61181d7def5b6.tar.xz
spack-ea546425e8e04999683adae315c61181d7def5b6.zip
Update the bbcp package (#17436)
* bbcp: Update the URLs to use HTTPS. The HTTP URLs do not work anymore. * bbcp: Add missing libnsl dependency. * bbcp: Rename the git-based version to match the branch name. Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/bbcp/package.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/bbcp/package.py b/var/spack/repos/builtin/packages/bbcp/package.py
index 70c453825f..0ea5d88a89 100644
--- a/var/spack/repos/builtin/packages/bbcp/package.py
+++ b/var/spack/repos/builtin/packages/bbcp/package.py
@@ -9,13 +9,14 @@ from spack import *
class Bbcp(Package):
"""Securely and quickly copy data from source to target"""
- homepage = "http://www.slac.stanford.edu/~abh/bbcp/"
- git = "http://www.slac.stanford.edu/~abh/bbcp/bbcp.git"
+ homepage = "https://www.slac.stanford.edu/~abh/bbcp/"
+ git = "https://www.slac.stanford.edu/~abh/bbcp/bbcp.git"
- version('git', branch='master')
+ version('master', branch='master')
depends_on('zlib')
depends_on('openssl')
+ depends_on('libnsl')
def install(self, spec, prefix):
cd("src")