Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/2] Fix clutter-1.6
@ 2011-04-19 20:50 Joshua Lock
  2011-04-19 20:50 ` [PATCH 1/2] json-glib: new recipe required by clutter Joshua Lock
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Joshua Lock @ 2011-04-19 20:50 UTC (permalink / raw)
  To: openembedded-core

From: Joshua Lock <josh@linux.intel.com>

With a recent patchset I changed clutter to depend on a json-glib recipe then
promptly didn't include that recipe in the patch series - apologies.

Further I've removed a patch from the 1.6 recipe which is no longer required.

Pull URL: git://git.openembedded.org/openembedded-core-contrib
  Branch: josh/clutter
  Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=josh/clutter

Thanks,
    Joshua Lock <josh@linux.intel.com>
---


Joshua Lock (2):
  json-glib: new recipe required by clutter
  clutter-1.6: drop no longer required patch

 meta/recipes-gnome/json-glib/json-glib_0.12.2.bb   |   20 ++++++++++++++++++++
 meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb |    5 ++---
 2 files changed, 22 insertions(+), 3 deletions(-)
 create mode 100644 meta/recipes-gnome/json-glib/json-glib_0.12.2.bb

-- 
1.7.4.4




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

* [PATCH 1/2] json-glib: new recipe required by clutter
  2011-04-19 20:50 [PATCH 0/2] Fix clutter-1.6 Joshua Lock
@ 2011-04-19 20:50 ` Joshua Lock
  2011-04-19 20:50 ` [PATCH 2/2] clutter-1.6: drop no longer required patch Joshua Lock
  2011-04-19 21:57 ` [PATCH 0/2] Fix clutter-1.6 Koen Kooi
  2 siblings, 0 replies; 5+ messages in thread
From: Joshua Lock @ 2011-04-19 20:50 UTC (permalink / raw)
  To: openembedded-core

From: Joshua Lock <josh@linux.intel.com>

Signed-off-by: Joshua Lock <josh@linux.intel.com>
---
 meta/recipes-gnome/json-glib/json-glib_0.12.2.bb |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-gnome/json-glib/json-glib_0.12.2.bb

diff --git a/meta/recipes-gnome/json-glib/json-glib_0.12.2.bb b/meta/recipes-gnome/json-glib/json-glib_0.12.2.bb
new file mode 100644
index 0000000..58dcde9
--- /dev/null
+++ b/meta/recipes-gnome/json-glib/json-glib_0.12.2.bb
@@ -0,0 +1,20 @@
+SUMMARY = "JSON-GLib implements a full JSON parser using GLib and GObject."
+DESCRIPTION = "Use JSON-GLib it is possible to parse and generate valid JSON\
+ data structures, using a DOM-like API. JSON-GLib also offers GObject \
+integration, providing the ability to serialize and deserialize GObject \
+instances to and from JSON data types."
+HOMEPAGE = "http://live.gnome.org/JsonGlib"
+
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
+
+DEPENDS = "glib-2.0"
+
+SRC_URI[archive.md5sum] = "71f911329c9f742543b378c3494490da"
+SRC_URI[archive.sha256sum] = "89fa9b870dfe2d8b7b00210be76cdbb2d46a8d2cc77ca7cbe5d081bdf8cad780"
+
+PR = "r0"
+
+inherit gnome
+
+EXTRA_OECONF = "--disable-introspection"
-- 
1.7.4.4




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

* [PATCH 2/2] clutter-1.6: drop no longer required patch
  2011-04-19 20:50 [PATCH 0/2] Fix clutter-1.6 Joshua Lock
  2011-04-19 20:50 ` [PATCH 1/2] json-glib: new recipe required by clutter Joshua Lock
@ 2011-04-19 20:50 ` Joshua Lock
  2011-04-19 21:57 ` [PATCH 0/2] Fix clutter-1.6 Koen Kooi
  2 siblings, 0 replies; 5+ messages in thread
From: Joshua Lock @ 2011-04-19 20:50 UTC (permalink / raw)
  To: openembedded-core

From: Joshua Lock <josh@linux.intel.com>

The test-conformance-fix.patch is no longer required for clutter-1.6

Signed-off-by: Joshua Lock <josh@linux.intel.com>
---
 meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb b/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb
index ffcc42d..f30398d 100644
--- a/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb
+++ b/meta/recipes-graphics/clutter/clutter-1.6_1.6.8.bb
@@ -1,6 +1,6 @@
 require recipes-graphics/clutter/clutter.inc
 
-PR = "r0"
+PR = "r1"
 
 # Internal json-glib was removed in Clutter 1.5.2
 STDDEPENDS += "json-glib"
@@ -9,8 +9,7 @@ PACKAGES =+ "${PN}-examples"
 FILES_${PN}-examples = "${bindir}/test-* ${pkgdatadir}/redhand.png"
 
 SRC_URI = "http://source.clutter-project.org/sources/clutter/1.6/clutter-${PV}.tar.bz2 \
-           file://enable_tests-1.4.patch \
-           file://test-conformance-fix.patch"
+           file://enable_tests-1.4.patch"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34"
 S = "${WORKDIR}/clutter-1.6.8"
-- 
1.7.4.4




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

* Re: [PATCH 0/2] Fix clutter-1.6
  2011-04-19 20:50 [PATCH 0/2] Fix clutter-1.6 Joshua Lock
  2011-04-19 20:50 ` [PATCH 1/2] json-glib: new recipe required by clutter Joshua Lock
  2011-04-19 20:50 ` [PATCH 2/2] clutter-1.6: drop no longer required patch Joshua Lock
@ 2011-04-19 21:57 ` Koen Kooi
  2011-04-19 22:39   ` Joshua Lock
  2 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2011-04-19 21:57 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 19 apr 2011, om 22:50 heeft Joshua Lock het volgende geschreven:

> From: Joshua Lock <josh@linux.intel.com>
> 
> With a recent patchset I changed clutter to depend on a json-glib recipe then
> promptly didn't include that recipe in the patch series - apologies.
> 
> Further I've removed a patch from the 1.6 recipe which is no longer required.

Since we started discussing this series the clutter people have had a few new releases, any volunteers for adding the latest 1.6.x?

regards,

Koen


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

* Re: [PATCH 0/2] Fix clutter-1.6
  2011-04-19 21:57 ` [PATCH 0/2] Fix clutter-1.6 Koen Kooi
@ 2011-04-19 22:39   ` Joshua Lock
  0 siblings, 0 replies; 5+ messages in thread
From: Joshua Lock @ 2011-04-19 22:39 UTC (permalink / raw)
  To: openembedded-core

On Tue, 2011-04-19 at 23:57 +0200, Koen Kooi wrote:
> Op 19 apr 2011, om 22:50 heeft Joshua Lock het volgende geschreven:
> 
> > From: Joshua Lock <josh@linux.intel.com>
> > 
> > With a recent patchset I changed clutter to depend on a json-glib recipe then
> > promptly didn't include that recipe in the patch series - apologies.
> > 
> > Further I've removed a patch from the 1.6 recipe which is no longer required.
> 
> Since we started discussing this series the clutter people have had a few new releases, any volunteers for adding the latest 1.6.x?

Good point, give me a few minutes.

Joshua
-- 
Joshua Lock
        Yocto Build System Monkey
        Intel Open Source Technology Centre




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

end of thread, other threads:[~2011-04-19 22:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-19 20:50 [PATCH 0/2] Fix clutter-1.6 Joshua Lock
2011-04-19 20:50 ` [PATCH 1/2] json-glib: new recipe required by clutter Joshua Lock
2011-04-19 20:50 ` [PATCH 2/2] clutter-1.6: drop no longer required patch Joshua Lock
2011-04-19 21:57 ` [PATCH 0/2] Fix clutter-1.6 Koen Kooi
2011-04-19 22:39   ` Joshua Lock

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