parallel-hashmap: add v1.3.12 (#46017)

Co-authored-by: pranav-sivaraman <pranav-sivaraman@users.noreply.github.com>
This commit is contained in:
Pranav Sivaraman 2024-08-26 12:03:38 -04:00 committed by GitHub
parent 904d85b53b
commit cd6ee96398
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,10 +15,20 @@ class ParallelHashmap(CMakePackage):
license("Apache-2.0") license("Apache-2.0")
version("1.3.12", sha256="0cc203144321924cfbfcc401f42d8204c0dd24e2760c7a1c091baa16d9777c08")
version("1.3.11", sha256="0515a681bfb24207013786a7737e9d8561302e656689d8a65ea480bbabab460f") version("1.3.11", sha256="0515a681bfb24207013786a7737e9d8561302e656689d8a65ea480bbabab460f")
depends_on("cxx", type="build") # generated variant("examples", description="Build examples", default=False)
depends_on("cxx", type="build")
depends_on("cmake@3.8:", type="build") depends_on("cmake@3.8:", type="build")
patch("pthread.patch") patch("pthread.patch")
def cmake_args(self):
args = [
self.define_from_variant("PHMAP_BUILD_EXAMPLES", "examples"),
self.define("PHMAP_BUILD_TESTS", False), # disable due to vendored gtest
]
return args