Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package msgpack-c for openSUSE:Factory checked in at 2024-04-03 17:21:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/msgpack-c (Old) and /work/SRC/openSUSE:Factory/.msgpack-c.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "msgpack-c" Wed Apr 3 17:21:00 2024 rev:3 rq:1164318 version:6.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/msgpack-c/msgpack-c.changes 2023-11-30 22:00:50.832011986 +0100 +++ /work/SRC/openSUSE:Factory/.msgpack-c.new.1905/msgpack-c.changes 2024-04-03 17:22:15.825585283 +0200 @@ -1,0 +2,7 @@ +Tue Apr 2 06:57:32 UTC 2024 - Michael Vetter <[email protected]> + +- Update to release 6.0.1: + * Improve CI environment (#1061, #1091, #1109) + * Improve build system (#1060, #1069, #1108) + +------------------------------------------------------------------- Old: ---- msgpack-c-6.0.0.tar.gz New: ---- msgpack-c-6.0.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ msgpack-c.spec ++++++ --- /var/tmp/diff_new_pack.OPnPbK/_old 2024-04-03 17:22:16.373605503 +0200 +++ /var/tmp/diff_new_pack.OPnPbK/_new 2024-04-03 17:22:16.373605503 +0200 @@ -1,7 +1,7 @@ # # spec file for package msgpack-c # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: msgpack-c -Version: 6.0.0 +Version: 6.0.1 Release: 0 Summary: Object serialization library for cross-language communication License: BSL-1.0 ++++++ msgpack-c-6.0.0.tar.gz -> msgpack-c-6.0.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.0/CMakeLists.txt new/msgpack-c-6.0.1/CMakeLists.txt --- old/msgpack-c-6.0.0/CMakeLists.txt 2023-03-04 14:39:44.000000000 +0100 +++ new/msgpack-c-6.0.1/CMakeLists.txt 2024-04-02 07:15:59.000000000 +0200 @@ -1,11 +1,14 @@ -CMAKE_MINIMUM_REQUIRED (VERSION 2.8.12) - -IF ((CMAKE_VERSION VERSION_GREATER 3.1) OR - (CMAKE_VERSION VERSION_EQUAL 3.1)) - CMAKE_POLICY(SET CMP0054 NEW) -ENDIF () +if(${CMAKE_VERSION} VERSION_GREATER "3.4") + CMAKE_MINIMUM_REQUIRED (VERSION 3.5) +else() + CMAKE_MINIMUM_REQUIRED (VERSION 2.8.12) + IF ((CMAKE_VERSION VERSION_GREATER 3.1) OR + (CMAKE_VERSION VERSION_EQUAL 3.1)) + CMAKE_POLICY(SET CMP0054 NEW) + ENDIF () +endif() -OPTION (MSGPACK_BUILD_TESTS "Build msgpack tests." ON) +OPTION (MSGPACK_BUILD_TESTS "Build msgpack tests." OFF) OPTION (MSGPACK_GEN_COVERAGE "Enable running gcov to get a test coverage report." OFF) if(MSGPACK_BUILD_TESTS) @@ -24,10 +27,11 @@ SET (VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REVISION}) LIST (APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/") +include(GNUInstallDirs) SET (prefix ${CMAKE_INSTALL_PREFIX}) -SET (exec_prefix "\${prefix}") -SET (libdir "\${exec_prefix}/lib") -SET (includedir "\${prefix}/include") +SET (exec_prefix ${CMAKE_INSTALL_PREFIX}) +SET (libdir ${CMAKE_INSTALL_LIBDIR}) +SET (includedir ${CMAKE_INSTALL_INCLUDEDIR}) OPTION (MSGPACK_32BIT "32bit compile" OFF) @@ -38,7 +42,7 @@ SET(MSGPACK_ENDIAN_LITTLE_BYTE 0) ELSE () SET(MSGPACK_ENDIAN_BIG_BYTE 0) - SET(MSGPACK_ENDIAN_LITTLE_BYTE 1) + SET(MSGPACK_ENDIAN_LITTLE_BYTE 1) ENDIF () CONFIGURE_FILE ( @@ -260,11 +264,11 @@ ) FOREACH (file ${msgpack-c_common_HEADERS}) GET_FILENAME_COMPONENT (dir ${file} PATH) - INSTALL (FILES ${file} DESTINATION ${CMAKE_INSTALL_PREFIX}/${dir}) + INSTALL (FILES ${file} DESTINATION ${dir}) ENDFOREACH () FOREACH (file ${msgpack-c_configured_HEADERS}) GET_FILENAME_COMPONENT (dir ${file} PATH) - INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/${file} DESTINATION ${CMAKE_INSTALL_PREFIX}/${dir}) + INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/${file} DESTINATION ${dir}) ENDFOREACH () IF (NOT MSVC) INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/msgpack-c.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.0/ChangeLog new/msgpack-c-6.0.1/ChangeLog --- old/msgpack-c-6.0.0/ChangeLog 2023-03-04 14:48:03.000000000 +0100 +++ new/msgpack-c-6.0.1/ChangeLog 2024-04-02 07:16:59.000000000 +0200 @@ -1,3 +1,7 @@ +# 2024-04-02 version 6.0.1 + * Improve CI environment (#1061, #1091, #1109) + * Improve build system (#1060, #1069, #1108) + # 2023-03-02 version 6.0.0 * Remove C++ requirement if test is disabled (#1055) ## << breaking changes >> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.0/README new/msgpack-c-6.0.1/README --- old/msgpack-c-6.0.0/README 2023-03-04 14:48:03.000000000 +0100 +++ new/msgpack-c-6.0.1/README 2024-04-02 07:16:59.000000000 +0200 @@ -1,7 +1,7 @@ `msgpack` for C =================== -Version 6.0.0 [](https://github.com/msgpack/msgpack-c/actions) [](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) +Version 6.0.1 [](https://github.com/msgpack/msgpack-c/actions) [](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) [](https://codecov.io/gh/msgpack/msgpack-c/branch/c_master) It's like JSON but smaller and faster. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.0/README.md new/msgpack-c-6.0.1/README.md --- old/msgpack-c-6.0.0/README.md 2023-03-04 13:40:57.000000000 +0100 +++ new/msgpack-c-6.0.1/README.md 2024-04-02 07:15:59.000000000 +0200 @@ -1,7 +1,7 @@ `msgpack` for C =================== -Version 6.0.0 [](https://github.com/msgpack/msgpack-c/actions) [](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) +Version 6.0.1 [](https://github.com/msgpack/msgpack-c/actions) [](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) [](https://codecov.io/gh/msgpack/msgpack-c/branch/c_master) It's like JSON but smaller and faster. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.0/example/cmake/CMakeLists.txt new/msgpack-c-6.0.1/example/cmake/CMakeLists.txt --- old/msgpack-c-6.0.0/example/cmake/CMakeLists.txt 2023-03-04 13:40:57.000000000 +0100 +++ new/msgpack-c-6.0.1/example/cmake/CMakeLists.txt 2024-04-02 07:15:59.000000000 +0200 @@ -1,4 +1,4 @@ -cmake_minimum_required (VERSION 3.0) +cmake_minimum_required (VERSION 3.5) project (example) if(EXAMPLE_MSGPACK_EMBEDDED) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.0/include/msgpack/version_master.h new/msgpack-c-6.0.1/include/msgpack/version_master.h --- old/msgpack-c-6.0.0/include/msgpack/version_master.h 2023-03-04 13:40:57.000000000 +0100 +++ new/msgpack-c-6.0.1/include/msgpack/version_master.h 2024-04-02 07:15:59.000000000 +0200 @@ -1,3 +1,3 @@ #define MSGPACK_VERSION_MAJOR 6 #define MSGPACK_VERSION_MINOR 0 -#define MSGPACK_VERSION_REVISION 0 +#define MSGPACK_VERSION_REVISION 1
