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>
This commit is contained in:
Rémi Lacroix 2020-07-10 15:27:07 +02:00 committed by GitHub
parent 7269a5bf51
commit ea546425e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,13 +9,14 @@
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")