Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AEBD484D37 for ; Tue, 18 Jul 2023 04:59:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id bNe8TqlscAte for ; Tue, 18 Jul 2023 04:59:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D3CF584C86 for ; Tue, 18 Jul 2023 04:59:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CD264FBDB; Tue, 18 Jul 2023 04:59:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1689656341117690" MIME-Version: 1.0 Date: Tue, 18 Jul 2023 04:59:01 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/spdlog To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230718045901.CD264FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1689656341117690 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Jul 18 04:59:01 UTC 2023 Modified Files: pkgsrc/devel/spdlog: Makefile PLIST distinfo pkgsrc/devel/spdlog/patches: patch-CMakeLists.txt Removed Files: pkgsrc/devel/spdlog/patches: patch-include_spdlog_common.h Log Message: spdlog: updated to 1.12.0 1.12.0 Support for external fmtlib versions 10.x Better support for std::format Added new qt color sink. Logs to QTextEdit widget with some nice colors. Update #include to a deprecated fmt header Fixes and impovements to dup_filter_sink Fix unnecessary empty backtrace begin/end logs Fixed variable name in msvc_sink Add system includes (SPDLOG_SYSTEM_INCLUDES) cmake option Improve dequeue of the async queue Fix tcp_client sink for FreeBSD Support linux/musl libc Support newlib C library configurations without tm_gmtoff field Fix type of event id in win_eventlog_sink Fix -Wshadow warnings in spdlog::sinks::dist_sink Spelling corrections Add sync() function to file_helper Add a trivial callback_sink Fix unexpected delimiter at start of line in to_hex formatter Fix MinGW build issue on example Add optional TID definition to the systemd sink Added apply_logger_env_levels() Support utf8 in msvc_sink Better handling of utf to wchar (66407f5). Use catch v3 for tests New kafka sink Fix os namespace in systemd_sink.h Enable systemd_sink tests in linux pipeline Fix stdout_sink_base::log's fflush() behaviour inconsistency Fix for missing pthread_threadid_np in macOS < 10.6 and PowerPC Fix ringbuffer_sink moving warning Update INSTALL doc Fix warning in qt_sinks.h Remove IPv4 limitation from tcp_client Fix android sink when message is not loggable To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/spdlog/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/spdlog/PLIST cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/spdlog/distinfo cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/spdlog/patches/patch-CMakeLists.txt cvs rdiff -u -r1.1 -r0 \ pkgsrc/devel/spdlog/patches/patch-include_spdlog_common.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1689656341117690 Content-Disposition: inline Content-Length: 4580 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/spdlog/Makefile diff -u pkgsrc/devel/spdlog/Makefile:1.16 pkgsrc/devel/spdlog/Makefile:1.17 --- pkgsrc/devel/spdlog/Makefile:1.16 Tue May 16 21:20:49 2023 +++ pkgsrc/devel/spdlog/Makefile Tue Jul 18 04:59:01 2023 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2023/05/16 21:20:49 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2023/07/18 04:59:01 adam Exp $ -DISTNAME= spdlog-1.11.0 -PKGREVISION= 2 +DISTNAME= spdlog-1.12.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=gabime/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/devel/spdlog/PLIST diff -u pkgsrc/devel/spdlog/PLIST:1.8 pkgsrc/devel/spdlog/PLIST:1.9 --- pkgsrc/devel/spdlog/PLIST:1.8 Mon Oct 10 12:46:32 2022 +++ pkgsrc/devel/spdlog/PLIST Tue Jul 18 04:59:01 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.8 2022/10/10 12:46:32 adam Exp $ +@comment $NetBSD: PLIST,v 1.9 2023/07/18 04:59:01 adam Exp $ include/spdlog/async.h include/spdlog/async_logger-inl.h include/spdlog/async_logger.h @@ -41,6 +41,7 @@ include/spdlog/fmt/compile.h include/spdlog/fmt/fmt.h include/spdlog/fmt/ostr.h include/spdlog/fmt/ranges.h +include/spdlog/fmt/std.h include/spdlog/fmt/xchar.h include/spdlog/formatter.h include/spdlog/fwd.h @@ -55,10 +56,12 @@ include/spdlog/sinks/base_sink-inl.h include/spdlog/sinks/base_sink.h include/spdlog/sinks/basic_file_sink-inl.h include/spdlog/sinks/basic_file_sink.h +include/spdlog/sinks/callback_sink.h include/spdlog/sinks/daily_file_sink.h include/spdlog/sinks/dist_sink.h include/spdlog/sinks/dup_filter_sink.h include/spdlog/sinks/hourly_file_sink.h +include/spdlog/sinks/kafka_sink.h include/spdlog/sinks/mongo_sink.h include/spdlog/sinks/msvc_sink.h include/spdlog/sinks/null_sink.h Index: pkgsrc/devel/spdlog/distinfo diff -u pkgsrc/devel/spdlog/distinfo:1.14 pkgsrc/devel/spdlog/distinfo:1.15 --- pkgsrc/devel/spdlog/distinfo:1.14 Wed May 17 08:20:06 2023 +++ pkgsrc/devel/spdlog/distinfo Tue Jul 18 04:59:01 2023 @@ -1,8 +1,7 @@ -$NetBSD: distinfo,v 1.14 2023/05/17 08:20:06 wiz Exp $ +$NetBSD: distinfo,v 1.15 2023/07/18 04:59:01 adam Exp $ -BLAKE2s (spdlog-1.11.0.tar.gz) = b6fdf69002f5591045e8377fc02a20da4090676d786d9348cc5ed2404f26fc03 -SHA512 (spdlog-1.11.0.tar.gz) = 210f3135c7af3ec774ef9a5c77254ce172a44e2fa720bf590e1c9214782bf5c8140ff683403a85b585868bc308286fbdeb1c988e4ed1eb3c75975254ffe75412 -Size (spdlog-1.11.0.tar.gz) = 373033 bytes -SHA1 (patch-CMakeLists.txt) = 7da54588522ca9cf4b1816d6f65a8f31eda43332 -SHA1 (patch-include_spdlog_common.h) = 75c8f06cf2fff2e505d96bc9c62010b17cd3fe60 +BLAKE2s (spdlog-1.12.0.tar.gz) = 5e6ee19f09235f58b2a845906b8ec8befb288391a56e000ac0558c6e7155eaab +SHA512 (spdlog-1.12.0.tar.gz) = db9a4f13b6c39ffde759db99bcdfe5e2dbe4231e73b29eb906a3fa78d6b8ec66920b8bd4371df17ae21b7b562472a236bc4435678f3af92b6496be090074181d +Size (spdlog-1.12.0.tar.gz) = 251037 bytes +SHA1 (patch-CMakeLists.txt) = 558c2e168aba82b3a1b442eb756e1fd23213d2fd SHA1 (patch-include_spdlog_tweakme.h) = 0e3f16aaf013535331a11be523dd731503c12717 Index: pkgsrc/devel/spdlog/patches/patch-CMakeLists.txt diff -u pkgsrc/devel/spdlog/patches/patch-CMakeLists.txt:1.1 pkgsrc/devel/spdlog/patches/patch-CMakeLists.txt:1.2 --- pkgsrc/devel/spdlog/patches/patch-CMakeLists.txt:1.1 Sat Nov 12 15:06:06 2022 +++ pkgsrc/devel/spdlog/patches/patch-CMakeLists.txt Tue Jul 18 04:59:01 2023 @@ -1,16 +1,16 @@ -$NetBSD: patch-CMakeLists.txt,v 1.1 2022/11/12 15:06:06 ryoon Exp $ +$NetBSD: patch-CMakeLists.txt,v 1.2 2023/07/18 04:59:01 adam Exp $ * Fix shared library name. Do not create libspdlog.so.1.11 symlink. ---- CMakeLists.txt.orig 2022-11-02 21:13:08.000000000 +0000 +--- CMakeLists.txt.orig 2023-07-08 14:12:25.000000000 +0000 +++ CMakeLists.txt -@@ -176,7 +176,7 @@ target_include_directories(spdlog PUBLIC - target_link_libraries(spdlog PUBLIC Threads::Threads) +@@ -186,7 +186,7 @@ target_link_libraries(spdlog PUBLIC Thre spdlog_enable_warnings(spdlog) --set_target_properties(spdlog PROPERTIES VERSION ${SPDLOG_VERSION} SOVERSION ${SPDLOG_VERSION_MAJOR}.${SPDLOG_VERSION_MINOR}) -+set_target_properties(spdlog PROPERTIES VERSION ${SPDLOG_VERSION} SOVERSION ${SPDLOG_VERSION_MAJOR}) + set_target_properties(spdlog PROPERTIES VERSION ${SPDLOG_VERSION} SOVERSION +- ${SPDLOG_VERSION_MAJOR}.${SPDLOG_VERSION_MINOR}) ++ ${SPDLOG_VERSION_MAJOR}) set_target_properties(spdlog PROPERTIES DEBUG_POSTFIX d) if(COMMAND target_precompile_headers AND SPDLOG_ENABLE_PCH) --_----------=_1689656341117690--