diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2018-05-02 14:37:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-11 07:49:37 +0100 |
commit | b7fd23f8839ab7e07e8e9b8992c5b106ce0667cd (patch) | |
tree | b0a9995b8e3c8309eec140d8ad56ebf2c1e1d524 /meta/recipes-devtools/json-c | |
parent | b28f8b58860cb1cf84cd2653db59019050d9a5f7 (diff) | |
download | poky-b7fd23f8839ab7e07e8e9b8992c5b106ce0667cd.tar.gz |
json-c: upgrade to 0.13.1
* from https://github.com/json-c/json-c/commit/861c1a82868831bf82222f974f05c2af5a975d12
* Bump the major version of the .so library generated up to 4.0 to avoid
conflicts because some downstream packagers of json-c had already done
their own bump to ".so.3" for a much older 0.12 release.
* Add const size_t json_c_object_sizeof()
* Avoid invalid free (and thus a segfault) when ref_count gets < 0
* PR#394: fix handling of custom double formats that include a ".0"
* Avoid uninitialized variable warnings in json_object_object_foreach
* Issue #396: fix build for certain uClibc based systems.
* Add a top level fuzz directory for fuzzers run by OSS-Fuzz
(From OE-Core rev: bb9a62acaf9aa1691ce276bf037ba35b6c924276)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/json-c')
-rw-r--r-- | meta/recipes-devtools/json-c/json-c_0.13.1.bb (renamed from meta/recipes-devtools/json-c/json-c_0.13.bb) | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/meta/recipes-devtools/json-c/json-c_0.13.bb b/meta/recipes-devtools/json-c/json-c_0.13.1.bb index 06319de323..5b10e68297 100644 --- a/meta/recipes-devtools/json-c/json-c_0.13.bb +++ b/meta/recipes-devtools/json-c/json-c_0.13.1.bb | |||
@@ -4,18 +4,17 @@ HOMEPAGE = "https://github.com/json-c/json-c/wiki" | |||
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=de54b60fbbc35123ba193fea8ee216f2" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=de54b60fbbc35123ba193fea8ee216f2" |
6 | 6 | ||
7 | SRC_URI = "https://s3.amazonaws.com/json-c_releases/releases/${BP}.tar.gz \ | 7 | SRC_URI = "https://s3.amazonaws.com/json-c_releases/releases/${BP}.tar.gz" |
8 | " | 8 | SRC_URI[md5sum] = "04969ad59cc37bddd83741a08b98f350" |
9 | SRC_URI[md5sum] = "11fc5d90c77375e5fc8401e8b9efbf21" | 9 | SRC_URI[sha256sum] = "b87e608d4d3f7bfdd36ef78d56d53c74e66ab278d318b71e6002a369d36f4873" |
10 | SRC_URI[sha256sum] = "0316780be9ad16c42d7c26b015a784fd5df4b0909fef0aba51cfb13e492ac24d" | ||
11 | 10 | ||
12 | UPSTREAM_CHECK_REGEX = "json-c-(?P<pver>\d+(\.\d+)+).tar" | 11 | UPSTREAM_CHECK_REGEX = "json-c-(?P<pver>\d+(\.\d+)+).tar" |
13 | # json-c releases page is fetching the list of releases in some weird XML format | 12 | # json-c releases page is fetching the list of releases in some weird XML format |
14 | # from https://s3.amazonaws.com/json-c_releases and processes it with javascript :-/ | 13 | # from https://s3.amazonaws.com/json-c_releases and processes it with javascript :-/ |
15 | #UPSTREAM_CHECK_URI = "https://s3.amazonaws.com/json-c_releases/releases/index.html" | 14 | #UPSTREAM_CHECK_URI = "https://s3.amazonaws.com/json-c_releases/releases/index.html" |
16 | RECIPE_UPSTREAM_VERSION = "0.13" | 15 | RECIPE_UPSTREAM_VERSION = "0.13.1" |
17 | RECIPE_UPSTREAM_DATE = "Dec 07, 2017" | 16 | RECIPE_UPSTREAM_DATE = "Mar 04, 2018" |
18 | CHECK_DATE = "Jan 31, 2018" | 17 | CHECK_DATE = "May 02, 2018" |
19 | 18 | ||
20 | RPROVIDES_${PN} = "libjson" | 19 | RPROVIDES_${PN} = "libjson" |
21 | 20 | ||