All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] Pull request - some sync bits from OE
@ 2011-03-17 16:18 Chris Larson
  2011-03-17 16:18 ` [PATCH 01/12] oe.utils: add bb, bb.data imports Chris Larson
                   ` (12 more replies)
  0 siblings, 13 replies; 15+ messages in thread
From: Chris Larson @ 2011-03-17 16:18 UTC (permalink / raw)
  To: openembedded-core; +Cc: Chris Larson

From: Chris Larson <chris_larson@mentor.com>

This is primarily a sync of a couple OE features, along with a few minor
changes to ensure those features work fine for us.  More OE sync bits will be
forthcoming.  These certainly need review.  In particular, I haven't gotten
any feedback on how the poky folk feel about this approach to IMAGE_FEATURES
relative to their own, so please do comment on that, if you would :)

Pull URL: https://github.com/kergoth/oe-core
  Branch: oe-sync
  Browse: https://github.com/kergoth/oe-core/commits/oe-sync

Thanks,
    Chris Larson <chris_larson@mentor.com>
---


Chris Larson (12):
  oe.utils: add bb, bb.data imports
  oe.patch: add missing imports
  oe.path: sync up with current OE
  oe.utils: add inherits (sync from OE)
  base.bbclass: switch to current OE's imports handling
  Shift oe import logic out of the event handler
  Implement variable typing (sync from OE)
  oe.packagegroup: add code for package groups (sync from OE)
  Move packagedata code into oe.packagedata (sync from OE)
  packagedata: don't choke on empty PACKAGES
  image.bbclass: switch to OE's IMAGE_FEATURES
  Use oe.data for IMAGE_FEATURES

 meta/classes/base.bbclass                          |   44 ++++----
 meta/classes/image.bbclass                         |   41 +++++++-
 meta/classes/package.bbclass                       |    4 +-
 meta/classes/package_rpm.bbclass                   |    3 +-
 meta/classes/packagedata.bbclass                   |   68 +------------
 meta/classes/poky-image.bbclass                    |   88 ++++------------
 meta/classes/typecheck.bbclass                     |   12 ++
 meta/conf/bitbake.conf                             |    1 +
 meta/lib/oe/data.py                                |   13 +++
 meta/lib/oe/maketype.py                            |   97 ++++++++++++++++++
 meta/lib/oe/packagedata.py                         |  107 ++++++++++++++++++++
 meta/lib/oe/packagegroup.py                        |   29 ++++++
 meta/lib/oe/patch.py                               |    2 +
 meta/lib/oe/path.py                                |   21 +++--
 meta/lib/oe/test_types.py                          |   62 +++++++++++
 meta/lib/oe/types.py                               |  104 +++++++++++++++++++
 meta/lib/oe/utils.py                               |    6 +
 meta/recipes-core/images/poky-image-minimal-dev.bb |    2 +-
 meta/recipes-extended/images/poky-image-lsb-dev.bb |    2 +-
 meta/recipes-extended/images/poky-image-lsb-sdk.bb |    2 +-
 meta/recipes-sato/images/poky-image-sato-dev.bb    |    2 +-
 meta/recipes-sato/images/poky-image-sato-sdk.bb    |    2 +-
 22 files changed, 544 insertions(+), 168 deletions(-)
 create mode 100644 meta/classes/typecheck.bbclass
 create mode 100644 meta/lib/oe/data.py
 create mode 100644 meta/lib/oe/maketype.py
 create mode 100644 meta/lib/oe/packagedata.py
 create mode 100644 meta/lib/oe/packagegroup.py
 create mode 100644 meta/lib/oe/test_types.py
 create mode 100644 meta/lib/oe/types.py

-- 
1.7.2.3




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

end of thread, other threads:[~2011-03-21 17:56 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-17 16:18 [PATCH 00/12] Pull request - some sync bits from OE Chris Larson
2011-03-17 16:18 ` [PATCH 01/12] oe.utils: add bb, bb.data imports Chris Larson
2011-03-17 16:19 ` [PATCH 02/12] oe.patch: add missing imports Chris Larson
2011-03-17 16:19 ` [PATCH 03/12] oe.path: sync up with current OE Chris Larson
2011-03-17 16:19 ` [PATCH 04/12] oe.utils: add inherits (sync from OE) Chris Larson
2011-03-17 16:19 ` [PATCH 05/12] base.bbclass: switch to current OE's imports handling Chris Larson
2011-03-17 16:19 ` [PATCH 06/12] Shift oe import logic out of the event handler Chris Larson
2011-03-17 16:19 ` [PATCH 07/12] Implement variable typing (sync from OE) Chris Larson
2011-03-17 16:19 ` [PATCH 08/12] oe.packagegroup: add code for package groups " Chris Larson
2011-03-17 16:19 ` [PATCH 09/12] Move packagedata code into oe.packagedata " Chris Larson
2011-03-17 16:19 ` [PATCH 10/12] packagedata: don't choke on empty PACKAGES Chris Larson
2011-03-17 16:19 ` [PATCH 11/12] image.bbclass: switch to OE's IMAGE_FEATURES Chris Larson
2011-03-17 16:19 ` [PATCH 12/12] Use oe.data for IMAGE_FEATURES Chris Larson
2011-03-17 16:23 ` [PATCH 00/12] Pull request - some sync bits from OE Chris Larson
2011-03-21 17:53   ` Richard Purdie

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.