[med-svn] [Git][med-team/spdlog][upstream] New upstream version 1.3.1

Michael R. Crusoe gitlab at salsa.debian.org
Tue Jan 22 23:27:33 GMT 2019


Michael R. Crusoe pushed to branch upstream at Debian Med / spdlog


Commits:
f61795eb by Michael R. Crusoe at 2019-01-21T16:15:29Z
New upstream version 1.3.1
- - - - -


18 changed files:

- CMakeLists.txt
- README.md
- bench/CMakeLists.txt
- include/spdlog/details/log_msg.h
- include/spdlog/sinks/android_sink.h
- include/spdlog/sinks/ansicolor_sink.h
- include/spdlog/sinks/basic_file_sink.h
- include/spdlog/sinks/daily_file_sink.h
- include/spdlog/sinks/dist_sink.h
- include/spdlog/sinks/msvc_sink.h
- include/spdlog/sinks/null_sink.h
- include/spdlog/sinks/ostream_sink.h
- include/spdlog/sinks/rotating_file_sink.h
- include/spdlog/sinks/stdout_color_sinks.h
- include/spdlog/sinks/stdout_sinks.h
- include/spdlog/sinks/syslog_sink.h
- include/spdlog/sinks/wincolor_sink.h
- include/spdlog/version.h


Changes:

=====================================
CMakeLists.txt
=====================================
@@ -4,7 +4,7 @@
 #
 
 cmake_minimum_required(VERSION 3.1)
-project(spdlog VERSION 1.3.0 LANGUAGES CXX)
+project(spdlog VERSION 1.3.1 LANGUAGES CXX)
 include(CMakeDependentOption)
 include(GNUInstallDirs)
 


=====================================
README.md
=====================================
@@ -91,7 +91,7 @@ int main()
     spdlog::info("Positional args are {1} {0}..", "too", "supported");
     spdlog::info("{:<30}", "left aligned");
     
-    spdlog::set_level(spdlog::level::debug/ Set global log level to debug
+    spdlog::set_level(spdlog::level::debug); // Set global log level to debug
     spdlog::debug("This message should be displayed..");    
     
     // change log pattern


=====================================
bench/CMakeLists.txt
=====================================
@@ -30,20 +30,19 @@ if(NOT TARGET spdlog)
 endif()
 
 find_package(Threads REQUIRED)
+find_package(benchmark CONFIG REQUIRED)
 
 add_executable(bench bench.cpp)
-target_link_libraries(bench spdlog::spdlog Threads::Threads)
+target_link_libraries(bench PRIVATE spdlog::spdlog Threads::Threads)
 
 add_executable(async_bench async_bench.cpp)
-target_link_libraries(async_bench spdlog::spdlog Threads::Threads)
+target_link_libraries(async_bench PRIVATE spdlog::spdlog Threads::Threads)
 
 add_executable(latency latency.cpp)
-set(CMAKE_CXX_STANDARD_LIBRARIES -lbenchmark)
-target_link_libraries(latency spdlog::spdlog Threads::Threads)
+target_link_libraries(latency PRIVATE benchmark::benchmark spdlog::spdlog Threads::Threads)
 
 
 add_executable(formatter-bench formatter-bench.cpp)
-set(CMAKE_CXX_STANDARD_LIBRARIES -lbenchmark)
-target_link_libraries(formatter-bench spdlog::spdlog Threads::Threads)
+target_link_libraries(formatter-bench PRIVATE benchmark::benchmark spdlog::spdlog Threads::Threads)
 
 file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs")


=====================================
include/spdlog/details/log_msg.h
=====================================
@@ -25,9 +25,9 @@ struct log_msg
 
 #ifndef SPDLOG_NO_THREAD_ID
         , thread_id(os::thread_id())
+#endif
         , source(loc)
         , payload(view)
-#endif
     {
     }
 


=====================================
include/spdlog/sinks/android_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/fmt_helper.h"


=====================================
include/spdlog/sinks/ansicolor_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/console_globals.h"


=====================================
include/spdlog/sinks/basic_file_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/file_helper.h"


=====================================
include/spdlog/sinks/daily_file_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/file_helper.h"


=====================================
include/spdlog/sinks/dist_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "base_sink.h"


=====================================
include/spdlog/sinks/msvc_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #if defined(_WIN32)


=====================================
include/spdlog/sinks/null_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/null_mutex.h"


=====================================
include/spdlog/sinks/ostream_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/null_mutex.h"


=====================================
include/spdlog/sinks/rotating_file_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/file_helper.h"


=====================================
include/spdlog/sinks/stdout_color_sinks.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #ifdef _WIN32


=====================================
include/spdlog/sinks/stdout_sinks.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/details/console_globals.h"


=====================================
include/spdlog/sinks/syslog_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/sinks/base_sink.h"


=====================================
include/spdlog/sinks/wincolor_sink.h
=====================================
@@ -6,7 +6,7 @@
 #pragma once
 
 #ifndef SPDLOG_H
-#error "spdlog.h must be included before this file."
+#include "spdlog/spdlog.h"
 #endif
 
 #include "spdlog/common.h"


=====================================
include/spdlog/version.h
=====================================
@@ -7,6 +7,6 @@
 
 #define SPDLOG_VER_MAJOR 1
 #define SPDLOG_VER_MINOR 3
-#define SPDLOG_VER_PATCH 0
+#define SPDLOG_VER_PATCH 1
 
 #define SPDLOG_VERSION (SPDLOG_VER_MAJOR * 10000 + SPDLOG_VER_MINOR * 100 + SPDLOG_VER_PATCH)



View it on GitLab: https://salsa.debian.org/med-team/spdlog/commit/f61795ebfcbcc596963e9ac26bb64f5739e7f5c6

-- 
View it on GitLab: https://salsa.debian.org/med-team/spdlog/commit/f61795ebfcbcc596963e9ac26bb64f5739e7f5c6
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20190122/88321c49/attachment-0001.html>


More information about the debian-med-commit mailing list