diff options
author | Jens Rehsack <sno@netbsd.org> | 2020-01-02 10:07:27 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-01-02 09:48:20 -0800 |
commit | e75ff6818aefa8e32c2314a541310844fa4880a4 (patch) | |
tree | 3a8f6af0b678e89aa1dc14ac611f1303c7ab010d /meta-oe/recipes-devtools/log4cplus/log4cplus_2.0.5.bb | |
parent | 13042b49ea2e42177130e89ffcf575d7b5f32444 (diff) | |
download | meta-openembedded-e75ff6818aefa8e32c2314a541310844fa4880a4.tar.gz |
log4cplus: update to 2.0.5
Update log4cplus library to 2019-12-23 released version containing (relevant
for *nix)
* Modernized CMake build.
* Fix issue with std::va_list value reuse.
* Fix parsing of include in configuration when included file path
contains =. (Patch by Peter Pei)
* Change of default behaviour: Instantiate thread pool with only 4 threads
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/log4cplus/log4cplus_2.0.5.bb')
-rw-r--r-- | meta-oe/recipes-devtools/log4cplus/log4cplus_2.0.5.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/log4cplus/log4cplus_2.0.5.bb b/meta-oe/recipes-devtools/log4cplus/log4cplus_2.0.5.bb new file mode 100644 index 000000000..967ac7623 --- /dev/null +++ b/meta-oe/recipes-devtools/log4cplus/log4cplus_2.0.5.bb | |||
@@ -0,0 +1,19 @@ | |||
1 | SUMMARY = "log4cplus provides a simple C++ logging API for log management" | ||
2 | SECTION = "libs" | ||
3 | HOMEPAGE = "http://sourceforge.net/projects/log4cplus/" | ||
4 | BUGTRACKER = "http://sourceforge.net/p/log4cplus/bugs/" | ||
5 | |||
6 | LICENSE = "Apache-2.0 & BSD-2-Clause" | ||
7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=41e8e060c26822886b592ab4765c756b" | ||
8 | |||
9 | SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}-stable/${PV}/${BP}.tar.gz \ | ||
10 | " | ||
11 | SRC_URI[md5sum] = "71dd956bf686195127559671f1426cff" | ||
12 | SRC_URI[sha256sum] = "c07115c23219390633798def30b7b51a0f79fdeb857e4b49632f17746d0ceb97" | ||
13 | |||
14 | UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/log4cplus/files/log4cplus-stable/" | ||
15 | UPSTREAM_CHECK_REGEX = "log4cplus-stable/(?P<pver>\d+(\.\d+)+)/" | ||
16 | |||
17 | inherit autotools pkgconfig | ||
18 | |||
19 | BBCLASSEXTEND = "native" | ||