Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 434933ab99 | |||
| 4a889e8c1e | |||
| f0a85d5d29 | |||
| 3d56e81b96 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a8424ad3b0affd4c57ed26f0f3d8a29604f0e1f2ef2089f497f614b1c94c7236
|
||||
size 70562
|
||||
3
robin-map-1.4.0.tar.gz
Normal file
3
robin-map-1.4.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7930dbf9634acfc02686d87f615c0f4f33135948130b8922331c16d90a03250c
|
||||
size 70352
|
||||
@@ -1,7 +1,24 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 13 13:26:05 UTC 2025 - Friedrich Haubensak <hsk17@mail.de>
|
||||
|
||||
- Update to version 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
|
||||
* Use inline constexpr for PRIMES and MOD_PRIME arrays
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 22 20:32:19 UTC 2025 - Shawn Dunn <sfalken@opensuse.org>
|
||||
|
||||
- Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to fix FTBFS with cmake4
|
||||
- Add %check section
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 21 17:00:23 UTC 2024 - Friedrich Haubensak <hsk17@mail.de>
|
||||
|
||||
- Update to version 1.3.0:
|
||||
- Update to version 1.3.0:
|
||||
* Add erase_fast(iterator pos) method which in contrast to
|
||||
erase(iterator pos) doesn't return an iterator, avoiding the
|
||||
cost of looking for the next element after erasure of the
|
||||
|
||||
@@ -17,13 +17,13 @@
|
||||
|
||||
|
||||
Name: robin-map
|
||||
Version: 1.3.0
|
||||
Version: 1.4.0
|
||||
Release: 0
|
||||
Summary: C++ implementation of a fast hash map and hash set using robin hood hashing
|
||||
License: MIT
|
||||
URL: https://github.com/Tessil/robin-map
|
||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
BuildRequires: cmake
|
||||
BuildRequires: cmake >= 3.5
|
||||
BuildRequires: gcc-c++
|
||||
BuildArch: noarch
|
||||
|
||||
@@ -66,6 +66,9 @@ chmod 0644 %{SOURCE0}
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
%ctest
|
||||
|
||||
%files devel
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
|
||||
Reference in New Issue
Block a user