2 Commits

2 changed files with 12 additions and 3 deletions

View File

@@ -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> 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 * Add erase_fast(iterator pos) method which in contrast to
erase(iterator pos) doesn't return an iterator, avoiding the erase(iterator pos) doesn't return an iterator, avoiding the
cost of looking for the next element after erasure of the cost of looking for the next element after erasure of the

View File

@@ -23,7 +23,7 @@ Summary: C++ implementation of a fast hash map and hash set using robin h
License: MIT License: MIT
URL: https://github.com/Tessil/robin-map URL: https://github.com/Tessil/robin-map
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: cmake BuildRequires: cmake >= 3.5
BuildRequires: gcc-c++ BuildRequires: gcc-c++
BuildArch: noarch BuildArch: noarch
@@ -61,11 +61,14 @@ implementations in the tsl namespace).
chmod 0644 %{SOURCE0} chmod 0644 %{SOURCE0}
%build %build
%cmake %cmake -DCMAKE_POLICY_VERSION_MINIMUM=3.5
%install %install
%cmake_install %cmake_install
%check
%ctest
%files devel %files devel
%license LICENSE %license LICENSE
%doc README.md %doc README.md