public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Lukas Brabec <lbrabec@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/cxxopts] epel10: Update to 3.3.1
Date: Tue, 22 Sep 2026 01:31:47 GMT	[thread overview]
Message-ID: <179004070780.1.14711108385903760895.rpms-cxxopts-8f7c1cf9b10e@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/cxxopts
Branch : epel10
Commit : 8f7c1cf9b10e11ce057eba5cdd14af5fb9ca6847
Author : Lukas Brabec <lbrabec@redhat.com>
Date   : 2025-07-04T09:51:17+02:00
Stats  : +7/-73 in 5 file(s)
URL    : https://src.fedoraproject.org/rpms/cxxopts/c/8f7c1cf9b10e11ce057eba5cdd14af5fb9ca6847?branch=epel10

Log:
Update to 3.3.1

---
diff --git a/changelog b/changelog
index 53beedd..98b04d9 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,6 @@
+* Fri Jul 04 2025 Lukas Brabec <lbrabec@redhat.com> - 3.3.1-1
+- Update to 3.3.1
+
 * Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
 

diff --git a/cxxopts-3.2.1-add-missing-include.patch b/cxxopts-3.2.1-add-missing-include.patch
deleted file mode 100644
index a27a98c..0000000
--- a/cxxopts-3.2.1-add-missing-include.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From 63d1b65a694cfceafc20863afa75df49dfbe6b2a Mon Sep 17 00:00:00 2001
-From: pastalian <28638872+pastalian@users.noreply.github.com>
-Date: Wed, 28 Aug 2024 20:31:42 +0900
-Subject: [PATCH] Add missing header for gcc-15 (#438)
-
----
- include/cxxopts.hpp | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/cxxopts.hpp b/include/cxxopts.hpp
-index 991ba3fc..a2e71faf 100644
---- a/include/cxxopts.hpp
-+++ b/include/cxxopts.hpp
-@@ -27,6 +27,7 @@ THE SOFTWARE.
- #ifndef CXXOPTS_HPP_INCLUDED
- #define CXXOPTS_HPP_INCLUDED
- 
-+#include <cstdint>
- #include <cstdlib>
- #include <cstring>
- #include <exception>

diff --git a/cxxopts-3.2.1-cmake4-compatibility.patch b/cxxopts-3.2.1-cmake4-compatibility.patch
deleted file mode 100644
index 74508ef..0000000
--- a/cxxopts-3.2.1-cmake4-compatibility.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 050ccd8badc6c706c4d20b3db48b319cc5bd9187 Mon Sep 17 00:00:00 2001
-From: Vitaly <vitaly@easycoding.org>
-Date: Wed, 12 Mar 2025 09:59:07 +0100
-Subject: [PATCH] Added compatibility with CMake 4.
-
----
- CMakeLists.txt                            | 2 +-
- test/add-subdirectory-test/CMakeLists.txt | 2 +-
- test/find-package-test/CMakeLists.txt     | 2 +-
- 3 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index a6e4e86e..110d3dd7 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -17,7 +17,7 @@
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- # THE SOFTWARE.
--cmake_minimum_required(VERSION 3.1...3.19)
-+cmake_minimum_required(VERSION 3.5...3.19)
- 
- list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/")
- include(cxxopts)
-diff --git a/test/add-subdirectory-test/CMakeLists.txt b/test/add-subdirectory-test/CMakeLists.txt
-index ec14d597..8bf81e3a 100644
---- a/test/add-subdirectory-test/CMakeLists.txt
-+++ b/test/add-subdirectory-test/CMakeLists.txt
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.1)
-+cmake_minimum_required(VERSION 3.5...3.19)
- 
- project(cxxopts-test)
- 
-diff --git a/test/find-package-test/CMakeLists.txt b/test/find-package-test/CMakeLists.txt
-index b88d7c9d..0bc60384 100644
---- a/test/find-package-test/CMakeLists.txt
-+++ b/test/find-package-test/CMakeLists.txt
-@@ -1,4 +1,4 @@
--cmake_minimum_required(VERSION 3.1)
-+cmake_minimum_required(VERSION 3.5...3.19)
- 
- project(cxxopts-test)
- 

diff --git a/cxxopts.spec b/cxxopts.spec
index 2dec325..23c0e2f 100644
--- a/cxxopts.spec
+++ b/cxxopts.spec
@@ -1,7 +1,7 @@
 %global debug_package %{nil}
 
 Name: cxxopts
-Version: 3.2.1
+Version: 3.3.1
 Release: %autorelease
 
 Summary: Lightweight C++ command line option parser
@@ -9,10 +9,6 @@ License: MIT
 URL: https://github.com/jarro2783/%{name}
 Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
 
-# https://github.com/jarro2783/cxxopts/commit/63d1b65a694cfceafc20863afa75df49dfbe6b2a
-Patch100: %{name}-3.2.1-add-missing-include.patch
-# https://github.com/jarro2783/cxxopts/pull/451
-Patch101: %{name}-3.2.1-cmake4-compatibility.patch
 
 BuildRequires: cmake
 BuildRequires: gcc-c++
@@ -55,8 +51,8 @@ Requires: libstdc++-devel%{?_isa}
 %doc README.md
 %license LICENSE
 %{_includedir}/%{name}.hpp
-%{_libdir}/cmake/%{name}/
-%{_libdir}/pkgconfig/%{name}.pc
+%{_datadir}/cmake/%{name}/
+%{_datadir}/pkgconfig/%{name}.pc
 
 %changelog
 %autochangelog

diff --git a/sources b/sources
index 4490677..bc510e6 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (cxxopts-3.2.1.tar.gz) = 7841fb3e6c3c2a057917c962e29fc0090e6ed06f5515aaa5e2a868fef59071a9a99b74d81c32cf613ecf10a68a4d96d6ad07805f48c7c3951ded096a2317dc3d
+SHA512 (cxxopts-3.3.1.tar.gz) = a22da1436a263d51aad2f542c2099f5b4fd1b02674716ff26d2f575786dcec4e97400edebf5577de95f3ae48c7c99be7be17d7a3de3e01a9f3612667e1547908

                 reply	other threads:[~2026-09-22  1:31 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=179004070780.1.14711108385903760895.rpms-cxxopts-8f7c1cf9b10e@fedoraproject.org \
    --to=lbrabec@redhat.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox