From d019c5b3c40f7f7bbac1b1609310f4beabcaa467 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 26 Feb 2025 07:24:02 +0800 Subject: jsoncons: upgrade 1.1.0 -> 1.2.0 Changelog: ============== - jsonpath length function with recursive select argument gives wrong result - Support nested JSON to CSV. Add flat, column_mapping, and max_nesting_depth options to basic_csv_options - Add raw_tag() accessor to basic_cbor_cursor. Add functions begin_object_with_tag, begin_array_with_tag, uint64_value_with_tag etc. to basic_cbor_encoder to support encoding values with raw CBOR tags. - Support custom JSON Schema error messages with errorMessage keyword. Add enable_custom_error_message option to evaluation_options. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-oe/recipes-support/jsoncons/jsoncons_1.1.0.bb | 15 --------------- meta-oe/recipes-support/jsoncons/jsoncons_1.2.0.bb | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 15 deletions(-) delete mode 100644 meta-oe/recipes-support/jsoncons/jsoncons_1.1.0.bb create mode 100644 meta-oe/recipes-support/jsoncons/jsoncons_1.2.0.bb diff --git a/meta-oe/recipes-support/jsoncons/jsoncons_1.1.0.bb b/meta-oe/recipes-support/jsoncons/jsoncons_1.1.0.bb deleted file mode 100644 index bafbbd2042..0000000000 --- a/meta-oe/recipes-support/jsoncons/jsoncons_1.1.0.bb +++ /dev/null @@ -1,15 +0,0 @@ -DESCRIPTION = "A C++, header-only library for constructing JSON and JSON-like data formats." -HOMEPAGE = "https://github.com/danielaparker/jsoncons" - -LICENSE = "BSL-1.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=6ee7f7ed2001e4cde4679fdb8926f820" - -SRC_URI = "git://github.com/danielaparker/jsoncons.git;protocol=https;branch=master" -SRCREV = "eee098be8f774f64527281d5beb9e90aa9b73e06" - -S = "${WORKDIR}/git" - -inherit cmake - -PACKAGECONFIG ??= "" -PACKAGECONFIG[tests] = "-DJSONCONS_BUILD_TESTS=ON,-DJSONCONS_BUILD_TESTS=OFF" diff --git a/meta-oe/recipes-support/jsoncons/jsoncons_1.2.0.bb b/meta-oe/recipes-support/jsoncons/jsoncons_1.2.0.bb new file mode 100644 index 0000000000..9e43d42051 --- /dev/null +++ b/meta-oe/recipes-support/jsoncons/jsoncons_1.2.0.bb @@ -0,0 +1,15 @@ +DESCRIPTION = "A C++, header-only library for constructing JSON and JSON-like data formats." +HOMEPAGE = "https://github.com/danielaparker/jsoncons" + +LICENSE = "BSL-1.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=6ee7f7ed2001e4cde4679fdb8926f820" + +SRC_URI = "git://github.com/danielaparker/jsoncons.git;protocol=https;branch=master" +SRCREV = "072d106130fd5d89a405a78b6b0e4f2efc45010d" + +S = "${WORKDIR}/git" + +inherit cmake + +PACKAGECONFIG ??= "" +PACKAGECONFIG[tests] = "-DJSONCONS_BUILD_TESTS=ON,-DJSONCONS_BUILD_TESTS=OFF" -- cgit v1.2.3-54-g00ecf