summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/msgpack
Commit message (Collapse)AuthorAgeFilesLines
* msgpack-cpp: Upgrade 6.1.1 -> 7.0.0 to allow CMake 4+ compatibilityAlper Ak13 days1-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: https://github.com/msgpack/msgpack-c/blob/cpp-7.0.0/CHANGELOG.md Fix: | CMake Error at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: Upgrade 6.0.0 -> 6.1.0 to allow CMake 4+ compatibilityAlper Ak13 days1-5/+3
| | | | | | | | | | | | | | | | | | | | | | | Changelog: https://github.com/msgpack/msgpack-c/blob/c-6.1.0/CHANGELOG.md Fix: | CMake Error at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): | Compatibility with CMake < 3.5 has been removed from CMake. | | Update the VERSION argument <min> value. Or, use the <min>...<max> syntax | to tell CMake that the project requires at least <min> but has been updated | to work with policies introduced by <max> or earlier. | | Or, add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway. | | | -- Configuring incomplete, errors occurred! Signed-off-by: Alper Ak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* meta-openembedded/all: adapt to UNPACKDIR changesAlexander Kanavin2025-06-252-2/+1
| | | | | | | | | | | | | Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-cpp: upgrade 6.1.0 -> 6.1.1Wang Mingyu2024-08-091-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-cpp: include UPSTREAM_CHECK_* to fix UNKNOWN_BROKEN statusAlexandre Truong2024-07-241-0/+3
| | | | | | | | | | | Adding UPSTREAM_CHECK_URI and UPSTREAM_CHECK_REGEX fix UNKNOWN_BROKEN status from running devtool check-upgrade-status. The next version of the package can be found from upstream sources. Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr> Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
* msgpack-cpp: upgrade 4.1.1 -> 6.1.0alperak2023-11-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: - Remove dependency on boost in chrono.hpp (#1076) - Add support for std::variant behavior (#1075) - Fix msgpack::type::variant behavior to respect MessagePack format (#1071) - Add rebind allocators (#1065) - Change CMake package name of C++ library to msgpack-cxx (#1054) - Unified all C++ package, library, cmake, tarball name become msgpack-cxx. - Change CMake package name of C++ library to msgpackc-cxx (#1045, #1048) - Fix config for new MSVC preprocessor (#1040) - Fix compile error that direct inclusion of chrono with MSGPACK_NO_BOOST (#1038) - Fix noexcept on zone (#1030) - Improve cmake support (#1028, #1032) - Improve CI (#1023) - Improve supporting platform (#1021) - Refine double/float packing (#1018) - Refine include files dependency (#1011) Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: upgrade 4.0.0 -> 6.0.0alperak2023-11-281-3/+3
| | | | | | | | | | | | | | | - GTest should be OFF by default. -> https://github.com/msgpack/msgpack-c/issues/1066 Changelog: - Remove C++ requirement if test is disabled (#1055) - Change CMake package name of C library to msgpack-c (#1053) - Unified all C package, library, cmake, tarball name become msgpack-c. - Add additional address sanitizer for CI. (#1023) - Change CMake package name of C library to msgpackc (#1044, #1049) Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-cpp: Upgrade to 4.1.1 releaseKhem Raj2022-03-211-6/+3
| | | | | | Use tarball from release artifacts Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-cpp: fix msgpack-cpp is a header only librarySean Nyekjaer2021-11-171-0/+2
| | | | | | | ${PN} is empty so don't let the -dev package RDEPEND on it Signed-off-by: Sean Nyekjaer <sean.nyekjaer.ext@siemensgamesa.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Update SRC_URI branch and protocolsRichard Purdie2021-11-032-2/+2
| | | | | | | | | This patch updates SRC_URIs using git to include branch=master if no branch is set and also to use protocol=https for github urls as generated by the conversion script in OE-Core. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: update 3.2.1 -> 4.0.0, add msgpack-cppAlexander Kanavin2021-09-082-3/+24
| | | | | | | | | | Upstream has split the C and C++ versions into separate components so add the recipe for CPP flavour. The only consumer in meta-oe, tmate, still builds fine. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: add native, nativesdk supportMartin Kelly2020-06-081-0/+2
| | | | | Signed-off-by: Martin Kelly <mkelly@xevo.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: upgrade 3.1.1 -> 3.2.1Wang Mingyu2020-01-091-2/+2
| | | | | Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: Upgrade to 3.1.1Khem Raj2019-03-062-37/+2
| | | | | | Drop upstreamed patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: variable cleanupTrevor Woerner2018-05-291-4/+3
| | | | | | | | | | Reorder recipe variables according to: https://www.openembedded.org/wiki/Styleguide Originally-conceived-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack_c: rely on cmake.bbclass to put cmake package files in dev packageTrevor Woerner2018-05-291-2/+0
| | | | | | | | | | | | The cmake.bbclass in oe-core now ensures that ${libdir}/cmake and ${datadir}/cmake end up in the dev package, so recipes no longer need to provide custom packaging rules to handles these files. http://git.openembedded.org/openembedded-core/commit/?id=d91dc4666683a96e9d03cbbd21b8a546f9069c93 Originally-conceived-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: Update to latest and fix build with gcc8Khem Raj2018-04-082-1/+37
| | | | | Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
* msgpack-c: update to version 2.1.5Derek Straka2017-09-222-41/+1
| | | | | Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* msgpack-c: Drop unused patchKhem Raj2017-04-261-40/+0
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* msgpack-c: Upgrade to 2.1.1Khem Raj2017-04-263-4/+90
| | | | | | | Fix build with gcc7 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* msgpack-c: Add recipeKhem Raj2016-12-131-0/+15
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>