add gdrcopy 2.1 (#19151)

This commit is contained in:
Hervé Yviquel 2020-10-05 22:08:17 -03:00 committed by GitHub
parent 95a46de7cb
commit 7d4663ea5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,13 +11,21 @@ class Gdrcopy(MakefilePackage):
RDMA technology.""" RDMA technology."""
homepage = "https://github.com/NVIDIA/gdrcopy" homepage = "https://github.com/NVIDIA/gdrcopy"
url = "https://github.com/NVIDIA/gdrcopy/archive/v2.0-beta.3.tar.gz" url = "https://github.com/NVIDIA/gdrcopy/archive/2.1.tar.gz"
git = "https://github.com/NVIDIA/gdrcopy" git = "https://github.com/NVIDIA/gdrcopy"
version('master', branch='master') version('master', branch='master')
version('2.1', sha256='cecc7dcc071107f77396f5553c9109790b6d2298ae29eb2dbbdd52b2a213e4ea')
version('2.0', sha256='98320e6e980a7134ebc4eedd6cf23647104f2b3c557f2eaf0d31a02609f5f2b0') version('2.0', sha256='98320e6e980a7134ebc4eedd6cf23647104f2b3c557f2eaf0d31a02609f5f2b0')
version('1.3', sha256='f11cdfe389b685f6636b80b4a3312dc014a385ad7220179c1318c60e2e28af3a') version('1.3', sha256='f11cdfe389b685f6636b80b4a3312dc014a385ad7220179c1318c60e2e28af3a')
def url_for_version(self, version):
if version >= Version('2.1'):
return super(Gdrcopy, self).url_for_version(version)
url_fmt = "https://github.com/NVIDIA/gdrcopy/archive/v{0}.tar.gz"
return url_fmt.format(version)
def build(self, spec, prefix): def build(self, spec, prefix):
make('lib') make('lib')