Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/9] Fixes and Updates
@ 2012-11-14  5:32 Saul Wold
  2012-11-14  5:32 ` [PATCH 1/9] packagegroup-self-hosted: add sftp server Saul Wold
                   ` (8 more replies)
  0 siblings, 9 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Richard,

This is a batch of changes that I have had pending in my
queue for the last couple of weeks, got around to final
testing.  

The self-hosted and builder changes are for enabling the
Build Appliance with Windows and Eclipse

The pulseaudio change should also be marked for Danny to
address a meta-guacamayo issue.

Thanks
	Sau!


The following changes since commit fa7fb44d1ca2b8a57509806bde19672c68ef157d:

  mesa-demos: fix --with-glut check (2012-11-12 22:31:41 +0000)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/updates
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/updates

Saul Wold (9):
  packagegroup-self-hosted: add sftp server
  builder: Add password for user
  less: Update to 451
  psmisc: Update to 22.20
  kconfig-frontends: Update to 3.6
  sysstat: Update to 10.1.2
  mx: Update to 1.4.7
  sqlite3: Update to 3.7.14.1
  pulse: fix Bashism in string test

 .../packagegroups/packagegroup-self-hosted.bb      |    3 ++-
 ...g-frontends_3.5.bb => kconfig-frontends_3.6.bb} |    9 +++++----
 .../less/{less_444.bb => less_451.bb}              |    8 ++++----
 .../psmisc/{psmisc_22.19.bb => psmisc_22.20.bb}    |    4 ++--
 .../{sysstat_10.1.1.bb => sysstat_10.1.2.bb}       |    5 +++--
 meta/recipes-graphics/builder/builder_0.1.bb       |    5 +++--
 .../mx/{mx_1.4.6.bb => mx_1.4.7.bb}                |   13 ++++++-------
 meta/recipes-multimedia/pulseaudio/pulseaudio.inc  |    2 +-
 .../pulseaudio/pulseaudio_2.1.bb                   |    2 +-
 .../{sqlite3_3.7.13.bb => sqlite3_3.7.14.1.bb}     |    5 +----
 10 files changed, 28 insertions(+), 28 deletions(-)
 rename meta/recipes-devtools/kconfig-frontends/{kconfig-frontends_3.5.bb => kconfig-frontends_3.6.bb} (88%)
 rename meta/recipes-extended/less/{less_444.bb => less_451.bb} (82%)
 rename meta/recipes-extended/psmisc/{psmisc_22.19.bb => psmisc_22.20.bb} (46%)
 rename meta/recipes-extended/sysstat/{sysstat_10.1.1.bb => sysstat_10.1.2.bb} (44%)
 rename meta/recipes-graphics/mx/{mx_1.4.6.bb => mx_1.4.7.bb} (66%)
 rename meta/recipes-support/sqlite/{sqlite3_3.7.13.bb => sqlite3_3.7.14.1.bb} (58%)

-- 
1.7.7.6




^ permalink raw reply	[flat|nested] 19+ messages in thread

* [PATCH 1/9] packagegroup-self-hosted: add sftp server
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14  5:32 ` [PATCH 2/9] builder: Add password for user Saul Wold
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Which is needed for integration with Eclispe plugin

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../packagegroups/packagegroup-self-hosted.bb      |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
index 19f5a16..6dcc44a 100644
--- a/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-self-hosted.bb
@@ -4,7 +4,7 @@
 
 SUMMARY = "Self-hosting"
 DESCRIPTION = "Packages required to run the build system"
-PR = "r12"
+PR = "r13"
 LICENSE = "MIT"
 
 inherit packagegroup
@@ -131,6 +131,7 @@ RDEPENDS_packagegroup-self-hosted-extended = "\
     nfs-utils \
     nfs-utils-client \
     openssl \
+    openssh-sftp-server \
     opkg \
     opkg-utils \
     patch \
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 2/9] builder: Add password for user
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
  2012-11-14  5:32 ` [PATCH 1/9] packagegroup-self-hosted: add sftp server Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14 11:21   ` Otavio Salvador
  2012-11-14 14:09   ` Mark Hatle
  2012-11-14  5:32 ` [PATCH 3/9] less: Update to 451 Saul Wold
                   ` (6 subsequent siblings)
  8 siblings, 2 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

This is needed to allow openssh to work correctly for the Eclipse
plugin to have access to the build appliance to view/modify recipes
and lauch builds

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-graphics/builder/builder_0.1.bb |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-graphics/builder/builder_0.1.bb b/meta/recipes-graphics/builder/builder_0.1.bb
index 5c12c14..7ac531c 100644
--- a/meta/recipes-graphics/builder/builder_0.1.bb
+++ b/meta/recipes-graphics/builder/builder_0.1.bb
@@ -1,7 +1,7 @@
 SUMMARY = "New user to do specific job"
 DESCRIPTION = "This recipe create a new user named ${PN}, who is used for specific jobs like building. The task can be auto started via mini X"
 SECTION = "x11"
-PR = "r4"
+PR = "r5"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://builder_hob_start.sh;endline=5;md5=84796c3c41785d86100fdabcbdade00e"
 
@@ -18,7 +18,8 @@ inherit useradd
 USERADD_PACKAGES = "${PN}"
 USERADD_PARAM_${PN} = "--system --create-home \
                        --groups video,tty,audio \
-                       --user-group ${PN}"
+                       --user-group ${PN} \
+                       --password .gLibiNXn0P12"
 
 do_install () {
 	install -d -m 755 ${D}${sysconfdir}/mini_x/session.d
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 3/9] less: Update to 451
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
  2012-11-14  5:32 ` [PATCH 1/9] packagegroup-self-hosted: add sftp server Saul Wold
  2012-11-14  5:32 ` [PATCH 2/9] builder: Add password for user Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14 11:26   ` Otavio Salvador
  2012-11-14  5:32 ` [PATCH 4/9] psmisc: Update to 22.20 Saul Wold
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

LICENSE file was changed to match the BSD-2 Clause

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../less/{less_444.bb => less_451.bb}              |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
 rename meta/recipes-extended/less/{less_444.bb => less_451.bb} (82%)

diff --git a/meta/recipes-extended/less/less_444.bb b/meta/recipes-extended/less/less_451.bb
similarity index 82%
rename from meta/recipes-extended/less/less_444.bb
rename to meta/recipes-extended/less/less_451.bb
index 1ce9d92..93e4bbf 100644
--- a/meta/recipes-extended/less/less_444.bb
+++ b/meta/recipes-extended/less/less_451.bb
@@ -21,14 +21,14 @@ SECTION = "console/utils"
 
 LICENSE = "GPLv3+ | BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
-                    file://LICENSE;md5=1237c0f825bb36122b0b2b486ffbe6be"
+                    file://LICENSE;md5=866cc220f330b04ae4661fc3cdfedea7"
 DEPENDS = "ncurses"
-PR = "r3"
+PR = "r0"
 
 SRC_URI = "http://www.greenwoodsoftware.com/${BPN}/${BPN}-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "56f9f76ffe13f70155f47f6b3c87d421"
-SRC_URI[sha256sum] = "be64ad3e22d6d4aa19fe7024d998563a1ce1671ee3625f8851d26b16dedcdeeb"
+SRC_URI[md5sum] = "765f082658002b2b46b86af4a0da1842"
+SRC_URI[sha256sum] = "9fe8287c647afeafb4149c5dedaeacfd20971ed7c26c7553794bb750536b5f57"
 
 inherit autotools update-alternatives
 
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 4/9] psmisc: Update to 22.20
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
                   ` (2 preceding siblings ...)
  2012-11-14  5:32 ` [PATCH 3/9] less: Update to 451 Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14  5:32 ` [PATCH 5/9] kconfig-frontends: Update to 3.6 Saul Wold
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../psmisc/{psmisc_22.19.bb => psmisc_22.20.bb}    |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/psmisc/{psmisc_22.19.bb => psmisc_22.20.bb} (46%)

diff --git a/meta/recipes-extended/psmisc/psmisc_22.19.bb b/meta/recipes-extended/psmisc/psmisc_22.20.bb
similarity index 46%
rename from meta/recipes-extended/psmisc/psmisc_22.19.bb
rename to meta/recipes-extended/psmisc/psmisc_22.20.bb
index 7c34de9..f0ee79c 100644
--- a/meta/recipes-extended/psmisc/psmisc_22.19.bb
+++ b/meta/recipes-extended/psmisc/psmisc_22.20.bb
@@ -3,5 +3,5 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
 PR = "r0"
 
-SRC_URI[md5sum] = "38563b4760ffce54b0eadf99cb5b16e8"
-SRC_URI[sha256sum] = "e112ccadd4694c98f5ea4a02cd6944fdc5a2a1985f20e2b3f74f4dbca83a2a31"
+SRC_URI[md5sum] = "a25fc99a6dc7fa7ae6e4549be80b401f"
+SRC_URI[sha256sum] = "b17224e2385f6a799ffebba27eb7870771d42555e86814ef56b6d7e955765514"
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 5/9] kconfig-frontends: Update to 3.6
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
                   ` (3 preceding siblings ...)
  2012-11-14  5:32 ` [PATCH 4/9] psmisc: Update to 22.20 Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14  5:32 ` [PATCH 6/9] sysstat: Update to 10.1.2 Saul Wold
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 ...g-frontends_3.5.bb => kconfig-frontends_3.6.bb} |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)
 rename meta/recipes-devtools/kconfig-frontends/{kconfig-frontends_3.5.bb => kconfig-frontends_3.6.bb} (88%)

diff --git a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb
similarity index 88%
rename from meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb
rename to meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb
index 96899b8..d1fdc0e 100644
--- a/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.5.bb
+++ b/meta/recipes-devtools/kconfig-frontends/kconfig-frontends_3.6.bb
@@ -11,12 +11,13 @@ LICENSE = "GPL-2.0"
 LIC_FILES_CHKSUM = "file://COPYING;md5=9b8cf60ff39767ff04b671fca8302408"
 SECTION = "devel"
 DEPENDS += "ncurses flex bison gperf"
-PR = "r1"
-PV = "3.5.0"
+PR = "r0"
+PV = "3.6.0"
 SPIN = "0"
 SRC_URI = "http://ymorin.is-a-geek.org/download/${BPN}/${BPN}-${PV}-${SPIN}.tar.xz"
-SRC_URI[md5sum] = "0e476b35f321234e0c2bea953461b46f"
-SRC_URI[sha256sum] = "567a556db5dc5f5c63e9d9fc9a45918ce870e3423407715a495e11b67e70b2f2"
+
+SRC_URI[md5sum] = "91ca87abb3c99c3fd40a7babb05ec507"
+SRC_URI[sha256sum] = "3084989a9b146688f318b5524dfb7ab3ba47c9cef355d1aebaa520befdb48da0"
 
 S = "${WORKDIR}/${BPN}-${PV}-${SPIN}"
 
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 6/9] sysstat: Update to 10.1.2
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
                   ` (4 preceding siblings ...)
  2012-11-14  5:32 ` [PATCH 5/9] kconfig-frontends: Update to 3.6 Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14 11:24   ` Otavio Salvador
  2012-11-14  5:32 ` [PATCH 7/9] mx: Update to 1.4.7 Saul Wold
                   ` (2 subsequent siblings)
  8 siblings, 1 reply; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../{sysstat_10.1.1.bb => sysstat_10.1.2.bb}       |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/sysstat/{sysstat_10.1.1.bb => sysstat_10.1.2.bb} (44%)

diff --git a/meta/recipes-extended/sysstat/sysstat_10.1.1.bb b/meta/recipes-extended/sysstat/sysstat_10.1.2.bb
similarity index 44%
rename from meta/recipes-extended/sysstat/sysstat_10.1.1.bb
rename to meta/recipes-extended/sysstat/sysstat_10.1.2.bb
index 54b0226..6cd90a2 100644
--- a/meta/recipes-extended/sysstat/sysstat_10.1.1.bb
+++ b/meta/recipes-extended/sysstat/sysstat_10.1.2.bb
@@ -4,5 +4,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
 
 PR = "${INC_PR}.0"
 
-SRC_URI[md5sum] = "8250cdcbc4a959c8a05e4186fbd13d84"
-SRC_URI[sha256sum] = "119c7a23c5597d6d0df0b229c54984a35f357ecbd1c96da8cef4d105e8dfdacf"
+SRC_URI[md5sum] = "c40626b96cc2b4cf303cbcf1efc96eba"
+SRC_URI[sha256sum] = "c68bc2b4b436812f45e6d440a3ac106fa2a77c5cfc9d4ba7d4e7f9ded7bffab4"
+
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 7/9] mx: Update to 1.4.7
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
                   ` (5 preceding siblings ...)
  2012-11-14  5:32 ` [PATCH 6/9] sysstat: Update to 10.1.2 Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14  5:32 ` [PATCH 8/9] sqlite3: Update to 3.7.14.1 Saul Wold
  2012-11-14  5:32 ` [PATCH 9/9] pulse: fix Bashism in string test Saul Wold
  8 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Source moved to GitHub

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../mx/{mx_1.4.6.bb => mx_1.4.7.bb}                |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)
 rename meta/recipes-graphics/mx/{mx_1.4.6.bb => mx_1.4.7.bb} (66%)

diff --git a/meta/recipes-graphics/mx/mx_1.4.6.bb b/meta/recipes-graphics/mx/mx_1.4.7.bb
similarity index 66%
rename from meta/recipes-graphics/mx/mx_1.4.6.bb
rename to meta/recipes-graphics/mx/mx_1.4.7.bb
index 81bc5b9..fd9189b 100644
--- a/meta/recipes-graphics/mx/mx_1.4.6.bb
+++ b/meta/recipes-graphics/mx/mx_1.4.7.bb
@@ -1,19 +1,18 @@
 DESCRIPTION = "Clutter based widget library"
 LICENSE = "LGPLv2.1"
 
+LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
+                    file://mx/mx-widget.c;beginline=8;endline=20;md5=13bba3c973a72414a701e1e87b5ee879"
+
 PR = "r0"
 
 DEPENDS = "clutter-1.8 dbus-glib libxrandr gdk-pixbuf startup-notification"
 
 inherit autotools gettext
 
-SRC_URI = "http://source.clutter-project.org/sources/mx/1.4/mx-${PV}.tar.bz2"
+SRC_URI = "https://github.com/downloads/clutter-project/${BPN}/${BP}.tar.xz"
 
-SRC_URI[md5sum] = "c7192ca7c43bb1a39adc2fafdc012f49"
-SRC_URI[sha256sum] = "a3c7ffaf29b282144c982757b450d145cd85867183dfafef4750a00a0d406672"
-
-LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=fbc093901857fcd118f065f900982c24 \
-                    file://mx/mx-widget.c;beginline=8;endline=20;md5=13bba3c973a72414a701e1e87b5ee879"
+SRC_URI[md5sum] = "19b1e4918a5ae6d014fc0dab2bb3d0a1"
+SRC_URI[sha256sum] = "1d2930d196717cacbee0ee101cf21d289b8200b5e938823d852b3b4a2f4a0e9d"
 
 EXTRA_OECONF = "--disable-introspection --disable-gtk-widgets --with-dbus"
-
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 8/9] sqlite3: Update to 3.7.14.1
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
                   ` (6 preceding siblings ...)
  2012-11-14  5:32 ` [PATCH 7/9] mx: Update to 1.4.7 Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  2012-11-14  8:30   ` Martin Jansa
  2012-11-14  5:32 ` [PATCH 9/9] pulse: fix Bashism in string test Saul Wold
  8 siblings, 1 reply; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

[YOCTO #3283]

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../{sqlite3_3.7.13.bb => sqlite3_3.7.14.1.bb}     |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)
 rename meta/recipes-support/sqlite/{sqlite3_3.7.13.bb => sqlite3_3.7.14.1.bb} (58%)

diff --git a/meta/recipes-support/sqlite/sqlite3_3.7.13.bb b/meta/recipes-support/sqlite/sqlite3_3.7.14.1.bb
similarity index 58%
rename from meta/recipes-support/sqlite/sqlite3_3.7.13.bb
rename to meta/recipes-support/sqlite/sqlite3_3.7.14.1.bb
index 48b50ac..00a3081 100644
--- a/meta/recipes-support/sqlite/sqlite3_3.7.13.bb
+++ b/meta/recipes-support/sqlite/sqlite3_3.7.14.1.bb
@@ -2,10 +2,7 @@ require sqlite3.inc
 
 LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0"
 
-PR = "r1"
+PR = "r0"
 
 SRC_URI = "http://www.sqlite.org/sqlite-autoconf-3071300.tar.gz"
 S = "${WORKDIR}/sqlite-autoconf-3071300"
-
-SRC_URI[md5sum] = "c97df403e8a3d5b67bb408fcd6aabd8e"
-SRC_URI[sha256sum] = "ac566819f82ec4cc2ff6c5cc90987ca38e589efbd79ff263838bbc62356ab119"
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* [PATCH 9/9] pulse: fix Bashism in string test
  2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
                   ` (7 preceding siblings ...)
  2012-11-14  5:32 ` [PATCH 8/9] sqlite3: Update to 3.7.14.1 Saul Wold
@ 2012-11-14  5:32 ` Saul Wold
  8 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14  5:32 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-multimedia/pulseaudio/pulseaudio.inc  |    2 +-
 .../pulseaudio/pulseaudio_2.1.bb                   |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
index 1708db7..cf4c83b 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio.inc
@@ -53,7 +53,7 @@ do_install_append() {
 	install -d ${D}${sysconfdir}/default/volatiles
 	install -m 0644 ${WORKDIR}/volatiles.04_pulse  ${D}${sysconfdir}/default/volatiles/volatiles.04_pulse
 	
-	if [ "x${TARGET_PFPU}" == "xsoft" ] ; then 
+	if [ "x${TARGET_PFPU}" = "xsoft" ] ; then 
 	     sed -i -e s:\;\ resample-method\ =\ sinc-fastest:resample-method\ =\ trivial: ${D}${sysconfdir}/pulse/daemon.conf
 	fi
 }
diff --git a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
index 546a80f..2468495 100644
--- a/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
+++ b/meta/recipes-multimedia/pulseaudio/pulseaudio_2.1.bb
@@ -1,6 +1,6 @@
 require pulseaudio.inc
 
-PR = "r11"
+PR = "r12"
 
 DEPENDS += "libjson gdbm speex libxml-parser-perl-native"
 
-- 
1.7.7.6




^ permalink raw reply related	[flat|nested] 19+ messages in thread

* Re: [PATCH 8/9] sqlite3: Update to 3.7.14.1
  2012-11-14  5:32 ` [PATCH 8/9] sqlite3: Update to 3.7.14.1 Saul Wold
@ 2012-11-14  8:30   ` Martin Jansa
  0 siblings, 0 replies; 19+ messages in thread
From: Martin Jansa @ 2012-11-14  8:30 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1304 bytes --]

On Tue, Nov 13, 2012 at 09:32:50PM -0800, Saul Wold wrote:
> [YOCTO #3283]
> 
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  .../{sqlite3_3.7.13.bb => sqlite3_3.7.14.1.bb}     |    5 +----
>  1 files changed, 1 insertions(+), 4 deletions(-)
>  rename meta/recipes-support/sqlite/{sqlite3_3.7.13.bb => sqlite3_3.7.14.1.bb} (58%)
> 
> diff --git a/meta/recipes-support/sqlite/sqlite3_3.7.13.bb b/meta/recipes-support/sqlite/sqlite3_3.7.14.1.bb
> similarity index 58%
> rename from meta/recipes-support/sqlite/sqlite3_3.7.13.bb
> rename to meta/recipes-support/sqlite/sqlite3_3.7.14.1.bb
> index 48b50ac..00a3081 100644
> --- a/meta/recipes-support/sqlite/sqlite3_3.7.13.bb
> +++ b/meta/recipes-support/sqlite/sqlite3_3.7.14.1.bb
> @@ -2,10 +2,7 @@ require sqlite3.inc
>  
>  LIC_FILES_CHKSUM = "file://sqlite3.h;endline=11;md5=65f0a57ca6928710b418c094b3570bb0"
>  
> -PR = "r1"
> +PR = "r0"
>  
>  SRC_URI = "http://www.sqlite.org/sqlite-autoconf-3071300.tar.gz"
>  S = "${WORKDIR}/sqlite-autoconf-3071300"
> -
> -SRC_URI[md5sum] = "c97df403e8a3d5b67bb408fcd6aabd8e"
> -SRC_URI[sha256sum] = "ac566819f82ec4cc2ff6c5cc90987ca38e589efbd79ff263838bbc62356ab119"

Where is checksum for 3.7.14.1?

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 2/9] builder: Add password for user
  2012-11-14  5:32 ` [PATCH 2/9] builder: Add password for user Saul Wold
@ 2012-11-14 11:21   ` Otavio Salvador
  2012-11-14 14:09   ` Mark Hatle
  1 sibling, 0 replies; 19+ messages in thread
From: Otavio Salvador @ 2012-11-14 11:21 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 674 bytes --]

On Wed, Nov 14, 2012 at 3:32 AM, Saul Wold <sgw@linux.intel.com> wrote:

> This is needed to allow openssh to work correctly for the Eclipse
> plugin to have access to the build appliance to view/modify recipes
> and lauch builds
>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
>

I'd like to be able to override the password used; another point is the
commit log ought to document what the default password and the recipe ought
to have it documented as well.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[-- Attachment #2: Type: text/html, Size: 1203 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 6/9] sysstat: Update to 10.1.2
  2012-11-14  5:32 ` [PATCH 6/9] sysstat: Update to 10.1.2 Saul Wold
@ 2012-11-14 11:24   ` Otavio Salvador
  0 siblings, 0 replies; 19+ messages in thread
From: Otavio Salvador @ 2012-11-14 11:24 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 1431 bytes --]

On Wed, Nov 14, 2012 at 3:32 AM, Saul Wold <sgw@linux.intel.com> wrote:

> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  .../{sysstat_10.1.1.bb => sysstat_10.1.2.bb}       |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
>  rename meta/recipes-extended/sysstat/{sysstat_10.1.1.bb =>
> sysstat_10.1.2.bb} (44%)
>
> diff --git a/meta/recipes-extended/sysstat/sysstat_10.1.1.bbb/meta/recipes-extended/sysstat/
> sysstat_10.1.2.bb
> similarity index 44%
> rename from meta/recipes-extended/sysstat/sysstat_10.1.1.bb
> rename to meta/recipes-extended/sysstat/sysstat_10.1.2.bb
> index 54b0226..6cd90a2 100644
> --- a/meta/recipes-extended/sysstat/sysstat_10.1.1.bb
> +++ b/meta/recipes-extended/sysstat/sysstat_10.1.2.bb
> @@ -4,5 +4,6 @@ LIC_FILES_CHKSUM =
> "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b"
>
>  PR = "${INC_PR}.0"
>
> -SRC_URI[md5sum] = "8250cdcbc4a959c8a05e4186fbd13d84"
> -SRC_URI[sha256sum] =
> "119c7a23c5597d6d0df0b229c54984a35f357ecbd1c96da8cef4d105e8dfdacf"
> +SRC_URI[md5sum] = "c40626b96cc2b4cf303cbcf1efc96eba"
> +SRC_URI[sha256sum] =
> "c68bc2b4b436812f45e6d440a3ac106fa2a77c5cfc9d4ba7d4e7f9ded7bffab4"
> +
>

Please drop the extra empty line.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[-- Attachment #2: Type: text/html, Size: 2595 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 3/9] less: Update to 451
  2012-11-14  5:32 ` [PATCH 3/9] less: Update to 451 Saul Wold
@ 2012-11-14 11:26   ` Otavio Salvador
  2012-11-14 11:33     ` Paul Eggleton
  0 siblings, 1 reply; 19+ messages in thread
From: Otavio Salvador @ 2012-11-14 11:26 UTC (permalink / raw)
  To: Saul Wold; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 2030 bytes --]

On Wed, Nov 14, 2012 at 3:32 AM, Saul Wold <sgw@linux.intel.com> wrote:

> LICENSE file was changed to match the BSD-2 Clause
>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>  .../less/{less_444.bb => less_451.bb}              |    8 ++++----
>  1 files changed, 4 insertions(+), 4 deletions(-)
>  rename meta/recipes-extended/less/{less_444.bb => less_451.bb} (82%)
>
> diff --git a/meta/recipes-extended/less/less_444.bbb/meta/recipes-extended/less/
> less_451.bb
> similarity index 82%
> rename from meta/recipes-extended/less/less_444.bb
> rename to meta/recipes-extended/less/less_451.bb
> index 1ce9d92..93e4bbf 100644
> --- a/meta/recipes-extended/less/less_444.bb
> +++ b/meta/recipes-extended/less/less_451.bb
> @@ -21,14 +21,14 @@ SECTION = "console/utils"
>
>  LICENSE = "GPLv3+ | BSD-2-Clause"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> -                    file://LICENSE;md5=1237c0f825bb36122b0b2b486ffbe6be"
> +                    file://LICENSE;md5=866cc220f330b04ae4661fc3cdfedea7"
>  DEPENDS = "ncurses"
> -PR = "r3"
> +PR = "r0"
>

Please drop PR as r0 is the default.


>  SRC_URI = "http://www.greenwoodsoftware.com/${BPN}/${BPN}-${PV}.tar.gz"
>
> -SRC_URI[md5sum] = "56f9f76ffe13f70155f47f6b3c87d421"
> -SRC_URI[sha256sum] =
> "be64ad3e22d6d4aa19fe7024d998563a1ce1671ee3625f8851d26b16dedcdeeb"
> +SRC_URI[md5sum] = "765f082658002b2b46b86af4a0da1842"
> +SRC_URI[sha256sum] =
> "9fe8287c647afeafb4149c5dedaeacfd20971ed7c26c7553794bb750536b5f57"
>
>  inherit autotools update-alternatives
>
> --
> 1.7.7.6
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>



-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[-- Attachment #2: Type: text/html, Size: 3686 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 3/9] less: Update to 451
  2012-11-14 11:26   ` Otavio Salvador
@ 2012-11-14 11:33     ` Paul Eggleton
  2012-11-14 11:36       ` Otavio Salvador
  0 siblings, 1 reply; 19+ messages in thread
From: Paul Eggleton @ 2012-11-14 11:33 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: openembedded-core

On Wednesday 14 November 2012 09:26:53 Otavio Salvador wrote:
> > -PR = "r3"
> > +PR = "r0"
> 
> Please drop PR as r0 is the default.

We don't do that in OE-Core.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre



^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 3/9] less: Update to 451
  2012-11-14 11:33     ` Paul Eggleton
@ 2012-11-14 11:36       ` Otavio Salvador
  2012-11-14 14:54         ` Richard Purdie
  0 siblings, 1 reply; 19+ messages in thread
From: Otavio Salvador @ 2012-11-14 11:36 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 565 bytes --]

On Wed, Nov 14, 2012 at 9:33 AM, Paul Eggleton <
paul.eggleton@linux.intel.com> wrote:

> On Wednesday 14 November 2012 09:26:53 Otavio Salvador wrote:
> > > -PR = "r3"
> > > +PR = "r0"
> >
> > Please drop PR as r0 is the default.
>
> We don't do that in OE-Core.
>

Well, as far as I remember I always drop the PR when it is going to be r0.

But OK.

-- 
Otavio Salvador                             O.S. Systems
E-mail: otavio@ossystems.com.br  http://www.ossystems.com.br
Mobile: +55 53 9981-7854              http://projetos.ossystems.com.br

[-- Attachment #2: Type: text/html, Size: 1143 bytes --]

^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 2/9] builder: Add password for user
  2012-11-14  5:32 ` [PATCH 2/9] builder: Add password for user Saul Wold
  2012-11-14 11:21   ` Otavio Salvador
@ 2012-11-14 14:09   ` Mark Hatle
  2012-11-14 16:05     ` Saul Wold
  1 sibling, 1 reply; 19+ messages in thread
From: Mark Hatle @ 2012-11-14 14:09 UTC (permalink / raw)
  To: openembedded-core

On 11/13/12 11:32 PM, Saul Wold wrote:
> This is needed to allow openssh to work correctly for the Eclipse
> plugin to have access to the build appliance to view/modify recipes
> and lauch builds
>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>   meta/recipes-graphics/builder/builder_0.1.bb |    5 +++--
>   1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-graphics/builder/builder_0.1.bb b/meta/recipes-graphics/builder/builder_0.1.bb
> index 5c12c14..7ac531c 100644
> --- a/meta/recipes-graphics/builder/builder_0.1.bb
> +++ b/meta/recipes-graphics/builder/builder_0.1.bb
> @@ -1,7 +1,7 @@
>   SUMMARY = "New user to do specific job"
>   DESCRIPTION = "This recipe create a new user named ${PN}, who is used for specific jobs like building. The task can be auto started via mini X"
>   SECTION = "x11"
> -PR = "r4"
> +PR = "r5"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://builder_hob_start.sh;endline=5;md5=84796c3c41785d86100fdabcbdade00e"
>
> @@ -18,7 +18,8 @@ inherit useradd
>   USERADD_PACKAGES = "${PN}"
>   USERADD_PARAM_${PN} = "--system --create-home \
>                          --groups video,tty,audio \
> -                       --user-group ${PN}"
> +                       --user-group ${PN} \
> +                       --password .gLibiNXn0P12"

This should work, but can you add a comment that indicates the plain-text for 
the password?

--Mark

>   do_install () {
>   	install -d -m 755 ${D}${sysconfdir}/mini_x/session.d
>




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 3/9] less: Update to 451
  2012-11-14 11:36       ` Otavio Salvador
@ 2012-11-14 14:54         ` Richard Purdie
  0 siblings, 0 replies; 19+ messages in thread
From: Richard Purdie @ 2012-11-14 14:54 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: Paul Eggleton, openembedded-core

On Wed, 2012-11-14 at 09:36 -0200, Otavio Salvador wrote:
> On Wed, Nov 14, 2012 at 9:33 AM, Paul Eggleton
> <paul.eggleton@linux.intel.com> wrote:
>         On Wednesday 14 November 2012 09:26:53 Otavio Salvador wrote:
>         > > -PR = "r3"
>         > > +PR = "r0"
>         >
>         > Please drop PR as r0 is the default.
>
>         We don't do that in OE-Core.
>
> Well, as far as I remember I always drop the PR when it is going to be
> r0.
>
> But OK.

We've taken patches doing either, I find it hard to get worked up about
this either way.

I am totally fed up with the PR nonsense in general though and want the
PR service sorted out ASAP.

Cheers,

Richard




^ permalink raw reply	[flat|nested] 19+ messages in thread

* Re: [PATCH 2/9] builder: Add password for user
  2012-11-14 14:09   ` Mark Hatle
@ 2012-11-14 16:05     ` Saul Wold
  0 siblings, 0 replies; 19+ messages in thread
From: Saul Wold @ 2012-11-14 16:05 UTC (permalink / raw)
  To: openembedded-core

On 11/14/2012 06:09 AM, Mark Hatle wrote:
> On 11/13/12 11:32 PM, Saul Wold wrote:
>> This is needed to allow openssh to work correctly for the Eclipse
>> plugin to have access to the build appliance to view/modify recipes
>> and lauch builds
>>
>> Signed-off-by: Saul Wold <sgw@linux.intel.com>
>> ---
>>   meta/recipes-graphics/builder/builder_0.1.bb |    5 +++--
>>   1 files changed, 3 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-graphics/builder/builder_0.1.bb
>> b/meta/recipes-graphics/builder/builder_0.1.bb
>> index 5c12c14..7ac531c 100644
>> --- a/meta/recipes-graphics/builder/builder_0.1.bb
>> +++ b/meta/recipes-graphics/builder/builder_0.1.bb
>> @@ -1,7 +1,7 @@
>>   SUMMARY = "New user to do specific job"
>>   DESCRIPTION = "This recipe create a new user named ${PN}, who is
>> used for specific jobs like building. The task can be auto started via
>> mini X"
>>   SECTION = "x11"
>> -PR = "r4"
>> +PR = "r5"
>>   LICENSE = "MIT"
>>   LIC_FILES_CHKSUM =
>> "file://builder_hob_start.sh;endline=5;md5=84796c3c41785d86100fdabcbdade00e"
>>
>>
>> @@ -18,7 +18,8 @@ inherit useradd
>>   USERADD_PACKAGES = "${PN}"
>>   USERADD_PARAM_${PN} = "--system --create-home \
>>                          --groups video,tty,audio \
>> -                       --user-group ${PN}"
>> +                       --user-group ${PN} \
>> +                       --password .gLibiNXn0P12"
>
> This should work, but can you add a comment that indicates the
> plain-text for the password?
>
Ahh, that would take all the fun out!

v2 coming with Otavio's suggestion also!

Sau!

> --Mark
>
>>   do_install () {
>>       install -d -m 755 ${D}${sysconfdir}/mini_x/session.d
>>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
>



^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2012-11-14 16:19 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-14  5:32 [PATCH 0/9] Fixes and Updates Saul Wold
2012-11-14  5:32 ` [PATCH 1/9] packagegroup-self-hosted: add sftp server Saul Wold
2012-11-14  5:32 ` [PATCH 2/9] builder: Add password for user Saul Wold
2012-11-14 11:21   ` Otavio Salvador
2012-11-14 14:09   ` Mark Hatle
2012-11-14 16:05     ` Saul Wold
2012-11-14  5:32 ` [PATCH 3/9] less: Update to 451 Saul Wold
2012-11-14 11:26   ` Otavio Salvador
2012-11-14 11:33     ` Paul Eggleton
2012-11-14 11:36       ` Otavio Salvador
2012-11-14 14:54         ` Richard Purdie
2012-11-14  5:32 ` [PATCH 4/9] psmisc: Update to 22.20 Saul Wold
2012-11-14  5:32 ` [PATCH 5/9] kconfig-frontends: Update to 3.6 Saul Wold
2012-11-14  5:32 ` [PATCH 6/9] sysstat: Update to 10.1.2 Saul Wold
2012-11-14 11:24   ` Otavio Salvador
2012-11-14  5:32 ` [PATCH 7/9] mx: Update to 1.4.7 Saul Wold
2012-11-14  5:32 ` [PATCH 8/9] sqlite3: Update to 3.7.14.1 Saul Wold
2012-11-14  8:30   ` Martin Jansa
2012-11-14  5:32 ` [PATCH 9/9] pulse: fix Bashism in string test Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox