commit msgpack-c for openSUSE:Factory
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-06-27 16:01:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/msgpack-c (Old) and /work/SRC/openSUSE:Factory/.msgpack-c.new.18349 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "msgpack-c" Thu Jun 27 16:01:15 2024 rev:4 rq:1183304 version:6.0.2 Changes: -------- --- /work/SRC/openSUSE:Factory/msgpack-c/msgpack-c.changes 2024-04-03 17:22:15.825585283 +0200 +++ /work/SRC/openSUSE:Factory/.msgpack-c.new.18349/msgpack-c.changes 2024-06-27 16:01:52.503466861 +0200 @@ -1,0 +2,10 @@ +Mon Jun 24 08:10:42 UTC 2024 - Michael Vetter <mvetter@suse.com> + +- Update to 6.0.2: + * Fix header file installation to respect + CMAKE_INSTALL_INCLUDEDIR (#1125) + * Support absolute path for CMAKE_INSTALL_*DIR (#1121) + * Removed invalid ctest option. (#1120) + * Support relative path for CMAKE_INSTALL_*DIR (#1119) + +------------------------------------------------------------------- Old: ---- msgpack-c-6.0.1.tar.gz New: ---- msgpack-c-6.0.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ msgpack-c.spec ++++++ --- /var/tmp/diff_new_pack.IMu3tk/_old 2024-06-27 16:01:53.811514883 +0200 +++ /var/tmp/diff_new_pack.IMu3tk/_new 2024-06-27 16:01:53.811514883 +0200 @@ -17,7 +17,7 @@ Name: msgpack-c -Version: 6.0.1 +Version: 6.0.2 Release: 0 Summary: Object serialization library for cross-language communication License: BSL-1.0 ++++++ msgpack-c-6.0.1.tar.gz -> msgpack-c-6.0.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/msgpack-c-6.0.1/CMakeLists.txt new/msgpack-c-6.0.2/CMakeLists.txt --- old/msgpack-c-6.0.1/CMakeLists.txt 2024-04-02 07:15:59.000000000 +0200 +++ new/msgpack-c-6.0.2/CMakeLists.txt 2024-06-24 08:30:24.000000000 +0200 @@ -30,8 +30,16 @@ include(GNUInstallDirs) SET (prefix ${CMAKE_INSTALL_PREFIX}) SET (exec_prefix ${CMAKE_INSTALL_PREFIX}) -SET (libdir ${CMAKE_INSTALL_LIBDIR}) -SET (includedir ${CMAKE_INSTALL_INCLUDEDIR}) +IF (IS_ABSOLUTE ${CMAKE_INSTALL_LIBDIR}) + SET (libdir ${CMAKE_INSTALL_LIBDIR}) +ELSE () + SET (libdir "\${prefix}/${CMAKE_INSTALL_LIBDIR}") +ENDIF () +IF (IS_ABSOLUTE ${CMAKE_INSTALL_INCLUDEDIR}) + SET (includedir ${CMAKE_INSTALL_INCLUDEDIR}) +ELSE () + SET (includedir "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}") +ENDIF () OPTION (MSGPACK_32BIT "32bit compile" OFF) @@ -263,12 +271,14 @@ ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) FOREACH (file ${msgpack-c_common_HEADERS}) - GET_FILENAME_COMPONENT (dir ${file} PATH) - INSTALL (FILES ${file} DESTINATION ${dir}) + GET_FILENAME_COMPONENT(dir ${file} DIRECTORY) + STRING(REPLACE "include" "${CMAKE_INSTALL_INCLUDEDIR}" header_path ${dir}) + INSTALL (FILES ${file} DESTINATION ${header_path}) ENDFOREACH () FOREACH (file ${msgpack-c_configured_HEADERS}) - GET_FILENAME_COMPONENT (dir ${file} PATH) - INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/${file} DESTINATION ${dir}) + GET_FILENAME_COMPONENT(dir ${file} DIRECTORY) + STRING(REPLACE "include" "${CMAKE_INSTALL_INCLUDEDIR}" header_path ${dir}) + INSTALL (FILES ${CMAKE_CURRENT_BINARY_DIR}/${file} DESTINATION ${header_path}) 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.1/ChangeLog new/msgpack-c-6.0.2/ChangeLog --- old/msgpack-c-6.0.1/ChangeLog 2024-04-02 07:16:59.000000000 +0200 +++ new/msgpack-c-6.0.2/ChangeLog 2023-03-04 14:48:03.000000000 +0100 @@ -1,7 +1,3 @@ -# 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.1/README new/msgpack-c-6.0.2/README --- old/msgpack-c-6.0.1/README 2024-04-02 07:16:59.000000000 +0200 +++ new/msgpack-c-6.0.2/README 2023-03-04 14:48:03.000000000 +0100 @@ -1,7 +1,7 @@ `msgpack` for C =================== -Version 6.0.1 [![Build Status](https://github.com/msgpack/msgpack-c/workflows/CI/badge.svg?branch=c_master)](https://github.com/msgpack/msgpack-c/actions) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/c_master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) +Version 6.0.0 [![Build Status](https://github.com/msgpack/msgpack-c/workflows/CI/badge.svg?branch=c_master)](https://github.com/msgpack/msgpack-c/actions) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/c_master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) [![codecov](https://codecov.io/gh/msgpack/msgpack-c/branch/c_master/graph/badge.svg)](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.1/README.md new/msgpack-c-6.0.2/README.md --- old/msgpack-c-6.0.1/README.md 2024-04-02 07:15:59.000000000 +0200 +++ new/msgpack-c-6.0.2/README.md 2024-06-24 08:57:17.000000000 +0200 @@ -1,7 +1,7 @@ `msgpack` for C =================== -Version 6.0.1 [![Build Status](https://github.com/msgpack/msgpack-c/workflows/CI/badge.svg?branch=c_master)](https://github.com/msgpack/msgpack-c/actions) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/c_master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) +Version 6.0.2 [![Build Status](https://github.com/msgpack/msgpack-c/workflows/CI/badge.svg?branch=c_master)](https://github.com/msgpack/msgpack-c/actions) [![Build status](https://ci.appveyor.com/api/projects/status/8kstcgt79qj123mw/branch/c_master?svg=true)](https://ci.appveyor.com/project/redboltz/msgpack-c/branch/c_master) [![codecov](https://codecov.io/gh/msgpack/msgpack-c/branch/c_master/graph/badge.svg)](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.1/include/msgpack/version_master.h new/msgpack-c-6.0.2/include/msgpack/version_master.h --- old/msgpack-c-6.0.1/include/msgpack/version_master.h 2024-04-02 07:15:59.000000000 +0200 +++ new/msgpack-c-6.0.2/include/msgpack/version_master.h 2024-06-24 08:57:17.000000000 +0200 @@ -1,3 +1,3 @@ #define MSGPACK_VERSION_MAJOR 6 #define MSGPACK_VERSION_MINOR 0 -#define MSGPACK_VERSION_REVISION 1 +#define MSGPACK_VERSION_REVISION 2
participants (1)
-
Source-Sync