View | Details | Raw Unified | Return to bug 256810 | Differences between
and this patch

Collapse All | Expand All

(-)b/devel/spdlog/Makefile (-1 / +5 lines)
Lines 3-11 Link Here
3
PORTNAME=	spdlog
3
PORTNAME=	spdlog
4
DISTVERSIONPREFIX=	v
4
DISTVERSIONPREFIX=	v
5
DISTVERSION=	1.8.5
5
DISTVERSION=	1.8.5
6
PORTREVISION=	0
6
PORTREVISION=	1
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
8
9
PATCH_SITES=	https://github.com/gabime/spdlog/commit/
10
PATCHFILES=	7b14a65b2b8cbdca3c6bd1d36fe5b271389c1d07.patch:-p1 \
11
		68111122086187761cca36c24e6d8c8daa96656d.patch:-p1
12
9
MAINTAINER=	vanilla@FreeBSD.org
13
MAINTAINER=	vanilla@FreeBSD.org
10
COMMENT=	Super fast C++ logging library
14
COMMENT=	Super fast C++ logging library
11
15
(-)b/devel/spdlog/distinfo (-1 / +5 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1616997697
1
TIMESTAMP = 1624574846
2
SHA256 (gabime-spdlog-v1.8.5_GH0.tar.gz) = 944d0bd7c763ac721398dca2bb0f3b5ed16f67cef36810ede5061f35a543b4b8
2
SHA256 (gabime-spdlog-v1.8.5_GH0.tar.gz) = 944d0bd7c763ac721398dca2bb0f3b5ed16f67cef36810ede5061f35a543b4b8
3
SIZE (gabime-spdlog-v1.8.5_GH0.tar.gz) = 321229
3
SIZE (gabime-spdlog-v1.8.5_GH0.tar.gz) = 321229
4
SHA256 (7b14a65b2b8cbdca3c6bd1d36fe5b271389c1d07.patch) = 5efa9e3b8d4dc4de351dc0e1d2516b2a6e141854e055ae420446785df85d9574
5
SIZE (7b14a65b2b8cbdca3c6bd1d36fe5b271389c1d07.patch) = 6523
6
SHA256 (68111122086187761cca36c24e6d8c8daa96656d.patch) = a491f1734429203bc298658c1cdc49d1b30b17f8fad6f342511ad1f8692ae666
7
SIZE (68111122086187761cca36c24e6d8c8daa96656d.patch) = 753
(-)b/devel/spdlog/files/patch-include_spdlog_common-inl.h (+11 lines)
Added Link Here
1
--- include/spdlog/common-inl.h.orig	2021-06-24 13:59:17 UTC
2
+++ include/spdlog/common-inl.h
3
@@ -60,7 +60,7 @@ SPDLOG_INLINE spdlog_ex::spdlog_ex(std::string msg)
4
 SPDLOG_INLINE spdlog_ex::spdlog_ex(const std::string &msg, int last_errno)
5
 {
6
     memory_buf_t outbuf;
7
-    fmt::format_system_error(outbuf, last_errno, msg);
8
+    fmt::format_system_error(outbuf, last_errno, msg.c_str());
9
     msg_ = fmt::to_string(outbuf);
10
 }
11
 
(-)b/devel/spdlog/files/patch-include_spdlog_fmt_bin__to__hex.h (+11 lines)
Added Link Here
1
--- include/spdlog/fmt/bin_to_hex.h.orig	2021-06-24 14:01:22 UTC
2
+++ include/spdlog/fmt/bin_to_hex.h
3
@@ -209,7 +209,7 @@ struct formatter<spdlog::details::dump_info<T>>
4
 
5
         if (put_positions)
6
         {
7
-            fmt::format_to(inserter, "{:<04X}: ", pos);
8
+            fmt::format_to(inserter, "{:04X}: ", pos);
9
         }
10
     }
11
 };

Return to bug 256810