[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64137] [PATCH v3 2/7] gnu: Add tsl-hopscotch-map.
From: |
David Elsing |
Subject: |
[bug#64137] [PATCH v3 2/7] gnu: Add tsl-hopscotch-map. |
Date: |
Sun, 25 Jun 2023 10:03:54 +0000 |
* gnu/packages/cpp.scm (tsl-hopscotch-map): New variable.
---
gnu/packages/cpp.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 8139a9d083..afa0878bb7 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -2588,3 +2588,39 @@ (define-public mpark-variant
"MPark.Variant provides the C++17 std::variant for C++11/14/17. It is
based on the implementation of std::variant in libc++.")
(license license:boost1.0)))
+
+(define-public tsl-hopscotch-map
+ (package
+ (name "tsl-hopscotch-map")
+ (version "2.3.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Tessil/hopscotch-map")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "012pw37w000pdxdvps0wsqrw6597cm6i6kr5rpl303qmiwqicb2p"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-cmake-test
+ (lambda _
+ (let ((file (open-file "CMakeLists.txt" "a")))
+ (display "\nenable_testing()\nadd_subdirectory(tests)" file)
+ (close-port file))
+ (substitute* "tests/CMakeLists.txt"
+ (("set\\(Boost_USE_STATIC_LIBS.*") "")
+ (("add_subdirectory\\(\\.\\..*")
+ "add_test(tsl_hopscotch_map_tests
tsl_hopscotch_map_tests)\n")))))))
+ (native-inputs (list boost))
+ (home-page "https://github.com/Tessil/hopscotch-map")
+ (synopsis "Hash maps and hash sets using hopscotch hashing in C++")
+ (description "This package provides a C++ implementation of several hash
+map and a hash set variants using open addressing and hopscotch hashing to
+resolve collisions. It is intended to be fast and provides additional
+features, such as heterogeneous lookups and different growth policies.")
+ (license license:expat)))
--
2.40.1
- [bug#64137] [PATCH v2 2/8] gnu: Add tsl-hopscotch-map., (continued)
- [bug#64137] [PATCH v2 6/8] gnu: clingo: Unbundle dependencies., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 6/8] gnu: clingo: Unbundle dependencies., Liliana Marie Prikler, 2023/06/22
- [bug#64137] [PATCH v2 3/8] gnu: Add tsl-sparse-map., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 4/8] gnu: Add tsl-ordered-map., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 8/8] gnu: Add catch2-static-3.3., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 8/8] gnu: Add catch2-static-3.3., Liliana Marie Prikler, 2023/06/22
- [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2, David Elsing, 2023/06/25
- [bug#64137] [PATCH v3 2/7] gnu: Add tsl-hopscotch-map.,
David Elsing <=
- [bug#64137] [PATCH v3 1/7] gnu: Add mpark-variant., David Elsing, 2023/06/25
- [bug#64137] [PATCH v3 4/7] gnu: Add tsl-ordered-map., David Elsing, 2023/06/25
- [bug#64137] [PATCH v3 6/7] gnu: clingo: Unbundle dependencies., David Elsing, 2023/06/25
- [bug#64137] [PATCH v3 5/7] gnu: Add tl-optional., David Elsing, 2023/06/25
- [bug#64137] [PATCH v3 3/7] gnu: Add tsl-sparse-map., David Elsing, 2023/06/25
- [bug#64137] [PATCH v3 7/7] gnu: catch2-3.1: Rename to catch2-3.3 and update to 3.3.2., David Elsing, 2023/06/25
- [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2, Liliana Marie Prikler, 2023/06/25