pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/spdlog



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.

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



Home | Main Index | Thread Index | Old Index