pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/robin-map
Module Name: pkgsrc
Committed By: wiz
Date: Wed Aug 13 06:01:02 UTC 2025
Modified Files:
pkgsrc/devel/robin-map: Makefile distinfo
Log Message:
robin-map: update to 1.4.0.
Add a CMake TSL_ROBIN_MAP_ENABLE_INSTALL option to explicitly enable/disable the install target
Move to C++17 dropping C++11 support
Bump cmake_minimum_required version to 3.5
Fix load threshold on deserialization
The current version computes load using max_load_factor() without first
setting m_bucket_count (default 0) leading to threshold 0, which
triggers rehash (and size increase) on first insert.
Recompute the threshold after setting correct bucket count to avoid
this.
Use inline constexpr for PRIMES and MOD_PRIME arrays
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/robin-map/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/robin-map/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/robin-map/Makefile
diff -u pkgsrc/devel/robin-map/Makefile:1.2 pkgsrc/devel/robin-map/Makefile:1.3
--- pkgsrc/devel/robin-map/Makefile:1.2 Sun Aug 4 07:18:56 2024
+++ pkgsrc/devel/robin-map/Makefile Wed Aug 13 06:01:02 2025
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2024/08/04 07:18:56 adam Exp $
+# $NetBSD: Makefile,v 1.3 2025/08/13 06:01:02 wiz Exp $
-DISTNAME= robin-map-1.3.0
+DISTNAME= robin-map-1.4.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=Tessil/}
GITHUB_TAG= v${PKGVERSION_NOREV}
Index: pkgsrc/devel/robin-map/distinfo
diff -u pkgsrc/devel/robin-map/distinfo:1.4 pkgsrc/devel/robin-map/distinfo:1.5
--- pkgsrc/devel/robin-map/distinfo:1.4 Sun Aug 4 07:18:56 2024
+++ pkgsrc/devel/robin-map/distinfo Wed Aug 13 06:01:02 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2024/08/04 07:18:56 adam Exp $
+$NetBSD: distinfo,v 1.5 2025/08/13 06:01:02 wiz Exp $
-BLAKE2s (robin-map-1.3.0.tar.gz) = 0f21b5cbfb07724f3956ea8ccd30f111de2f3f0a5b04561b0600c86e8ab38073
-SHA512 (robin-map-1.3.0.tar.gz) = 862cb98d771d1acb692e27d1cc8a4f2cda0883b66af7b38b63ea702ed2d4fc4d49e5700ca4d5f5148fee132f36e111c4839d4f8c52c96a9c60f3937d941b2320
-Size (robin-map-1.3.0.tar.gz) = 70562 bytes
+BLAKE2s (robin-map-1.4.0.tar.gz) = 53de36d39b04d54de4beb8e63089a5f25a6e906b83c66f707ab76ee43272bb2a
+SHA512 (robin-map-1.4.0.tar.gz) = d65831ac9d1ae1b26d26386ee06835d788d18529d1cd9132f892091377572b2f9d68aaecfce79956238d327764fea7a144ad2922ced3cbe47cda8734b2df419f
+Size (robin-map-1.4.0.tar.gz) = 70352 bytes
Home |
Main Index |
Thread Index |
Old Index