summaryrefslogtreecommitdiffstats
path: root/meta
AgeCommit message (Collapse)Author
2011-10-10qt-demo-init/linux-firmware/adt-installer: Convert to Use allarch class fileRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-07gnutls: Disable p11-kit dependency explicitly to resolve build failuresRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-07mutter: update to 2.29.1 and fix SRC_URIJoshua Lock
mutter has been hosted by the gnome community for some time now, update the recipe to use the new SRC_URI and a more recernt version - this is the last version to support Gtk+ 2. Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-07pkgconfig: Fix logic that was accidently leaving legacy pkg-config ↵Richard Purdie
functionality enabled Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-07util-linux: split fsck* into its own subpackageKoen Kooi
This will allow systemd to run /sbin/fsck without dragging in all of util-linux Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-07acl/attr: don't make symlink if base_libdir = libdirSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-06distro_tracking: UpdatesSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06lsof: Update to 4.84Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06tzdata: Update to 2011kSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06gnutls: Update to 2.12.11Saul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06puzzles: Update to latest versionSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06boost-jam-native: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06gail: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06gconf-dbus: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06liburi-perl: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06libxml-perl: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06icon-naming-utils: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06mutter: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06xserver-kdrive: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06clutter-gst-1.6: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06eds-tools: Convert from BZR to GIT RepoSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06libx11-diet: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06guilt-native: Add SRC_URI ChecksumsSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06libx11-trim: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06dosfstools: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06grub: Add SRC_URI ChecksumSaul Wold
Signed-off-by: Saul Wold <sgw@linux.intel.com>
2011-10-06xserver-xf86: Use PACKAGECONFIG for udev/hal choice and default to udevRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-06native.bbclass: Ensure native recipes have a deterministic baselib valueRichard Purdie
Changes to baselib by specific machine configuration were resulting in sstate cache invalidation, particularly in multilib configurations. This patch ensures this doesn't happen and native sstate cache files are reusable. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-06sstate.bbclass: Ensure machine specific stamps are only wiped for the ↵Richard Purdie
current task sstate was being a little too ethusiastic about removing stamp files and was removing stamp files for other machines when it shouldn't have been. This patch teaches sstate about machine specific stamp extensions and allows it to only remove the current task's stampfiles. Based on a patch from Phil Blundell <philb@gnu.org> with some tweaks from me. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-06image.bbclass: No need to run most tasks except do_rootfsRichard Purdie
Running fetch/unpack/patch/compile/install etc. is pointless since the only image task that does anything is the rootfs task. Hence mark the useless tasks as noexec so we don't bother running them. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-06base.bbclass: Implement PACKAGECONFIGRichard Purdie
These enabled options to be specified in the form: PACKAGECONFIG ?? = "<default options>" PACKAGECONFIG[foo] = "--enable-foo,--disable-foo,foo_depends,foo_runtime_depends" So that DEPENDS, RDEPENDS_${PN} and EXTRA_OECONF can be automatically built from specific options. Those options can easily be customised by the distro config or the user. Based on some ideas from Chris Elston <celston@katalix.com> but with an improved easier to use one line interface. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-06base.bbclass: Minor cleanupRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-05webkit-gtk: Enable dependency tracking since the webkit makefiles have bugsRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-05autotools.bbclass: Allow dependency tracking option to be easily overriddenRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-05gdb-cross-canadian: Fix source directory SRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-05mtools: Disable parallel make install, its brokenRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-05kexec-tools: fix architecture mismatch QA errorTom Zanussi
Building sato-sdk for an x86_64 target throws this QA error: | ERROR: QA Issue: Architecture did not match (62 to 3) on /work/x86_64-poky-li\ nux/kexec-tools-2.0.2-r1/packages-split/kexec-tools/usr/lib/kexec-tools/kexec_t\ est kexec_test uses 32-bit code for testing - add an INSANE_SKIP exception for it. Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04bootimg.bbclass: fix comment typoOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2011-10-04image-live.bbclass: allow images to override ROOTFS and INITRDOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2011-10-04image.bbclass: improve comments regarding exported functionsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2011-10-04linux-yocto: update live boot configurationBruce Ashfield
Updating the meta SRCREV to import a series of changes to synchronize live booting between multiple targets: d05450e meta/fri2: enable booting from iso 3da7d2a meta/fishriver: enable booting from iso 52e1c49 meta/emenlow: enable booting from iso 87918ae meta/crownbay: enable booting from iso Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-10-04qt4-embedded: move qt4-embedded-conf from RDEPENDS to RRECOMMENDSJames Limbouris
qt4-embedded-conf contains an environment setup script for profile.d. It has been packaged seperately to allow for its exclusion, but this is only practical if it is added to RRECOMMENDS, rather than RDEPENDS. Signed-off-by: James Limbouris <james@digitalmatter.com.au> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04qt4: packaging fixupDmitry Eremin-Solenikov
Improve packaging: * Add phrasebook packages to DYNAMIC_PACKAGES * Correct phrasebook packages generation * Include more files into -dbg packages * Package fontdir and fonts README. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04qt4: Fix translation supportOtavio Salvador
The translation support was disable in build. The fix-translation.patch was imported from OpenEmbedded to fix a linking issue in phonon translation support. [Dmitry Eremin-Solenikov: ported to apply to qt 4.7.4 build, bumped PR] Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04populate_sdk_rpm: Add missing /bin/sh from rpm ignore list for the SDKRichard Purdie
The target SDK packages don't need to fulfil a shell dependency so add /bin/sh to the list of packages we don't need to resolve. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04libproxy: upgrade to 0.4.7Martin Jansa
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04json-glib: upgrade to 0.14.0Martin Jansa
* 0.12.4 fails to build with glib-2.30.0 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2011-10-04hal-info: drop PACKAGE_ARCH allMartin Jansa
RP: It would be better if we could find a way to patch out the compiler checks in this package... JaMa: drop PACKAGE_ARCH for now (nobody likes hal nowadays) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-04Improve handling of 'all' architecture recipes and their interaction with sstateRichard Purdie
* Jansa: rebased on current master, added nocompiler patch also to font-alias, dropped allarch from linux-firmware, gnome-icon-theme, hal-info as those are checking compiler (ie in intltool check) and better to build them as default arch instead of rebuilding after every machine change. * this is also part of [BUGID# 1075] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-10-04qt4: Update to latest version 4.7.4Eric Bénard
- 4.7.4 was release on the 1st of september, the changelog is available here : http://qt.gitorious.org/+qt-developers/qt/releases/blobs/v4.7.4/dist/changes-4.7.4 and mostly contains bug fix. - this patch include the fix for QTBUG-20925 which was a regression against 4.7.3 : https://bugreports.qt.nokia.com/browse/QTBUG-20925 http://qt.gitorious.org/qt/qt/commit/852abfca6f4c349dce9b895956922f96d82df579 thanks to Paul Eggleton to point us to this bug. Signed-off-by: Eric Bénard <eric@eukrea.com>