opensubdiv: add version 3.4.3 and change version number format (#22571)

This commit is contained in:
Jen Herting 2021-03-27 13:16:27 -04:00 committed by GitHub
parent cc0b3017ea
commit ec2abbafa3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,12 @@ class Opensubdiv(CMakePackage, CudaPackage):
git = "https://github.com/PixarAnimationStudios/OpenSubdiv" git = "https://github.com/PixarAnimationStudios/OpenSubdiv"
version('develop', branch='dev') version('develop', branch='dev')
version('3_4_0', sha256='d932b292f83371c7518960b2135c7a5b931efb43cdd8720e0b27268a698973e4') version('3.4.3', sha256='7b22eb27d636ab0c1e03722c7a5a5bd4f11664ee65c9b48f341a6d0ce7f36745')
version('3.4.0', sha256='d932b292f83371c7518960b2135c7a5b931efb43cdd8720e0b27268a698973e4')
def url_for_version(self, version):
url = "https://github.com/PixarAnimationStudios/OpenSubdiv/archive/v{0}.tar.gz"
return url.format(version.underscored)
variant('tbb', default=False, description='Builds with Intel TBB support') variant('tbb', default=False, description='Builds with Intel TBB support')
variant('openmp', default=False, description='Builds with OpenMP support') variant('openmp', default=False, description='Builds with OpenMP support')