Compare commits
2 Commits
Author | SHA256 | Date | |
---|---|---|---|
f0a85d5d29 | |||
3d56e81b96 |
@@ -1,7 +1,13 @@
|
||||
-------------------------------------------------------------------
|
||||
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
|
||||
|
@@ -23,7 +23,7 @@ Summary: C++ implementation of a fast hash map and hash set using robin h
|
||||
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
|
||||
|
||||
@@ -61,11 +61,14 @@ implementations in the tsl namespace).
|
||||
chmod 0644 %{SOURCE0}
|
||||
|
||||
%build
|
||||
%cmake
|
||||
%cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5
|
||||
|
||||
%install
|
||||
%cmake_install
|
||||
|
||||
%check
|
||||
%ctest
|
||||
|
||||
%files devel
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
|
Reference in New Issue
Block a user