Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=wJthzKMS; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Ma8YIxfL Received: by mail.netbsd.org (Postfix, from userid 605) id 4489184D68; Fri, 26 Apr 2024 17:20:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714152026; bh=17EPiqyxJ+JSWJZL0XTTz9E1Z3p37VL22me4yq0/+xc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=wJthzKMS9/R0IatlqzOss3uYwb1BkdTpqWxTNsMNrk3faUbyEfOlC7oduQKnSvfIf wBPAAuZBNeMnJ6ZqNpcbUgl5mTvgUu21nEFfcDbj+Wmc5Ljag+cEzIbAH+o8FUk5fP InUrDHCCzP7h08WOPYY/q7szIvl7HQmEKlnGDI+M= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 37F5184D5F for ; Fri, 26 Apr 2024 17:20:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 4_-D-fclRxBO for ; Fri, 26 Apr 2024 17:20:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8A11E84D44 for ; Fri, 26 Apr 2024 17:20:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714152024; bh=17EPiqyxJ+JSWJZL0XTTz9E1Z3p37VL22me4yq0/+xc=; h=Date:From:Subject:To:Reply-To; b=Ma8YIxfL2rRlU9VmN0vliCPfr3fEdicRnMOdk5vsY3Seyl74dXXS8uox959rJKVT2 T5pcExgqMMu5EGGIVfJGTG+jMK0qFSMtECVdU302aSrfodUni8biHoY/NqWB8yei4s loRgqJsgd36HbA1NONfLN04H4ByWqZKy2wiFGAug= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8154AFA2C; Fri, 26 Apr 2024 17:20:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714152024247140" MIME-Version: 1.0 Date: Fri, 26 Apr 2024 17:20:24 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/spdlog To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240426172024.8154AFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714152024247140 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Apr 26 17:20:24 UTC 2024 Modified Files: pkgsrc/devel/spdlog: Makefile PLIST distinfo Log Message: spdlog: updated to 1.14.0 Version 1.14.0 Updated bundled fmt to version 10.2.1. Mapped Diagnostic Context (MDC) support MDC is a simple map of key->string values stored in thread local storage whose content will be printed by the loggers. Usage example: #include "spdlog/mdc.h" .. spdlog::mdc::put("mdc_key_1", "mdc_value_1"); spdlog::info("Hello, {}", "World!"); // => [2024-04-26 02:08:05.040] [info] [mdc_key_1:mdc_value_1] Hello, World! Add milliseconds support to stopwatch Add std::string_view overloads for logger accessor Make async_logger::flush() synchronous - wait for the flush operation to complete before returning Use _stat() on Windows to be more UTF8 friendly Add details about how compile time macros work Fix typos found by codespell Expose the flusher thread object to user in order to allow setting of thread name and thread affinity when needed Fix the problem of compilation failure under MINGW Add missing include in circular_q.h Don't remove previous defaullt logger from registry in set_default_logger. Remove the legacy AnalyzeTemporaryDtors option from .clang-tidy. Updated INSTALL.md has to better reflect compiler info Fixed README.md example To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/devel/spdlog/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/spdlog/PLIST cvs rdiff -u -r1.16 -r1.17 pkgsrc/devel/spdlog/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714152024247140 Content-Disposition: inline Content-Length: 2370 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.20 pkgsrc/devel/spdlog/Makefile:1.21 --- pkgsrc/devel/spdlog/Makefile:1.20 Fri Jan 12 11:48:47 2024 +++ pkgsrc/devel/spdlog/Makefile Fri Apr 26 17:20:24 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.20 2024/01/12 11:48:47 adam Exp $ +# $NetBSD: Makefile,v 1.21 2024/04/26 17:20:24 adam Exp $ -DISTNAME= spdlog-1.13.0 +DISTNAME= spdlog-1.14.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.9 pkgsrc/devel/spdlog/PLIST:1.10 --- pkgsrc/devel/spdlog/PLIST:1.9 Tue Jul 18 04:59:01 2023 +++ pkgsrc/devel/spdlog/PLIST Fri Apr 26 17:20:24 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.9 2023/07/18 04:59:01 adam Exp $ +@comment $NetBSD: PLIST,v 1.10 2024/04/26 17:20:24 adam Exp $ include/spdlog/async.h include/spdlog/async_logger-inl.h include/spdlog/async_logger.h @@ -47,6 +47,7 @@ include/spdlog/formatter.h include/spdlog/fwd.h include/spdlog/logger-inl.h include/spdlog/logger.h +include/spdlog/mdc.h include/spdlog/pattern_formatter-inl.h include/spdlog/pattern_formatter.h include/spdlog/sinks/android_sink.h Index: pkgsrc/devel/spdlog/distinfo diff -u pkgsrc/devel/spdlog/distinfo:1.16 pkgsrc/devel/spdlog/distinfo:1.17 --- pkgsrc/devel/spdlog/distinfo:1.16 Fri Jan 12 11:48:47 2024 +++ pkgsrc/devel/spdlog/distinfo Fri Apr 26 17:20:24 2024 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.16 2024/01/12 11:48:47 adam Exp $ +$NetBSD: distinfo,v 1.17 2024/04/26 17:20:24 adam Exp $ -BLAKE2s (spdlog-1.13.0.tar.gz) = 055b6511b34d5803f1e6edafe2cc63b4faec2e5e6503ec4c5d8efcffe6d21397 -SHA512 (spdlog-1.13.0.tar.gz) = 44fcb414ad9fbbe2a6d72c29143eeeae477b687ed30ae870d661b032a029ad4214ef43e7ef6350d02791d05504492978ade2d6733fab12ce4884d8f0bc4c6340 -Size (spdlog-1.13.0.tar.gz) = 264003 bytes +BLAKE2s (spdlog-1.14.0.tar.gz) = b8f4e001a4318f1b581398ff7c22337a250b3342a7b70c9f51076aa62e192699 +SHA512 (spdlog-1.14.0.tar.gz) = 801a059901fbc3d79b63ecc8495c8198db0fdaf842ff79aa35e94027330219def22c3cb3d724d0f0e9573790a393de688d9445621f12417bb642568b93ce46d7 +Size (spdlog-1.14.0.tar.gz) = 270013 bytes SHA1 (patch-CMakeLists.txt) = 558c2e168aba82b3a1b442eb756e1fd23213d2fd SHA1 (patch-include_spdlog_tweakme.h) = 0e3f16aaf013535331a11be523dd731503c12717 --_----------=_1714152024247140--