aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended
AgeCommit message (Collapse)Author
2020-04-21icewm: upgrade 1.5.5 -> 1.6.5timo/icewm-1.6.5Tim Orling
Add additional DEPENDS on libxcomposite, libxfixes, libxdamage Add update-alternatives similar to xfce-session from meta-xfce For release notes and changes see: https://github.com/ice-wm/icewm/releases/ Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
2020-04-19sysdig: Do not depend on luaJIT for riscvKhem Raj
LuaJIT is not porteed to riscv yet Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-16dlt-daemon: Make it support usrmergePeter Kjellerstedt
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-14pegtl: upgrade 2.8.1 -> 2.8.2Pierre-Jean Texier
License-Update: copyright years updated See full changelog https://github.com/taocpp/PEGTL/releases/tag/2.8.2 Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-12sysdig: upgrade 0.26.5 -> 0.26.6Andreas Müller
Bug fixes Rewrite the probe builder (#1576) Build fixes for 5.4+ kernels (#1595) Use Debian Stable as the base container image (#1605) All the fixes incorporated in 0.26.5 (that didn't get artifacts released for tooling reasons) New features Support for s390x and ppc64le architectures Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-11tmux: fix upstream check URLPierre-Jean Texier
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-10rsyslog: 8.1911.0 -> 8.2002.0Randy MacLeod
Add some error handling to run-ptests. Fix up the new set-envvars script to that 36 new tests pass. On qemux86-64/kvm the ptest results with extra filesystem space and a timeout of 800 seconds are: 1911 2002 TOTAL: 389 408 PASS: 339 357 SKIP: 39 39 XFAIL: 0 0 FAIL: 11 12 XPASS: 0 0 ERROR: 0 0 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-08collectd: upgrade 5.10.0 -> 5.11.0Wang Mingyu
refresh 0001-Remove-including-sys-sysctl.h-on-glibc-based-systems.patch Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-08byacc: upgrade 20191125 -> 20200330Wang Mingyu
-License-Update: Copyright year updated to 2020. Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-05mraa: Use -fcommonKhem Raj
gcc10 is going to default to -fno-common which is opposite of all previous gcc version defaults, ideally package should be fixed so it can work with -fno-common but this is good enough for now, it does not change default behavious with older compilers Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-05upm: Disable WerrorKhem Raj
New compilers sometime find new warnings, its best to report them upstream but not break distro builds Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-05upm: Undefine PYTHON_EXECUTABLE cmake variableKhem Raj
upm has its own mechanism to detect python that it has inherited from openCV, this was forked long time ago and never updated to latest from openCV, ideally it should be fixed to entertain PYTHON_EXECUTABLE variable passed from cmake but it does not and causes build errors, proper fix is left for upm community, here we ensure that we can still compile after OE-Core change cmake: fix Python executable with cmake Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Martin Kelly <mkelly@xevo.com> Cc: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-04-05upm: Drop gcc-only warningsKhem Raj
This helps in compiling upm with clang, in followup patch we wll disabled Werror too Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-04-01wxwidgets: initial add 3.1.3Andreas Müller
* need it for 0.a.d and audacity * did extensive testing with PACKAGECONFIG combinations (exception: mspack - libmspack is in meta-security) Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-30figlet: new packageBartosz Golaszewski
This adds a recipe for figlet - a utility for creating large characters from regular console characters. It's useful to create custom banners at run-time. Include native and nativesdk support in case we want to create banners at build-time. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-29cfengine: Add missing dep on bison-nativeKhem Raj
Fixes ../ylwrap: line 176: yacc: command not found make[2]: *** [Makefile:1016: cf3parse.c] Error 127 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-22librelp: upgrade 1.4.0 -> 1.5.0Pierre-Jean Texier
This is a bugfix release: - bugfix: too late termination of relp Engine on shutdown When librelp is instructed to shutdown, it processes messages still present inside its receive buffers. It only terminates when it needs to wait for new data to arrive. Depending on RELP and TCP window size and message length, this may cause many messages to be processed while in shutdown. Even with default settings, up to 128 messages may be taken off the wire and be processed. This is a problem regarding the shutdown timing of a librelp user (e.g. rsyslog). It may take unexpectedly long to shutdown the RELP component and as such timeout may occur in the caller code. This is especially the case if the caller does lengthy processing when a RELP message is received. Note: It is perfectly fine for a caller to do this. The problem is that librelp continues to provide new data for a relatively long and unexpected period. This fix ensure that the relp engine shuts down much quicker when shutdown is requested. It now also checks the shutdown request while processing already received buffer data. This problem was detected when working on see also https://github.com/rsyslog/rsyslog/issues/3941 closes https://github.com/rsyslog/librelp/issues/175 - build system fix: invalid default in configure help text closes https://github.com/rsyslog/librelp/issues/169 - error message on invalid TLS library request added This way an invalid TLS library (name) can be detected and the error presented to the user. So far, invalid library names were hard to find. Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-18indent: delete meaningless line referring to "/usr/doc"Robert P. J. Day
Remove what appears to be historical line referencing HTML docs under /usr/doc -- building indent generates no such file. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-17redis: upgrade 5.0.7 -> 5.0.8Zang Ruochen
-Refresh the following patch: 0001-src-Do-not-reset-FINAL_LIBS.patch -0005-Mark-extern-definition-of-SDS_NOINIT-in-sds.h.patch Removed since this is included in 5.0.8 Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-15ostree: upgrade 2020.2 -> 2020.3Alex Kiernan
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-15ddrescue: upgrade 1.24 -> 1.25Pierre-Jean Texier
See changelog https://lists.gnu.org/archive/html/info-gnu/2020-03/msg00002.html Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-13sysdig: Use luajit and build fixes on aarch64Khem Raj
latest luajit now supports aarch64 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-11conf/layer.conf: add BBFILES_DYNAMIC and dynamic layersChangqing Li
some recipes under meta-oe have dependency on meta-python, and test_world of yocto-check-layer will failed with error like: ERROR: test_world (common.CommonCheckLayer) ERROR: Nothing PROVIDES 'python3-pytoml-native' (but /meta-openembedded/meta-oe/recipes-extended/mozjs/mozjs_60.9.0.bb DEPENDS on or otherwise requires it). Close matches: python3-numpy-native python3-pycairo-native python3-rpm-native ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'mozjs', 'python3-pytoml-native'] fix by make these recipes only active when identified layers are present Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08mraa: Fix build on x86 32bitKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-08libqb: Build native version as wellKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-06mraa_git.bb: update to v2.1.0Propanu
Update SRCREV to latest v2.1.0 and SRC_URI to reflect new Eclipse Foundation project location. Signed-off-by: Mihai Tudor Panu <mihai.tudor.panu@intel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-05icewm: fix upstream version checkPierre-Jean Texier
Fixes: INFO: Skip package icewm (status = UNKNOWN_BROKEN, current version = 1.5.5, next version = N/A) After this commit: INFO: icewm, 1.5.5, 1.6.4, None, N/A Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-05libstatgrab: fix upstream version checkPierre-Jean Texier
Fixes: INFO: Skip package libstatgrab (status = UNKNOWN_BROKEN, current version = 0.92, next version = N/A) After this commit: INFO: Skip package libstatgrab (status = MATCH, current version = 0.92, next version = 0.92) Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
2020-03-03brotli: allow building a -native versionAndré Draszik
nodejs (-native) can be built against a system-installed version of the brotli libraries. Allow doing that by provide a -native version of brotli. Signed-off-by: André Draszik <andre.draszik@jci.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-02libpwquality: upgrade 1.4.0 -> 1.4.2Wang Mingyu
refresh add-missing-python-include-dir-for-cross.patch Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-03-02collectd: upgrade 5.8.1 -> 5.10.0Wang Mingyu
0001-conditionally-check-libvirt.patch Removed because it is not applicable to 5.10.0. Refresh the following patches: 0001-Remove-including-sys-sysctl.h-on-glibc-based-systems.patch 0001-configure-Check-for-Wno-error-format-truncation-comp.patch 0001-fix-to-build-with-glibc-2.25.patch Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-29sysdig: Upgrade to 0.26.5Khem Raj
* License changed to Apache-2.0 upstream as well [1] * Forward port patches to apply on 0.26 * Just build libb64 from internal modules everything else should be provided by OE recipes * Disable luajit mips64 since luajit on these arches is not available, fall back to liblua * Disable build on musl and mips arch, it needs fixing in sysdig Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-27libidn: Remove obsolete patches for issues already fixed upstreamAdrian Bunk
Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-27boinc: update recipe to version 7.16.5Gianfranco Costamagna
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-27can-utils: update to v2020.02.04Denys Dmytriyenko
https://github.com/linux-can/can-utils/releases/tag/v2020.02.04 This version is required to build against kernel > 5.2 While at it, drop redundant DESCRIPTION and branch=master Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-27upm: Update SRC_URIPropanu
Updating SRC_URI to reflect project move to Eclipse Foundation. Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-26cfengine-masterfiles: Make the expression dash friendlyKhem Raj
dash does not understand {} expressions like this, therefore simplify Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-23libidn: Moved from OE-coreAdrian Bunk
Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-21ostree: upgrade 2019.6 -> 2020.2Alex Kiernan
Also expose glib and gpgme in PACKAGECONFIG (which were always on). Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-21snappy: upgrade 1.1.7 -> 1.1.8Zang Ruochen
Due to version update, SRC-UR has been modified SRC_URI. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-20libzip: upgrade 1.6.0 -> 1.6.1Pierre-Jean Texier
See https://github.com/nih-at/libzip/releases/tag/rel-1-6-1 Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-18cfengine: Upgrade to 3.15Khem Raj
License-Update: Change in Company name Cfengine AS a Norwegian company -> Northern.tech Python3 fixes to needed scripts Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-17rsyslog: Use python3 in ptestsKhem Raj
Adjusts rdeps accordingly Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-16libsigrok: inherit mimeKhem Raj
Fixes libsigrok-0.5.2: package contains mime types but does not inhert mime: libsigrok path '/work/aarch64-yoe-linux/libsigrok/0.5.2-r0/packages-split/libsigrok/usr/share/mime/packages/vnd.sigrok.session.xml' [mime] Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-16sigrok-cli: Inherit mime-xdgKhem Raj
Fixes WARNING: sigrok-cli-0.7.1-r0 do_package_qa: QA Issue: package contains desktop file with key 'MimeType' but does not inhert mime-xdg Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-11mozjs: Fix python3 build with goldAndreas Müller
Fixes [1] [1] http://errors.yoctoproject.org/Errors/Details/390559/ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-02recipes: Inherit perlnative for pod2manKhem Raj
replace host version of pod2man perl-native provides, helps in improving reproducability Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-02-02mozjs: port build to python3Andreas Müller
While at it: * cleanup our patches * remove useless sed in do_configure Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-01-28indent: Do not build docsKhem Raj
It fails to build currently, with texinfo-dummy | File "/mnt/a/tmp-yoe/work/riscv64-yoe-linux-musl/indent/2.2.12-r0/recipe-sysroot-native/usr/bin/makeinfo", line 100, in <module> | stub_msg | AssertionError: Don't know how to get default output file name from input file ! | This stand-in version of makeinfo is not yet fully capable of emulating | the real version from the GNU texinfo suite. If you see this message, file a | bug report with details on the recipe that failed. | | make[2]: *** [Makefile:814: indent.html] Error 1 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-01-28recipes: Inherit missing texinfo for makeinfo programKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>