Age | Commit message (Collapse) | Author | Files | |
---|---|---|---|---|
2010-04-12 | uinput,mesa: fix merge | Martin Jansa | 2 | |
2010-04-12 | dpkg: fix merge | Martin Jansa | 2 | |
2010-04-12 | dtc: Add flex-native / bison-native to DEPENDS. | Tom Rini | 1 | |
Signed-off-by: Tom Rini <tom_rini@mentor.com> | ||||
2010-04-12 | recipes: add missing checksums | Martin Jansa | 145 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | recipes: don't use INC_PR in recipes which weren't converted to include .inc ↵ | Martin Jansa | 6 | |
(added INC_PR definition there - ugly) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | nonworking: add more .inc files to make packages at least parse-able | Martin Jansa | 6 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | opie-help-en: TAG wasn't defined, use PV instead | Martin Jansa | 2 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | opie: add OPIE_CVS_PV definition to cvs recipes using it for PV without ↵ | Martin Jansa | 12 | |
including/inheriting opie.bbclass where it's defined Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | lockstat: update SRC_URI, now in old subdir and add checksum | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | uclibc_0.9.30: fix checksum, accidentally pushed checksum for it's locale ↵ | Martin Jansa | 1 | |
instead Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | zhone2: add checksum for splash file | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | zhone2: add SRCREV | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | exml: update SRC_URI -> BROKEN | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | enhance: update SRC_URI -> OLD | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | engrave: update SRC_URI -> OLD | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | libeweather: fix SRC_URI s/eweather/libeweather/ | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | dtc: add missing SRCREV, set PV, negative D_P | Martin Jansa | 3 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | comic-reader: fix SRCREV to existent one | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | bluez-gnome: git repo is now in git.kernel.org, add missing SRCREV, old ↵ | Martin Jansa | 1 | |
.patch does not apply anymore, please check Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | linux-libc-headers 2.6.23: fix syntax error | Marcin Juszkiewicz | 1 | |
2010-04-12 | linux-libc-headers 2.6.23: backport arm/asm/hwcap.h from recent kernels | Marcin Juszkiewicz | 2 | |
Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl> | ||||
2010-04-12 | udev 124: disable devcache on BUG 2.0 | Marcin Juszkiewicz | 2 | |
Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl> | ||||
2010-04-12 | recipes: move SRCDATEs to recipes (as done with SRCREVs) | Martin Jansa | 38 | |
* unused (recipes probably already gone): SRCDATE_fltk ?= "20060814" SRCDATE_ipkg-link-1 ?= "20050930" SRCDATE_mpd ?= "20070210" SRCDATE_portaudio ?= "20060814" SRCDATE_python-cairo ?= "20060814" SRCDATE_qemu-native ?= "20070613" SRCDATE_squashfs ?= "20091110" SRCDATE_tslib ?= "20051101" SRCDATE_poppler0.6 = "20070708" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | barebox: add missing SRCREV and bump PV accordingly | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | edje_editor: update SRC_URI, now it's in OLD instead trunk | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | evolve: update SRC_URI, now it's in OLD instead trunk | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | obsolete: add python-efl.inc | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-12 | rootfs_ipk.bbclass: run preinst/postinst scripts with "-e" | Roman Khimov | 1 | |
There are scripts that can and should work when being ran on build host (for example, simple update-rc.d), but there are also many which can't and won't ever (for example, anything adding users/groups). The second group sometimes doesn't get "unpacked" flag because scripts throw errors in the middle and return something nice from the last command. It can be considered as a bug in pre/postinst script (as it should either explicitly check for "${D}" or just do "set -e" at start), but it is common enough. There is also another aspect to this as in general we can't be sure that everything is OK wrt preinst/postinst if script commands throw errors. Running preinst/postinst scripts on host with "-e" should solve that. Signed-off-by: Roman I Khimov <khimov@altell.ru> Acked-by: Chris Larson <clarson@kergoth.com> | ||||
2010-04-11 | SlugOS: preferred-slugos-versions.inc - fix to accomodate version numbering ↵ | Mike Westerhof | 1 | |
change for atkY (Another fix required only because of completely gratuitious changes made in OE) | ||||
2010-04-12 | zhone2: install init script | Michael 'Mickey' Lauer | 2 | |
2010-04-11 | uclibc: add checksums to recipes | Martin Jansa | 6 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-11 | liberf_0.8.6: use same name SRC_URI param as those 2 URLs provide the same file | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-11 | openh323_1.13.5.4: add missing checksum | Martin Jansa | 1 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-11 | obsolete: add include files to make recipes parse-able | Martin Jansa | 7 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-11 | linux-openmoko-2.6.32: add patches from qtmoko, move defconfig to kernel tree | Martin Jansa | 8 | |
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||||
2010-04-11 | intone: bump SRCREV for segmentation fault fix after latest EFL bump | Martin Jansa | 1 | |
2010-04-10 | shr-e-gadgets_git.bb: bump SRCREV | Klaus Kurzmann | 1 | |
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de> | ||||
2010-04-10 | e-wm-config-illume2-shr_git.bb: bump SRCREV | Klaus Kurzmann | 1 | |
Signed-off-by: Klaus Kurzmann <mok@fluxnetz.de> | ||||
2010-04-10 | smpeg: Installing smpeg.m4 inoto staging aclocal | Michael Lippautz | 1 | |
* Fixes bug #4989 Signed-off-by: Michael Lippautz <michael.lippautz@gmail.com> | ||||
2010-04-10 | zbar: Convert to new staging | Michael Lippautz | 1 | |
Signed-off-by: Michael Lippautz <michael.lippautz@gmail.com> | ||||
2010-04-10 | libxslt: Inherit from binconfig to add support for xslt-config | Michael Lippautz | 1 | |
Signed-off-by: Michael Lippautz <michael.lippautz@gmail.com> | ||||
2010-04-10 | omnewrotate: make recipe valid | Thomas Zimmermann | 1 | |
*it's an svn recipe that had rev=HEAD in SRCURI Signed-off-by: Thomas Zimmermann <ml@vdm-design.de> | ||||
2010-04-10 | libxslt: Convert old version to new staging | Michael Lippautz | 1 | |
Signed-off-by: Michael Lippautz <michael.lippautz@gmail.com> | ||||
2010-04-10 | SlugOS: preferred-slugos-versions.inc - older atk required due to autoconf | Mike Westerhof | 1 | |
2010-04-10 | perl 5.10.1: update perl-rdepends | Roman I Khimov | 2 | |
Signed-off-by: Roman I Khimov <khimov@altell.ru> | ||||
2010-04-10 | e-wm-theme-illume-gry: bump SRCREV | Martin Jansa | 1 | |
2010-04-10 | pyphonelog: bump SRCREV | Martin Jansa | 1 | |
2010-04-10 | zaurus-installer: remove trailing tabs | Andrea Adami | 1 | |
2010-04-10 | linux-kexecboot: fix/refine defconfigs of collie and tosa for 2.6.34 | Andrea Adami | 2 | |
2010-04-10 | vala[-native]: add 0.8.0.69 | Michael 'Mickey' Lauer | 2 | |