summaryrefslogtreecommitdiffstats
path: root/meta-oe
Commit message (Collapse)AuthorAgeFilesLines
* toybox: fix to use "usrmerge" distro feature properlyEduardas Meile2018-12-041-1/+1
| | | | | Signed-off-by: Eduardas Meile <eduardas.m@fods.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* a2jmidid: Define own do_configureKhem Raj2018-12-041-0/+5
| | | | | | | | | waf script here does not support -o switch so define own which can be run in B Secondly, ensure to use python2 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* freerdp: Update to 2.0.0-rc4Khem Raj2018-12-043-37/+7
| | | | | | Drop backports which are now upstream Signed-off-by: Khem Raj <raj.khem@gmail.com>
* nodejs: 8.12.0 -> 8.14.0Andrej Valek2018-12-041-2/+2
| | | | | | | Update nodejs to latest 8.x stable release 8.14.0. Signed-off-by: Andrej Valek <andrej.valek@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: rename the group that contains ptest packagesAlexander Kanavin2018-12-031-3/+3
| | | | | | | | | | Otherwise packagegroup.bbclass includes the -ptest package for the second time which leads to this error: ERROR: packagegroup-meta-oe-1.0-r0 do_package: QA Issue: packagegroup-meta-oe-ptest is listed in PACKAGES multiple times, this leads to packaging errors. [packages-list] ERROR: packagegroup-meta-oe-1.0-r0 do_package: Fatal QA errors found, failing task. Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* packagegroup-meta-oe: drop ptest packages that do not existAlexander Kanavin2018-12-031-4/+0
| | | | | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libvncserver: Update to latest versionEddie James2018-12-032-25/+23
| | | | | | | | | | | | | The latest release of libvncserver is almost two years old. A number of security fixes and enhancements have recently been committed. Since the repo is stable, point the recipe to the latest commit. libvncserver switched from autotools to cmake, so update the recipe as necessary, and add PACKAGECONFIG options to allow a more minimal build and install. Signed-off-by: Eddie James <eajames@linux.ibm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Tune remove operationNiko Mauno2018-12-021-1/+1
| | | | | | | | | Drop '-f, --force' operator from rm command as that will hide the fact if the removed artifacts cease to exist in later version of this recipe. Also drop a superfluous slash from artifact path. Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Fix style issueNiko Mauno2018-12-021-1/+1
| | | | | | | Add missing space characters around the operator in SRCNAME declaration Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Remove duplication in inheritNiko Mauno2018-12-021-1/+1
| | | | | | | | | Reflect following change in Pythonv3 variant of this recipe http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=a195e0471d0df0ac26e00d6fcb3a2786e080a643 and drop redundant inherit for autotools and pkgconfig also here Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Only check for even upstream versionsNiko Mauno2018-12-021-1/+1
| | | | | | | | | Reflect following change in Pythonv3 variant of this recipe http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=fed093329b504cd46aa758983db6073b70c2af29 and add inherit for upstream-version-is-even.bbclass Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Drop redundant dependenciesNiko Mauno2018-12-022-30/+1
| | | | | | | | | | | | | Simplify recipe by reflecting following changes introduced to Pythonv3 variant of this recipe in commits http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=b663374cf41465c6dc94001d6fa73a5523542fb6 http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=521ea98b2c622f5ae7e6d18849a0379fa7ed4e90 in which the gnome-common dependency was left out due to pygobject moving to autoconf-archive, and remaining configure.ac patch file was also deemed unnecessary. Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Drop redundant PYTHON* refsNiko Mauno2018-12-021-4/+1
| | | | | | | | Remove redundant PYTHON* declarations/references as this recipe builds now correctly without them. Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pygobject: Fix invalid install pathNiko Mauno2018-12-021-1/+1
| | | | | | | | | | | | | | | | | | | http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=1dccb37d89f54d7284b6a81957ab228906f24e1c has replaced PYTHON_PN references with hardcoded 'python' and 'python3' strings in pythonnative.bbclass and python3native.bbclass, respectively. Associated commit message states: "If both are inherited then both native Pythons are available, but the last to be inherited will be the one to set PYTHON." Since after the above-mentioned commit this Pythonv2 recipe installs wrongly into /usr/lib/python3.5/ directory, move inherit of distutils-base.bbclass (which inherits pythonnative.bbclass) to right hand side of gobject-introspection.bbclass (which inherits python3native.bbclass) which changes the install path back to /usr/lib/python2.7/ mitigating the issue. Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libmtp: upgrade 1.1.5 -> 1.1.16 and reworkAndreas Müller2018-12-025-1093/+93
| | | | | | | | | | | | | | * fixes gvfs with libmtp in PACKAGECONFIG: | Cross dependency libmtp found: NO found '1.1.5' but need: '>= 1.1.12' | | meson.build:436:2: ERROR: Invalid version of dependency, need 'libmtp' ['>= 1.1.12'] found '1.1.5'. * license checksum changed by change of copyright year * Do not pin udev rules to old version -> let native binary create them * Install udev rules to /lib/udev (as before the update) otherwise they are ignored Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mraa: To file do_package error in multilib.leimaohui2018-12-021-1/+3
| | | | | | | | | | do_package: QA Issue: mraa: Files/directories were installed but not shipped in any package: /usr/lib/python3.5/site-packages/mraa.py /usr/lib/python3.5/site-packages/_mraa.so Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* makedumpfile: Add aarch64 into COMPATIBLE_HOST.leimaohui2018-12-021-2/+2
| | | | | Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libusbgx: Add recipeOtavio Salvador2018-11-306-0/+217
| | | | | | | | | The libusbgx allow easier use and setup of USB gadgets. To easy integration on different systems a libusbgx-config package is provided so it can be used to start and enable respective USB gadget schema. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* poppler: Upgrade to 0.71.0Khem Raj2018-11-291-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libtinyxml2: update to 7.0.1Brad Bishop2018-11-291-1/+1
| | | | | Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* thin-provisioning tools: use sh on path for txt2manSlater, Joseph2018-11-292-0/+22
| | | | | | | | txt2man will use /bin/sh and may try to invoke ksh if it does not like /bin/sh. Use "our" version of sh. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* read-edid: Upgrade to 3.0.2Stefan Wiehler2018-11-295-51/+54
| | | | | Signed-off-by: Stefan Wiehler <stefan.wiehler@missinglinkelectronics.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libcereal: Allow empty packageBrad Bishop2018-11-291-0/+2
| | | | | | | | | libcereal is header-only so create the empty base package so that libcereal can be sanely included in an SDK via IMAGE_INSTALL, RDEPENDS, and the like. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* postgresql: upgrade to 11.1Changqing Li2018-11-295-7636/+27
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* phoronix-test-suite: upgrade to 8.2.0Changqing Li2018-11-291-2/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* mozjs: Avoid use of X11 from host when X11 is disabledOtavio Salvador2018-11-281-1/+1
| | | | | | | | | The mozjs build system makes use of host headers and libraries if not passed an invalid path for `--x-includes` and `--x-libraries`. This fixes host contamination while building in a development host. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* pangomm: upgrade to 2.42.0Changqing Li2018-11-281-2/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* multipath-tools: upgrade to 0.7.9Changqing Li2018-11-2831-3904/+261
| | | | | | | | delete patch 0001-0020 since already merged to upstream update patch 0021-0031 to version 0.7.9 Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* satyr: upgrade to 0.27Changqing Li2018-11-281-1/+1
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sg3-utils: upgrade to 1.44Changqing Li2018-11-282-27/+2
| | | | | Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* ndctl: v62 -> v63Hongxu Jia2018-11-271-5/+4
| | | | | | | | | | | - Upstream introduce --with-systemd to replace --with-systemd-unit-dir [86ab28b ndctl, build: Introduce --with-{bash,systemd}] It fixed previously "No package 'systemd' found" failure - Remove COMPATIBLE_HOST to build on more machines. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libblockdev: 2.18 -> 2.20Hongxu Jia2018-11-271-3/+3
| | | | | | | | Add nvdimm support since upstream python3-blivet [20ae5ea Re-add nvdimm plugin Recommends on 3.1+.] Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvm2/libdevmapper: 2.02.180 -> 2.03.01Hongxu Jia2018-11-276-140/+75
| | | | | | | | | | | | | | | | | | - Upddate upstream SRC_URI, use github to replace tarball - Rebase 0001-Avoid-bashisms-in-init-scripts.patch, 0005-do-not-build-manual.patch, 0001-explicitly-do-not-install-libdm.patch - Remove `--enable-applib' since upstream [0d22b58 liblvm: remove lvmapi] - Remove `lvmetad' since upstream [117160b Remove lvmetad] - Remove `oe_runmake ... -C tools install_device-mapper' since upstream [0524829 dmsetup: move to libdm/dm-tools/dmsetup] Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* efivar: correct version number 0.36 -> 36Hongxu Jia2018-11-271-0/+0
| | | | | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libbytesize: 1.3 -> 1.4Hongxu Jia2018-11-271-2/+1
| | | | | | | Remove redundant PV assignment Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* efibootmgr: 0.16 -> 17Hongxu Jia2018-11-271-1/+1
| | | | | | | - Correct version number format, remove `0.' Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* volume-key: 0.3.11 -> 0.3.12Hongxu Jia2018-11-271-2/+6
| | | | | | | Add PACKAGECONFIG to build with python3 rather than python2. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libreport: 2.9.5 -> 2.9.6Hongxu Jia2018-11-271-1/+1
| | | | | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libgee: Upgrade to 0.20.1Khem Raj2018-11-271-2/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xscreensaver: Define consistent app-defaults dirKhem Raj2018-11-271-0/+4
| | | | | | | | | | | | | This is otherwise detected based on host machines X11 install directory and on builders where x11 may not be insalled this will default to another directory /usr/lib/X11/.. instead of /usr/share/X11... This patch makes it consistent and avoids poking at host machines install make clean does not work so enable CLEANBROKEN Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sigrok-cli: new packageBartosz Golaszewski2018-11-271-0/+18
| | | | | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsigrokdecode: new packageBartosz Golaszewski2018-11-271-0/+14
| | | | | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libsigrok: new packageBartosz Golaszewski2018-11-271-0/+23
| | | | | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* doxygen: new packageBartosz Golaszewski2018-11-272-0/+53
| | | | | | | Doxygen binary is necessary to generate C++ bindings for libsigrok. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libserialport: new packageBartosz Golaszewski2018-11-271-0/+12
| | | | | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libzip: new packageBartosz Golaszewski2018-11-271-0/+18
| | | | | Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cpprest: upgrade to version 2.10.8: drop my two patches, now upstreamGianfranco Costamagna2018-11-273-68/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* Add czmq (C bindings for ZeroMQ)Adrian Bunk2018-11-272-0/+61
| | | | | Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* postgresql: Allow successful run of postgresql-setupOtavio Salvador2018-11-262-4/+4
| | | | | | | | | | | | The postgresql-setup utility log-in on postgres user to create the database, however, the shell was set to bash and it wasn't being installed as runtime dependency. This rework this expectation to use busybox ash as shell and avoid the new dependency Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* sedutil: fix compile errors on big endian architecturesPrimoz Fiser2018-11-262-1/+44
| | | | | | | | Patch fixes compile errors by defining empty macros as hinted by TODO mark in the sources. Signed-off-by: Primoz Fiser <primoz.fiser@norik.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>