From ce3e9da4ff367a0dffa8228242d1c81ed6ba384f Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Fri, 5 Feb 2010 13:39:35 +0100 Subject: angstrom-task-gnome: add gecko-media-player-firefox-hack to get youtube working without flash --- recipes/tasks/angstrom-task-gnome.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/angstrom-task-gnome.bb b/recipes/tasks/angstrom-task-gnome.bb index 1c54f374d8..574579f1ff 100644 --- a/recipes/tasks/angstrom-task-gnome.bb +++ b/recipes/tasks/angstrom-task-gnome.bb @@ -12,7 +12,7 @@ XSERVER ?= "xserver-xorg \ xf86-input-keyboard \ " -PR = "r5" +PR = "r6" PACKAGES += "task-gnome-apps task-gnome-fonts task-gnome task-gnome-gstreamer task-gnome-perl task-gnome-pulseaudio task-gnome-themes task-gnome-totem task-gnome-xserver-base task-gnome-xserver" @@ -30,6 +30,7 @@ RDEPENDS_task-gnome-apps = " \ gimp \ gnome-games \ gnome-mplayer \ + gecko-mediaplayer-firefox-hack \ gnumeric \ gphoto2 \ gthumb \ -- cgit v1.2.3 From f18a05e264eb17f69f789e113f7ee2ca7c94a05a Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 9 Feb 2010 16:43:45 -0700 Subject: task-sdk-bare: Drop locale stuff, bump PR Locale stuff doesn't belong in a "bare" SDK. --- recipes/tasks/task-sdk-bare.bb | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-sdk-bare.bb b/recipes/tasks/task-sdk-bare.bb index f86cc9d81d..5a43fed9b0 100644 --- a/recipes/tasks/task-sdk-bare.bb +++ b/recipes/tasks/task-sdk-bare.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Packages for a standalone SDK or external toolchain" LICENSE = "MIT" ALLOW_EMPTY = "1" - +PR = "r1" PACKAGES = "${PN}" @@ -12,13 +12,7 @@ GLIBC_PKGS = "\ glibc-utils \ libsegfault \ glibc-thread-db \ - glibc-localedata-i18n \ - glibc-gconv-ibm850 \ - glibc-gconv-cp1252 \ - glibc-gconv-iso8859-1 \ - glibc-gconv-iso8859-15 \ - locale-base-en-gb \ - " +" LIBC_PKGS_linux = "${GLIBC_PKGS}" LIBC_PKGS_linux-gnueabi = "${GLIBC_PKGS}" -- cgit v1.2.3 From 798fe719221070bac2b5bd7318e8240404e8d0ff Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 10 Feb 2010 08:39:21 +0100 Subject: task-shr-feed: drop omview --- recipes/tasks/task-shr-feed.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 3cc551b189..0ffd1c0eee 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r35" +PR = "r36" PV = "1.0" LICENSE = "GPL" @@ -31,7 +31,8 @@ RDEPENDS_${PN} += "\ mc \ mplayer \ navit \ - omview \ +# omview depends on deprecated (now broken) epsilon +# omview \ orrery \ python-elementary \ pythm \ -- cgit v1.2.3 From f4b798241eca0ea18a31f9e87a40f440df2d9fde Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 8 Feb 2010 11:14:33 +0000 Subject: task-base.bb: use uniform test for set Signed-off-by: Bernhard Reutner-Fischer Signed-off-by: Khem Raj --- recipes/tasks/task-base.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-base.bb b/recipes/tasks/task-base.bb index d59acba026..fc04b46ff5 100644 --- a/recipes/tasks/task-base.bb +++ b/recipes/tasks/task-base.bb @@ -136,7 +136,9 @@ python __anonymous () { import bb - if not hasattr(__builtins__, 'set'): + try: + set + except NameError: from sets import Set as set distro_features = set(bb.data.getVar("DISTRO_FEATURES", d, 1).split()) -- cgit v1.2.3 From d041e3503c7cbe67ddcfc30e8d6ae37b9b108dc1 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 11 Feb 2010 10:39:07 +0100 Subject: task-shr-feed: add glamo-dri-tests only for om-gta02 Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 0ffd1c0eee..046c8a1cc8 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -133,7 +133,6 @@ RDEPENDS_${PN} += "\ # gpsdrive \ wxwidgets \ x11vnc \ - xf86-video-glamo \ # libswt3.4-gtk-java \ cacao \ # jamvm \ @@ -240,7 +239,6 @@ RDEPENDS_${PN} += "\ bt-configure \ bt-gps \ advancedcaching \ - glamo-dri-tests \ bonnie++ \ reiserfsprogs \ blipomoko \ @@ -276,3 +274,6 @@ RDEPENDS_${PN} += "\ emtooth \ podboy \ " + +# this is only usefull on gta02 and on other devices it's trying to pull mesa-dri (not respecting DEFAULT_PROVIDER for virtual/libgl) +RDEPENDS_${PN}_om-gta02 += "glamo-dri-tests" -- cgit v1.2.3 From 3b9b55a6510652bd9d7e1f764ca2e6defa00568e Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Fri, 12 Feb 2010 10:20:43 +0000 Subject: task-shr-feed: add mpd (solves SHR bug: #946) Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 046c8a1cc8..bed6457940 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r36" +PR = "r37" PV = "1.0" LICENSE = "GPL" @@ -29,6 +29,7 @@ RDEPENDS_${PN} += "\ gtkmm \ guitartune \ mc \ + mpd \ mplayer \ navit \ # omview depends on deprecated (now broken) epsilon -- cgit v1.2.3 From dc115b9b6416a6f417c76088e7d43f08f6697d5e Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Feb 2010 14:45:17 +0100 Subject: shr-image: move some stuff from task-shr-minimal to task-shr, drop unneeded and make shr-lite-images smaller Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 17 +---------------- recipes/tasks/task-shr.bb | 13 +++++++++++-- 2 files changed, 12 insertions(+), 18 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index 8538391df3..5b16a2a14b 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r20" +PR = "r21" PV = "2.0" LICENSE = "GPL" @@ -67,11 +67,8 @@ RDEPENDS_${PN}-base = "\ sysfsutils \ modutils-initscripts \ module-init-tools-depmod \ - rsync \ - screen \ fbset \ fbset-modes \ - openssh-sftp-server \ cron \ logrotate\ util-linux-ng-fdisk \ @@ -79,13 +76,8 @@ RDEPENDS_${PN}-base = "\ " RDEPENDS_${PN}-cli = "\ - screen \ nano \ - iptables \ mtd-utils \ - s3c24xx-gpio \ - mickeydbus \ - mickeyterm \ " RDEPENDS_${PN}-fso = "\ @@ -112,15 +104,9 @@ RDEPENDS_${PN}-audio_append_om-gta02 = "\ " RDEPENDS_${PN}-x = "\ - glibc-utils \ - glibc-charmap-utf-8 \ e-wm-menu-shr \ shr-wizard \ shr-theme-gry \ - etk-theme-shr \ - ${@get_rdepends(bb, d)} \ - libx11-locale \ - libmokoui2 \ xcursor-transparent-theme \ xinput-calibrator \ " @@ -145,7 +131,6 @@ RDEPENDS_${PN}-gtk = "\ openmoko-icon-theme-standard2 \ shr-theme-gtk-e17lookalike \ vala-terminal \ - tangogps \ pyphonelog \ matchbox-keyboard-im \ " diff --git a/recipes/tasks/task-shr.bb b/recipes/tasks/task-shr.bb index 25e1b170c3..1f072500d2 100644 --- a/recipes/tasks/task-shr.bb +++ b/recipes/tasks/task-shr.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Fat Image Feed" -PR = "r3" +PR = "r4" PV = "2.0" LICENSE = "GPL" @@ -9,6 +9,7 @@ PACKAGES = "\ ${PN}-gtk \ ${PN}-apps \ ${PN}-games \ + ${PN}-cli \ " RDEPENDS_${PN}-gtk = "\ @@ -17,6 +18,7 @@ RDEPENDS_${PN}-gtk = "\ libpurple-protocol-msn \ libpurple-protocol-icq \ vagalume \ + tangogps \ gpe-sketchbook \ " @@ -27,9 +29,16 @@ RDEPENDS_${PN}-apps += "\ midori \ intone \ " +RDEPENDS_${PN}-apps += "\ + task-shr-minimal-cli \ + screen \ + rsync \ + mickeydbus \ + mickeyterm \ + openssh-sftp-server \ +" RDEPENDS_${PN}-games += "\ mokomaze \ numptyphysics \ " - -- cgit v1.2.3 From dcfdafaa68356aa4f50d88cc3e240e5cea76036c Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Feb 2010 21:46:53 +0100 Subject: task-shr: catch up with upstream renaming Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- recipes/tasks/task-shr.bb | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index bed6457940..b5a1902b3c 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r37" +PR = "r38" PV = "1.0" LICENSE = "GPL" @@ -206,6 +206,7 @@ RDEPENDS_${PN} += "\ fsousaged \ fsodeviced \ fsonetworkd \ + mdbus \ opimd-utils \ omgps \ shr-launcher \ diff --git a/recipes/tasks/task-shr.bb b/recipes/tasks/task-shr.bb index 1f072500d2..607827a6c3 100644 --- a/recipes/tasks/task-shr.bb +++ b/recipes/tasks/task-shr.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Fat Image Feed" -PR = "r4" +PR = "r5" PV = "2.0" LICENSE = "GPL" @@ -33,8 +33,8 @@ RDEPENDS_${PN}-apps += "\ task-shr-minimal-cli \ screen \ rsync \ - mickeydbus \ - mickeyterm \ + mdbus2 \ + mterm2 \ openssh-sftp-server \ " -- cgit v1.2.3 From 1fac183589fa2d471436906d05fba28169e7bbb6 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Feb 2010 23:37:53 +0100 Subject: task-shr-feed: add older mickeyterm to feed, newer mterm2 should be installed and build with shr*image Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index b5a1902b3c..9e3e0b646c 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r38" +PR = "r39" PV = "1.0" LICENSE = "GPL" @@ -207,6 +207,7 @@ RDEPENDS_${PN} += "\ fsodeviced \ fsonetworkd \ mdbus \ + mickeyterm \ opimd-utils \ omgps \ shr-launcher \ -- cgit v1.2.3 From 5d719eb699a8e6a7e231f2934f94dc7d6a325766 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Feb 2010 23:38:45 +0100 Subject: task-cli-tools-python, illume-image, fso-image-nox: catch up with upstream renaming Signed-off-by: Martin Jansa --- recipes/tasks/task-cli-tools-python.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-cli-tools-python.bb b/recipes/tasks/task-cli-tools-python.bb index 7c75084dd0..4e5ac58ed6 100644 --- a/recipes/tasks/task-cli-tools-python.bb +++ b/recipes/tasks/task-cli-tools-python.bb @@ -2,11 +2,11 @@ DESCRIPTION = "A set of python-based command line tools" SECTION = "console" LICENSE = "MIT" PV = "1.0" -PR = "r8" +PR = "r9" inherit task RDEPENDS_${PN} = "\ - mickeydbus \ - mickeyterm \ + mdbus2 \ + mterm2 \ " -- cgit v1.2.3 From 0af03b94cd8575da9c6722caa54e8fb36895844d Mon Sep 17 00:00:00 2001 From: Denis 'Gnutoo' Carikli Date: Sat, 13 Feb 2010 01:14:03 +0100 Subject: task-base : bump PR because bug.conf changed(details below) kernel-modules was added to MACHINE_EXTRA_RRECOMMENDS in bug.conf, But without bumping the PR of task-base it wouldn't include the kernel modules into the image --- recipes/tasks/task-base.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-base.bb b/recipes/tasks/task-base.bb index fc04b46ff5..8c23aba694 100644 --- a/recipes/tasks/task-base.bb +++ b/recipes/tasks/task-base.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Merge machine and distro options to create a basic machine task/package" -PR = "r87" +PR = "r88" inherit task -- cgit v1.2.3 From aa4d1e2155a42353dd4319c4b0e6d6f74062dba3 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 13 Feb 2010 13:39:06 +0100 Subject: task-cli-tools-python: use older python based cli tools as task name suggests Signed-off-by: Martin Jansa --- recipes/tasks/task-cli-tools-python.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-cli-tools-python.bb b/recipes/tasks/task-cli-tools-python.bb index 4e5ac58ed6..7945b03a1f 100644 --- a/recipes/tasks/task-cli-tools-python.bb +++ b/recipes/tasks/task-cli-tools-python.bb @@ -2,11 +2,11 @@ DESCRIPTION = "A set of python-based command line tools" SECTION = "console" LICENSE = "MIT" PV = "1.0" -PR = "r9" +PR = "r10" inherit task RDEPENDS_${PN} = "\ - mdbus2 \ - mterm2 \ + mdbus \ + mickeyterm \ " -- cgit v1.2.3 From 62ad3249b237f03453b00d16b215fe1580cb7232 Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Mon, 22 Feb 2010 20:26:44 +0100 Subject: task-cli-tools: add mdbus2 and mbuffer --- recipes/tasks/task-cli-tools.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-cli-tools.bb b/recipes/tasks/task-cli-tools.bb index 9c5e8615e0..e538365aea 100644 --- a/recipes/tasks/task-cli-tools.bb +++ b/recipes/tasks/task-cli-tools.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A set of command line tools useful for debugging" SECTION = "console" LICENSE = "MIT" PV = "1.0" -PR = "r9" +PR = "r11" inherit task @@ -13,7 +13,9 @@ RDEPENDS_${PN} = "\ htop \ iptables \ lsof \ + mbuffer \ mtd-utils \ + mdbus2 \ nano \ nfs-utils-client \ powertop \ -- cgit v1.2.3 From 6dd8e30f6fb403b2de61dff7089fb52b48ddaba0 Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Mon, 22 Feb 2010 20:54:54 +0100 Subject: task-cli-tools: add mterm2 and remove from task-fso2-compliance --- recipes/tasks/task-cli-tools.bb | 5 +++-- recipes/tasks/task-fso2-compliance.bb | 18 ++++++++---------- 2 files changed, 11 insertions(+), 12 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-cli-tools.bb b/recipes/tasks/task-cli-tools.bb index e538365aea..93ab1945d3 100644 --- a/recipes/tasks/task-cli-tools.bb +++ b/recipes/tasks/task-cli-tools.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A set of command line tools useful for debugging" SECTION = "console" LICENSE = "MIT" PV = "1.0" -PR = "r11" +PR = "r12" inherit task @@ -14,8 +14,9 @@ RDEPENDS_${PN} = "\ iptables \ lsof \ mbuffer \ - mtd-utils \ mdbus2 \ + mtd-utils \ + mterm2 \ nano \ nfs-utils-client \ powertop \ diff --git a/recipes/tasks/task-fso2-compliance.bb b/recipes/tasks/task-fso2-compliance.bb index de7d6c1281..bc5705bc1c 100644 --- a/recipes/tasks/task-fso2-compliance.bb +++ b/recipes/tasks/task-fso2-compliance.bb @@ -9,8 +9,6 @@ inherit task RDEPENDS_${PN} = "\ dbus-hlid \ -# TODO: remove when fso2 is finished - frameworkd \ \ libfsobasics \ libfsotransport \ @@ -21,7 +19,7 @@ RDEPENDS_${PN} = "\ fsodeviced \ fsogsmd \ fsotdld \ - fsomusicd \ +# fsomusicd \ fsonetworkd \ fsousaged \ \ @@ -29,23 +27,23 @@ RDEPENDS_${PN} = "\ fso-apm \ fso-gpsd \ # fso-monitord \ - connman \ +# connman \ # connman-scripts \ - connman-plugin-bluetooth \ +# connman-plugin-bluetooth \ # connman-plugin-dhclient \ # connman-plugin-dnsproxy \ # connman-plugin-ethernet \ # connman-plugin-fake \ - connman-plugin-loopback \ - connman-plugin-pppd \ +# connman-plugin-loopback \ +# connman-plugin-pppd \ # connman-plugin-resolvconf \ - connman-plugin-udhcp \ - connman-plugin-wifi \ +# connman-plugin-udhcp \ +# connman-plugin-wifi \ # connman-test-utils \ " RRECOMMENDS_${PN} = "\ - fso-abyss \ +# fso-abyss \ wmiconfig \ tzdata \ tzdata-africa \ -- cgit v1.2.3 From 2022a922005963831a06885ceef61792775307eb Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 24 Feb 2010 00:17:48 +0100 Subject: task-shr-feed: add mcnavi Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 9e3e0b646c..d0c1b1fe98 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r39" +PR = "r40" PV = "1.0" LICENSE = "GPL" @@ -276,6 +276,7 @@ RDEPENDS_${PN} += "\ ventura \ emtooth \ podboy \ + mcnavi \ " # this is only usefull on gta02 and on other devices it's trying to pull mesa-dri (not respecting DEFAULT_PROVIDER for virtual/libgl) -- cgit v1.2.3 From 987c90ef18170f1835d09eef7c48424abcbf81e1 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 24 Feb 2010 09:03:49 +0100 Subject: task-shr-feed: fix machine override * Never += to override variable as it appends to empty override variable which is later used instead of that variable without override Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index d0c1b1fe98..e856930c15 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r40" +PR = "r41" PV = "1.0" LICENSE = "GPL" @@ -280,4 +280,4 @@ RDEPENDS_${PN} += "\ " # this is only usefull on gta02 and on other devices it's trying to pull mesa-dri (not respecting DEFAULT_PROVIDER for virtual/libgl) -RDEPENDS_${PN}_om-gta02 += "glamo-dri-tests" +RDEPENDS_${PN}_append_om-gta02 = "glamo-dri-tests" -- cgit v1.2.3 From fe7f6581e7f238552de8230d6e61c00590be22cf Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 24 Feb 2010 10:52:28 +0100 Subject: task-shr-feed: remove eve, removed from upstream svn repository in svnr45979 Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index e856930c15..349ca1a29f 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r41" +PR = "r42" PV = "1.0" LICENSE = "GPL" @@ -235,7 +235,7 @@ RDEPENDS_${PN} += "\ om-neon \ ipython \ # phoneme-advanced-foundation \ - eve \ +# eve was killed in svnr45979 python-pybluez \ x11perf \ pyring \ -- cgit v1.2.3 From fea04982f9a13e1ea11ed7e81368305568f76224 Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Thu, 25 Feb 2010 15:11:21 +0100 Subject: task-shr-feed: add jefliks to feed Signed-off-by: Thomas Zimmermann --- recipes/tasks/task-shr-feed.bb | 1 + 1 file changed, 1 insertion(+) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 349ca1a29f..937675b1b9 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -28,6 +28,7 @@ RDEPENDS_${PN} += "\ gpe-contacts \ gtkmm \ guitartune \ + jefliks \ mc \ mpd \ mplayer \ -- cgit v1.2.3 From f12dd3b7438ec4672be5b4ada3bcd79afbcba137 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 26 Feb 2010 16:36:59 +0100 Subject: shr-image: add all needed deps to task-shr-minimal, remove /boot from jffs2/ubi/ubifs Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index 5b16a2a14b..00524be656 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r21" +PR = "r22" PV = "2.0" LICENSE = "GPL" @@ -63,6 +63,8 @@ PACKAGES += "\ RDEPENDS_${PN}-base = "\ + ${MACHINE_TASK_PROVIDER} \ + task-base \ netbase \ sysfsutils \ modutils-initscripts \ @@ -104,6 +106,8 @@ RDEPENDS_${PN}-audio_append_om-gta02 = "\ " RDEPENDS_${PN}-x = "\ + task-x11-illume \ + task-fonts-truetype-core \ e-wm-menu-shr \ shr-wizard \ shr-theme-gry \ @@ -112,7 +116,7 @@ RDEPENDS_${PN}-x = "\ " RDEPENDS_${PN}-apps = "\ - fso-abyss \ + task-fso2-compliance \ phoneui-apps-messages \ phoneui-apps-contacts \ phoneui-apps-dialer \ -- cgit v1.2.3 From eb78a0c891f64441eaacc7fb8f464b01e1f8af74 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 27 Feb 2010 04:20:30 +0100 Subject: task-shr-minimal: readd utf-8 charmap --- recipes/tasks/task-shr-minimal.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index 00524be656..2c6c0400f5 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r22" +PR = "r23" PV = "2.0" LICENSE = "GPL" @@ -65,6 +65,8 @@ PACKAGES += "\ RDEPENDS_${PN}-base = "\ ${MACHINE_TASK_PROVIDER} \ task-base \ + glibc-utils \ + glibc-charmap-utf-8 \ netbase \ sysfsutils \ modutils-initscripts \ -- cgit v1.2.3 From 7fd9751f56bff7506f78388b2dfed57e118c1448 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 27 Feb 2010 10:29:54 +0100 Subject: shr: drop alsa as distro feature, bump task-base PR Signed-off-by: Martin Jansa --- recipes/tasks/task-base.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-base.bb b/recipes/tasks/task-base.bb index 8c23aba694..555a463635 100644 --- a/recipes/tasks/task-base.bb +++ b/recipes/tasks/task-base.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Merge machine and distro options to create a basic machine task/package" -PR = "r88" +PR = "r89" inherit task -- cgit v1.2.3 From af847022ffd78df5ec3381d4c2a5fa878af48b84 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 27 Feb 2010 10:38:25 +0100 Subject: task-shr-minimal: drop alsa-scenarios, openmoko-icon-theme, add illume2 config, missing icons will be added to shr-icon-theme (to save few kB) Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index 2c6c0400f5..81a081a7e4 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -94,19 +94,13 @@ RDEPENDS_${PN}-fso = "\ #FIXME: libcanberra-alsa should be pulled in by fsodeviced but isn't RDEPENDS_${PN}-audio = "\ + alsa-utils-alsactl \ + alsa-utils-alsamixer \ alsa-utils-aplay \ alsa-utils-amixer \ libcanberra-alsa \ " -RDEPENDS_${PN}-audio_append_om-gta01 = "\ - alsa-scenarii-shr \ -" - -RDEPENDS_${PN}-audio_append_om-gta02 = "\ - alsa-scenarii-shr \ -" - RDEPENDS_${PN}-x = "\ task-x11-illume \ task-fonts-truetype-core \ @@ -115,6 +109,8 @@ RDEPENDS_${PN}-x = "\ shr-theme-gry \ xcursor-transparent-theme \ xinput-calibrator \ +# Make sure it's available for those who want's to play with illume2 + e-wm-config-illume2-shr \ " RDEPENDS_${PN}-apps = "\ @@ -134,7 +130,6 @@ RDEPENDS_${PN}-apps = "\ RDEPENDS_${PN}-gtk = "\ - openmoko-icon-theme-standard2 \ shr-theme-gtk-e17lookalike \ vala-terminal \ pyphonelog \ -- cgit v1.2.3 From c3a77580a5a22ff49d8322ad6ab14870c545dae9 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 27 Feb 2010 10:32:07 +0100 Subject: fsodeviced: use it as default alsa scenarii provider, drop fso-alsa-data from task-fso2-compliance, add RPROVIDES Signed-off-by: Martin Jansa --- recipes/tasks/task-fso2-compliance.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-fso2-compliance.bb b/recipes/tasks/task-fso2-compliance.bb index bc5705bc1c..2d38b47c5e 100644 --- a/recipes/tasks/task-fso2-compliance.bb +++ b/recipes/tasks/task-fso2-compliance.bb @@ -3,7 +3,7 @@ Install this task to make your distribution FSO 2.0-compliant." SECTION = "fso/base" LICENSE = "MIT" PV = "1.9.0" -PR = "r5" +PR = "r6" inherit task @@ -23,7 +23,8 @@ RDEPENDS_${PN} = "\ fsonetworkd \ fsousaged \ \ - fso-alsa-data \ +# included in fsodeviced now +# fso-alsa-data \ fso-apm \ fso-gpsd \ # fso-monitord \ -- cgit v1.2.3 From b6234a29b0bf4489867a96f8ced4b9a7de7aeae8 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sat, 27 Feb 2010 18:25:01 +0100 Subject: shr-image: add missing task-shr-minimal-fso to IMAGE_INSTALL Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index 81a081a7e4..b73c6affb9 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r23" +PR = "r24" PV = "2.0" LICENSE = "GPL" @@ -109,6 +109,8 @@ RDEPENDS_${PN}-x = "\ shr-theme-gry \ xcursor-transparent-theme \ xinput-calibrator \ +# All localedata based on IMAGE_LINGUAS + ${@get_rdepends(bb, d)} \ # Make sure it's available for those who want's to play with illume2 e-wm-config-illume2-shr \ " -- cgit v1.2.3 From a8313b6b63c02b6d2171af9b2e4417fc739dacd2 Mon Sep 17 00:00:00 2001 From: Frans Meulenbroeks Date: Sun, 28 Feb 2010 22:27:50 +0100 Subject: tasks/task-nas-server: commented out task-nas-server-openmoko commented out task-nas-server-openmoko this one uses dfu-util, but for most distro's dfu-util does not build root cause of dfu-util not building is in the expansion of virtual/libusb0 which for most distro's links to libusb-compat and dfu-util does not build with it. commenting out task-nas-server-openmoko is a temp fix to at least get the image building Signed-off-by: Frans Meulenbroeks --- recipes/tasks/task-nas-server.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-nas-server.bb b/recipes/tasks/task-nas-server.bb index 6924ff5388..fe12347fb6 100644 --- a/recipes/tasks/task-nas-server.bb +++ b/recipes/tasks/task-nas-server.bb @@ -15,7 +15,7 @@ NAS_SERVER_PACKAGES = "\ task-nas-server-samba \ task-nas-server-dnsmasq \ task-nas-server-iptables \ - task-nas-server-openmoko \ +# task-nas-server-openmoko \ task-nas-server-tzdata \ task-nas-server-nfs \ task-nas-server-vfat \ -- cgit v1.2.3 From 899adeeaabb9bb44f0520c328603adc6361429ac Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Mon, 1 Mar 2010 14:52:38 +0100 Subject: task-shr-minimal: we need MACHINE_ARCH, because task-base and MACHINE_TASK_PROVIDER are machine specific Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index b73c6affb9..fb483dd5e3 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,10 +1,12 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r24" +PR = "r25" PV = "2.0" LICENSE = "GPL" inherit task +PACKAGE_ARCH = "${MACHINE_ARCH}" + def get_rdepends(bb, d): enabled = bb.data.getVar("ENABLE_BINARY_LOCALE_GENERATION", d, 1) @@ -116,6 +118,7 @@ RDEPENDS_${PN}-x = "\ " RDEPENDS_${PN}-apps = "\ + fso-abyss \ task-fso2-compliance \ phoneui-apps-messages \ phoneui-apps-contacts \ -- cgit v1.2.3 From f0da6033e6e2280f8550036f7eebf2108cd96e96 Mon Sep 17 00:00:00 2001 From: Frans Meulenbroeks Date: Mon, 1 Mar 2010 21:13:24 +0100 Subject: task-nas-server removed the openmoko part removed the openmoko part from the nas server task this part only drags in dfu-util which does not build under most distro's openmoko users are very unlikely to run a NAS on their device, and even if they want to and need dfu-util, they can easily install afterwards (and dfu-util is not even nas related, so it does not really belong in this task) Signed-off-by: Frans Meulenbroeks --- recipes/tasks/task-nas-server.bb | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-nas-server.bb b/recipes/tasks/task-nas-server.bb index fe12347fb6..f190a86587 100644 --- a/recipes/tasks/task-nas-server.bb +++ b/recipes/tasks/task-nas-server.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Tasks for a Network Attached Storage server" LICENSE = "MIT" PROVIDES = "task-nas-server-everything" -PR = "r1" +PR = "r2" inherit task @@ -15,7 +15,6 @@ NAS_SERVER_PACKAGES = "\ task-nas-server-samba \ task-nas-server-dnsmasq \ task-nas-server-iptables \ -# task-nas-server-openmoko \ task-nas-server-tzdata \ task-nas-server-nfs \ task-nas-server-vfat \ @@ -56,13 +55,6 @@ RRECOMMENDS_task-nas-server-iptables = "\ kernel-module-ipt-masquerade \ " -DESCRIPTION_task-nas-server-openmoko = "NAS-Server: Openmoko Support" -RDEPENDS_task-nas-server-openmoko = "\ - dfu-util \ -" -RRECOMMENDS_task-nas-server-openmoko = "\ -" - DESCRIPTION_task-nas-server-tzdata = "NAS-Server: Timezone Support" RDEPENDS_task-nas-server-tzdata = "\ tzdata \ -- cgit v1.2.3 From f2f69d9ae0d32b5adff4987d12a7c4924e24555c Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Mon, 1 Mar 2010 20:45:04 +0100 Subject: task-shr-minimal: add phoneui-apps-quick-settings Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index fb483dd5e3..c82e6d0aea 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r25" +PR = "r26" PV = "2.0" LICENSE = "GPL" @@ -123,6 +123,7 @@ RDEPENDS_${PN}-apps = "\ phoneui-apps-messages \ phoneui-apps-contacts \ phoneui-apps-dialer \ + phoneui-apps-quick-settings \ phonefsod \ phoneuid \ libphone-ui \ -- cgit v1.2.3 From 8a7dc51327aedf87418bcd3438db5b3435ba2136 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 3 Mar 2010 16:29:38 +0100 Subject: shr: use numeric-alt keyboard in illume* config and default-numeric only in feed Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 937675b1b9..1593006a99 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r42" +PR = "r43" PV = "1.0" LICENSE = "GPL" @@ -226,6 +226,7 @@ RDEPENDS_${PN} += "\ illume-keyboard-german \ illume-keyboard-hebrew \ illume-keyboard-numeric-alt \ + illume-keyboard-default-numeric \ illume-keyboard-russian \ illume-keyboard-russian-terminal \ python-xlib \ -- cgit v1.2.3 From bc30aaf5b8e3c97726b71545992d965d17d698e4 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 5 Mar 2010 08:57:37 +0100 Subject: task-shr: fix typo and add task-cli-tools, task-cli-tools-debug * remove what is already included in those tasks Signed-off-by: Martin Jansa --- recipes/tasks/task-shr.bb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr.bb b/recipes/tasks/task-shr.bb index 607827a6c3..355b04de75 100644 --- a/recipes/tasks/task-shr.bb +++ b/recipes/tasks/task-shr.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Fat Image Feed" -PR = "r5" +PR = "r6" PV = "2.0" LICENSE = "GPL" @@ -29,12 +29,11 @@ RDEPENDS_${PN}-apps += "\ midori \ intone \ " -RDEPENDS_${PN}-apps += "\ +RDEPENDS_${PN}-cli += "\ + task-cli-tools \ + task-cli-tools-debug \ task-shr-minimal-cli \ - screen \ rsync \ - mdbus2 \ - mterm2 \ openssh-sftp-server \ " -- cgit v1.2.3 From ce7359e12ea8968be5e0c559e320624bc269cd3d Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 4 Mar 2010 15:57:28 +0100 Subject: task-shr-feed: add estardict Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 1593006a99..b7b03bc507 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r43" +PR = "r44" PV = "1.0" LICENSE = "GPL" @@ -16,6 +16,7 @@ RDEPENDS_${PN} += "\ dosbox \ enotes \ epdfview \ + estardict \ fbreader \ ffalarms \ gpe-calendar \ -- cgit v1.2.3 From 5a79ac80407d30eb70e522839252bf3b27fc59bd Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Fri, 5 Mar 2010 10:22:59 +0100 Subject: gpdf: Remove all gpdf recipes from the repository * gpdf contains an embedded copy of xpdf which has had several security issues in the past. * gpdf is not maintained for some years and the xpdf copy is not updated. * Remove the gpdf checksums and PREFERRED_VERSIONS * Remove it from tasks and such. --- recipes/tasks/task-gpe-desktopapps.bb | 5 ++--- recipes/tasks/task-gpe.bb | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-gpe-desktopapps.bb b/recipes/tasks/task-gpe-desktopapps.bb index 25c055f446..5b6f721e0a 100644 --- a/recipes/tasks/task-gpe-desktopapps.bb +++ b/recipes/tasks/task-gpe-desktopapps.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Additional desktop applications package for GPE Palmtop Environment" -PR = "r6" +PR = "r7" LICENSE = "MIT" inherit task @@ -9,6 +9,5 @@ RDEPENDS_${PN} = "\ firefox \ thunderbird \ galculator \ - gnumeric \ - gpdf" + gnumeric" diff --git a/recipes/tasks/task-gpe.bb b/recipes/tasks/task-gpe.bb index 0bf1325da0..785f0184b1 100644 --- a/recipes/tasks/task-gpe.bb +++ b/recipes/tasks/task-gpe.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Task packages for GPE Palmtop Environment" -PR = "r7" +PR = "r8" LICENSE = "MIT" inherit task @@ -120,8 +120,7 @@ RDEPENDS_gpe-task-desktopapps = "\ firefox \ thunderbird \ galculator \ - gnumeric \ - gpdf" + gnumeric" # totem" RDEPENDS_gpe-task-sectest = "\ -- cgit v1.2.3 From 8eb15be652a4f589c287ac2d469e715910a607e5 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sun, 7 Mar 2010 21:29:07 +0100 Subject: task-shr-feed: add evopedia Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index b7b03bc507..a3c9439fb7 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r44" +PR = "r45" PV = "1.0" LICENSE = "GPL" @@ -17,6 +17,7 @@ RDEPENDS_${PN} += "\ enotes \ epdfview \ estardict \ + evopedia \ fbreader \ ffalarms \ gpe-calendar \ -- cgit v1.2.3 From c7fea4b156672ecd6461632649ebc791ee145163 Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Mon, 8 Mar 2010 20:15:10 +0100 Subject: angstrom-task-gnome: add pam ck connector --- recipes/tasks/angstrom-task-gnome.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/angstrom-task-gnome.bb b/recipes/tasks/angstrom-task-gnome.bb index 574579f1ff..29b6e2c100 100644 --- a/recipes/tasks/angstrom-task-gnome.bb +++ b/recipes/tasks/angstrom-task-gnome.bb @@ -12,7 +12,7 @@ XSERVER ?= "xserver-xorg \ xf86-input-keyboard \ " -PR = "r6" +PR = "r7" PACKAGES += "task-gnome-apps task-gnome-fonts task-gnome task-gnome-gstreamer task-gnome-perl task-gnome-pulseaudio task-gnome-themes task-gnome-totem task-gnome-xserver-base task-gnome-xserver" @@ -67,7 +67,7 @@ RDEPENDS_task-gnome = " \ gnome-bluetooth \ gnome-desktop \ gnome-doc-utils \ - gnome-keyring gnome-keyring-pam-plugin libpam-meta \ + gnome-keyring gnome-keyring-pam-plugin libpam-meta pam-plugin-ck-connector \ gnome-media \ gnome-menus \ gnome-mime-data \ -- cgit v1.2.3 From 8c12755bcf76f21804897f0efe28b6f78a9face6 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Mon, 8 Mar 2010 21:38:58 +0100 Subject: task-shr: replace default browser midori with ventura Signed-off-by: Martin Jansa --- recipes/tasks/task-shr.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr.bb b/recipes/tasks/task-shr.bb index 355b04de75..dfa5c7cafb 100644 --- a/recipes/tasks/task-shr.bb +++ b/recipes/tasks/task-shr.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Fat Image Feed" -PR = "r6" +PR = "r7" PV = "2.0" LICENSE = "GPL" @@ -26,7 +26,7 @@ RDEPENDS_${PN}-apps += "\ task-shr-minimal-apps \ opimd-utils-notes \ mokonnect \ - midori \ + ventura \ intone \ " RDEPENDS_${PN}-cli += "\ -- cgit v1.2.3 From 92b9277b6327cfd4bc96a91383fa0ee2b311d5ae Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 9 Mar 2010 14:20:33 +0100 Subject: task-proper-tools: dropped e2fsprogs-fsck as it is part of util-linux-ng now --- recipes/tasks/task-proper-tools.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-proper-tools.bb b/recipes/tasks/task-proper-tools.bb index 056109ef86..e693c10cc6 100644 --- a/recipes/tasks/task-proper-tools.bb +++ b/recipes/tasks/task-proper-tools.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Full versions of tools provided by busybox" -PR = "r10" +PR = "r11" inherit task @@ -10,7 +10,6 @@ RDEPENDS_${PN} = "\ debianutils \ diffutils \ e2fsprogs \ - e2fsprogs-fsck \ fbset \ findutils \ gawk \ -- cgit v1.2.3 From 1e6d7d73f5a057b66b7749a68961006ae4d9e567 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 9 Mar 2010 14:54:55 +0100 Subject: task-slugos: adapt to e2fsprogs<>util-linux-ng changes --- recipes/tasks/task-slugos.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-slugos.bb b/recipes/tasks/task-slugos.bb index 8ed43b1983..0ebf149480 100644 --- a/recipes/tasks/task-slugos.bb +++ b/recipes/tasks/task-slugos.bb @@ -6,7 +6,7 @@ DESCRIPTION = "Task packages for the SlugOS distribution" HOMEPAGE = "http://www.nslu2-linux.org" LICENSE = "MIT" -PR = "r24" +PR = "r25" PACKAGE_ARCH = "${MACHINE_ARCH}" COMPATIBLE_MACHINE = "(nslu2|ixp4xx|sheevaplug)" ALLOW_EMPTY = "1" @@ -34,10 +34,10 @@ cpio \ # file system. SLUGOS_STANDARD_RRECOMMENDS += "\ e2fsprogs-mke2fs \ -e2fsprogs-fsck \ +util-linux-ng-fsck \ e2fsprogs-e2fsck \ e2fsprogs-badblocks \ -e2fsprogs-blkid \ +util-linux-ng-blkid \ " # Filesystem selection. Adding entries here adds the module to the -- cgit v1.2.3 From d1c51b5cd6462a6620b3dded7da6d88544ecb079 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 9 Mar 2010 15:14:33 +0100 Subject: task-mamona-base: adapt to e2fsprogs<>util-linux-ng changes --- recipes/tasks/task-mamona-base.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-mamona-base.bb b/recipes/tasks/task-mamona-base.bb index c3f867fdec..29e88ff4fa 100644 --- a/recipes/tasks/task-mamona-base.bb +++ b/recipes/tasks/task-mamona-base.bb @@ -1,6 +1,6 @@ DESCRIPTION = "task mamona base" LICENSE = "MIT" -PR = "r2" +PR = "r3" ALLOW_EMPTY = "1" PACKAGES = "${PN}" @@ -16,7 +16,6 @@ RDEPENDS = "\ dpkg \ e2fsprogs \ e2fsprogs-badblocks \ - e2fsprogs-blkid \ e2fsprogs-uuidgen \ file \ gawk \ @@ -44,5 +43,6 @@ RDEPENDS = "\ util-linux-losetup \ util-linux-swaponoff \ util-linux-umount \ + util-linux-ng-blkid \ zlib \ " -- cgit v1.2.3 From 67b7fffc1709b3347ec800bec461cc4716a7c389 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Tue, 9 Mar 2010 15:15:19 +0100 Subject: task-openprotium: adapt to e2fsprogs/util-linux-ng changes --- recipes/tasks/task-openprotium.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-openprotium.bb b/recipes/tasks/task-openprotium.bb index a8e7bd7766..4a8e1e45ad 100644 --- a/recipes/tasks/task-openprotium.bb +++ b/recipes/tasks/task-openprotium.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Basic image for openprotium" HOMEPAGE = "http://www.openprotium.org" ALLOW_EMPTY = "1" -PR = "r1" +PR = "r2" inherit task @@ -35,7 +35,7 @@ RDEPENDS = " kernel \ modutils-initscripts \ ipkg-collateral ipkg ipkg-link \ portmap \ - e2fsprogs-blkid \ + util-linux-ng-blkid \ mdadm \ hdparm \ mtd-utils \ -- cgit v1.2.3 From 09e89d01e7233ad77f1384714a69b61701313ceb Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 9 Mar 2010 21:18:24 +0100 Subject: task-shr-minimal: readd libx11-locale Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index c82e6d0aea..39763975dd 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r26" +PR = "r27" PV = "2.0" LICENSE = "GPL" @@ -111,6 +111,8 @@ RDEPENDS_${PN}-x = "\ shr-theme-gry \ xcursor-transparent-theme \ xinput-calibrator \ +# Needed for proper input support in efl based apps + libx11-locale \ # All localedata based on IMAGE_LINGUAS ${@get_rdepends(bb, d)} \ # Make sure it's available for those who want's to play with illume2 -- cgit v1.2.3 From 6be933980ea93350556e8f06c42493a9f7ce76af Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Tue, 9 Mar 2010 21:19:54 +0100 Subject: task-shr-feed: add bootchart-lite Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index a3c9439fb7..ef47ec5da0 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r45" +PR = "r46" PV = "1.0" LICENSE = "GPL" @@ -7,6 +7,7 @@ inherit task RDEPENDS_${PN} += "\ babiloo-efl \ + bootchart-lite \ claws-mail \ claws-plugin-mailmbox \ # claws-plugin-gtkhtml2-viewer \ -- cgit v1.2.3 From 931d7ef4f056db5b1317b90e62fd7eed439608d4 Mon Sep 17 00:00:00 2001 From: shr build user Date: Wed, 10 Mar 2010 17:47:34 +0100 Subject: om-gta01: fix XSERVER variable, bump PR for task-x11 Signed-off-by: Martin Jansa --- recipes/tasks/task-x11.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-x11.bb b/recipes/tasks/task-x11.bb index 1a50461352..db45ab9380 100644 --- a/recipes/tasks/task-x11.bb +++ b/recipes/tasks/task-x11.bb @@ -2,7 +2,7 @@ DESCRIPTION = "The X Window System -- install this task to get a client/server b SECTION = "x11/server" LICENSE = "MIT" PV = "1.0" -PR = "r2" +PR = "r3" # WORK IN PROGRESS -- cgit v1.2.3 From ad8685c37401640caaf2ee220c4fcc9af56c81b5 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 12 Mar 2010 08:50:38 +0100 Subject: task-shr-minimal: add pisi, because opimd doesn't support SIM contacts itself Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-minimal.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-minimal.bb b/recipes/tasks/task-shr-minimal.bb index 39763975dd..097129292e 100644 --- a/recipes/tasks/task-shr-minimal.bb +++ b/recipes/tasks/task-shr-minimal.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Lite Image Feed" -PR = "r27" +PR = "r28" PV = "2.0" LICENSE = "GPL" @@ -120,6 +120,8 @@ RDEPENDS_${PN}-x = "\ " RDEPENDS_${PN}-apps = "\ +# because of new opimd doesn't support SIM contacts itself + pisi \ fso-abyss \ task-fso2-compliance \ phoneui-apps-messages \ -- cgit v1.2.3 From ed446723c8c99885e40e57471c3fffedb3b15dbf Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Wed, 17 Mar 2010 12:57:36 +0100 Subject: task-cli-tools: add gdb to task-cli-tools-debug --- recipes/tasks/task-cli-tools.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-cli-tools.bb b/recipes/tasks/task-cli-tools.bb index 93ab1945d3..dfb79e7e98 100644 --- a/recipes/tasks/task-cli-tools.bb +++ b/recipes/tasks/task-cli-tools.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A set of command line tools useful for debugging" SECTION = "console" LICENSE = "MIT" PV = "1.0" -PR = "r12" +PR = "r13" inherit task @@ -31,6 +31,7 @@ RDEPENDS_${PN}-debug = "\ evtest \ devmem2 \ i2c-tools \ + gdb \ ltrace \ procps \ pxaregs \ -- cgit v1.2.3 From 3c3e5c5d529a9d6f90c64b63151a01e4fc6beb5d Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Wed, 17 Mar 2010 12:57:59 +0100 Subject: task-fso2-compliance: remove unnecessary dependencies --- recipes/tasks/task-fso2-compliance.bb | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-fso2-compliance.bb b/recipes/tasks/task-fso2-compliance.bb index 2d38b47c5e..3e064785d2 100644 --- a/recipes/tasks/task-fso2-compliance.bb +++ b/recipes/tasks/task-fso2-compliance.bb @@ -3,13 +3,11 @@ Install this task to make your distribution FSO 2.0-compliant." SECTION = "fso/base" LICENSE = "MIT" PV = "1.9.0" -PR = "r6" +PR = "r7" inherit task RDEPENDS_${PN} = "\ - dbus-hlid \ - \ libfsobasics \ libfsotransport \ libfsoframework \ @@ -23,11 +21,7 @@ RDEPENDS_${PN} = "\ fsonetworkd \ fsousaged \ \ -# included in fsodeviced now -# fso-alsa-data \ fso-apm \ - fso-gpsd \ -# fso-monitord \ # connman \ # connman-scripts \ # connman-plugin-bluetooth \ @@ -44,7 +38,6 @@ RDEPENDS_${PN} = "\ " RRECOMMENDS_${PN} = "\ -# fso-abyss \ wmiconfig \ tzdata \ tzdata-africa \ -- cgit v1.2.3 From d8fd10392b2c47ee5cb13125f85c5ca39e063e5a Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 17 Mar 2010 15:55:51 +0100 Subject: task-shr-feed: add neolight Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index ef47ec5da0..6e32310ac6 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r46" +PR = "r47" PV = "1.0" LICENSE = "GPL" @@ -282,6 +282,7 @@ RDEPENDS_${PN} += "\ emtooth \ podboy \ mcnavi \ + neolight \ " # this is only usefull on gta02 and on other devices it's trying to pull mesa-dri (not respecting DEFAULT_PROVIDER for virtual/libgl) -- cgit v1.2.3 From 1405e1aabefc6ea1c47c931a18dc945f5b9a4855 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 19 Mar 2010 14:56:24 +0100 Subject: task-shr-feed: add shr-theme-02 Signed-off-by: Martin Jansa --- recipes/tasks/task-shr-feed.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 6e32310ac6..0564341006 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r47" +PR = "r48" PV = "1.0" LICENSE = "GPL" @@ -49,6 +49,7 @@ RDEPENDS_${PN} += "\ # shr-config \ shr-today \ shr-theme-neo \ + shr-theme-o2 \ shr-theme-niebiee \ shr-theme-sixteen \ # gry should be in image already -- cgit v1.2.3 From 7b52a85404242ff5975177beef43e5f573d3e5bc Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 19 Mar 2010 18:53:22 +0100 Subject: tasks: remove etk/epsilon from task recipes Signed-off-by: Martin Jansa --- recipes/tasks/task-efl.bb | 4 +--- recipes/tasks/task-openmoko-feed.bb | 4 ++-- recipes/tasks/task-python-efl-examples.bb | 4 +--- recipes/tasks/task-python-efl.bb | 4 +--- recipes/tasks/task-shr-feed.bb | 6 +----- 5 files changed, 6 insertions(+), 16 deletions(-) (limited to 'recipes/tasks') diff --git a/recipes/tasks/task-efl.bb b/recipes/tasks/task-efl.bb index 20c8954754..00236a4050 100644 --- a/recipes/tasks/task-efl.bb +++ b/recipes/tasks/task-efl.bb @@ -9,13 +9,11 @@ RDEPENDS = "\ edje \ emotion \ esmart \ - epsilon \ edbus \ efreet \ ewl \ - etk \ epdf \ " -PR = "r0" +PR = "r1" ALLOW_EMPTY = "1" diff --git a/recipes/tasks/task-openmoko-feed.bb b/recipes/tasks/task-openmoko-feed.bb index 670af8eafe..9c7d8c5fd9 100644 --- a/recipes/tasks/task-openmoko-feed.bb +++ b/recipes/tasks/task-openmoko-feed.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Openmoko: Misc. Feed Items" SECTION = "openmoko/base" LICENSE = "MIT" -PR = "r61" +PR = "r62" inherit task @@ -13,7 +13,7 @@ RDEPENDS_task-openmoko-feed = "\ ppp \ bluez-hcidump \ bootchart \ - eet evas ecore embryo epsilon edje efreet emotion epdf \ + eet evas ecore embryo edje efreet emotion epdf \ exhibit edje-viewer \ free42-vga \ gpe-filemanager gpe-gallery gpe-timesheet gpe-todo gpe-contacts \ diff --git a/recipes/tasks/task-python-efl-examples.bb b/recipes/tasks/task-python-efl-examples.bb index 34efbeab6b..d882ceccc4 100644 --- a/recipes/tasks/task-python-efl-examples.bb +++ b/recipes/tasks/task-python-efl-examples.bb @@ -6,10 +6,8 @@ RDEPENDS = "\ python-ecore-examples \ python-emotion-examples \ python-edje-examples \ - python-etk-examples \ - python-epsilon-examples \ python-math python-textutils \ " -PR = "ml4" +PR = "ml4.1" ALLOW_EMPTY = "1" diff --git a/recipes/tasks/task-python-efl.bb b/recipes/tasks/task-python-efl.bb index 70c1adfebd..79d50c7a16 100644 --- a/recipes/tasks/task-python-efl.bb +++ b/recipes/tasks/task-python-efl.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Python Bindings to the Enlightenment Foundation Libraries" LICENSE = "MIT" SECTION = "devel/python" -PR = "ml4" +PR = "ml4.1" ALLOW_EMPTY = "1" @@ -11,8 +11,6 @@ RDEPENDS = "\ python-edje \ python-elementary \ python-emotion \ - python-etk \ - python-epsilon \ python-edbus \ " diff --git a/recipes/tasks/task-shr-feed.bb b/recipes/tasks/task-shr-feed.bb index 0564341006..eba0fb6492 100644 --- a/recipes/tasks/task-shr-feed.bb +++ b/recipes/tasks/task-shr-feed.bb @@ -1,5 +1,5 @@ DESCRIPTION = "SHR Feed" -PR = "r48" +PR = "r49" PV = "1.0" LICENSE = "GPL" @@ -36,13 +36,10 @@ RDEPENDS_${PN} += "\ mpd \ mplayer \ navit \ -# omview depends on deprecated (now broken) epsilon -# omview \ orrery \ python-elementary \ pythm \ python-wifi \ - omoney \ openmoko-agpsui \ openvpn \ pyphonelog \ @@ -67,7 +64,6 @@ RDEPENDS_${PN} += "\ python-pygame \ mokoko \ # exhibit \ - edje-viewer \ obexpush \ obexftp \ obex-data-server \ -- cgit v1.2.3