aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
AgeCommit message (Collapse)Author
2015-09-23gsoap: fix DEPENDS to prevent link failure for gsoap-nativeJoshua Lock
With a fairly high number of threads I can reliably trigger the following linker failure in gsoap-native: | /usr/bin/ld: cannot find -ly | collect2: error: ld returned 1 exit status | Makefile:402: recipe for target 'soapcpp2' failed Change the DEPENDS to include bison and let the BBCLASSEXTENDS machinery fix DEPENDS for -native and -target variants, only additonally adding gsoap-native to the DEPENDS for the target recipe. Signed-off-by: Joshua Lock <joshua.lock@collabora.co.uk> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23upower replace udev by libgudev in DEPENDSAndreas Müller
fixes: | configure: error: Package requirements (gudev-1.0 >= 147) were not met: | | No package 'gudev-1.0' found Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23udisks: update to 1.05 and fix build with latest glibc-versionAndreas Müller
From News: This version fixes a security vulnerability (CVE-2014-0004), so please update as soon as possible! Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23udisks: replace udev by libgudev in DEPENDSAndreas Müller
fixes: | configure: error: Package requirements (gudev-1.0 >= 147) were not met: | | No package 'gudev-1.0' found Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23udisks2: add libgudev to DEPENDSAndreas Müller
fixes: | configure: error: Package requirements (gudev-1.0 >= 165) were not met: Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23libyaml: remove the recipe due to its move to oe-coreAlexander Kanavin
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23p11-kit: remove the recipe due to its move to oe-coreAlexander Kanavin
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23lvm2: install initscript or systemd unit service conditionallyRoy Li
Issue: LIN8-854 install systemd unit files and modify them only when DISTRO_FEATURE systemd is enabled, otherwise do_install failed due to no blk-availability.service file sed: can't read tmp/work/armv5e-wrs-linux-gnueabi/lvm2/2.02.125-r0/image/lib/systemd/system/blk-availability.service: No such file or directory install the initscript when init is not systemd Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23mysql-python: upgrade to 1.2.5Roy Li
remove the remove-distribute.patch, v1.2.5 has a similar fix Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23uim_1.8.6: fix QA issueleimaohui
uim-1.8.6: uim: Files/directories were installed but not shipped in any package: /usr/lib/gtk-3.0/3.0.0/immodules/im-uim.so /usr/lib/gtk-3.0/3.0.0/immodules/im-uim.la Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23imagemagick: add alternatives for binaries/docsWenzong Fan
The binaries/docs that generated by imagemagick has suffix '.im6', use update-alternatives to add alternatives for them. Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23gd: disable webp/vpx supportKoen Kooi
The recent update to libvpx 1.4.x broke gd. Upstream has replaced libvpx with libwebp, so fixing it isn't worth it. If webp support is really needed, backport https://bitbucket.org/libgd/gd-libgd/commits/a79232c5fa69 and add a PACKAGECONFIG for it. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23postgresql.inc: fix indentation to use 4 spacesMartin Jansa
* like rest of meta-oe and other sane layers * never mix tabs and spaces (especially on the same line) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-23postgresql: set the tclsh as target pathYue Tao
The tclsh path in pltcl_listmod is set to sysroot, which causes pltcl_listmod to fails to run on target, so fix the path to /usr/bin/tclsh. $ pltcl_listmod /usr/bin/pltcl_listmod: line 5: /buildarea1/WRLinux70-STD-0825/bitbake_build/tmp/sysroots/x86_64-linux/usr/bin/tclsh: No such file or directory $ Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-09-08lvm2: enable lvmetadRoy Li
the systemd unit file of lvm2-monitor requires lvm2-lvmetad.socket which asks to enable lvmetad, lvmetad is a metadata caching daemon for LVM. so this fixed the below error: # systemctl start lvm2-monitor Failed to start lvm2-monitor.service: Unit lvm2-lvmetad.socket failed to load: No such file or directory. # replace the installation of system unit file by make install_systemd_units Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31Opencv: Add OpenCV 3.0Ricardo Ribalda Delgado
-Support for new PACKAGECONFIGS -Merge with opencv-samples Since it is not backward compatible with 2.x and cannot be installed in parallel it has a DEFAULT_PREFERENCE of -1. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Acked-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31libjs-sizzle: upgrade 1.9.3 -> 1.10.18Li xin
* Modify SRC_URI to avoid do_fetch failed. * Modify LICENSE file,and the LICENSE has been changed. * Replace the hardcoded strings "/usr/share" Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31libsodium: create recipeRoy Li
zeromq 4.1.3 requires libsodium Sodium is a new, easy-to-use software library for encryption, decryption, signatures, password hashing and more. It is a portable, cross-compilable, installable, packageable fork of NaCl, with a compatible API, and an extended API to improve usability even further. Its goal is to provide all of the core operations needed to build higher-level cryptographic tools. The design choices emphasize security, and "magic constants" have clear rationales. The same cannot be said of NIST curves, where the specific origins of certain constants are not described by the standards. And despite the emphasis on higher security, primitives are faster across-the-board than most implementations of the NIST standards. Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31tomoyo-tools: pass correct libdir to makeYi Zhao
Fix QA issue when enable multilib: ERROR: QA Issue: tomoyo-tools: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libtomoyotools.so.3.0.2 /usr/lib/libtomoyotools.so.3 /usr/lib/.debug /usr/lib/tomoyo /usr/lib/.debug/libtomoyotools.so.3.0.2 /usr/lib/tomoyo/init_policy [snip] Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. [installed-vs-shipped] Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
2015-08-31libssh: upgrade 0.6.4 -> 0.7.1Yi Zhao
Set the correct LIB_SUFFIX to fix QA issue for multilib: ERROR: QA Issue: libssh: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libssh.so /usr/lib/libssh_threads.so.4.5.0 /usr/lib/libssh.so.4 /usr/lib/libssh_threads.so.4 /usr/lib/libssh_threads.so [snip] Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. [installed-vs-shipped] Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
2015-08-31poppler: update to 0.35.0Andreas Müller
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31uim: 1.3.1->1.8.6leimaohui
- deleted 0001-fix-bug-about-stdlib.patch that not be needed. - modified license Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31libftdi: set correct LIB_SUFFIX for multilibYi Zhao
Fix QA issue when enable multilib: ERROR: QA Issue: libftdi: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libftdipp1.so /usr/lib/libftdi1.so /usr/lib/libftdipp1.so.2.1.0 /usr/lib/libftdi1.so.2 /usr/lib/libftdipp1.a /usr/lib/libftdipp1.so.2 [snip] Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. [installed-vs-shipped] Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
2015-08-31vim: Move SRC_URI from Google Code to github.Philip Balister
I chose the rev that matched the existing recipe version. Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31sg3-utils: upgrade to 1.41Roy Li
Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31lcms: upgrade 2.6->2.7Roy Li
2.7 is a maintenance release Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31iso-codes: remove the recipe due to its move to oe-coreAlexander Kanavin
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31synergy: project has moved from synergy.googlecode.comRudolf J Streif
The synergy project on synergy.googlecode.com is defunct. The sources cannot be downloaded from there anymore. The new project home is synergy-project.org, but sources can only be downloaded from ther with a login. The source code repo is on github.com/synergy. New recipe to check out the code from GitHub. The code contains zip archives for gmock and gtest, which need to be extracted before do_configure. The license file has changed from COPYING to LICENSE. The authors apparently added their copyright information before the GPLv2 license text. Hence, the md5sum is different. Signed-off-by: Rudolf J Streif <rudolf.streif@gmail.com>
2015-08-31wbxml2: set correct LIB_SUFFIX for multilibYi Zhao
Fix QA issue when enable multilib: ERROR: QA Issue: wbxml2: Files/directories were installed but not shipped in any package: /usr/lib /usr/lib/libwbxml2.so.0.0.17 /usr/lib/libwbxml2.so /usr/lib/libwbxml2.so.0 /usr/lib/.debug /usr/lib/pkgconfig /usr/lib/.debug/libwbxml2.so.0.0.17 /usr/lib/pkgconfig/libwbxml2.pc Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. [installed-vs-shipped] Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
2015-08-31opencv_2.4: Update HOMEPAGERicardo Ribalda Delgado
Old link is dead ricardo@neopili:~$ wget http://opencv.willowgarage.com/wiki/ --2015-08-19 17:12:44-- http://opencv.willowgarage.com/wiki/ Resolving opencv.willowgarage.com (opencv.willowgarage.com)... 70.35.54.199 Connecting to opencv.willowgarage.com (opencv.willowgarage.com)|70.35.54.199|:80... failed: Connection timed out. Retrying. Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31opencv_2.4: Remove unused INSANE_SKIP lineRicardo Ribalda Delgado
Credits-to: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31opencv_2.4: Update LICENSERicardo Ribalda Delgado
LICENSE file at the root of the opencv repo says: License Agreement For Open Source Computer Vision Library (3-clause BSD License) Credits-to: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31mariadb: update to 5.5.45Koen Kooi
This is the latest release in the 5.5.x stable series. The CVE patch has been applied upstream. Signed-off-by: Koen Kooi <koen.kooi@linaro.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-31mariadb: fix tarball fetch URLMario Domenech Goulart
http://mirror.stshosting.co.uk/mariadb responds with a 404 error, so use http://archive.mariadb.org instead. Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24libldb: add new recipeBian Naimeng
libldb is required by samba4 Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
2015-08-24talloc: upgrade to 2.1.1Bian Naimeng
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
2015-08-24libtevent: add new recipeBian Naimeng
libtevent is required by samba4 Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
2015-08-24libtdb: add new recipeBian Naimeng
libtdb is required by samba4 Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
2015-08-24ctdb: add new recipeBian Naimeng
ctdb is required by samba4 Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
2015-08-24ipmiutil: add new packageArmin Kuster
Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24epeg: Move tool out of efl + update to latest versionAndreas Baak
The epeg tool was originally developed in the efl project and was replaced by the evas package in efl long ago. The old, unmaintained source code of epeg is still available from an efl legacy repository https://svn.enlightenment.org/svn/e/OLD/. Updates and improvements to epeg have been developed and collected in a new github repository. This patch deletes the deprecated package from the efl project and introduces a new recipe that installs the updated epeg tool. In the license file, one copyright line has been added which indicates the authors of the tool. Moreover, in the license text, one sentence has been removed which elaborated on what is meant by "making the source code available publicly". However, the license still remains an MIT style license. Signed-off-by: Andreas Baak <andreas.baak@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24uim: use _remove operator to drop silent rulesYi Zhao
When MACHINE=qemux86-64 and enable multilib, lib32-uim fails to build because CONFIGUREOPTS isn't expanded correctly. See similar issue: http://lists.openembedded.org/pipermail/openembedded-core/2013-November/086510.html Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24vboxguestdrivers: upgrade 4.3.22 -> 4.3.30Yi Zhao
Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24libjs-jquery: upgrade 1.7.1 -> 1.7.2Li xin
LICENSE has been changed. Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24recipes: use class-native instead of deprecated virtclass-native.Ross Burton
virtclass overrides are deprecated, so use class overrides instead. Signed-off-by: Ross Burton <ross.burton@intel.com>
2015-08-24imagemagick: upgrade 6.9.1 -> 6.9.2Roy Li
Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24gd: upgrade to 2.1.1Roy Li
remove fix-the-subdir-objects-error.patch, a same fix has been merged into source code. Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24libestr: upgrade to 0.1.10Roy Li
rsyslog 7.6.1 needs the new version libestr Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24sdparm: upgrade to 1.09Roy Li
Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2015-08-24pcsc-lite: upgrade 1.8.6 -> 1.8.13Li xin
* Remove PR * Modify chksum of COYING,since the explain of GPLv3+ is added, but the LICENSE has not been changed. Signed-off-by: Li Xin <lixin.fnst@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>