# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= frozen VERSION= 1.1.1 KEYWORDS= devel VARIANTS= standard SDESC[standard]= 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.1.1 DISTFILE[1]= generated:main DF_INDEX= 1 SPKGS[standard]= 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] f7c7075750e8fceeac081e9ef01944f221b36d9725beac8681cbd2838d26be45 186589 serge-sans-paille-frozen-1.1.1.tar.gz [FILE:312: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 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"