[oe] [PATCH][meta-networking] rsyslog: use pkgconfig to check libgcrypt

2014-06-18 Thread rongqing.li
From: Roy Li rongqing...@windriver.com

libgcrypt does no longer provide libgcrypt-config, and provide
*.pc, so we should use pkgconfig to check

Signed-off-by: Roy Li rongqing...@windriver.com
---
 .../rsyslog/use-pkgconfig-to-check-libgcrypt.patch |   48 
 meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb  |1 +
 2 files changed, 49 insertions(+)
 create mode 100644 
meta-oe/recipes-extended/rsyslog/rsyslog/use-pkgconfig-to-check-libgcrypt.patch

diff --git 
a/meta-oe/recipes-extended/rsyslog/rsyslog/use-pkgconfig-to-check-libgcrypt.patch
 
b/meta-oe/recipes-extended/rsyslog/rsyslog/use-pkgconfig-to-check-libgcrypt.patch
new file mode 100644
index 000..ebc1070
--- /dev/null
+++ 
b/meta-oe/recipes-extended/rsyslog/rsyslog/use-pkgconfig-to-check-libgcrypt.patch
@@ -0,0 +1,48 @@
+From 5c3ba79177f7d1763db33c4358af2af60ff214b7 Mon Sep 17 00:00:00 2001
+From: Roy Li rongqing...@windriver.com 
+Date: Wed, 18 Jun 2014 13:46:52 +0800
+Subject: [PATCH] use pkgconfig to check libgcrypt
+
+Upstream-status: Inappropriate [configuration]
+
+libgcrypt does no longer provide libgcrypt-config, and provide
+*.pc, so we should use pkgconfig to check
+
+Signed-off-by: Roy Li rongqing...@windriver.com
+---
+ configure.ac |   19 +--
+ 1 file changed, 1 insertion(+), 18 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 017116e..1b880f8 100644
+--- a/configure.ac
 b/configure.ac
+@@ -784,24 +784,7 @@ AC_ARG_ENABLE(libgcrypt,
+ [enable_libgcrypt=yes]
+ )
+ if test x$enable_libgcrypt = xyes; then
+-AC_CHECK_PROG(
+-  [HAVE_LIBGCRYPT_CONFIG],
+-[libgcrypt-config],
+-[yes],,,
+-)
+-if test x${HAVE_LIBGCRYPT_CONFIG} != xyes; then
+-   AC_MSG_FAILURE([libgcrypt-config not found in PATH])
+-fi
+-AC_CHECK_LIB(
+-  [gcrypt],
+-  [gcry_cipher_open],
+-  [LIBGCRYPT_CFLAGS=`libgcrypt-config --cflags`
+-  LIBGCRYPT_LIBS=`libgcrypt-config --libs`
+-  ],
+-  [AC_MSG_FAILURE([libgcrypt is missing])],
+-  [`libgcrypt-config --libs --cflags`]
+-  )
+-  AC_DEFINE([ENABLE_LIBGCRYPT], [1], [Indicator that LIBGCRYPT is 
present])
++  PKG_CHECK_MODULES(LIBGCRYPT, libgcrypt)
+ fi
+ AM_CONDITIONAL(ENABLE_LIBGCRYPT, test x$enable_libgcrypt = xyes)
+ AC_SUBST(LIBGCRYPT_CFLAGS)
+-- 
+1.7.9.5
+
diff --git a/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb 
b/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb
index 344a131..3bb92fa 100644
--- a/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb
+++ b/meta-oe/recipes-extended/rsyslog/rsyslog_7.4.4.bb
@@ -21,6 +21,7 @@ SRC_URI = 
http://www.rsyslog.com/files/download/rsyslog/${BPN}-${PV}.tar.gz \
file://initscript \
file://rsyslog.conf \
file://rsyslog.logrotate \
+   file://use-pkgconfig-to-check-libgcrypt.patch \
 
 
 SRC_URI[md5sum] = ebcc010a6205c28eb505c0fe862f32c6
-- 
1.7.10.4

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


Re: [oe] [meta-oe][daisy][PATCH] live555: fix fetch problem

2014-06-18 Thread Martin Jansa
On Sat, Jun 14, 2014 at 09:44:09PM +0200, Steffen Sledz wrote:
 live.2013.04.30.tar.gz is no longer available at original live555 url
 and the url of the FreeBSD mirror has changed according to[1].
 
 [1] http://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/README.txt

The same problem is in master branch, I'll cherry-pick it there first.

 Signed-off-by: Steffen Sledz sl...@dresearch-fe.de
 ---
  meta-oe/recipes-multimedia/live555/live555.inc | 4 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/meta-oe/recipes-multimedia/live555/live555.inc 
 b/meta-oe/recipes-multimedia/live555/live555.inc
 index a36177d..0c8208a 100644
 --- a/meta-oe/recipes-multimedia/live555/live555.inc
 +++ b/meta-oe/recipes-multimedia/live555/live555.inc
 @@ -7,13 +7,13 @@ HOMEPAGE = http://live.com/;
  LICENSE = LGPLv3
  SECTION = devel
  
 -INC_PR = r0
 +INC_PR = r1
  
  URLV = 
 ${@d.getVar('PV',1)[0:4]}.${@d.getVar('PV',1)[4:6]}.${@d.getVar('PV',1)[6:8]}
  SRC_URI = http://www.live555.com/liveMedia/public/live.${URLV}.tar.gz \
 file://config.linux-cross
  # only latest live version stays on 
 http://www.live555.com/liveMedia/public/, add mirror for older
 -MIRRORS += http://www.live555.com/liveMedia/public/ 
 http://ftp.freebsd.org/pub/FreeBSD/ports/distfiles/ \n
 +MIRRORS += http://www.live555.com/liveMedia/public/ 
 http://distcache.FreeBSD.org/ports-distfiles/ \n
  
  S = ${WORKDIR}/live
  TARGET_CC_ARCH += ${LDFLAGS}
 -- 
 1.9.3
 

-- 
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


Re: [oe] [PATCH] monkey: new v1.5.1 release (v2).

2014-06-18 Thread Martin Jansa
On Tue, Jun 17, 2014 at 03:58:53PM -0600, Eduardo Silva wrote:
 This patch add the minor release fix of Monkey HTTP Server v1.5.1. It fixes
 some problems when switching user when started as root.

(v2) belongs to subject tag (so it's stripped in git am) , subject should be

[PATCHv2][meta-webserver] monkey: upgrade to 1.5.1

 monkey/yocto: 7a702d00c5e48d1e03d8bbd2c7bd93a0d26f701e

^ what's this?

 Signed-off-by: Eduardo Silva edua...@monkey.io
 ---
  .../recipes-httpd/monkey/{monkey_1.5.0.bb = monkey_1.5.1.bb} | 4 
 ++--
  1 file changed, 2 insertions(+), 2 deletions(-)
  rename meta-webserver/recipes-httpd/monkey/{monkey_1.5.0.bb = 
 monkey_1.5.1.bb} (88%)
 
 diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb 
 b/meta-webserver/recipes-httpd/monkey/monkey_1.5.1.bb
 similarity index 88%
 rename from meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
 rename to meta-webserver/recipes-httpd/monkey/monkey_1.5.1.bb
 index 6fa1b77..172d4f7 100644
 --- a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
 +++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.1.bb
 @@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = 
 file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93
  SECTION = net
  
  SRC_URI = http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz;
 -SRC_URI[md5sum] = 9123fc371334621fde1c060ab17adcd3
 -SRC_URI[sha256sum] = 
 f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7
 +SRC_URI[md5sum] = 2fe04135728f5c3a86c3a412059e0da3
 +SRC_URI[sha256sum] = 
 28dfc5e57bbcd305727e7af6a1a0587868db1c1286498757bfeb72edddf457e7
  
  EXTRA_OECONF =  \
   --plugdir=${libdir}/monkey/ \
 -- 
 1.9.1
 
 -- 
 ___
 Openembedded-devel mailing list
 Openembedded-devel@lists.openembedded.org
 http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
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


Re: [oe] [PATCH] monkey: new v1.5.1 release (v2).

2014-06-18 Thread Paul Eggleton
On Wednesday 18 June 2014 10:12:56 Martin Jansa wrote:
 On Tue, Jun 17, 2014 at 03:58:53PM -0600, Eduardo Silva wrote:
  This patch add the minor release fix of Monkey HTTP Server v1.5.1. It
  fixes
  some problems when switching user when started as root.
 
 (v2) belongs to subject tag (so it's stripped in git am) , subject should
 be
 
 [PATCHv2][meta-webserver] monkey: upgrade to 1.5.1

I will correct this on merging, but if you could remember this for future 
patches Eduardo that would be great.

  monkey/yocto: 7a702d00c5e48d1e03d8bbd2c7bd93a0d26f701e
 
 ^ what's this?

I suspect it corresponds with the layer that Eduardo is maintaining on github. 
For meta-webserver I'm not too concerned if these sorts of things are in the 
commit message if it helps for future reference, so I'm happy for it to stay.

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] [PATCH] monkey: new v1.5.1 release (v2).

2014-06-18 Thread Paul Eggleton
On Wednesday 18 June 2014 10:18:56 Paul Eggleton wrote:
 On Wednesday 18 June 2014 10:12:56 Martin Jansa wrote:
  On Tue, Jun 17, 2014 at 03:58:53PM -0600, Eduardo Silva wrote:
   This patch add the minor release fix of Monkey HTTP Server v1.5.1. It
   fixes
   some problems when switching user when started as root.
  
  (v2) belongs to subject tag (so it's stripped in git am) , subject
  should
  be
  
  [PATCHv2][meta-webserver] monkey: upgrade to 1.5.1
 
 I will correct this on merging, but if you could remember this for future
 patches Eduardo that would be great.
 
   monkey/yocto: 7a702d00c5e48d1e03d8bbd2c7bd93a0d26f701e
  
  ^ what's this?
 
 I suspect it corresponds with the layer that Eduardo is maintaining on
 github. For meta-webserver I'm not too concerned if these sorts of things
 are in the commit message if it helps for future reference, so I'm happy
 for it to stay.

Actually, I just tested this it seems clear that this recipe has not actually 
been build-tested - the issue pointed out earlier with the errant space in 
EXTRA_OECONF (between --datadir= and ${localstatedir}/www/monkey/ is still 
present, so do_configure fails immediately.

Eduardo could you please fix this as part of this upgrade, test it and send a 
v3?

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] daisy branch for meta-openembedded, meta-qt5 / maintainer wanted

2014-06-18 Thread Otavio Salvador
On Tue, Jun 17, 2014 at 10:32 PM, Cliff Brake cbr...@bec-systems.com wrote:
 On Tue, Jun 17, 2014 at 4:55 PM, Otavio Salvador ota...@ossystems.com.br

 I didn't find any. Or are you preparing a list to send?

 Can anyone please volunteer and send README update patch?

 Is anyone willing to take it? I can help but I don't want to be the only one.

 I'm willing to help as well.  I started a branch to merge:

 https://github.com/cbrake/meta-openembedded/commits/daisy-to-merge

 Let me know if anyone else has ideas for README, etc.  Otavio, perhaps
 you can add your email to the README's as well (assuming this is what
 Martin had in mind).  Thanks.

Are you willing to take meta-qt5 too?

-- 
Otavio Salvador O.S. Systems
http://www.ossystems.com.brhttp://code.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] daisy branch for meta-openembedded, meta-qt5 / maintainer wanted

2014-06-18 Thread Cliff Brake
On Wed, Jun 18, 2014 at 7:27 AM, Otavio Salvador
ota...@ossystems.com.br wrote:


 Are you willing to take meta-qt5 too?

Sure.

https://github.com/cbrake/meta-qt5/commits/daisy-to-merge

I made some more updates to the meta-oe daisy branch:

https://github.com/cbrake/meta-openembedded/commits/daisy-to-merge

Otavio, Armin, would you like me to add your emails to the maintainer
lists in these readme's as well?

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


[oe] [meta-opie] Avoid opie-image-16mb resulting in a 21 MB JFFS2 image

2014-06-18 Thread Andreas Wick
Hello,

I currently try to build opie-image-16mb for simpad. Unfortunately the
image is about 21 MB large whereas my available ROM is just 16MB.
Is there any way to strip down the image such that it the image will be
smaller than 16MB?

Thank you for your support.

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


Re: [oe] daisy branch for meta-openembedded, meta-qt5 / maintainer wanted

2014-06-18 Thread Martin Jansa
On Wed, Jun 18, 2014 at 10:04:52AM -0400, Cliff Brake wrote:
 On Wed, Jun 18, 2014 at 7:27 AM, Otavio Salvador
 ota...@ossystems.com.br wrote:
 
 
  Are you willing to take meta-qt5 too?
 
 Sure.
 
 https://github.com/cbrake/meta-qt5/commits/daisy-to-merge

This looks like commit for master, daisy branch already exists and has
README files updated from:
https://github.com/meta-qt5/meta-qt5/commit/55dff304eff64e77338a82cfc5a0cb1ed5a07342

 I made some more updates to the meta-oe daisy branch:
 
 https://github.com/cbrake/meta-openembedded/commits/daisy-to-merge

Looks good.

 Otavio, Armin, would you like me to add your emails to the maintainer
 lists in these readme's as well?

Should I wait 1 more day before merging branch above for possible
maintainer additions?

-- 
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


Re: [oe] daisy branch for meta-openembedded, meta-qt5 / maintainer wanted

2014-06-18 Thread Cliff Brake
On Wed, Jun 18, 2014 at 10:21 AM, Martin Jansa martin.ja...@gmail.com wrote:
 On Wed, Jun 18, 2014 at 10:04:52AM -0400, Cliff Brake wrote:


 Otavio, Armin, would you like me to add your emails to the maintainer
 lists in these readme's as well?

 Should I wait 1 more day before merging branch above for possible
 maintainer additions?

Yes, that would be a good idea.  I'll send a pull request tomorrow, or
after I hear back from others.

If there are other outstanding daisy patches, please let me know.

As far as a procedure to merge changes, I propose that initially one
of the branch maintainers sends a pull request to the maillist .
Another maintainer ack the pull request, and then Martin (or other
main branch maintainer) merges and pushes.  This will initially give
us a little bit more review.  Eventually we may transition to one of
us pushing changes directly after co-maintainer ack. The goal is
obviously to keep daisy building and as stable as possible.

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


Re: [oe] daisy branch for meta-openembedded, meta-qt5 / maintainer wanted

2014-06-18 Thread Otavio Salvador
On Wed, Jun 18, 2014 at 11:04 AM, Cliff Brake cbr...@bec-systems.com wrote:
 On Wed, Jun 18, 2014 at 7:27 AM, Otavio Salvador
 ota...@ossystems.com.br wrote:


 Are you willing to take meta-qt5 too?

 Sure.

 https://github.com/cbrake/meta-qt5/commits/daisy-to-merge

 I made some more updates to the meta-oe daisy branch:

 https://github.com/cbrake/meta-openembedded/commits/daisy-to-merge

 Otavio, Armin, would you like me to add your emails to the maintainer
 lists in these readme's as well?

Yes, please add me.

-- 
Otavio Salvador O.S. Systems
http://www.ossystems.com.brhttp://code.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-opie] Avoid opie-image-16mb resulting in a 21 MB JFFS2 image

2014-06-18 Thread Paul Eggleton
Hi Andreas,

On Wednesday 18 June 2014 16:09:13 Andreas Wick wrote:
 I currently try to build opie-image-16mb for simpad. Unfortunately the
 image is about 21 MB large whereas my available ROM is just 16MB.
 Is there any way to strip down the image such that it the image will be
 smaller than 16MB?

It has probably been quite some time since the 16mb image was built and used.
The first thing to do would be to look at its current contents and try to see
where space is being consumed - the information produced for the image with
buildhistory (in particular installed-package-sizes.txt) should be useful for
that - see:

http://www.yoctoproject.org/docs/current/ref-manual/ref-manual.html#maintaining-build-output-quality

If you could let me know what you find that would be great.

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] daisy branch for meta-openembedded, meta-qt5 / maintainer wanted

2014-06-18 Thread akuster808



On 06/18/2014 08:20 AM, Otavio Salvador wrote:

On Wed, Jun 18, 2014 at 11:04 AM, Cliff Brake cbr...@bec-systems.com wrote:

On Wed, Jun 18, 2014 at 7:27 AM, Otavio Salvador
ota...@ossystems.com.br wrote:



Are you willing to take meta-qt5 too?


Sure.

https://github.com/cbrake/meta-qt5/commits/daisy-to-merge

I made some more updates to the meta-oe daisy branch:

https://github.com/cbrake/meta-openembedded/commits/daisy-to-merge

Otavio, Armin, would you like me to add your emails to the maintainer
lists in these readme's as well?


Yes, please add me.



Yes. add me as well.

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


Re: [oe] [oe-commits] Robert Yang : tftp-hpa: inherit autotools-brokensep

2014-06-18 Thread Joe MacDonald
[Re: [oe-commits] Robert Yang : tftp-hpa: inherit autotools-brokensep] On 
14.06.16 (Mon 16:19) Martin Jansa wrote:

 On Mon, Jun 16, 2014 at 12:28:05PM +, g...@git.openembedded.org wrote:
  Module: meta-openembedded.git
  Branch: master
  Commit: 8e689bb7a154143c1bdfda5ec7a7e8c79bb1381b
  URL:
  http://git.openembedded.org/?p=meta-openembedded.gita=commit;h=8e689bb7a154143c1bdfda5ec7a7e8c79bb1381b
  
  Author: Robert Yang liezhi.y...@windriver.com
  Date:   Fri Jun 13 08:46:24 2014 +0800
  
  tftp-hpa: inherit autotools-brokensep
  
  It needs autotools-brokensep, otherwise do_install error:
  
  make: *** No rule to make target `install'.  Stop.
  
  Signed-off-by: Robert Yang liezhi.y...@windriver.com
  Signed-off-by: Joe MacDonald joe_macdon...@mentor.com
  
  ---
  
   '   | 21 
  +
 
 Joe: please remove this file ^

Well that's irritating.

Cleaned up.  Sorry about leaving garbage lying around.

-J.

 
   .../recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb|  2 +-
   2 files changed, 22 insertions(+), 1 deletion(-)
  
  diff --git a/' b/'
  new file mode 100644
  index 000..244cc72
  --- /dev/null
  +++ b/'
  @@ -0,0 +1,21 @@
  +radvd: inherit autotools-brokensep
  +
  +It needs autotools-brokensep, otherwise do_install error:
  +
  +install: cannot stat `radvd.conf.example': No such file or directory
  +
  +(LOCAL REV: NOT UPSTREAM) -- Waiting for updating upstream-master
  +
  +Signed-off-by: Robert Yang liezhi.y...@windriver.com
  +
  +# Please enter the commit message for your changes. Lines starting
  +# with '#' will be ignored, and an empty message aborts the commit.
  +# On branch wr-7.0-20140426
  +# Your branch is ahead of 'origin/wr-7.0-20140426' by 10 commits.
  +#   (use git push to publish your local commits)
  +#
  +# Changes to be committed:
  +#   (use git reset HEAD file... to unstage)
  +#
  +#  modified:   recipes-daemons/radvd/radvd.inc
  +#
  diff --git a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb 
  b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
  index 6978e06..5baa61b 100644
  --- a/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
  +++ b/meta-networking/recipes-daemons/tftp-hpa/tftp-hpa_5.2.bb
  @@ -29,7 +29,7 @@ SRC_URI = 
  http://kernel.org/pub/software/network/tftp/tftp-hpa/tftp-hpa-${PV}.t
   SRC_URI[md5sum] = 46c9bd20bbffa62f79c958c7b99aac21
   SRC_URI[sha256sum] = 
  0a9f88d4c1c02687b4853b02ab5dd8779d4de4ffdb9b2e5c9332841304d1a269
   
  -inherit autotools update-rc.d update-alternatives
  +inherit autotools-brokensep update-rc.d update-alternatives
   
   EXTRA_OECONF += --disable-option-checking
   
  
  -- 
  ___
  Openembedded-commits mailing list
  openembedded-comm...@lists.openembedded.org
  http://lists.openembedded.org/mailman/listinfo/openembedded-commits
 
-- 
-Joe MacDonald.
:wq


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][meta-gnome][PATCH] tracker: move from meta-oe to meta-gnome

2014-06-18 Thread Martin Jansa
* it rdepends on gvfs which is available only in meta-gnome and nothing
  in meta-oe depends on tracker

Signed-off-by: Martin Jansa martin.ja...@gmail.com
---
 .../recipes-support/tracker/files/90tracker|  0
 .../tracker/files/tracker-dbus.service |  0
 .../tracker/files/tracker-miner-fs.service |  0
 .../tracker/files/tracker-store.service|  0
 ...-Fix-missing-gobject-introspection-checks.patch |  0
 .../enable-sqlite-crosscompile.patch   |  0
 .../fix-removable-media-detection.patch|  0
 .../recipes-support/tracker/tracker_0.14.2.bb  |  0
 .../recipes-support/tracker/tracker_0.14.2.bb.rej  | 36 --
 9 files changed, 36 deletions(-)
 rename {meta-oe = meta-gnome}/recipes-support/tracker/files/90tracker (100%)
 rename {meta-oe = 
meta-gnome}/recipes-support/tracker/files/tracker-dbus.service (100%)
 rename {meta-oe = 
meta-gnome}/recipes-support/tracker/files/tracker-miner-fs.service (100%)
 rename {meta-oe = 
meta-gnome}/recipes-support/tracker/files/tracker-store.service (100%)
 rename {meta-oe = 
meta-gnome}/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch
 (100%)
 rename {meta-oe = 
meta-gnome}/recipes-support/tracker/tracker-0.14.2/enable-sqlite-crosscompile.patch
 (100%)
 rename {meta-oe = 
meta-gnome}/recipes-support/tracker/tracker-0.14.2/fix-removable-media-detection.patch
 (100%)
 rename {meta-oe = meta-gnome}/recipes-support/tracker/tracker_0.14.2.bb (100%)
 delete mode 100644 meta-oe/recipes-support/tracker/tracker_0.14.2.bb.rej

diff --git a/meta-oe/recipes-support/tracker/files/90tracker 
b/meta-gnome/recipes-support/tracker/files/90tracker
similarity index 100%
rename from meta-oe/recipes-support/tracker/files/90tracker
rename to meta-gnome/recipes-support/tracker/files/90tracker
diff --git a/meta-oe/recipes-support/tracker/files/tracker-dbus.service 
b/meta-gnome/recipes-support/tracker/files/tracker-dbus.service
similarity index 100%
rename from meta-oe/recipes-support/tracker/files/tracker-dbus.service
rename to meta-gnome/recipes-support/tracker/files/tracker-dbus.service
diff --git a/meta-oe/recipes-support/tracker/files/tracker-miner-fs.service 
b/meta-gnome/recipes-support/tracker/files/tracker-miner-fs.service
similarity index 100%
rename from meta-oe/recipes-support/tracker/files/tracker-miner-fs.service
rename to meta-gnome/recipes-support/tracker/files/tracker-miner-fs.service
diff --git a/meta-oe/recipes-support/tracker/files/tracker-store.service 
b/meta-gnome/recipes-support/tracker/files/tracker-store.service
similarity index 100%
rename from meta-oe/recipes-support/tracker/files/tracker-store.service
rename to meta-gnome/recipes-support/tracker/files/tracker-store.service
diff --git 
a/meta-oe/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch
 
b/meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch
similarity index 100%
rename from 
meta-oe/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch
rename to 
meta-gnome/recipes-support/tracker/tracker-0.14.2/0005-Fix-missing-gobject-introspection-checks.patch
diff --git 
a/meta-oe/recipes-support/tracker/tracker-0.14.2/enable-sqlite-crosscompile.patch
 
b/meta-gnome/recipes-support/tracker/tracker-0.14.2/enable-sqlite-crosscompile.patch
similarity index 100%
rename from 
meta-oe/recipes-support/tracker/tracker-0.14.2/enable-sqlite-crosscompile.patch
rename to 
meta-gnome/recipes-support/tracker/tracker-0.14.2/enable-sqlite-crosscompile.patch
diff --git 
a/meta-oe/recipes-support/tracker/tracker-0.14.2/fix-removable-media-detection.patch
 
b/meta-gnome/recipes-support/tracker/tracker-0.14.2/fix-removable-media-detection.patch
similarity index 100%
rename from 
meta-oe/recipes-support/tracker/tracker-0.14.2/fix-removable-media-detection.patch
rename to 
meta-gnome/recipes-support/tracker/tracker-0.14.2/fix-removable-media-detection.patch
diff --git a/meta-oe/recipes-support/tracker/tracker_0.14.2.bb 
b/meta-gnome/recipes-support/tracker/tracker_0.14.2.bb
similarity index 100%
rename from meta-oe/recipes-support/tracker/tracker_0.14.2.bb
rename to meta-gnome/recipes-support/tracker/tracker_0.14.2.bb
diff --git a/meta-oe/recipes-support/tracker/tracker_0.14.2.bb.rej 
b/meta-oe/recipes-support/tracker/tracker_0.14.2.bb.rej
deleted file mode 100644
index d044829..000
--- a/meta-oe/recipes-support/tracker/tracker_0.14.2.bb.rej
+++ /dev/null
@@ -1,36 +0,0 @@
 meta-oe/recipes-support/tracker/tracker_0.14.2.bb
-+++ meta-oe/recipes-support/tracker/tracker_0.14.2.bb
-@@ -13,7 +13,7 @@
- SRC_URI = 
http://ftp.gnome.org/pub/GNOME/sources/tracker/${VER_DIR}/tracker-${PV}.tar.xz 
\
-file://0005-Fix-missing-gobject-introspection-checks.patch \
-file://enable-sqlite-crosscompile.patch \
-- file://fix-removable-media-detection.patch \
-+   

[oe] [PATCHv3] monkey: new v1.5.1 release.

2014-06-18 Thread Eduardo Silva
This patch add the minor release fix of Monkey HTTP Server v1.5.1. It fixes
some problems when switching user when started as root.

monkey/yocto: 3163d01492ea3d85268dc3773419e94db57ee8df

Signed-off-by: Eduardo Silva edua...@monkey.io
---
 .../recipes-httpd/monkey/monkey_1.5.0.bb   | 36 --
 1 file changed, 36 deletions(-)
 delete mode 100644 meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb

diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb 
b/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
deleted file mode 100644
index 6fa1b77..000
--- a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
+++ /dev/null
@@ -1,36 +0,0 @@
-SUMMARY = Fast and Lightweight HTTP Server for Linux
-HOMEPAGE = http://monkey-project.com;
-BUGTRACKER = https://github.com/monkey/monkey/issues;
-
-LICENSE = Apache-2.0
-LIC_FILES_CHKSUM = file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93
-
-SECTION = net
-
-SRC_URI = http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz;
-SRC_URI[md5sum] = 9123fc371334621fde1c060ab17adcd3
-SRC_URI[sha256sum] = 
f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7
-
-EXTRA_OECONF =  \
- --plugdir=${libdir}/monkey/ \
- --logdir=${localstatedir}/log/monkey/ \
- --pidfile=${localstatedir}/run/monkey.pid \
- --default-user=www-data \
- --datadir= ${localstatedir}/www/monkey/ \
- --sysconfdir=${sysconfdir}/monkey/ \
- --enable-plugins=* \
- --disable-plugins=polarssl \
- --debug \
- --malloc-libc \
-
-
-inherit autotools-brokensep pkgconfig update-rc.d systemd
-
-INITSCRIPT_NAME = monkey
-INITSCRIPT_PARAMS = defaults 70
-
-SYSTEMD_SERVICE_${PN} = monkey.service
-
-FILES_${PN} += ${localstatedir}/www/monkey/
-
-CONFFILES_${PN} = ${sysconfdir}/monkey/
-- 
1.9.1

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


[oe] [PATCHv4] monkey: new v1.5.1 release.

2014-06-18 Thread Eduardo Silva
This patch add the minor release fix of Monkey HTTP Server v1.5.1. It fixes
some problems when switching user when started as root.

monkey/yocto: 3163d01492ea3d85268dc3773419e94db57ee8df

Signed-off-by: Eduardo Silva edua...@monkey.io
---
 .../recipes-httpd/monkey/{monkey_1.5.0.bb = monkey_1.5.1.bb}   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-webserver/recipes-httpd/monkey/{monkey_1.5.0.bb = 
monkey_1.5.1.bb} (83%)

diff --git a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb 
b/meta-webserver/recipes-httpd/monkey/monkey_1.5.1.bb
similarity index 83%
rename from meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
rename to meta-webserver/recipes-httpd/monkey/monkey_1.5.1.bb
index 6fa1b77..2ea18f5 100644
--- a/meta-webserver/recipes-httpd/monkey/monkey_1.5.0.bb
+++ b/meta-webserver/recipes-httpd/monkey/monkey_1.5.1.bb
@@ -8,15 +8,15 @@ LIC_FILES_CHKSUM = 
file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93
 SECTION = net
 
 SRC_URI = http://monkey-project.com/releases/1.5/monkey-${PV}.tar.gz;
-SRC_URI[md5sum] = 9123fc371334621fde1c060ab17adcd3
-SRC_URI[sha256sum] = 
f7a5e4839822750930a723f63a4edbf700e0fb8299a4b3637bd8bab5b1d098a7
+SRC_URI[md5sum] = 2fe04135728f5c3a86c3a412059e0da3
+SRC_URI[sha256sum] = 
28dfc5e57bbcd305727e7af6a1a0587868db1c1286498757bfeb72edddf457e7
 
 EXTRA_OECONF =  \
  --plugdir=${libdir}/monkey/ \
  --logdir=${localstatedir}/log/monkey/ \
  --pidfile=${localstatedir}/run/monkey.pid \
  --default-user=www-data \
- --datadir= ${localstatedir}/www/monkey/ \
+ --datadir=${localstatedir}/www/monkey/ \
  --sysconfdir=${sysconfdir}/monkey/ \
  --enable-plugins=* \
  --disable-plugins=polarssl \
-- 
1.9.1

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


Re: [oe] [PATCH] monkey: new v1.5.1 release (v2).

2014-06-18 Thread Eduardo Silva
hi everybody,

 I suspect it corresponds with the layer that Eduardo is maintaining on
  github. For meta-webserver I'm not too concerned if these sorts of things
  are in the commit message if it helps for future reference, so I'm happy
  for it to stay.

 Actually, I just tested this it seems clear that this recipe has not
 actually
 been build-tested - the issue pointed out earlier with the errant space in
 EXTRA_OECONF (between --datadir= and ${localstatedir}/www/monkey/ is
 still
 present, so do_configure fails immediately.

 Eduardo could you please fix this as part of this upgrade, test it and
 send a
 v3?


my apologizes for the problem and noise, i have submitted PATCHv4 with the
proper fix,

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


[oe] [PATCH][meta-oe] dialog: use pkg-config to detect ncurses

2014-06-18 Thread rongqing.li
From: Roy Li rongqing...@windriver.com

Signed-off-by: Roy Li rongqing...@windriver.com
---
 meta-oe/recipes-extended/dialog/dialog.inc |6 ++-
 .../use-pkg-config-for-ncurses-detection.patch |   40 
 2 files changed, 44 insertions(+), 2 deletions(-)
 create mode 100644 
meta-oe/recipes-extended/dialog/files/use-pkg-config-for-ncurses-detection.patch

diff --git a/meta-oe/recipes-extended/dialog/dialog.inc 
b/meta-oe/recipes-extended/dialog/dialog.inc
index c1c28fd..995d6c0 100644
--- a/meta-oe/recipes-extended/dialog/dialog.inc
+++ b/meta-oe/recipes-extended/dialog/dialog.inc
@@ -8,12 +8,14 @@ DEPENDS = ncurses
 LICENSE = LGPL-2.1
 LIC_FILES_CHKSUM = file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343
 
-SRC_URI = ftp://invisible-island.net/dialog/dialog-${PV}.tgz;
+SRC_URI = ftp://invisible-island.net/dialog/dialog-${PV}.tgz \
+   file://use-pkg-config-for-ncurses-detection.patch \
+  
 
 # hardcoded here for use in dialog-static recipe
 S = ${WORKDIR}/dialog-${PV}
 
-inherit autotools
+inherit autotools-brokensep pkgconfig
 
 EXTRA_OECONF = --with-ncurses \
 --disable-rpath-hack
diff --git 
a/meta-oe/recipes-extended/dialog/files/use-pkg-config-for-ncurses-detection.patch
 
b/meta-oe/recipes-extended/dialog/files/use-pkg-config-for-ncurses-detection.patch
new file mode 100644
index 000..b5b4b3c
--- /dev/null
+++ 
b/meta-oe/recipes-extended/dialog/files/use-pkg-config-for-ncurses-detection.patch
@@ -0,0 +1,40 @@
+Subject: [PATCH] use pkg-config for ncurses detection.
+
+Upstream-Status: Inappropriate [configuration]
+
+This is a workaround to make dialog be able to build after ncurses-config
+does not work, since the configure file is called directly in dialog bb
+file, and autoconf can not work, make a workaround in configure file.
+
+Signed-off-by: Roy Li rongqing...@windriver.com
+---
+ configure |6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/configure b/configure
+index 24e28c1..c78735d 100755
+--- a/configure
 b/configure
+@@ -9976,8 +9976,8 @@ fi
+ 
+ if test $NCURSES_CONFIG != none ; then
+ 
+-CPPFLAGS=$CPPFLAGS `$NCURSES_CONFIG --cflags`
+-LIBS=`$NCURSES_CONFIG --libs` $LIBS
++CPPFLAGS=$CPPFLAGS `pkg-config --short-errors --print-errors --cflags 
ncurses 21`
++LIBS=`pkg-config --short-errors --print-errors --libs ncurses 21` $LIBS
+ 
+ # even with config script, some packages use no-override for curses.h
+ 
+@@ -10096,7 +10096,7 @@ cat confdefs.h EOF
+ #define $cf_nculib_ROOT 1
+ EOF
+ 
+-cf_cv_ncurses_version=`$NCURSES_CONFIG --version`
++cf_cv_ncurses_version=`pkg-config --short-errors --print-errors --modversion 
ncurses`
+ 
+ else
+ 
+-- 
+1.7.10.4
+
-- 
1.7.10.4

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