aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-07-15meta-oe: use BPN in SRC_URIRobert Yang
Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15meta-multimedia: use BPN in SRC_URIRobert Yang
Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15meta-gpe: use BPN in SRC_URIRobert Yang
Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15meta-gnome: use BPN in SRC_URIRobert Yang
Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15meta-filesystems: use BPN in SRC_URIRobert Yang
Fixed SRC_URI: * ${PN} -> ${BPN}, use ${BP} if it was ${PN}-${PV} * ${P} -> ${BP} Otherwise we would meet do_fetch errors when we do the multilib, native or nativesdk build. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15samba: fix dependency issue about tallocChong.Lu@windriver.com
Check whether to enable external talloc by PACKAGECONFIG. Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15recipes: Add missing pkgconfig dependenciesRichard Purdie
These recipes were all missing pkgconfig dependencies. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15recipes: Add missing intltool-native dependenciesRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15xpext: Drop uneeded custom do_configure to fix B!=S buildsRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15phonet-utils: Fix build with B!=SRichard Purdie
This recipes doesn't use autotools so mark as brokensep. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15fuse/libmtp/tcsh/enca: Add missing explict gettext-native dependencyRichard Purdie
This is needed for the AM_ICONV macro and friends. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15libbonoboui: Add missing intltool-native and gnome-common dependenciesRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15imlib2: upgrade to use pkg-config for freetype2 supportMartin Jansa
* convert from old svn repo to new (legacy) git repo * fixed upstream: commit fe82b9760c7ceb25747c6e634bc827b4cc8ecabd Author: Kim Woelders <kim@woelders.dk> Date: Thu Jul 4 20:08:53 2013 +0200 Autofoo updates. - Eliminate deprecated AC_TRY_CPP. - Use pkg-config in stead of freetype-config to get freetype info. - Eliminate my_includes/my_libs. - Clean up include paths. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-07-15layer.conf: Exclude some theme dependencies from siggenMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-29Uprev memcached from upstreamAmy Fong
memcached 1.4.15 has some configuration errors: configure:5798: error: cannot run test program while cross compiling Uprev has the needed fix for the configuration error and some other fixes. Signed-off-by: Amy Fong <amy.fong@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2014-06-29tftp-hpa: fix a build failureRoy Li
AR is defined as "ar cq" in MCONFIG.in, then "cq" is no longer needed in Makefile of common and libs subdir. #grep AR MCONFIG.in AR = ar cq # #grep AR common/Makefile $(AR) $(LIB) $(OBJS) # But MCONFIG maybe not able to be generated by MCONFIG.in, common/Makefile allows this condition [Note the - before include] #grep MCONFIG common/Makefile -include ../MCONFIG # then AR from building environment is used, but it not included the parameter "cq", and lead to below error, so add the "cq" to AR to fix this issue. i586-wrs-linux-ar libcommon.a tftpsubs. i586-wrs-linux-ar: two different operation options specified Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2014-06-25glmark2: Add virtual/libx11 dependencyMartin Jansa
* without it, do_configure fails: | Checking for 'x11' : not found | The configuration failed Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-25ktap: Set MACHINE_ARCH because of ktap-module runtime dependencyMartin Jansa
* it's possible to exclude ktap-module dependency from siggen, but then we would need to exclude virtual/kernel and that doesn't work we would need to list all posisble providers as ktap->linux-yocto ktap->linux-foo .... Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-25sethdlc: Set MACHINE_ARCH, because of virtual/kernel dependencyMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-24ptpd: update to 2.3.0Franklin S. Cooper Jr
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
2014-06-21python-cython: upgrade to 2.20.2 and fix packaging QA issueMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21packagegroup-efl-sdk: Use luajit instead of lua5.1Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21lua: Remove lua5.1Martin Jansa
* we have lua-5.2 in "lua" recipe and lua-5.1 in "lua5.1", but these aren't completely separate in sysroot: WARNING: The recipe lua is trying to install files into a shared area when those files already exist. Those files and their manifest location are: /OE/build/oe-core/tmp-eglibc/sysroots/qemux86/usr/include/lauxlib.h Matched in manifest-qemux86-lua5.1.populate_sysroot /OE/build/oe-core/tmp-eglibc/sysroots/qemux86/usr/include/lua.h Matched in manifest-qemux86-lua5.1.populate_sysroot /OE/build/oe-core/tmp-eglibc/sysroots/qemux86/usr/include/lua.hpp Matched in manifest-qemux86-lua5.1.populate_sysroot /OE/build/oe-core/tmp-eglibc/sysroots/qemux86/usr/include/luaconf.h Matched in manifest-qemux86-lua5.1.populate_sysroot /OE/build/oe-core/tmp-eglibc/sysroots/qemux86/usr/include/lualib.h Matched in manifest-qemux86-lua5.1.populate_sysroot /OE/build/oe-core/tmp-eglibc/sysroots/qemux86/usr/lib/liblua.a Matched in manifest-qemux86-lua5.1.populate_sysroot Please verify which package should provide the above files. Causing some undeterministic behavior. * keep only 5.2 in "lua" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21efl: use luajit by defaultMartin Jansa
* lua-old is less tested and supported by upstream and luajit seems to work OK with 1.10.0 * luajit will be hard dependency with elua Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21python-efl: upgrade to 1.10.0Martin Jansa
* announcement: https://phab.enlightenment.org/phame/post/view/60/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21efl: add PACKAGECONFIG for c++11 and disable it by defaultMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21efl, elementary: upgrade to 1.10.0Martin Jansa
* announcement: https://phab.enlightenment.org/phame/post/view/59/ * evas-generic-loaders LIC_FILES_CHKSUM change is only from formal changes in 'license: update FSF address.' commit Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21terminology: upgrade to 0.5.1Martin Jansa
* announcement: https://phab.enlightenment.org/phame/post/view/57/ * LIC_FILES_CHKSUM change is just Copyright year update: < Copyright (C) 2012-2014 Carsten Haitzler and various contributors (see AUTHORS) --- > Copyright (C) 2012-2012 Carsten Haitzler and various contributors (see AUTHORS) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21e-wm: Add patch to fix crash caused by type errordv@pseudoterminal.org
Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21networkmanager, network-manager-applet, xfce4-power-manager, ↵Martin Jansa
packagegroup-xfce-extended: Blacklist because of broken networkmanager after libgcrypt-config was removed Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21maliit-framework, maliit-plugins: Blacklist because of broken build with B!=SMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21tesseract-lang: Drop runtime dependency on TUNE_PKGARCH tesseractMartin Jansa
* in order to keep allarch Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21samba: Security Advisory - CVE-2013-4475Chong.Lu@windriver.com
Samba 3.x before 3.6.20, 4.0.x before 4.0.11, and 4.1.x before 4.1.1, when vfs_streams_depot or vfs_streams_xattr is enabled, allows remote attackers to bypass intended file restrictions by leveraging ACL differences between a file and an associated alternate data stream (ADS). http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-4475 Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21samba: Security Advisory - CVE-2013-4124Chong.Lu@windriver.com
Integer overflow in the read_nttrans_ea_list function in nttrans.c in smbd in Samba 3.x before 3.5.22, 3.6.x before 3.6.17, and 4.x before 4.0.8 allows remote attackers to cause a denial of service (memory consumption) via a malformed packet. http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-4124 Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21samba: fix two CVEs CVE-2013-0213 CVE-2013-0214Chong.Lu@windriver.com
Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21samba: fix parsing linemarkers in preprocessor outputChong.Lu@windriver.com
When PIDL calls out to C preprocessor to expand IDL files and parse the output, it filters out linemarkers and line control information as described in http://gcc.gnu.org/onlinedocs/cpp/Preprocessor-Output.html and http://gcc.gnu.org/onlinedocs/cpp/Line-Control.html#Line-Control With gcc 4.8 stdc-predef.h is included automatically and linemarker for the file has extended flags that PIDL couldn't parse ('system header that needs to be extern "C" protected for C++') Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21samba: Security Advisory - CVE-2013-4496Chong.Lu@windriver.com
Samba 3.x before 3.6.23, 4.0.x before 4.0.16, and 4.1.x before 4.1.6 does not enforce the password-guessing protection mechanism for all interfaces, which makes it easier for remote attackers to obtain access via brute-force ChangePasswordUser2 (1) SAMR or (2) RAP attempts. http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2013-4496 Signed-off-by: Yue Tao <Yue.Tao@windriver.com> Signed-off-by: Chong Lu <Chong.Lu@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21imlib2, mcnavi: Blacklist because of broken imlib2 after freetype2-config ↵Martin Jansa
was removed Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21renderer-service-upnp: Blacklist because of broken with B!=SMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21fim: Blacklist because of broken with B!=SMartin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21talloc: fix build with B!=SRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21libetpan: fix build with B!=SRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21xpext: fix build with B!=SRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21mkvtoolnix: fix build with B!=SRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21gtkextra: add missing dependency on gobject-introspection-stubRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21glade3: add missing dependency on gnome-common and libxml2Richard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21polkit-gnome: add missing dependency on gnome-commonRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21enca: add missing dependency on virtual/libiconvRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21libmtp: add missing dependency on virtual/libiconvRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2014-06-21recipes: add missing gtk-doc class dependenciesRichard Purdie
* These recipes all use gtk-doc m4 macros but were missing dependencies on the class. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>