aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
AgeCommit message (Collapse)Author
2021-03-05libleak: Add recipekraj/libleakKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05libbacktrace: Add recipeKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05open-vm-tools: Do not use volatile qualifierKhem Raj
gcc 11 has started to error on it Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05nss: Disable WerrorKhem Raj
with newer compilers we are seeing new warnings, e.g. error: argument 1 of type 'int[1]' with mismatched bound [-Werror=array-parameter=] 8 | extern void pr_static_assert(int arg[(((long unsigned int)-1) > (long unsigned int)1) ? 1 : -1]); | ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ with gcc11 and clang has its own set which triggers here as well, its better to disable werror therefore, we still have warnings if someone wants to fix them but they wont break the builds Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05libiio: fix build when python bindings are enabledSam Van Den Berge
See https://github.com/openembedded/meta-openembedded/issues/248 Signed-off-by: Sam Van Den Berge <sam.van.den.berge@telenet.be> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05jasper: upgrade 2.0.25 -> 2.0.26Michael Vetter
Signed-off-by: Michael Vetter <jubalh@iodoru.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05grpc: move grpc plugins to a new grpc-compiler packageClément Péron
Like it's done for protobuf and flatbuffers move the binaries produce by gRPC to a grpc-compiler package. This is more explicit and keep coherency with protobuf and flatbuffers. Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-05jsoncpp: Upgrade to 1.9.4Andrej Valek
- do not install obj files Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04opencv: Remove duplicate patchKhem Raj
<thread> include is already taken care with 0001-Fix-building-opencv-using-gcc-11.x-19244.patch Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04opencv: Add packageconfig for building testsKhem Raj
This could be enabled when ptests are enabled but generally its fine to disable them Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04grpc: remove gflags dependencyClément Péron
gFlags has been removed since: 1f670397ce7f8a12dfb1fb32d8857b2233022856 Remove gflags. With the move to abseil's flags, this removed the now-unnecessary submodule and installation commands. Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04grpc: Add PackageConfig to build only required pluginsClément Péron
Signed-off-by: Clément Péron <peron.clem@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04sigrok-cli: upgrade 0.7.1 -> 0.7.2zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04qpdf: upgrade 10.0.4 -> 10.2.0zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04nano: upgrade 5.5 -> 5.6zhengruoqin
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04mailcap: upgrade 2.1.49 -> 2.1.52zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-04hwdata: upgrade 0.343 -> 0.345zangrc
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03abseil-cpp: Ask for C++14 std explicitlyKhem Raj
Newer gcc ( gcc11 ) will be defaulting to c++17 and abseil currently needs work to get working with c++17, so pin to c++14 untill upstream gets it working with c++17 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03nss: Fix warnings generated by getcwdAndrei Gherzan
getcwd() conforms to POSIX.1-2001 which leaves the behaviour when the buf argument is NULL, undefined. This makes gcc 10+ throw the following warning: argument 1 is null but the corresponding size argument 2 value is 4096 Initially, this was fixed by disabling NSS_ENABLE_WERROR. This patch re-enables NSS_ENABLE_WERROR (by leaving it to its default value) and takes advantage of the existing functionality in nss that wraps the getcwd call into a function making sure that the buf argument is always properly allocated. Signed-off-by: Andrei Gherzan <andrei.gherzan@huawei.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui-ncurses: Pass -DNCURSES_WIDECHAR in CXXFLAGSKhem Raj
We want the wide character functions from the ncurses header. Unfortunately it doesn't provide them by default, but only if either: * NCURSES_WIDECHAR is defined (for ncurses 20111030 and up) * _XOPEN_SOURCE/_XOPEN_SOURCE_EXTENDED are suitably defined So far we have been implicitly relying on the latter, because for GNU libc when we define _GNU_SOURCE this causes libc to define the _XOPEN_SOURCE macros for us. Unfortunately this doesn't work on all libcs, because some (like musl libc) do not define _XOPEN_SOURCE when _GNU_SOURCE is defined. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui: Adopt to new cmake option to disable WerrorKhem Raj
Add -DCMAKE_BUILD_TYPE=RELWITHDEBINFO so we have balance between build speed and debug info Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui-ncurses: Disable WerrorKhem Raj
There are new warnings seen with new clang 12 and gcc11 lets disable the warnings-as-errors for now src/NCPopupTextEntry.cc:76:74: error: 'void operator delete(void*, std::size_t)' called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] | 76 | NCInputField::PLAIN); | | ^ Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03libyui,libyui-ncurses: Upgrade to 4.0.0Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Pascal Bach <pascal.bach@siemens.com>
2021-03-03mongodb: Include <optional> c++ headerKhem Raj
Fixes build with gcc11 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03grpc: Upgrade to 1.36.1Khem Raj
Changelog https://github.com/grpc/grpc/releases/tag/v1.36.0-pre1 https://github.com/grpc/grpc/releases/tag/v1.36.0 https://github.com/grpc/grpc/releases/tag/v1.36.1 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03opengl-es-cts: Disable -Wuninitialized for external/amberKhem Raj
the code in verifier.cc needs to be ported to use enums or memcpy as it violates aliasing rules. Until then disable the warning HexFloat16ToFloat, HexFloat10ToFloat, HexFloat11ToFloat are the functions to be reworked in external/amber/src/src/verifier.cc Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
2021-03-03rsyslog: Update 8.2012.0 -> 8.2102.0Yi Fan Yu
Ptest Results: (Timeout 800) (qemux86-64) 2012 2102 ================ TOTAL: 424 424 PASS: 369 369 SKIP: 41 41 XFAIL: 0 0 FAIL: 14 14 XPASS: 0 0 ERROR: 0 0 Many ptest failures are due to busybox logger not having the `-d` flag. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03mozjs: Drop using JS_VOLATILE_ARMKhem Raj
JS_VOLATILE_ARM was a workaround for a gcc 4.7 bug on B2G where it would generate unaligned word accesses that should have been individual byte accesses. firefox now a days require at least gcc 6.1+ (and ARM systems support unaligned accesses). see [1] in gcc11 volatile wont be accepted as argument qualifier in functions, hence the build breaks, this patch unbreaks it [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1495731 Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
2021-03-03libinih: install header files without prefix dir inihKai Kang
The other flavor of inih which adapted by Fedora and Ubuntu installs header files to /usr/include directly. And xfsprogs 5.10.0 also checks ini.h without extra search path and failed. So install header files without prefix dir inih. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03pipewire: Move to meta-multimediaCarlos Rafael Giani
Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03mcelog: Upgrade to 175Mingli Yu
Rebase 0001-test-avoid-the-pfa-test-hang.patch to the new version. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03opencv: Upgrade to 4.5.1Khem Raj
Drop upstreamed patch Add patches to support gcc 11 while here Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Jose Quaresma <quaresma.jose@gmail.com>
2021-03-03minifi-cpp: include limits header for numeric_limits definitionKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-03mpich: Upgrade to 3.4.1Khem Raj
Add fixes to work with/with-out X Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Jose Quaresma <quaresma.jose@gmail.com> Cc: Andreas Müller <schnitzeltony@gmail.com>
2021-03-03v4l-utils: Package systemd fragment for systemd-udevd.service.dKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Acked-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
2021-03-02v4l-utils: update to 1.20.0Ulrich ?lmann
Add new buildtime configuration options, update context of two patches and remove two patches as there are fixes [1]-[3] found upstream in the meantime. [1] 38f4ce74275a ("keytable: use input_event properly") [2] 8b7e6ce9367f ("keytable: add compatibility for input_event_sec") [3] 976a2f681b4e ("keymap.h needs sys/types.h and argp.h with musl") Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-02Fix do_package error when enable multilib.zhengruoqin
ERROR: grpc-1.35.0-r0 do_package: QA Issue: grpc: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/pkgconfig /usr/lib/pkgconfig/grpc.pc /usr/lib/pkgconfig/grpc_unsecure.pc /usr/lib/pkgconfig/grpc++.pc /usr/lib/pkgconfig/gpr.pc /usr/lib/pkgconfig/grpc++_unsecure.pc Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. grpc: 7 installed and not shipped files. [installed-vs-shipped] ERROR: grpc-1.35.0-r0 do_package: Fatal QA errors found, failing task. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-02lvm2/libdevmapper: 2.03.06 -> 2.03.11Hongxu Jia
Drop backport patch: - 0001-dev-hdc-open-failed-No-medium-found-will-print-out-i.patch Refresh: - 0001-fix-command-bin-findmnt-bin-lsblk-bin-sort-not-found.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-03-01glog: Upgrade to 0.4.0Khem Raj
Drop upstreamed patch Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Vyacheslav Yurkov <Vyacheslav.Yurkov@bruker.com>
2021-02-28remmina: Upgrade 1.4.10 -> 1.4.11Alejandro Hernandez Samaniego
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28freerdp: Upgrade 2.2.0 -> 2.3.0Alejandro Hernandez Samaniego
Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28librcereal: A couple of improvementsPeter Kjellerstedt
* Add "+git${SRCPV}" to PV to indicate that a non-released version is used. * Do not redefine FILES_${PN}-dev; the default will work just fine. * Move PROVIDES to better match the style guide. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28libgphoto2: upgrade 2.5.26 -> 2.5.27Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28gphoto2: upgrade 2.5.26 -> 2.5.27Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28tesseract-lang: upgrade 4.0.0 -> 4.1.0Wang Mingyu
There is no file COPYING in version 4.1.0, so the file LICENSE is used instead. Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28redis-plus-plus: upgrade 1.2.1 -> 1.2.2Wang Mingyu
Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28protobuf: upgrade 3.14.0 -> 3.15.2Wang Mingyu
0001-fix-m4-pthread-update.patch Removed since this is included in 3.15.2. Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-28iwd: upgrade 1.11 -> 1.12Wang Mingyu
0001-crypto-Update-l_pkcs5_pbkdf2-call-after-rename.patch Removed since this is included in 1.12. Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-27recipes-kernel: add libbpfMatteo Croce
Add a recipe to build libbpf from https://github.com/libbpf/libbpf The only patch fixes a build issue, and it's already merged upstream. Signed-off-by: Matteo Croce <mcroce@microsoft.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2021-02-27cereal: RemoveAdam Miartus
this component is already configured by 'libcereal' Signed-off-by: Khem Raj <raj.khem@gmail.com>