Date: Tue, 28 Apr 2026 07:57:15 +0000 From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: e65c0a156212 - main - devel/quickcpplib: update g20230614=?utf-8?Q? =E2=86=92 g20?=260310 Message-ID: <69f0685b.39b86.3deea8a2@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=e65c0a15621263fd10eaf2d88bbe7bd2203baee4 commit e65c0a15621263fd10eaf2d88bbe7bd2203baee4 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2026-04-28 07:53:44 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2026-04-28 07:57:02 +0000 devel/quickcpplib: update g20230614 → g20260310 --- devel/quickcpplib/Makefile | 5 +- devel/quickcpplib/distinfo | 6 +- .../patch-include_quickcpplib_signal__guard.hpp | 11 ---- .../files/patch-include_quickcpplib_uint128.hpp | 65 ---------------------- devel/quickcpplib/pkg-plist | 2 + 5 files changed, 7 insertions(+), 82 deletions(-) diff --git a/devel/quickcpplib/Makefile b/devel/quickcpplib/Makefile index 422d902b031e..dd62aa9b2a33 100644 --- a/devel/quickcpplib/Makefile +++ b/devel/quickcpplib/Makefile @@ -1,6 +1,5 @@ PORTNAME= quickcpplib -DISTVERSION= g20230614 -PORTREVISION= 1 +DISTVERSION= g20260310 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org @@ -18,7 +17,7 @@ USES= cmake:testing USE_GITHUB= yes GH_ACCOUNT= ned14 -GH_TAGNAME= f9ab259 +GH_TAGNAME= 3c1d8cb GH_TUPLE= \ ned14:quickcpplib:af81e79226211640acace43637a929e4aae4b1f3:ned14_quickcpplib/doc/html \ martinmoene:span-lite:dbb484f6c2060b41afa55653dec99b228013a813:martinmoene_span_lite/include/quickcpplib/span-lite \ diff --git a/devel/quickcpplib/distinfo b/devel/quickcpplib/distinfo index 4476affb0b92..63977b4d45e8 100644 --- a/devel/quickcpplib/distinfo +++ b/devel/quickcpplib/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1688096195 -SHA256 (ned14-quickcpplib-g20230614-f9ab259_GH0.tar.gz) = b45c49e214d13fa10f2d67d0f9f21d467783739432e71fe4199d3134bdfc23d7 -SIZE (ned14-quickcpplib-g20230614-f9ab259_GH0.tar.gz) = 591113 +TIMESTAMP = 1777362509 +SHA256 (ned14-quickcpplib-g20260310-3c1d8cb_GH0.tar.gz) = 1a9e8d89acfe55a74640034f96a9073683f7a904273a8bfe54949984098acfb3 +SIZE (ned14-quickcpplib-g20260310-3c1d8cb_GH0.tar.gz) = 600823 SHA256 (ned14-quickcpplib-af81e79226211640acace43637a929e4aae4b1f3_GH0.tar.gz) = bdaecd0aa3d58f1209357226cf03874c8774046c5738d462901a44d7f3b127a6 SIZE (ned14-quickcpplib-af81e79226211640acace43637a929e4aae4b1f3_GH0.tar.gz) = 1117336 SHA256 (martinmoene-span-lite-dbb484f6c2060b41afa55653dec99b228013a813_GH0.tar.gz) = ebfde55f9d141ef4ea5ca99a140829ff3c1b17220613fe7177e661e542c77a39 diff --git a/devel/quickcpplib/files/patch-include_quickcpplib_signal__guard.hpp b/devel/quickcpplib/files/patch-include_quickcpplib_signal__guard.hpp deleted file mode 100644 index e2bd24503d09..000000000000 --- a/devel/quickcpplib/files/patch-include_quickcpplib_signal__guard.hpp +++ /dev/null @@ -1,11 +0,0 @@ ---- include/quickcpplib/signal_guard.hpp.orig 2023-06-30 03:41:25 UTC -+++ include/quickcpplib/signal_guard.hpp -@@ -531,7 +531,7 @@ namespace signal_guard - #ifdef _WIN32 - void *_threadh{nullptr}; - #else -- void *_timerid{nullptr}; -+ timer_t _timerid{nullptr}; - #endif - signal_guard_watchdog_impl *_prev{nullptr}, *_next{nullptr}; - uint64_t _deadline_ms{0}; diff --git a/devel/quickcpplib/files/patch-include_quickcpplib_uint128.hpp b/devel/quickcpplib/files/patch-include_quickcpplib_uint128.hpp deleted file mode 100644 index 42004d9b622d..000000000000 --- a/devel/quickcpplib/files/patch-include_quickcpplib_uint128.hpp +++ /dev/null @@ -1,65 +0,0 @@ ---- include/quickcpplib/uint128.hpp.orig 2023-10-24 05:06:15 UTC -+++ include/quickcpplib/uint128.hpp -@@ -53,7 +53,7 @@ namespace integers128 - #if defined(__SSE2__) || defined(_M_X64) || (defined(_M_IX86_FP) && _M_IX86_FP >= 2) - __m128i as_m128i; - #endif --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - unsigned __int128 as_uint128; - #endif - //! Default constructor, no bits set -@@ -100,7 +100,7 @@ namespace integers128 - } - uint128 operator+=(const uint128 &v) noexcept - { --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - as_uint128 += v.as_uint128; - return *this; - #endif -@@ -118,7 +118,7 @@ namespace integers128 - } - uint128 operator-=(const uint128 &v) noexcept - { --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - as_uint128 -= v.as_uint128; - return *this; - #endif -@@ -146,7 +146,7 @@ namespace integers128 - { - if(!b) - throw std::domain_error("divide by zero"); --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - as_uint128 %= b.as_uint128; - return *this; - #endif -@@ -169,7 +169,7 @@ namespace integers128 - { - if(!b) - throw std::domain_error("divide by zero"); --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - as_uint128 %= b; - return *this; - #endif -@@ -215,7 +215,7 @@ namespace integers128 - } - uint128 operator<<=(uint8_t v) noexcept - { --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - as_uint128 <<= v; - return *this; - #endif -@@ -232,7 +232,7 @@ namespace integers128 - } - uint128 operator>>=(uint8_t v) noexcept - { --#if defined(__GNUC__) || defined(__clang__) -+#if defined(__SIZEOF_INT128__) - as_uint128 >>= v; - return *this; - #endif diff --git a/devel/quickcpplib/pkg-plist b/devel/quickcpplib/pkg-plist index 3827ec8eb38c..3a1dcf048fbb 100644 --- a/devel/quickcpplib/pkg-plist +++ b/devel/quickcpplib/pkg-plist @@ -21,6 +21,7 @@ include/quickcpplib/console_colours.hpp include/quickcpplib/cpp_feature.h include/quickcpplib/declval.hpp include/quickcpplib/detach_cast.hpp +include/quickcpplib/detail/config.hpp include/quickcpplib/detail/impl/execinfo_win64.ipp include/quickcpplib/detail/impl/signal_guard.ipp include/quickcpplib/detail/preprocessor_macro_overload.h @@ -86,6 +87,7 @@ share/scripts/cpp-pm/CMakeLists.txt share/scripts/cpp-pm/cmake/HunterGate.cmake share/scripts/cpp-pm/cmake/HunterVersion.cmake share/scripts/gen_guard_matrix.py +share/scripts/generate_gdb_printer.py share/scripts/make_deb.py share/scripts/merge_develop_to_master_if_good.py share/scripts/merge_junit_results.pyhome | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69f0685b.39b86.3deea8a2>
