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: wiz
Date: Wed Jul 10 20:50:57 UTC 2024
Modified Files:
pkgsrc/devel/spdlog: distinfo
Added Files:
pkgsrc/devel/spdlog/patches: patch-example_example.cpp
Log Message:
spdlog: fix build with fmtlib 11 using upstream patch
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 pkgsrc/devel/spdlog/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/devel/spdlog/patches/patch-example_example.cpp
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/distinfo
diff -u pkgsrc/devel/spdlog/distinfo:1.18 pkgsrc/devel/spdlog/distinfo:1.19
--- pkgsrc/devel/spdlog/distinfo:1.18 Tue Apr 30 18:09:10 2024
+++ pkgsrc/devel/spdlog/distinfo Wed Jul 10 20:50:57 2024
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.18 2024/04/30 18:09:10 adam Exp $
+$NetBSD: distinfo,v 1.19 2024/07/10 20:50:57 wiz Exp $
BLAKE2s (spdlog-1.14.1.tar.gz) = adbf3367de9a7e3962ff6d60fb54ff1da692d346d6d1420b28f236fe5d39748a
SHA512 (spdlog-1.14.1.tar.gz) = d8f36a3d65a43d8c64900e46137827aadb05559948b2f5a389bea16ed1bfac07d113ee11cf47970913298d6c37400355fe6895cda8fa6dcf6abd9da0d8f199e9
Size (spdlog-1.14.1.tar.gz) = 270896 bytes
SHA1 (patch-CMakeLists.txt) = 558c2e168aba82b3a1b442eb756e1fd23213d2fd
+SHA1 (patch-example_example.cpp) = a6d542a4cd20aca8748629d07825cecad6ffee8f
SHA1 (patch-include_spdlog_tweakme.h) = 0e3f16aaf013535331a11be523dd731503c12717
Added files:
Index: pkgsrc/devel/spdlog/patches/patch-example_example.cpp
diff -u /dev/null pkgsrc/devel/spdlog/patches/patch-example_example.cpp:1.1
--- /dev/null Wed Jul 10 20:50:57 2024
+++ pkgsrc/devel/spdlog/patches/patch-example_example.cpp Wed Jul 10 20:50:57 2024
@@ -0,0 +1,15 @@
+$NetBSD: patch-example_example.cpp,v 1.1 2024/07/10 20:50:57 wiz Exp $
+
+https://github.com/gabime/spdlog/commit/d276069a6e916b1e1fd45885b15b72bd8ee000a7
+
+--- example/example.cpp.orig 2024-07-10 20:49:42.716094450 +0000
++++ example/example.cpp
+@@ -272,7 +272,7 @@ struct my_type {
+ #ifndef SPDLOG_USE_STD_FORMAT // when using fmtlib
+ template <>
+ struct fmt::formatter<my_type> : fmt::formatter<std::string> {
+- auto format(my_type my, format_context &ctx) -> decltype(ctx.out()) {
++ auto format(my_type my, format_context &ctx) const -> decltype(ctx.out()) {
+ return fmt::format_to(ctx.out(), "[my_type i={}]", my.i);
+ }
+ };
Home |
Main Index |
Thread Index |
Old Index