
* LBANN: add python dependency and required python library dependencies * LBANN: add version 0.99 as alias for develop branch * LBANN: build Conduit library by default * LBANN: CUB is included with Hydrogen for later versions * New package: py-graphviz (dependency for LBANN) * New package: py-texttable (dependency for LBANN) * New package: py-onnx (dependency for LBANN) * New package: py-typing-extensions (dependency for py-onnx) * Conduit: add version 0.4.0 * NCCL: Add versions 2.4.6-1 and 2.4.2-1 * Protobuf: Add versions 3.7.1 and 3.7.0 * py-protobuf: add version 3.7.1 * py-typing: add version 3.6.4 * cuDNN: add versions. The source differs depending on the architecture, so the versions include a suffix to encode this. For example this adds 7.5.1-10.1-x86_64 as well as 7.5.1-10.1-ppc64le * cuDNN: Newer versions require newer versions of CUDA * Hydrogen: add configure options for CUB and Aluminum
67 lines
2.6 KiB
Python
67 lines
2.6 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
import sys
|
|
from spack import *
|
|
import spack.util.web
|
|
|
|
|
|
class Protobuf(CMakePackage):
|
|
"""Google's data interchange format."""
|
|
|
|
homepage = "https://developers.google.com/protocol-buffers"
|
|
url = "https://github.com/protocolbuffers/protobuf/archive/v3.2.0.tar.gz"
|
|
root_cmakelists_dir = "cmake"
|
|
|
|
version('3.7.1', sha256='f1748989842b46fa208b2a6e4e2785133cfcc3e4d43c17fecb023733f0f5443f')
|
|
version('3.7.0', sha256='a19dcfe9d156ae45d209b15e0faed5c7b5f109b6117bfc1974b6a7b98a850320')
|
|
version('3.6.1', sha256='3d4e589d81b2006ca603c1ab712c9715a76227293032d05b26fca603f90b3f5b')
|
|
version('3.5.2', 'ff6742018c172c66ecc627029ad54280')
|
|
version('3.5.1.1', '5005003ae6b94773c4bbca87a644b131')
|
|
version('3.5.1', '710f1a75983092c9b45ecef207236104')
|
|
version('3.5.0.1', 'b3ed2401acf167207277b254fd7f9638')
|
|
version('3.5.0', 'd95db321e1a9901fffc51ed8994afd36')
|
|
version('3.4.1', '31b19dcfd6567095fdb66a8c07347222')
|
|
version('3.4.0', '1d077a7d4db3d75681f5c333f2de9b1a')
|
|
version('3.3.0', 'f0f712e98de3db0c65c0c417f5e7aca8')
|
|
version('3.2.0', 'efaa08ae635664fb5e7f31421a41a995')
|
|
version('3.1.0', '39d6a4fa549c0cce164aa3064b1492dc')
|
|
version('3.0.2', '7349a7f43433d72c6d805c6ca22b7eeb')
|
|
# does not build with CMake:
|
|
# version('2.5.0', '9c21577a03adc1879aba5b52d06e25cf')
|
|
|
|
variant('shared', default=True,
|
|
description='Enables the build of shared libraries')
|
|
|
|
depends_on('zlib')
|
|
|
|
conflicts('%gcc@:4.6', when='@3.6.0:') # Requires c++11
|
|
conflicts('%gcc@:4.6', when='@3.2.0:3.3.0') # Breaks
|
|
|
|
# first fixed in 3.4.0: https://github.com/google/protobuf/pull/3406
|
|
patch('pkgconfig.patch', when='@:3.3.2')
|
|
|
|
patch('intel_inline.patch', when='@3.2.0: %intel')
|
|
|
|
def fetch_remote_versions(self):
|
|
"""Ignore additional source artifacts uploaded with releases,
|
|
only keep known versions
|
|
fix for https://github.com/spack/spack/issues/5356"""
|
|
return dict(map(
|
|
lambda u: (u, self.url_for_version(u)),
|
|
spack.util.web.find_versions_of_archive(
|
|
self.all_urls, self.list_url, self.list_depth)
|
|
))
|
|
|
|
def cmake_args(self):
|
|
args = [
|
|
'-DBUILD_SHARED_LIBS=%s' % int('+shared' in self.spec),
|
|
'-Dprotobuf_BUILD_TESTS:BOOL=OFF',
|
|
'-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=ON'
|
|
]
|
|
if sys.platform == 'darwin':
|
|
args.extend(['-DCMAKE_MACOSX_RPATH=ON'])
|
|
return args
|