[oe] [meta-oe][PATCH] Install a systemd unit into ${systemd_unitdir} only with systemd in DISTRO_FEATURES

2013-07-05 Thread Chunrong Guo
Signed-off-by: Chunrong Guo b40...@freescale.com
---
 meta-oe/recipes-devtools/cloud9/cloud9_0.6.bb |8 +---
 meta-oe/recipes-extended/zram/zram_0.1.bb |8 +---
 meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb   |   10 ++
 3 files changed, 16 insertions(+), 10 deletions(-)

diff --git a/meta-oe/recipes-devtools/cloud9/cloud9_0.6.bb 
b/meta-oe/recipes-devtools/cloud9/cloud9_0.6.bb
index 3300fd2..45498a8 100644
--- a/meta-oe/recipes-devtools/cloud9/cloud9_0.6.bb
+++ b/meta-oe/recipes-devtools/cloud9/cloud9_0.6.bb
@@ -3,7 +3,7 @@ HOMEPAGE = http://c9.io;
 LICENSE = GPLv3
 LIC_FILES_CHKSUM = file://LICENSE;md5=4784c3bcff601fd8f9515f52a11e7018
 
-PR = r4
+PR = r5
 
 # Nodejs-native for node-waf, nodejs4-native for the headers
 DEPENDS = libxml2 nodejs-native nodejs4-native
@@ -101,8 +101,10 @@ do_install () {
  install -m 0755 -d ${D}${sysconfdir}/avahi/services/
  install -m 0644 ${WORKDIR}/cloud9-avahi.service 
${D}${sysconfdir}/avahi/services/
  
- install -d ${D}${systemd_unitdir}/system
- install -m 0644 ${WORKDIR}/cloud9.service ${D}${systemd_unitdir}/system
+ if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+ install -d ${D}${systemd_unitdir}/system
+ install -m 0644 ${WORKDIR}/cloud9.service 
${D}${systemd_unitdir}/system
+ fi
 }
 
 FILES_${PN}-dbg += 
${datadir}/cloud9/support/jsdav/support/node-o3-xml-v4/lib/o3-xml/.debug \
diff --git a/meta-oe/recipes-extended/zram/zram_0.1.bb 
b/meta-oe/recipes-extended/zram/zram_0.1.bb
index fbeb586..b871bc7 100644
--- a/meta-oe/recipes-extended/zram/zram_0.1.bb
+++ b/meta-oe/recipes-extended/zram/zram_0.1.bb
@@ -6,7 +6,7 @@ inherit allarch update-rc.d systemd
 
 RDEPENDS_${PN} = util-linux-swaponoff kmod kernel-module-zram
 
-PR = r3
+PR = r4
 
 SRC_URI =  \
file://init \
@@ -18,8 +18,10 @@ do_install () {
 install -d ${D}${sysconfdir}/init.d
 install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/zram
 
-install -d ${D}${systemd_unitdir}/system
-install -m 0644 ${WORKDIR}/zram.service ${D}${systemd_unitdir}/system
+if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+install -d ${D}${systemd_unitdir}/system
+install -m 0644 ${WORKDIR}/zram.service ${D}${systemd_unitdir}/system
+fi
 }
 
 FILES_${PN} = ${sysconfdir}/init.d
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb 
b/meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb
index b0d5a79..3e7844d 100644
--- a/meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb
+++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.7.bb
@@ -7,7 +7,7 @@ PROVIDES = virtual/gpsd
 
 EXTRANATIVEPATH += chrpath-native
 
-PR = r7
+PR = r8
 
 SRC_URI = http://download.savannah.gnu.org/releases/${PN}/${P}.tar.gz \
 file://0002-SConstruct-respect-sysroot-also-in-SPLINTOPTS.patch \
@@ -82,9 +82,11 @@ do_install_append() {
 install -m 755 ${S}/gps/*.py ${D}/${PYTHON_SITEPACKAGES_DIR}/gps
 
 #support for systemd
-install -d ${D}${systemd_unitdir}/system/
-install -m 0644 ${WORKDIR}/${PN}.service 
${D}${systemd_unitdir}/system/${PN}.service
-install -m 0644 ${S}/systemd/${PN}.socket 
${D}${systemd_unitdir}/system/${PN}.socket
+if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
+install -d ${D}${systemd_unitdir}/system/
+install -m 0644 ${WORKDIR}/${PN}.service 
${D}${systemd_unitdir}/system/${PN}.service
+install -m 0644 ${S}/systemd/${PN}.socket 
${D}${systemd_unitdir}/system/${PN}.socket
+fi
 }
 
 pkg_postinst_${PN}-conf() {
-- 
1.7.5.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-networking][PATCH] dnsmasq: install .service only with systemd in DISTRO_FEATURES

2013-07-05 Thread Guo Chunrong-B40290
Hello, Joe MacDonald
New  patch was submitted.
I do not modify (atftp/tracker/gateone)  recips and slim recipes do not work.
SO the code in these recipes  add  ${systemd_unitdir} to FILES and these 
recipes work well. 

Thanks,
chunrong

-Original Message-
From: Joe MacDonald [mailto:joe.macdon...@windriver.com] 
Sent: Thursday, July 04, 2013 7:18 PM
To: openembedded-devel@lists.openembedded.org
Cc: Guo Chunrong-B40290; Yu Zongchun-B40527
Subject: Re: [oe] [meta-networking][PATCH] dnsmasq: install .service only with 
systemd in DISTRO_FEATURES

[Re: [oe] [meta-networking][PATCH] dnsmasq: install .service only with systemd 
in DISTRO_FEATURES] On 13.07.04 (Thu 11:50) Paul Eggleton wrote:

 On Thursday 04 July 2013 17:26:23 Chunrong Guo wrote:
  Signed-off-by: Chunrong Guo b40...@freescale.com
  ---
   .../recipes-support/dnsmasq/dnsmasq.inc|8 +---
   1 files changed, 5 insertions(+), 3 deletions(-)
  
  diff --git a/meta-networking/recipes-support/dnsmasq/dnsmasq.inc
  b/meta-networking/recipes-support/dnsmasq/dnsmasq.inc index
  0f5b273..0710893 100644
  --- a/meta-networking/recipes-support/dnsmasq/dnsmasq.inc
  +++ b/meta-networking/recipes-support/dnsmasq/dnsmasq.inc
  @@ -30,9 +30,11 @@ do_install () {
   install -d ${D}${sysconfdir}/ ${D}${sysconfdir}/init.d 
  ${D}${sysconfdir}/dnsmasq.d install -m 644 ${WORKDIR}/dnsmasq.conf 
  ${D}${sysconfdir}/
   install -m 755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/dnsmasq
  -
  -install -d ${D}${systemd_unitdir}/system
  -install -m 0644 ${WORKDIR}/dnsmasq.service
  ${D}${systemd_unitdir}/system +
  +if 
  + ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)};
  then +install -d ${D}${systemd_unitdir}/system
  +install -m 0644 ${WORKDIR}/dnsmasq.service
  ${D}${systemd_unitdir}/system +fi
  
   if [ ${@base_contains('PACKAGECONFIG', 'dbus', 'dbus', '', d)} != 
  ]; then install -d ${D}${sysconfdir}/dbus-1/system.d
 
 I think we should really have a global fix for this issue rather than 
 hacking up every recipe:
 
 https://bugzilla.yoctoproject.org/show_bug.cgi?id=4309

I'm inclined to agree, but looking at the bug it looks like the potential 
solution was discussed in February and it's on the schedule for Yocto 1.5, but 
that's October.

So I did a quick survey, here's the meta-networking recipes that'll be 
impacted, if we adopt the workaround approach:

   - net-snmp
   - dnsmasq (obviously)
   - ypbind-mt
   - yp-tools
   - ntp
   - atftp

I decided I'd have a look at meta-oe for contrast (and guidance) and this is 
what I found there:

   - slim
   - tracker
   - cloud9
   - zram
   - gpsd
   - gateone

On the other hand, xinput-calibrator and xserver-nodm-init,  already have the 
same fix in it Chunrong is proposing.  So the impact of doing either isn't 
huge, but it's not small either.

Chunrong:  Would you be willing to retest and resubmit your patch with the 
above listed meta-networking recipes as a set?  I don't see a lot of sense in 
doing this piecemeal, I'm okay with taking a workaround until
#4309 gets fixed, but I'd rather tear the band-aid off all at once, so to speak.

--
-Joe MacDonald.
:wq

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [PATCH 02/10] ruby: add missing dependency on ruby-native

2013-07-05 Thread Henning Heinold
On Fri, Jul 05, 2013 at 03:23:46AM +0200, Martin Jansa wrote:
 * without ruby available on host it fails:
   | NOTE: make LIBRUBYARG=-lruby-static
   |   CC = i586-starfish-linux-gcc  -m32 -march=i586 
 --sysroot=/OE/sysroots/qemux86
   |   LD = i586-starfish-linux-ld --sysroot=/OE/sysroots/qemux86
   |   LDSHARED = i586-starfish-linux-gcc  -m32 -march=i586 
 --sysroot=/OE/sysroots/qemux86 -shared
   |   CFLAGS = -O2 -pipe -g -feliminate-unused-debug-types -fPIC
   |   XCFLAGS = -include ruby/config.h -include ruby/missing.h 
 -fvisibility=hidden -DRUBY_EXPORT
   |   CPPFLAGS =   -I. -I.ext/include/i386-linux -I./include -I.
   |   DLDFLAGS = -Wl,-soname,libruby.so.1.9
   |   SOLIBS = -lpthread -lrt -ldl -lcrypt -lm
   | executable host ruby is required. use --with-baseruby option.
   | make: *** [.rbconfig.time] Error 1
 ---
  meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb 
 b/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb
 index 7c5be36..868d0ff 100644
 --- a/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb
 +++ b/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb
 @@ -1,7 +1,7 @@
  require ruby.inc
  PR = ${INC_PR}.0
  
 -DEPENDS += libyaml
 +DEPENDS += libyaml ruby-native

Uhm,

after compiling ruby myself it has some more depends like ssl or gdbm or do you 
need only a minimal version?

Bye Henning
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [PATCH 02/10] ruby: add missing dependency on ruby-native

2013-07-05 Thread Martin Jansa
On Fri, Jul 05, 2013 at 10:26:00AM +0200, Henning Heinold wrote:
 On Fri, Jul 05, 2013 at 03:23:46AM +0200, Martin Jansa wrote:
  * without ruby available on host it fails:
| NOTE: make LIBRUBYARG=-lruby-static
|   CC = i586-starfish-linux-gcc  -m32 -march=i586 
  --sysroot=/OE/sysroots/qemux86
|   LD = i586-starfish-linux-ld --sysroot=/OE/sysroots/qemux86
|   LDSHARED = i586-starfish-linux-gcc  -m32 -march=i586 
  --sysroot=/OE/sysroots/qemux86 -shared
|   CFLAGS = -O2 -pipe -g -feliminate-unused-debug-types -fPIC
|   XCFLAGS = -include ruby/config.h -include ruby/missing.h 
  -fvisibility=hidden -DRUBY_EXPORT
|   CPPFLAGS =   -I. -I.ext/include/i386-linux -I./include -I.
|   DLDFLAGS = -Wl,-soname,libruby.so.1.9
|   SOLIBS = -lpthread -lrt -ldl -lcrypt -lm
| executable host ruby is required. use --with-baseruby option.
| make: *** [.rbconfig.time] Error 1
  ---
   meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb | 2 +-
   1 file changed, 1 insertion(+), 1 deletion(-)
  
  diff --git a/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb 
  b/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb
  index 7c5be36..868d0ff 100644
  --- a/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb
  +++ b/meta-ruby/recipes-devtools/ruby/ruby_1.9.3-p429.bb
  @@ -1,7 +1,7 @@
   require ruby.inc
   PR = ${INC_PR}.0
   
  -DEPENDS += libyaml
  +DEPENDS += libyaml ruby-native
 
 Uhm,
 
 after compiling ruby myself it has some more depends like ssl or gdbm or do 
 you need only a minimal version?

I don't use target version at all, I was just fixing errors from
missing mandatory dependencies.

Feel free to add PACKAGECONFIGs for optional deps.

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


signature.asc
Description: Digital signature
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] samba:Add /run into package

2013-07-05 Thread Chunrong Guo
Signed-off-by: Chunrong Guo b40...@freescale.com
---
 meta-oe/recipes-connectivity/samba/samba-basic.inc |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/meta-oe/recipes-connectivity/samba/samba-basic.inc 
b/meta-oe/recipes-connectivity/samba/samba-basic.inc
index d0fa8e6..6cead01 100644
--- a/meta-oe/recipes-connectivity/samba/samba-basic.inc
+++ b/meta-oe/recipes-connectivity/samba/samba-basic.inc
@@ -20,6 +20,7 @@ FILES_${PN} += ${libdir}/vfs/*.so \
 ${libdir}/*.dat \
 ${libdir}/auth/*.so \
 ${libdir}/security/pam_smbpass.so \
+/run \
 
 
 FILES_${PN}-dbg += ${libdir}/vfs/.debug/*.so \
-- 
1.7.5.4


___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] samba:Add /run into package

2013-07-05 Thread Eric Bénard
Hi Chunrong,

Le Fri, 5 Jul 2013 17:54:44 +0800,
Chunrong Guo b40...@freescale.com a écrit :

 Signed-off-by: Chunrong Guo b40...@freescale.com
 ---
  meta-oe/recipes-connectivity/samba/samba-basic.inc |1 +
  1 files changed, 1 insertions(+), 0 deletions(-)
 
 diff --git a/meta-oe/recipes-connectivity/samba/samba-basic.inc 
 b/meta-oe/recipes-connectivity/samba/samba-basic.inc
 index d0fa8e6..6cead01 100644
 --- a/meta-oe/recipes-connectivity/samba/samba-basic.inc
 +++ b/meta-oe/recipes-connectivity/samba/samba-basic.inc
 @@ -20,6 +20,7 @@ FILES_${PN} += ${libdir}/vfs/*.so \
  ${libdir}/*.dat \
  ${libdir}/auth/*.so \
  ${libdir}/security/pam_smbpass.so \
 +/run \
  
  
  FILES_${PN}-dbg += ${libdir}/vfs/.debug/*.so \

please read this thread :
http://lists.openembedded.org/pipermail/openembedded-devel/2013-July/091257.html

Best regards,
Eric
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe][PATCH] samba:Add /run into package

2013-07-05 Thread Paul Eggleton
On Friday 05 July 2013 17:54:44 Chunrong Guo wrote:
 Signed-off-by: Chunrong Guo b40...@freescale.com
 ---
  meta-oe/recipes-connectivity/samba/samba-basic.inc |1 +
  1 files changed, 1 insertions(+), 0 deletions(-)
 
 diff --git a/meta-oe/recipes-connectivity/samba/samba-basic.inc
 b/meta-oe/recipes-connectivity/samba/samba-basic.inc index d0fa8e6..6cead01
 100644
 --- a/meta-oe/recipes-connectivity/samba/samba-basic.inc
 +++ b/meta-oe/recipes-connectivity/samba/samba-basic.inc
 @@ -20,6 +20,7 @@ FILES_${PN} += ${libdir}/vfs/*.so \
  ${libdir}/*.dat \
  ${libdir}/auth/*.so \
  ${libdir}/security/pam_smbpass.so \
 +/run \
  
 
  FILES_${PN}-dbg += ${libdir}/vfs/.debug/*.so \

Is this the correct solution? See:

http://article.gmane.org/gmane.comp.handhelds.openembedded/58530 

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] bitbake dies with an python exception | AttributeError: 'NoneType' object has no attribute 'rfind'

2013-07-05 Thread Cestonaro Thilo

Hey,

Not got time to try reproducing right now, but I did have a very quick
look in git.

On the bitbake side:
http://git.openembedded.org/bitbake/commit/?id=860ec42b220b7ed3f3bbe52c3546bba66644eac8

On the oe-core side:
http://git.openembedded.org/openembedded-core/commit/?id=003ea0fd1017dde50ced710179d0dc2e835d5185


git show commit shows that my bitbake clone has the commit 86..., 
but my oe-core clone is missing the 003 commit.

So I guess that this is the problem.

Ok. The Problem was, that I cloned clones of the oe-core and meta-oe 
layers (via setup-scripts.git from Angstrom) but the bitbake clone was 
from the original openembedded.org.


so, sorry for the confusion and thanks a lot for the quick look you have 
taken!


Greetings
Thilo
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe PATCH] busybox: Follow OE-Core update to 1.12.1 version

2013-07-05 Thread Otavio Salvador
Signed-off-by: Otavio Salvador ota...@ossystems.com.br
---
 .../busybox/{busybox_1.20.2.bbappend = busybox_1.21.1.bbappend}| 2 --
 1 file changed, 2 deletions(-)
 rename meta-oe/recipes-core/busybox/{busybox_1.20.2.bbappend = 
busybox_1.21.1.bbappend} (91%)

diff --git a/meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend 
b/meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
similarity index 91%
rename from meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
rename to meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
index 721ef19..7a2f0c3 100644
--- a/meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
+++ b/meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
@@ -1,5 +1,3 @@
-PRINC := ${@int(PRINC) + 1}
-
 # look for files in the layer first
 FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:
 
-- 
1.8.3.1

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe PATCH] busybox: Follow OE-Core update to 1.12.1 version

2013-07-05 Thread Paul Eggleton
On Friday 05 July 2013 14:01:16 Otavio Salvador wrote:
 Signed-off-by: Otavio Salvador ota...@ossystems.com.br
 ---
  .../busybox/{busybox_1.20.2.bbappend = busybox_1.21.1.bbappend}| 2
 -- 1 file changed, 2 deletions(-)
  rename meta-oe/recipes-core/busybox/{busybox_1.20.2.bbappend =
 busybox_1.21.1.bbappend} (91%)
 
 diff --git a/meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
 b/meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend similarity index 91%
 rename from meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
 rename to meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
 index 721ef19..7a2f0c3 100644
 --- a/meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
 +++ b/meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
 @@ -1,5 +1,3 @@
 -PRINC := ${@int(PRINC) + 1}
 -
  # look for files in the layer first
  FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:

Could someone *please* figure out what this bbappend is needed for and get it 
into OE-Core if it is still needed so we can drop it here?

Thanks,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe PATCH] busybox: Follow OE-Core update to 1.12.1 version

2013-07-05 Thread Otavio Salvador
On Fri, Jul 5, 2013 at 2:29 PM, Paul Eggleton
paul.eggle...@linux.intel.com wrote:
 On Friday 05 July 2013 14:01:16 Otavio Salvador wrote:
 Signed-off-by: Otavio Salvador ota...@ossystems.com.br
 ---
  .../busybox/{busybox_1.20.2.bbappend = busybox_1.21.1.bbappend}| 2
 -- 1 file changed, 2 deletions(-)
  rename meta-oe/recipes-core/busybox/{busybox_1.20.2.bbappend =
 busybox_1.21.1.bbappend} (91%)

 diff --git a/meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
 b/meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend similarity index 91%
 rename from meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
 rename to meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
 index 721ef19..7a2f0c3 100644
 --- a/meta-oe/recipes-core/busybox/busybox_1.20.2.bbappend
 +++ b/meta-oe/recipes-core/busybox/busybox_1.21.1.bbappend
 @@ -1,5 +1,3 @@
 -PRINC := ${@int(PRINC) + 1}
 -
  # look for files in the layer first
  FILESEXTRAPATHS_prepend := ${THISDIR}/${PN}:

 Could someone *please* figure out what this bbappend is needed for and get it
 into OE-Core if it is still needed so we can drop it here?

I agree; the changes here are easy to upstream but without a PRINC
here it can be done when someone finds the time.

--
Otavio Salvador O.S. Systems
http://www.ossystems.com.brhttp://projetos.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-oe PATCH] busybox: Follow OE-Core update to 1.12.1 version

2013-07-05 Thread Eric Bénard
Hi Paul,

Le Fri, 05 Jul 2013 18:29:04 +0100,
Paul Eggleton paul.eggle...@linux.intel.com a écrit :
 
 Could someone *please* figure out what this bbappend is needed for and get it 
 into OE-Core if it is still needed so we can drop it here?
 
it's only here to install /etc/default/busybox-syslog which contains
only one line : OPTIONS=-C64 which sets the size of the logbuffer.
So obviously this could go into OE-Core.

Eric
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] qt-creator: add new recipe for version 2.7.2

2013-07-05 Thread Jonathan Liu
Signed-off-by: Jonathan Liu net...@gmail.com
---
 meta-oe/recipes-qt/qt-creator/qt-creator_2.7.2.bb | 30 +++
 1 file changed, 30 insertions(+)
 create mode 100644 meta-oe/recipes-qt/qt-creator/qt-creator_2.7.2.bb

diff --git a/meta-oe/recipes-qt/qt-creator/qt-creator_2.7.2.bb 
b/meta-oe/recipes-qt/qt-creator/qt-creator_2.7.2.bb
new file mode 100644
index 000..2948d81
--- /dev/null
+++ b/meta-oe/recipes-qt/qt-creator/qt-creator_2.7.2.bb
@@ -0,0 +1,30 @@
+DESCRIPTION = Lightweight, cross-platform integrated development environment
+
+HOMEPAGE = http://qt-project.org/;
+LICENSE = LGPLv2.1
+LIC_FILES_CHKSUM = 
file://LGPL_EXCEPTION.TXT;md5=eb6c371255e1262c55ae9b652a90b528 \
+file://LICENSE.LGPL;md5=243b725d71bb5df4a1e5920b344b86ad
+SECTION = qt/app
+
+SRC_URI = 
http://download.qt-project.org/official_releases/qtcreator/2.7/${PV}/${BP}-src.tar.gz;
+SRC_URI[md5sum] = 7f1c10740784d3edf2347c27be21fd1a
+SRC_URI[sha256sum] = 
5df913faa43a5fbf44fb1f25faaf6d258134b8f9e6b8ef8a21277136dec9e189
+
+S = ${WORKDIR}/${BP}-src
+
+inherit qt4x11
+
+do_install() {
+   oe_runmake INSTALL_ROOT=${D}${prefix} install
+   oe_runmake INSTALL_ROOT=${D}${prefix} install_docs
+   rm -f ${D}${libdir}/qtcreator/lib*.so
+}
+
+FILES_${PN} += ${datadir}/icons \
+${datadir}/qtcreator \
+${libdir}/qtcreator/*
+FILES_${PN}-dbg += ${datadir}/qtcreator/*/*/*/*/.debug \
+${libdir}/qtcreator/.debug \
+${libdir}/qtcreator/*/*/.debug
+RRECOMMENDS_${PN} += packagegroup-core-buildessential \
+  packagegroup-qt-toolchain-target
-- 
1.8.3.2

___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel