All of lore.kernel.org
 help / color / mirror / Atom feed
From: Joshua Lock <josh@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/12] Recipe upgrades, fixes and additions
Date: Mon,  7 Nov 2011 16:10:37 -0800	[thread overview]
Message-ID: <cover.1320709417.git.josh@linux.intel.com> (raw)

All,

Here's a series of patches I developed whilst trying to play around with some
Clutter based software.

The interesting pieces may be:
Clutter 1.8 series recipes - do we want/need to keep clutter 1.6 around?
Are we OK with continuing to namespace the clutter recipes by clutter
version?

Gconf - I've pulled in GConf from upstream as the D-Bus backend is maintained
there now. For this I pulled in the gnome-related classes from meta-oe as they
simplified this recipe and I've been wanting to see them merged for some time.

Pulseaudio - whilst adding a required build dependency I changed the recipe so
that it doesn't require X unless the X11 distro feature is enabled.

Cheers,
Joshua

The following changes since commit 0809f98e995d3a2ce24ad25bade3dcd5154061fd:

  lighttpd 1.4.29: rename index.html to avoid clashes with DL_DIR (2011-11-07 14:03:38 +0000)

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

Joshua Lock (12):
  cogl: add cogl 1.8.0 recipe
  clutter-1.8: add 1.8.0
  clutter-gst-1.8: add 1.4.2 for use with clutter 1.8
  clutter-gtk-1.8: add clutter-gtk 0.11.4
  mx: add mx toolkit 1.3.2
  classes/[gnome|gnomebase|mime]: merge meta-oe's enhance gnome related
    classes
  gconf: add upstream GNOME gconf 3.2.3 and drop gconf-dbus
  libcanberra: add libvorbis to DEPENDS
  gypsy: fix packaging
  connman: split scripts into separate package
  pulseaudio: make X11 dependencies optional and add gtk+
  contacts: fix packaging of icons

 meta/classes/gnome-base.bbclass                    |   15 +++++
 meta/classes/gnome.bbclass                         |   19 +-----
 meta/classes/gnomebase.bbclass                     |   32 +++++++++++
 meta/classes/mime.bbclass                          |   56 +++++++++++++++++++
 meta/conf/distro/include/default-providers.inc     |    2 -
 meta/conf/multilib.conf                            |    2 +-
 meta/recipes-connectivity/connman/connman.inc      |    6 ++-
 meta/recipes-connectivity/gypsy/gypsy_0.8.bb       |    4 +-
 meta/recipes-gnome/gnome/gconf-3.2.3/nointro.patch |   59 ++++++++++++++++++++
 meta/recipes-gnome/gnome/gconf-dbus_705.bb         |   43 --------------
 meta/recipes-gnome/gnome/gconf_3.2.3.bb            |   43 ++++++++++++++
 meta/recipes-graphics/clutter/clutter-1.8_1.8.0.bb |   26 +++++++++
 .../clutter/clutter-gst-1.8_1.4.2.bb               |   22 +++++++
 .../clutter/clutter-gst/enable_tests-1.8.bb        |   15 +++++
 .../clutter/clutter-gtk-1.8_0.11.4.bb              |   11 ++++
 meta/recipes-graphics/clutter/cogl.inc             |    2 +-
 .../clutter/cogl/macro-versions.patch              |   26 +++++++++
 meta/recipes-graphics/clutter/cogl_1.8.0.bb        |    9 +++
 meta/recipes-graphics/mx/mx_1.3.2.bb               |   17 ++++++
 .../pulseaudio/libcanberra_0.28.bb                 |    2 +-
 meta/recipes-multimedia/pulseaudio/pulseaudio.inc  |    4 +-
 meta/recipes-sato/pimlico/contacts.inc             |    3 +-
 22 files changed, 348 insertions(+), 70 deletions(-)
 create mode 100644 meta/classes/gnome-base.bbclass
 create mode 100644 meta/classes/gnomebase.bbclass
 create mode 100644 meta/classes/mime.bbclass
 create mode 100644 meta/recipes-gnome/gnome/gconf-3.2.3/nointro.patch
 delete mode 100644 meta/recipes-gnome/gnome/gconf-dbus_705.bb
 create mode 100644 meta/recipes-gnome/gnome/gconf_3.2.3.bb
 create mode 100644 meta/recipes-graphics/clutter/clutter-1.8_1.8.0.bb
 create mode 100644 meta/recipes-graphics/clutter/clutter-gst-1.8_1.4.2.bb
 create mode 100644 meta/recipes-graphics/clutter/clutter-gst/enable_tests-1.8.bb
 create mode 100644 meta/recipes-graphics/clutter/clutter-gtk-1.8_0.11.4.bb
 create mode 100644 meta/recipes-graphics/clutter/cogl/macro-versions.patch
 create mode 100644 meta/recipes-graphics/clutter/cogl_1.8.0.bb
 create mode 100644 meta/recipes-graphics/mx/mx_1.3.2.bb

-- 
1.7.7




             reply	other threads:[~2011-11-08  0:17 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-08  0:10 Joshua Lock [this message]
2011-11-08  0:10 ` [PATCH 01/12] cogl: add cogl 1.8.0 recipe Joshua Lock
2011-11-08  0:10 ` [PATCH 02/12] clutter-1.8: add 1.8.0 Joshua Lock
2011-11-08  0:10 ` [PATCH 03/12] clutter-gst-1.8: add 1.4.2 for use with clutter 1.8 Joshua Lock
2011-11-08 16:10   ` Saul Wold
2011-11-08 16:30     ` Joshua Lock
2011-11-08 16:54       ` Saul Wold
2011-11-08 16:59         ` Joshua Lock
2011-11-08  0:10 ` [PATCH 04/12] clutter-gtk-1.8: add clutter-gtk 0.11.4 Joshua Lock
2011-11-08  0:10 ` [PATCH 05/12] mx: add mx toolkit 1.3.2 Joshua Lock
2011-11-08  0:10 ` [PATCH 06/12] classes/[gnome|gnomebase|mime]: merge meta-oe's enhance gnome related classes Joshua Lock
2011-11-08 14:05   ` Richard Purdie
2011-11-08 16:35     ` Joshua Lock
2011-11-08  0:10 ` [PATCH 07/12] gconf: add upstream GNOME gconf 3.2.3 and drop gconf-dbus Joshua Lock
2011-11-08  0:10 ` [PATCH 08/12] libcanberra: add libvorbis to DEPENDS Joshua Lock
2011-11-08  0:10 ` [PATCH 09/12] gypsy: fix packaging Joshua Lock
2011-11-08  0:10 ` [PATCH 10/12] connman: split scripts into separate package Joshua Lock
2011-11-08 14:17   ` Koen Kooi
2011-11-08  0:10 ` [PATCH 11/12] pulseaudio: make X11 dependencies optional and add gtk+ Joshua Lock
2011-11-08  0:10 ` [PATCH 12/12] contacts: fix packaging of icons Joshua Lock
2011-11-08 14:18 ` [PATCH 00/12] Recipe upgrades, fixes and additions Richard Purdie
2011-11-08 15:48   ` Saul Wold
2011-11-15 19:03   ` Saul Wold
2011-11-15 21:38     ` Richard Purdie
2011-11-15 21:48       ` Joshua Lock
2011-11-08 17:36 ` Saul Wold
2011-11-08 18:31   ` Joshua Lock

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1320709417.git.josh@linux.intel.com \
    --to=josh@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.