summaryrefslogtreecommitdiff
path: root/dev-cpp
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-02-06 07:17:10 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-02-06 07:17:10 +0000
commit2e248a858c6c1889a5e5cc6003444b729efcb2e0 (patch)
tree1b107b8782ac31d5fe1f5ea97fb15df4e0a2f312 /dev-cpp
parentae4397d78e495404afda11d03c7ba29e7c524058 (diff)
downloadbaldeagleos-repo-2e248a858c6c1889a5e5cc6003444b729efcb2e0.tar.gz
baldeagleos-repo-2e248a858c6c1889a5e5cc6003444b729efcb2e0.tar.xz
baldeagleos-repo-2e248a858c6c1889a5e5cc6003444b729efcb2e0.zip
Adding metadata
Diffstat (limited to 'dev-cpp')
-rw-r--r--dev-cpp/ada/ada-3.3.0.ebuild4
-rw-r--r--dev-cpp/cli11/cli11-2.6.1.ebuild4
-rw-r--r--dev-cpp/simdutf/simdutf-7.7.1.ebuild4
-rw-r--r--dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch54
-rw-r--r--dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost_find_component.patch24
-rw-r--r--dev-cpp/websocketpp/websocketpp-0.8.2-r1.ebuild6
6 files changed, 63 insertions, 33 deletions
diff --git a/dev-cpp/ada/ada-3.3.0.ebuild b/dev-cpp/ada/ada-3.3.0.ebuild
index e7963ca29029..e4821e4e5e20 100644
--- a/dev-cpp/ada/ada-3.3.0.ebuild
+++ b/dev-cpp/ada/ada-3.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/ada-url/ada/archive/refs/tags/v${PV}.tar.gz -> ${P}.
LICENSE="Apache-2.0 MIT"
SLOT="0/$(ver_cut 1)"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
RESTRICT="test"
src_configure() {
diff --git a/dev-cpp/cli11/cli11-2.6.1.ebuild b/dev-cpp/cli11/cli11-2.6.1.ebuild
index 1e04595b8de4..dbafc1eeec83 100644
--- a/dev-cpp/cli11/cli11-2.6.1.ebuild
+++ b/dev-cpp/cli11/cli11-2.6.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023-2025 Gentoo Authors
+# Copyright 2023-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -15,7 +15,7 @@ S=${WORKDIR}/${PN^^}-${PV}
LICENSE="BSD"
SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv ~x86"
IUSE="doc test"
RESTRICT="!test? ( test )"
diff --git a/dev-cpp/simdutf/simdutf-7.7.1.ebuild b/dev-cpp/simdutf/simdutf-7.7.1.ebuild
index 5736be973f5b..128eaf0bdce6 100644
--- a/dev-cpp/simdutf/simdutf-7.7.1.ebuild
+++ b/dev-cpp/simdutf/simdutf-7.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -16,7 +16,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.
LICENSE="|| ( Apache-2.0 MIT )"
SLOT="0/25"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch
new file mode 100644
index 000000000000..62c1aa8e250f
--- /dev/null
+++ b/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost1.89.patch
@@ -0,0 +1,54 @@
+See PR pending https://github.com/zaphoyd/websocketpp/pull/1189.patch
+fix boost_1.89 bug #969568
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -112,7 +112,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
+
+ # Visual studio
+ if (MSVC)
+- set (WEBSOCKETPP_BOOST_LIBS system thread)
++ set (WEBSOCKETPP_BOOST_LIBS thread)
+ set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /GL /Gy /GF /Ox /Ob2 /Ot /Oi /MP /arch:SSE2 /fp:fast")
+ set (CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} /LTCG /INCREMENTAL:NO /OPT:REF /OPT:ICF")
+ add_definitions (/W3 /wd4996 /wd4995 /wd4355)
+@@ -129,7 +129,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
+ set (WEBSOCKETPP_PLATFORM_LIBS pthread)
+ endif()
+ set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto)
+- set (WEBSOCKETPP_BOOST_LIBS system thread)
++ set (WEBSOCKETPP_BOOST_LIBS thread)
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
+ if (NOT APPLE)
+ add_definitions (-DNDEBUG -Wall -Wcast-align) # todo: should we use CMAKE_C_FLAGS for these?
+@@ -139,7 +139,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
+ execute_process (COMMAND ${CMAKE_CXX_COMPILER} "-dumpversion" OUTPUT_VARIABLE GCC_VERSION)
+ if ("${GCC_VERSION}" STRGREATER "4.4.0")
+ message("* C++11 support partially enabled due to GCC version ${GCC_VERSION}")
+- set (WEBSOCKETPP_BOOST_LIBS system thread)
++ set (WEBSOCKETPP_BOOST_LIBS thread)
+ endif ()
+ endif ()
+
+@@ -151,7 +151,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
+ set (WEBSOCKETPP_PLATFORM_LIBS pthread)
+ endif()
+ set (WEBSOCKETPP_PLATFORM_TLS_LIBS ssl crypto)
+- set (WEBSOCKETPP_BOOST_LIBS system thread)
++ set (WEBSOCKETPP_BOOST_LIBS thread)
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
+ if (NOT APPLE)
+ add_definitions (-DNDEBUG -Wall -Wno-padded) # todo: should we use CMAKE_C_FLAGS for these?
+@@ -213,9 +213,8 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
+ set (Boost_FIND_QUIETLY TRUE)
+ set (Boost_DEBUG FALSE)
+ set (Boost_USE_MULTITHREADED TRUE)
+- set (Boost_ADDITIONAL_VERSIONS "1.39.0" "1.40.0" "1.41.0" "1.42.0" "1.43.0" "1.44.0" "1.46.1") # todo: someone who knows better spesify these!
+
+- find_package (Boost 1.39.0 COMPONENTS "${WEBSOCKETPP_BOOST_LIBS}")
++ find_package (Boost 1.69.0 COMPONENTS ${WEBSOCKETPP_BOOST_LIBS})
+
+ if (Boost_FOUND)
+ # Boost is a project wide global dependency.
+--
+2.52.0
+
diff --git a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost_find_component.patch b/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost_find_component.patch
deleted file mode 100644
index 28f4361f35c1..000000000000
--- a/dev-cpp/websocketpp/files/websocketpp-0.8.2-fix-boost_find_component.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 36b73da8958927f975b3d01a062aa6c0e149d97f Mon Sep 17 00:00:00 2001
-From: Peter Thorson <git@zaphoyd.com>
-Date: Mon, 27 Apr 2020 10:34:06 -0500
-Subject: [PATCH] [cmake] Remove quotes that was making it hard for cmake to
- find newer boost versions. fixes #855
-
----
- CMakeLists.txt | 2 +-
- changelog.md | 3 +++
- 2 files changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 3e9c80e84..ffcd8583b 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -215,7 +215,7 @@ if (BUILD_TESTS OR BUILD_EXAMPLES)
- set (Boost_USE_MULTITHREADED TRUE)
- set (Boost_ADDITIONAL_VERSIONS "1.39.0" "1.40.0" "1.41.0" "1.42.0" "1.43.0" "1.44.0" "1.46.1") # todo: someone who knows better spesify these!
-
-- find_package (Boost 1.39.0 COMPONENTS "${WEBSOCKETPP_BOOST_LIBS}")
-+ find_package (Boost 1.39.0 COMPONENTS ${WEBSOCKETPP_BOOST_LIBS})
-
- if (Boost_FOUND)
- # Boost is a project wide global dependency.
diff --git a/dev-cpp/websocketpp/websocketpp-0.8.2-r1.ebuild b/dev-cpp/websocketpp/websocketpp-0.8.2-r1.ebuild
index 471fcd07c69e..e11e2f56224e 100644
--- a/dev-cpp/websocketpp/websocketpp-0.8.2-r1.ebuild
+++ b/dev-cpp/websocketpp/websocketpp-0.8.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2025 Gentoo Authors
+# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -26,8 +26,6 @@ PATCHES=(
# disable tests that are timing sensitive
# https://bugzilla.redhat.com/show_bug.cgi?id=1461069
"${FILESDIR}"/${PN}-0.8.1-disable-test_transport-test_transport_asio_timers.patch
- # https://github.com/zaphoyd/websocketpp/commit/36b73da8958927f975b3d01a062aa6c0e149d97f
- "${FILESDIR}"/${P}-fix-boost_find_component.patch
# https://github.com/zaphoyd/websocketpp/commit/2c355d9ef0f3ed73fa96d0c6c31293086df36d74
"${FILESDIR}"/${P}-fix-clang.patch
# C++20 support from https://github.com/zaphoyd/websocketpp/commit/3197a520eb4c1e4754860441918a5930160373eb
@@ -37,6 +35,8 @@ PATCHES=(
"${WORKDIR}/${P}-boost-1.87-compat.patch"
# https://github.com/zaphoyd/websocketpp/commit/deb0a334471362608958ce59a6b0bcd3e5b73c24
"${FILESDIR}/${P}-cmake4.patch" # bug 953936
+ # PR pending https://github.com/zaphoyd/websocketpp/pull/1189.patch
+ "${FILESDIR}"/${P}-fix-boost1.89.patch
)
src_configure() {