# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= frozen VERSION= 1.2.0 KEYWORDS= devel VARIANTS= std SDESC[std]= Constexpr header alternative to gperf for C++14 HOMEPAGE= https://github.com/serge-sans-paille/frozen CONTACT= nobody DOWNLOAD_GROUPS= main SITES[main]= GITHUB/serge-sans-paille:frozen:1.2.0 DISTFILE[1]= generated:main DF_INDEX= 1 SPKGS[std]= single OPTIONS_AVAILABLE= none OPTIONS_STANDARD= none USES= cmake LICENSE= APACHE20:single LICENSE_TERMS= single:{{WRKDIR}}/TERMS LICENSE_FILE= APACHE20:{{WRKSRC}}/LICENSE LICENSE_AWK= TERMS:"^$$" LICENSE_SOURCE= TERMS:{{WRKSRC}}/include/frozen/set.h LICENSE_SCHEME= solo [FILE:850:descriptions/desc.single] Header-only library that provides 0 cost initialization for immutable containers, fixed-size containers, and various algorithms. Frozen provides: - immutable (a.k.a. frozen), constexpr-compatible versions of std::set, std::unordered_set, std::map and std::unordered_map. - fixed-capacity, constinit-compatible versions of std::map and std::unordered_map with immutable, compile-time selected keys mapped to mutable values. - 0-cost initialization version of std::search for frozen needles using Boyer-Moore or Knuth-Morris-Pratt algorithms. The unordered_* containers are guaranteed perfect (a.k.a. no hash collision) and the extra storage is linear with respect to the key number. Once initialized, the container keys cannot be updated, and in exchange, lookups are faster. And initialization is free when constexpr or constinit is used. [FILE:116:distinfo] ed8339c017d7c5fe019ac2c642477f435278f0dc643c1d69d3f3b1e95915e823 187169 serge-sans-paille-frozen-1.2.0.tar.gz [FILE:319:manifests/plist.single] include/frozen/ algorithm.h map.h random.h set.h string.h unordered_map.h unordered_set.h include/frozen/bits/ algorithms.h basic_types.h constexpr_assert.h defines.h elsa.h elsa_std.h exceptions.h hash_string.h mpl.h pmh.h version.h share/cmake/frozen/ frozenConfig.cmake frozenConfigVersion.cmake [FILE:266:patches/patch-include_frozen_bits_pmh.h] --- include/frozen/bits/pmh.h.orig 2022-03-31 05:56:25 UTC +++ include/frozen/bits/pmh.h @@ -24,6 +24,7 @@ #ifndef FROZEN_LETITGO_PMH_H #define FROZEN_LETITGO_PMH_H +#include #include "frozen/bits/algorithms.h" #include "frozen/bits/basic_types.h"