aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
AgeCommit message (Collapse)Author
2019-05-03libcdio: update to version 2.1.0Hains van den Bosch
Use tar.bz2 instead of tar.gz since tar.gz doesn't exist for 2.1.0. Signed-off-by: Hains van den Bosch <hainsvdbosch@ziggo.nl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-02libmodbus: add documentation PACKAGECONFIGMing Liu
asciidoc, xmlto programs are being checked to decide if documentation should be generated or not depending on if they are present, this will definitely lead to a non-deterministic build. Fix it by adding documentation to PACKAGECONFIG. Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-02cpupower: Inherit bash completion classKhem Raj
Fixes ERROR: QA Issue: cpupower: Files/directories were installed but not shipped in any package: /usr/share/bash-completion /usr/share/bash-completion/completions /usr/share/bash-completion/completions/cpupower Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-02zbar: fix SRC_URI for multilibMartin Jansa
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-02esound: fix SRC_URI for multilibMartin Jansa
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-05-02postgresql: fix compile errorChangqing Li
configuration: MULTILIB_GLOBAL_VARIANTS_append = " libn32" MULTILIBS ?= "multilib:lib32 multilib:libn32" DEFAULTTUNE_virtclass-multilib-lib32 ?= "mips" DEFAULTTUNE_virtclass-multilib-libn32 ?= "mips64-n32" require conf/multilib.conf SELECTED_OPTIMIZATION = "${DEBUG_OPTIMIZATION}" DEBUG_BUILD = "1" EXTRA_IMAGE_FEATURES += "dbg-pkgs" with above configuration and option -Og, postgresql compile failed with: | make[4]: Nothing to be done for 'all'. | make[4]: Leaving directory '/tmp/work/mips-pokymllib32-linux/lib32-postgresql/11.2-r0/build/src/fe_utils' | {standard input}: Assembler messages: | {standard input}:58887: Error: branch out of range | <builtin>: recipe for target 'tab-complete.o' failed | make[3]: *** [tab-complete.o] Error 1 | make[3]: Leaving directory '/tmp/work/mips-pokymllib32-linux/lib32-postgresql/11.2-r0/build/src/bin/psql' | Makefile:41: recipe for target 'all-psql-recurse' failed | make[2]: *** [all-psql-recurse] Error 2 replace -Og with -O to fix this error Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-30php: upgrade 7.3.2 -> 7.3.4Changqing Li
Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29libdbd-mysql-perl: Upgrade to 4.050Mingli Yu
Update homepage and make SRC_URI to fetch from git. Remove one backported patch. Add libdev-checklib-perl-native to DEPENDS as the new libdbd-mysql-perl depends on another module (Devel::CheckLib) at configure time. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29cpprest: update to 2.10.13, drop 32bit build fix upstreamGianfranco Costamagna
Add back test disables from Debian, they are still needed with the network access disabled Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29v4l-utils: upgrade 1.16.0 -> 1.16.5Denys Dmytriyenko
Includes about 6 months of bug fixes. Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29libdev-checklib-perl: add new recipeMingli Yu
It provides the perl module (Devel::CheckLib) which may needed by other package which uses it to check libs. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29rrdtool: Upgrade to 1.7.1Mingli Yu
Backport 3 patches to fix below error: ERROR: rrdtool-1.7.1-r0 do_package: SYSTEMD_SERVICE_rrdcached value rrdcached.socket does not exist Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29libopus: use armv7a, aarch64 overrides when adding ne10 dependencyMartin Jansa
* to match what ne10 recipe does now * fixes: ERROR: Nothing PROVIDES 'ne10' (but meta-oe/recipes-multimedia/libopus/libopus_1.1.3.bb DEPENDS on or otherwise requires it) ne10 was skipped: incompatible with machine qemuarm (not in COMPATIBLE_MACHINE) ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'libopus', 'ne10'] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29ne10: set NE10_TARGET_ARCH with an override instead of anonymous pythonMartin Jansa
* set COMPATIBLE_MACHINE to (^$) to prevent building it for any other architectures than armv7a and aarch64 * with new arm tune files it's easy to have armv7a in OVERRIDES even when there isn't armv7a in TUNE_FEATURES: meta/conf/machine/include/tune-cortexa9.inc:7 "${@bb.utils.contains('TUNE_FEATURES', 'cortexa9', 'armv7a:', '',d)}" in cases like this COMPATIBLE_MACHINE was satisfied thanks to the armv7a OVERRIDE, but then the anonymous python was failing with: ne10 was skipped: Incompatible with archs other than armv7 and aarch64 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29ledmon: Mark as incompatible on musl instead of adding bogus patchAdrian Bunk
atexit is not a drop-in replacement for on_exit, mark as incompatible with musl instead of adding a broken patch. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29Revert "ell: remove recipe"Martin Jansa
This reverts commit f4a59c5dd69a6d24cd500a6eba0b72e0d8b4f58c. It was merged too early, ell wasn't merged to oe-core yet. meta-oe/recipes-connectivity/iwd/iwd_0.14.bb depends on it and now there is no provider in meta-oe nor oe-core. Should be merged again after meta-oe warrior is branched and ell in oe-core for the next release. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29hwdata: Upgrade to 0.322Mingli Yu
Correct the PV to reflect the real release version. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29hostapd: Upgrade to 2.8Mingli Yu
License-Update: Copyright year updated to 2019. Remove 8 backported patches. Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Acked-by: Philip Balister <philip@balister.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29nano: update to 4.1Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-29indent: Upgrade to 2.2.12Mingli Yu
Add two patches to fix the build error. Add -Wno-error=unused-value for native build to silence below error: | In file included from ../../indent-2.2.12/src/indent.h:60:0, from ../../indent-2.2.12/src/indent.c:77: | ../../indent-2.2.12/src/indent.c: In function 'main': | ../../indent-2.2.12/src/libgettext.h:88:5: error: statement with no effect [-Werror=unused-value] ((void) (Domainname), (const char *) (Dirname)) ^ | ../../indent-2.2.12/src/indent.c:1064:5: note: in expansion of macro 'bindtextdomain' bindtextdomain(PACKAGE, LOCALEDIR); Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-27openbox: Add python-shell as a runtime dependencyLeon Anavi
/usr/libexec/openbox-xdg-autostart imports Python module glob for Unix style pathname pattern expansion. File glob.py is provided by python-shell therefore it has been added to the RDEPENDS of openbox. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-27fltk: upgrade 1.3.4-2 -> 1.3.5Andreas Müller
* upstream tries pkconfig first to check for freetype -> patch can be removed * looks like a bugfix release [1] [1] https://raw.githubusercontent.com/fltk/fltk/25b947aa7d28d60a8ab41c21e4fa07bdcb614c7f/CHANGES Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-16sip: Update to 4.19.16.Philip Balister
* Note SRC_URI changed from SourceForge to Riverbank Signed-off-by: Philip Balister <philip@opensdr.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-16s-suite: push SRCREV to version 3.2Paolo Valente
Signed-off-by: Paolo Valente <paolo.valente@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-16thrift: update to 0.12.0Pascal Bach
Remove the python library feature as it was never installed so nobody should miss it. The CMake patches are no longer needed as most of the underlying issue is fixed in OE core. The other patches are backports that are already upstream in 0.11. OpenSSL 1.1 is supported by this version of thrift. Also add a feature to use boost smart pointers instead of C++ std ones. This is enabled by default to keep backwards compatibility with the 0.9.3 recipe. However projects depending on thrift might still need to set FORCE_BOOST_SMART_PTR within their build CMake project to make sure the correct headers are selected. Further the different libraries are now split into separate packages. Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-16paho-mqtt-c: 1.2.1 -> 1.3.0Pascal Bach
Switch to cmake instead of manually installing everything. Paho-mqtt still adds some unnecessary files into /usr we have to delete them. Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-14gpm: Recipe cleanupRobert Joslyn
* Add SUMMARY and HOMEPAGE * Remove unnecessary FILES line, as the specified directory does not exist * Remove unnecessary conditional placement of init script and systemd unit file. The update-rc.d and systemd classes handle packaging of these files. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-14gpm: Remove duplicate definition of _GNU_SOURCERobert Joslyn
The Makefile already sets -D_GNU_SOURCE in CPPFLAGS, no need to patch it in again. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-14gpm: Generate documentationRobert Joslyn
Remove patch disabling documentation, since it builds and is packaged properly. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-14gpm: Add PID file to systemd unit fileRobert Joslyn
This helps systemd identify the main process of the service. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-14gpm: Fix gpm path in unit fileRobert Joslyn
The binary is installed to ${sbindir}, but the unit file used ${bindir}. Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-14redis: Upgrade to 4.0.14Khem Raj
Add needed depends Do not build jemalloc Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-12libforms: add x11 to required DISTRO_FEATURES because of libx11Martin Jansa
libx11 was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES) ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'libforms', 'libx11'] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-12ftgl: add x11 to required DISTRO_FEATURES like freeglutMartin Jansa
freeglut was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES) ERROR: Required build target 'meta-world-pkgdata' has no buildable providers. Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'ftgl', 'freeglut'] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-11multipath-tools: fix up patch to avoid segfaultQi.Chen@windriver.com
When upgrading multipath, the following patch was accidently wrongly rebased, leaving set_value not declared in parser.h and resulting in segfault when running 'multipath' and 'multipathd'. 0027-RH-warn-on-invalid-regex-instead-of-failing.patch So fix things up and add the declaration back. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-11lua: upgrade from v5.3.4 to v5.3.5Hongzhi.Song
The v5.3.5 release covers CVE-2019-6706 which is vulnerable. Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09ledmon: control hard disk led for RAID arraysLiwei Song
Enable LED support for Intel Virtual RAID On CPU. Fix build with musl Signed-off-by: Liwei Song <liwei.song@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09xbitmaps: upgrade 1.1.1 -> 1.1.2Zang Ruochen
-Upgrade from xbitmaps_1.1.1.bb to xbitmaps_1.1.2.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09xstdcmap: upgrade 1.0.3 -> 1.0.4Zang Ruochen
-Upgrade from xstdcmap_1.0.3.bb to xstdcmap_1.0.4.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09xsetroot: upgrade 1.1.1 -> 1.1.2Zang Ruochen
-Upgrade from xsetroot_1.1.1.bb to xsetroot_1.1.2.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09xrefresh: upgrade 1.0.5 -> 1.0.6Zang Ruochen
-Upgrade from xrefresh_1.0.5.bb to xrefresh_1.0.6.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09xrdb: upgrade 1.1.1 -> 1.2.0Zang Ruochen
-Upgrade from xrdb_1.1.1.bb to xrdb_1.2.0.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09xlsatoms: upgrade 1.1.2 -> 1.1.3Zang Ruochen
-Upgrade from xlsatoms_1.1.2.bb to xlsatoms_1.1.3.bb. Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09udisks2: upgrade 2.8.1 -> 2.8.2Andreas Müller
>From release shortlog [1]: | The 2.8.2 release brings mostly bugfixes without any changes to the public API. Notable changes include: | | * migration from intltool to gettext, udisks no longer depends on gnome-common | * added 'windows_names' as a default mount option for ntfs-3g | * fixed an issue potentially leading to open filedescriptors exhaustion OE-Notes: * Follow changes mentioned in announcement * Rename recipe and move PV into recipe [1] https://github.com/storaged-project/udisks/releases Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09analyze-suspend: update to 5.3Oleksandr Kravchuk
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09ell: remove recipeOleksandr Kravchuk
This recipe will be moved to poky instead as newer versions of some of its components depend on it. Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-09gd: fix compile error caused by -Werror=maybe-uninitializedChangqing Li
When enable DEBUG_BUILD, gd compile failed with error: | ../../git/src/gd_tiff.c:961:64: error: 'image_type' may be used uninitialized in this function [-Werror=maybe-uninitialized] | (image_type == GD_PALETTE || image_type == GD_INDEXED || image_type == GD_GRAY)) { | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ actually, this warning is misinformation, we can see the logic from: https://github.com/libgd/libgd/blob/master/src/gd_tiff.c image_type will be assigned no matter force_rgba is TRUE/FALSE. Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-08lcdproc: Fix parallel buildKhem Raj
This happens with larger parallelism e.g. -j 44 also reported here https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214766 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-07redis: Fix ocasional parallel build failureKhem Raj
Sometimes with high parallel build we see compile errors e.g. clang-8: error: linker command failed with exit code 1 (use -v to see invocation) make[3]: *** [Makefile:52: lua] Error 1 Therefore try to build dependencies before main build Signed-off-by: Khem Raj <raj.khem@gmail.com>
2019-04-06alsa-oss: Upgrade to 1.1.8Khem Raj
OE-core has upgraded alsa-lib to 1.1.8 as well so we need to be in sysnc Signed-off-by: Khem Raj <raj.khem@gmail.com>