Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/4] Minor fixes
@ 2012-10-17  8:42 Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 1/4] libc-client: correct LICENSE Paul Eggleton
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-10-17  8:42 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 7eb2c6f8459fdcad5eb0f0dc2d8ca17a327dc0f6:

  xbmc: Fix serveral build errors and install missing dependencies (2012-10-16 09:59:08 +0200)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib paule/fixes1
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/fixes1

Paul Eggleton (4):
  libc-client: correct LICENSE
  rrdtool: add pango to DEPENDS
  libnice: tidy up meta variables
  iso-codes: set SUMMARY

 .../libc-client/libc-client_2007e.bb               |    4 +++-
 meta-oe/recipes-extended/rrdtool/rrdtool_1.4.7.bb  |    4 +++-
 meta-oe/recipes-support/farsight/libnice_0.0.13.bb |    7 ++++---
 meta-oe/recipes-support/iso-codes/iso-codes_1.4.bb |    3 ++-
 4 files changed, 12 insertions(+), 6 deletions(-)

-- 
1.7.9.5




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

* [meta-oe][PATCH 1/4] libc-client: correct LICENSE
  2012-10-17  8:42 [meta-oe][PATCH 0/4] Minor fixes Paul Eggleton
@ 2012-10-17  8:42 ` Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 2/4] rrdtool: add pango to DEPENDS Paul Eggleton
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-10-17  8:42 UTC (permalink / raw)
  To: openembedded-devel

The license is Apache 2.0 according to the included LICENSE.txt file.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../libc-client/libc-client_2007e.bb               |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-devtools/libc-client/libc-client_2007e.bb b/meta-oe/recipes-devtools/libc-client/libc-client_2007e.bb
index e67639e..9faa2f8 100644
--- a/meta-oe/recipes-devtools/libc-client/libc-client_2007e.bb
+++ b/meta-oe/recipes-devtools/libc-client/libc-client_2007e.bb
@@ -1,11 +1,13 @@
 DESCRIPTION = "UW c-client library for mail protocols"
 SECTION = "devel"
 
-LICENSE = "University of Washingtons Free-Fork License"
+LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=a6a4ddbb7cd2999f6827ee143f6fcd97"
 
 DEPENDS = "openssl libpam"
 
+PR = "r1"
+
 SRC_URI = "ftp://ftp.cac.washington.edu/imap/imap-${PV}.tar.gz \
            file://quote_cctype.patch"
 
-- 
1.7.9.5




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

* [meta-oe][PATCH 2/4] rrdtool: add pango to DEPENDS
  2012-10-17  8:42 [meta-oe][PATCH 0/4] Minor fixes Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 1/4] libc-client: correct LICENSE Paul Eggleton
@ 2012-10-17  8:42 ` Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 3/4] libnice: tidy up meta variables Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 4/4] iso-codes: set SUMMARY Paul Eggleton
  3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-10-17  8:42 UTC (permalink / raw)
  To: openembedded-devel

The configure script fails without pangocairo which is provided by
pango.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-oe/recipes-extended/rrdtool/rrdtool_1.4.7.bb |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-extended/rrdtool/rrdtool_1.4.7.bb b/meta-oe/recipes-extended/rrdtool/rrdtool_1.4.7.bb
index 76a7133..73141b4 100644
--- a/meta-oe/recipes-extended/rrdtool/rrdtool_1.4.7.bb
+++ b/meta-oe/recipes-extended/rrdtool/rrdtool_1.4.7.bb
@@ -4,7 +4,9 @@ HOMEPAGE = "http://oss.oetiker.ch/rrdtool/"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=44fee82a1d2ed0676cf35478283e0aa0"
 
-DEPENDS = "libpng zlib cairo glib-2.0 libxml2"
+DEPENDS = "libpng zlib cairo pango glib-2.0 libxml2"
+
+PR = "r1"
 
 SRC_URI = "http://oss.oetiker.ch/rrdtool/pub/rrdtool-${PV}.tar.gz \
            file://0001-rrdtool-eradicate-tcl-support.patch \
-- 
1.7.9.5




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

* [meta-oe][PATCH 3/4] libnice: tidy up meta variables
  2012-10-17  8:42 [meta-oe][PATCH 0/4] Minor fixes Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 1/4] libc-client: correct LICENSE Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 2/4] rrdtool: add pango to DEPENDS Paul Eggleton
@ 2012-10-17  8:42 ` Paul Eggleton
  2012-10-17  8:42 ` [meta-oe][PATCH 4/4] iso-codes: set SUMMARY Paul Eggleton
  3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-10-17  8:42 UTC (permalink / raw)
  To: openembedded-devel

* Add SUMMARY
* Fix typo in DESCRIPTION
* Set LICENSE to a parsable form

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-oe/recipes-support/farsight/libnice_0.0.13.bb |    7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
index 1e42cad..48ca0a5 100644
--- a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
+++ b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb
@@ -1,14 +1,15 @@
-DESCRIPTION = "Libnice is an implementation of the IETF's draft Interactice Connectivity Establishment standard (ICE)."
+SUMMARY = "Interactive Connectivity Establishment library"
+DESCRIPTION = "Libnice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE)."
 HOMEPAGE = "http://nice.freedesktop.org/wiki/"
 SRC_URI = "http://nice.freedesktop.org/releases/libnice-${PV}.tar.gz"
 
-LICENSE = "LGPLv2.1 MPLv1.1"
+LICENSE = "LGPLv2.1 & MPLv1.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=9c42325015702feda4f4d2f19a55b767 \
                     file://COPYING.LGPL;md5=2d5025d4aa3495befef8f17206a5b0a1 \
                     file://COPYING.MPL;md5=3c617710e51cdbe0fc00716f056dfb1a \
 "
 
-PR = "r3"
+PR = "r4"
 
 DEPENDS = "glib-2.0 gstreamer"
 
-- 
1.7.9.5




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

* [meta-oe][PATCH 4/4] iso-codes: set SUMMARY
  2012-10-17  8:42 [meta-oe][PATCH 0/4] Minor fixes Paul Eggleton
                   ` (2 preceding siblings ...)
  2012-10-17  8:42 ` [meta-oe][PATCH 3/4] libnice: tidy up meta variables Paul Eggleton
@ 2012-10-17  8:42 ` Paul Eggleton
  3 siblings, 0 replies; 5+ messages in thread
From: Paul Eggleton @ 2012-10-17  8:42 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 meta-oe/recipes-support/iso-codes/iso-codes_1.4.bb |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-oe/recipes-support/iso-codes/iso-codes_1.4.bb b/meta-oe/recipes-support/iso-codes/iso-codes_1.4.bb
index c9b9113..9502923 100644
--- a/meta-oe/recipes-support/iso-codes/iso-codes_1.4.bb
+++ b/meta-oe/recipes-support/iso-codes/iso-codes_1.4.bb
@@ -1,7 +1,8 @@
+SUMMARY = "ISO language, territory, currency, script codes and their translations"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LGPL-2.1;md5=fbc093901857fcd118f065f900982c24"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "ftp://pkg-isocodes.alioth.debian.org/pub/pkg-isocodes/iso-codes-${PV}.tar.bz2"
 SRC_URI[md5sum] = "4073466e57df23d39721513219e4f7ae"
-- 
1.7.9.5




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

end of thread, other threads:[~2012-10-17  8:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-17  8:42 [meta-oe][PATCH 0/4] Minor fixes Paul Eggleton
2012-10-17  8:42 ` [meta-oe][PATCH 1/4] libc-client: correct LICENSE Paul Eggleton
2012-10-17  8:42 ` [meta-oe][PATCH 2/4] rrdtool: add pango to DEPENDS Paul Eggleton
2012-10-17  8:42 ` [meta-oe][PATCH 3/4] libnice: tidy up meta variables Paul Eggleton
2012-10-17  8:42 ` [meta-oe][PATCH 4/4] iso-codes: set SUMMARY Paul Eggleton

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