aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
AgeCommit message (Collapse)Author
2016-05-10libnice, farsight2: unblacklist as libnice's nice.pc issue fixed.Noor Ahsan
* Update do_compile_append where it was updating *.pc from ${S} and removing staging dir folder. Now we have seperate build folder where packages get build. We have to search pc in ${B} not in ${S}. After updating the tmp dir path is removed from nice.pc file. * Remove PNBLACKLIST for libnice and farsight2 recipes. Signed-off-by: Noor Ahsan <noor_ahsan@mentor.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06poppler: add --std=c++11 to fix build with Qt 5.7Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06pidgin: use pkg-config instead of hardcoded paths or python-configMartin Jansa
* also fix following QA warning: WARNING: pidgin-2.10.12-r0 do_package: QA Issue: pidgin: Files/directories were installed but not shipped in any package: /usr/share/appdata /usr/share/appdata/pidgin.appdata.xml Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. pidgin: 2 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06pidgin: add PACKAGECONFIGsMartin Jansa
* disable gstreamer and vv, because gstreamer 0.10 is in meta-multimedia now * disable farsight2/farstream, because farsight2 is blacklisted * don't enable X11 support without x11 in DISTRO_FEATURES * allow to disable all UI, useful for DISTROs who want just the purple libraries like LuneOS Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06pidgin: Update to 2.10.12Herrie
Which is compatible with GnuTLS that's included in Krogoth. Signed-off-by: Herman van Hazendonk <github.com@herrie.org>
2016-05-06opencv: Fix metapkg dependencies for opencv-java and opencv-localesOtavio Salvador
The opencv-java is not always generated so we ought to include it, only if it is available. The opencv-locales is not available and ought to be skipped. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06vim: Upgrade to v7.4.1689Paul Barker
v7.4.1689 is currently used in Debian Testing and Arch Linux. The tags file used as an index to vim's documentation is not correctly created when cross compiling in v7.4.1689. Patch 7.4.1733 is backported to fix this issue. Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06syslog-ng.inc: fix prerm script & class includesIoan-Adrian Ratiu
The order of class includes is very important because it's the order in which classes are evaluated. Both update-rc.d and update-alternatives write to the prerm script, so the class order decides the script code ordering. As they are now, prerm is: #!/bin/sh update-alternatives --remove syslog-init /etc/init.d/syslog.syslog-ng if [ -z "$D" ]; then /etc/init.d/syslog stop fi This causes errors because when syslog-ng is the only alternative it is removed and then the script tries to stop it (No such file or directory) but even if there are other alternatives, the script tries to stop something other than syslog-ng which was removed. By reversing the include order, prerm gets generated correctly and it tries to stop syslog-ng before removing it: if [ -z "$D" ]; then /etc/init.d/syslog stop fi update-alternatives --remove syslog-init /etc/init.d/syslog.syslog-ng Signed-off-by: Ioan-Adrian Ratiu <adrian.ratiu@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-05-06libmicrohttpd: update to 0.9.49Bruno Bottazzini
This patch removes the flag --disable-spdy since libmicrospdy was dropped from libmicrohttpd as it is possible to see in the following commit. Revision: 36708 ID:36708 140774ce-b5e7-0310-ab8b-a85725594a96 URL: https://gnunet.org/svn/libmicrohttpd Signed-off-by: Bruno Bottazzini <bruno.bottazzini@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-28mariadb: Fix rootfs creation errorsLi xin
error: file /usr/share/doc/README from install of mariadb-leftovers-5.5.46-* conflicts with file from package dmidecode-doc-2.12-* Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-28hwdata: add new recipeDai Caiyun
Signed-off-by: Dai Caiyun <daicy.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-28rsnapshot: use ${bindir} as rsync locationAndré Draszik
Signed-off-by: André Draszik <git@andred.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-28poppler: update to 0.4.1Andreas Müller
* remove leftover patches * run tested against evince and qpdfview Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-28meta-oe: use bb.utils.contains() instead of base_contains()Ross Burton
base_contains() is a compatibility wrapper and may warn in the future, so replace all instances with bb.utils.contains(). Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-21udisk2: fix build issue with missing dependsArmin Kuster
checking for sys/acl.h... no | configure: error: *** ACL headers not found. | NOTE: The following config.log files may provide further information. add acl to DEPENDS Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-21ne10: use bb.debug for debug messagesDenys Dmytriyenko
Moreover, the messages are misleading, saying "Building for arch blah", even when this recipe is not being built. It merely checks if the recipe is cmaptible with the currently used architecture. Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-21libtinyxml2: update 2.2.0 -> 3.0.0Andre McCurdy
Also misc recipe cleanup, take license text from tinyxml2.cpp source file instead of using the entire readme.md, and build using cmake. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Remove blacklistRicardo Ribalda Delgado
Opencv 3.1 builds fine with ffmpeg. ricardo@neopili:~/curro/qt5022/oe/openembedded-core/build$ bitbake opencv Loading cache: 100% |############################################################################| ETA: 00:00:00 Loaded 2018 entries from dependency cache. NOTE: Resolving any missing task queue dependencies Build Configuration: BB_VERSION = "1.29.0" BUILD_SYS = "x86_64-linux" NATIVELSBSTRING = "Debian-testing" TARGET_SYS = "i586-oe-linux" MACHINE = "qemux86" DISTRO = "nodistro" DISTRO_VERSION = "nodistro.0" TUNE_FEATURES = "m32 i586" TARGET_FPU = "" meta = "master:300f858ba07c938427ccd05a3d7220027a03d461" meta-oe = "master:29462f7161b346dbc2ea00830da869a0a1c35fb9" NOTE: Preparing RunQueue NOTE: Executing SetScene Tasks NOTE: Executing RunQueue Tasks NOTE: Tasks Summary: Attempted 1242 tasks of which 1228 didn't need to be rerun and all succeeded. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Fix build on x86 platformRicardo Ribalda Delgado
OpenCV wrongly assumes that the X86 variable would be set on Intel 32 bit architectures. This patch adds the missing definition on those cases. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Use pre-downloaded ippRicardo Ribalda Delgado
We should not rely on cmake downloading ipp at configure time. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Add missing dependenciesRicardo Ribalda Delgado
opencv-3.1+gitAUTOINC+92387b1ef8: libopencv-videoio rdepends on libgphotoport, but it isn't a build dependency, missing libgphoto2 in DEPENDS or PACKAGECONFIG? [build-deps] opencv-3.1+gitAUTOINC+92387b1ef8: libopencv-videoio rdepends on libgphoto2, but it isn't a build dependency, missing libgphoto2 in DEPENDS or PACKAGECONFIG? [build-deps] opencv-3.1+gitAUTOINC+92387b1ef8: libopencv-dnn rdepends on protobuf, but it isn't a build dependency, missing protobuf in DEPENDS or PACKAGECONFIG? [build-deps] Credit-to: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Fix pkg-config file.Ricardo Ribalda Delgado
Libdir was pointing to the wrong location also fix for QA Issue: opencv.pc failed sanity test (tmpdir) in path Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Update to version 3.1Ricardo Ribalda Delgado
The first major update in 3.0 release series Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12opencv: Fix use before set error on meta packageRicardo Ribalda Delgado
This bug was introducing a loop dependency of opencv->opencv that was confusing dpkg. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12Revert "libmicrohttp: update to version 0.9.48"Martin Jansa
http://lists.openembedded.org/pipermail/openembedded-devel/2016-March/106672.html This reverts commit 9b7f8e35e1f0708cae4c3d8e62689f6255d03a2d. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12rng-tools: DeleteKhem Raj
its moved to OE-Core Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12imagemagick: add PACKAGECONFIG for x11Catalin Enache
ImageMagick should X11 delegate libraries if they are available Signed-off-by: Catalin Enache <catalin.enache@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-04-12ipmiutil: fix typoQi.Chen@windriver.com
Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25lvm2: make it more explicit that readline support is disabled by defaultAndre McCurdy
Any PACKAGECONFIG default assigned with ??= is lost by subsequent assignments with +=, therefore lvm2 is currently building with the readline PACKAGECONFIG disabled. Make that explicitly clear in the recipe. Also minor formatting updates, to align with style guide. Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25libmicrohttp: update to version 0.9.48José Bollo
Signed-off-by: José Bollo <jose.bollo@iot.bzh> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25libftdi: Fix cpp-wrapper optionsMartin Jansa
* fixes following issue found with test-dependencies WARN: libftdi: libftdi rdepends on libgcc, but it isn't a build dependency? WARN: libftdi: libftdi rdepends on libstdc++, but it isn't a build dependency? * when boost is found it was still building libftdipp1.so.2.2.0 * as shown in log.do_package: DEBUG: calculating shlib requirements for libftdi DEBUG: libftdi: Dependency libftdi1.so.2 requires package libftdi (used by files: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/libftdi/1.2-r0/packages-split/libftdi/usr/lib/libftdipp1.so.2.2.0) DEBUG: libftdi: Dependency libusb-1.0.so.0 requires package libusb1 (used by files: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/libftdi/1.2-r0/packages-split/libftdi/usr/lib/libftdipp1.so.2.2.0) DEBUG: libftdi: Dependency libstdc++.so.6 requires package libstdc++ (used by files: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/libftdi/1.2-r0/packages-split/libftdi/usr/lib/libftdipp1.so.2.2.0) DEBUG: libftdi: Dependency libgcc_s.so.1 requires package libgcc (used by files: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/libftdi/1.2-r0/packages-split/libftdi/usr/lib/libftdipp1.so.2.2.0) DEBUG: libftdi: Dependency libusb-1.0.so.0 requires package libusb1 (used by files: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/libftdi/1.2-r0/packages-split/libftdi/usr/lib/libftdi1.so.2.2.0) DEBUG: libftdi: Dependency libc.so.6 requires package glibc (used by files: /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/libftdi/1.2-r0/packages-split/libftdi/usr/lib/libftdi1.so.2.2.0) DEBUG: Python function package_do_shlibs finished Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25openldap: control ipv6 support via DISTRO_FEATURESRichard Tollerton
Explicitly disable ipv6 support if the distro does not include it. Signed-off-by: Richard Tollerton <rich.tollerton@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25poco: update to 1.7.1Pascal Bach
Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25libsmi: set the SH to the target pathJackie Huang
Set the SH to the target path to avoid host contamination, which causes the following issue on some hosts: | WARNING: QA Issue: /usr/bin/smicache_libsmi contained in package libsmi requires /usr/bin/sh, but no providers found in its RDEPENDS [file-rdeps] | Computing transaction...error: Can't install libsmi-0.4.8-r0.0@corei7_64: no package provides /usr/bin/sh Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25edac-utils: update the versionRoy Li
The current edac-utils is v0.18, not v0.16 as the declaration in NEWS file: ------------------------------- | Version 0.18 (2011-11-09); |- Do not print "No errors to report" with edac-util --quiet |- Add DIMM labels for Intel S2600JF and Supermicro H8QG6 ------------------------------- Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-25postgresql: Security Advisory-postgresql-CVE-2016-0773Zhixiong Chi
add CVE-2016-0773 patch for avoiding attackers to cause a denial of service (infinite loop or buffer overflow and crash) via a large Unicode character range in a regular expression. Patch comes from: http://git.postgresql.org/gitweb/?p=postgresql.git;a=summary commit 3bb3f42f3749d40b8d4de65871e8d828b18d4a45 Signed-off-by: Zhixiong Chi <Zhixiong.Chi@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14synergy: add dependency on opensslMartin Jansa
* otherwise fails with: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/synergy/1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0/git/src/lib/plugin/ns/SecureSocket.cpp:26:25: fatal error: openssl/ssl.h: No such file or directory compilation terminated. make[2]: *** [src/lib/plugin/ns/CMakeFiles/ns.dir/SecureSocket.cpp.o] Error 1 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14synergy: add dependency on curlMartin Jansa
* otherwise fails with: | -- Looking for pthread_create in pthread | -- Looking for pthread_create in pthread - found | -- Could NOT find CURL (missing: CURL_LIBRARY CURL_INCLUDE_DIR) | CMake Error at CMakeLists.txt:165 (message): | Missing library: curl | | | -- Configuring incomplete, errors occurred! Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14synergy: add dependency on unzip-nativeMartin Jansa
* otherwise may fail with: ERROR: synergy-1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0 do_unpack_extra: Function failed: do_unpack_extra (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/synergy/1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0/temp/log.do_unpack_extra.11874) ERROR: Logfile of failure stored in: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/synergy/1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0/temp/log.do_unpack_extra.11874 Log data follows: | DEBUG: Executing shell function do_unpack_extra | /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/synergy/1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0/temp/run.do_unpack_extra.11874: 105: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/synergy/1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0/temp/run.do_unpack_extra.11874: unzip: not found | WARNING: exit code 127 from a shell command. | ERROR: Function failed: do_unpack_extra (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/synergy/1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0/temp/log.do_unpack_extra.11874) NOTE: recipe synergy-1.7.3+1.7.4-rc8+AUTOINC+588fb4b805-r0: task do_unpack_extra: Failed ERROR: Task 0 (/home/jenkins/oe/world/shr-core/meta-openembedded/meta-oe/recipes-support/synergy/synergy_git.bb, do_unpack_extra) failed with exit code '1' Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14system-config-keyboard: inherit gettext and add dependency on intltool-nativeMartin Jansa
* it actually depends on native intltool: NOTE: recipe system-config-keyboard-1.4.0-r0: task do_compile: Started ERROR: system-config-keyboard-1.4.0-r0 do_compile: oe_runmake failed ERROR: system-config-keyboard-1.4.0-r0 do_compile: Function failed: do_compile (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/system-config-keyboard/1.4.0-r0/temp/log.do_compile.16052) ERROR: Logfile of failure stored in: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/system-config-keyboard/1.4.0-r0/temp/log.do_compile.16052 Log data follows: | DEBUG: Executing shell function do_compile | NOTE: make -j 8 PYTHON=/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/python-native/python PYTHON_SITELIB=/usr/lib/python2.7/site-packages | make: intltool-merge: Command not found | make: *** [system-config-keyboard.desktop] Error 127 | ERROR: oe_runmake failed | ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/system-config-keyboard/1.4.0-r0/temp/log.do_compile.16052) NOTE: recipe system-config-keyboard-1.4.0-r0: task do_compile: Failed * and it also used gettext: | DEBUG: Executing shell function do_compile | NOTE: make -j 8 PYTHON=/home/jenkins/oe/world/shr-core/tmp-glibc/sysroots/x86_64-linux/usr/bin/python-native/python PYTHON_SITELIB=/usr/lib/python2.7/site-packages | cd po && for i in *.po; do msgfmt $i -o $(echo $i |sed s/.po/.mo/) || exit 1; done | echo -e "#!/bin/sh\nexec /usr/bin/pkexec /usr/sbin/system-config-keyboard \"\$@\"" > "system-config-keyboard.sh" | chmod 755 "system-config-keyboard.sh" | /bin/sh: 1: msgfmt: not found | make: *** [gettext] Error 1 | make: *** Waiting for unfinished jobs.... | Merging translations into system-config-keyboard.desktop. | WARNING: exit code 1 from a shell command. | ERROR: oe_runmake failed | ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/system-config-keyboard/1.4.0-r0/temp/log.do_compile.23230) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14dfu-util: upgrade to 0.9Martin Jansa
* drop commit 0792623dfa8156fb0af3f3949c901665e2df3d04 Author: Stefan `Sec` Zehl <sec@42.org> Date: Wed Jul 29 01:39:11 2015 +0200 Fix/reimplement USBPATH support Using libusb functions to retrieve port and bus numbers. Thanks to Topi Kuutela for reviewing and testing the patch. Also thanks to Timo Poikola and Topi Kuutela for having submitted alternative patches. https://sourceforge.net/p/dfu-util/tickets/6/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14dfu-util: fix .patch filesMartin Jansa
* dfu-util-native was broken since last upgrade in: commit c2652c90f726fa1728307afad73c3051ca7660f5 Author: Li xin <lixin.fnst@cn.fujitsu.com> Date: Sun Jan 3 18:07:17 2016 -0800 dfu-util: 0.7 -> 0.8 Upgrade dfu-util from 0.7 to 0.8. Modify SRC_URI,since the original one can�t be opened. Modify 0001-configure.ac-Don-t-check-for-usbpath.patch,since the datas has been changed. because 0002-Revert-Makefile.am-Drop-static-dfu-util.patch didn't apply anymore. * update 0001-configure.ac-Don-t-check-for-usbpath.patch to keep check for sysexits.h Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14postgresql: Security Advisory-postgresql-CVE-2016-0766Zhixiong Chi
add CVE-2016-0766 patch for avoiding attackers to gain privileges via unspecified vectors. Patch comes from: http://git.postgresql.org/gitweb/?p=postgresql.git;a=summary commit f4aa3a18a20d51575562520754aa376b3b08b2d0 Signed-off-by: Zhixiong Chi <Zhixiong.Chi@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-14upower: fix gobject introspectionAlexander Kanavin
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
2016-03-14udisks2: fix gobject introspectionAlexander Kanavin
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
2016-03-14poppler: fix gobject introspectionAlexander Kanavin
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
2016-03-07freerdp: properly fix QA issueMartin Jansa
* without x11, wayland, directfb enabled there is no bindir directory so the error wasn't about empty /usr/bin/ being unpackaged, but there was /usr/bin binary which was winpr-makecert installed above, fix by creating the directory first Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-04recipes: Replace "cp -a" with "cp -R --no-dereference --preserve=mode,links"Martin Jansa
* Using "cp -a" leaks UID of user running the builds, causing many QA warnings. * See this thread for details: http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112904.html Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-03-04opencv: blacklist, not compatible with currently used ffmpeg 3Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2016-02-27ne10: fix parsingAndreas Müller
ERROR: ParseError at /home/superandy/data/oe-core/sources/meta-openembedded/meta-oe/recipes-support/ne10/ne10_1.2.1.bb:41: unparsed line: 'in .text [textrel]' | ETA: 00:00:13 Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>