git: 715201711beb - main - devel/robin-map: update to v1.4.1

From: Fernando Apesteguía <fernape_at_FreeBSD.org>
Date: Wed, 31 Dec 2025 14:00:02 UTC
The branch main has been updated by fernape:

URL: https://cgit.FreeBSD.org/ports/commit/?id=715201711bebbbb59f41faa47b0aa893a44a0b20

commit 715201711bebbbb59f41faa47b0aa893a44a0b20
Author:     Shane <FreeBSD@ShaneWare.Biz>
AuthorDate: 2025-12-30 17:12:13 +0000
Commit:     Fernando Apesteguía <fernape@FreeBSD.org>
CommitDate: 2025-12-31 13:59:41 +0000

    devel/robin-map: update to v1.4.1
    
    ChangeLog: https://github.com/Tessil/robin-map/releases
    
     * 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
    
    PR:             292035
    Reported by:    FreeBSD@ShaneWare.Biz
---
 devel/robin-map/Makefile | 3 +--
 devel/robin-map/distinfo | 6 +++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/devel/robin-map/Makefile b/devel/robin-map/Makefile
index f758a1214a7b..1e52964c92f4 100644
--- a/devel/robin-map/Makefile
+++ b/devel/robin-map/Makefile
@@ -1,7 +1,6 @@
 PORTNAME=	robin-map
 DISTVERSIONPREFIX=	v
-DISTVERSION=	1.3.0
-PORTREVISION=	1
+DISTVERSION=	1.4.1
 CATEGORIES=	devel
 
 MAINTAINER=	FreeBSD@Shaneware.biz
diff --git a/devel/robin-map/distinfo b/devel/robin-map/distinfo
index e0c23703d0ce..b393b4e79c1e 100644
--- a/devel/robin-map/distinfo
+++ b/devel/robin-map/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1714595861
-SHA256 (Tessil-robin-map-v1.3.0_GH0.tar.gz) = a8424ad3b0affd4c57ed26f0f3d8a29604f0e1f2ef2089f497f614b1c94c7236
-SIZE (Tessil-robin-map-v1.3.0_GH0.tar.gz) = 70562
+TIMESTAMP = 1766886896
+SHA256 (Tessil-robin-map-v1.4.1_GH0.tar.gz) = 0e3f53a377fdcdc5f9fed7a4c0d4f99e82bbb64175233bd13427fef9a771f4a1
+SIZE (Tessil-robin-map-v1.4.1_GH0.tar.gz) = 70330