All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH v3 00/13] Smart package management integration
Date: Wed, 12 Dec 2012 18:31:24 +0000	[thread overview]
Message-ID: <cover.1355337025.git.paul.eggleton@linux.intel.com> (raw)

This series integrates Smart into the root filesystem construction when
rpm packaging is used, and replaces zypper on the target if runtime
package management is enabled.

Improvements over previous versions of this series:
* Fix the sanity tests
* Fix runtime relocation issues
* Fix building multilib images


The following changes since commit b8b1b39961332c99d62ee466f7859bd62a0f806f:

  bitbake.conf/utils: Drop some OVERRIDES from FILESPATH (2012-12-11 15:58:27 +0000)

are available in the git repository at:

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

Mark Hatle (10):
  rootfs_rpm.bbclass: Revert to default shell logging behavior
  package_rpm: Update the way the multilib package names are translated
  package_rpm.bbclass: Fix the way the RPM platform file is generated
  package_rpm.bbclass: Add additional logging
  package_rpm.bbclass: Add support for incremental installs
  package_rpm.bbclass: Add additional install error detection
  rpm/smart: Fix runtime-relocation issues w/ RPM and Smart
  package_rpm.bbclass: Add a simply way to enable RPM debugging
  coreutils_6.9: Update the older coreutils to no longer provide 'su'
  package_rpm: Workaround for 'all' arch multilib package naming

Paul Eggleton (3):
  classes/*_rpm: integrate Smart into RPM filesystem construction
  classes/rootfs_rpm: install smart instead of zypper in rpm-based
    images
  Update sanity tests to use smart instead of zypper

 meta/classes/imagetest-qemu.bbclass                |    6 +-
 meta/classes/package_rpm.bbclass                   |  739 +++++++++-----------
 meta/classes/populate_sdk_rpm.bbclass              |   79 +--
 meta/classes/rootfs_rpm.bbclass                    |   89 ++-
 meta/recipes-core/coreutils/coreutils_6.9.bb       |    6 +-
 .../python/python-smartpm_1.4.1.bb                 |   17 +-
 .../rpm/rpm/rpm-debug-platform.patch               |   65 ++
 meta/recipes-devtools/rpm/rpm/rpm-platform.patch   |    2 +-
 meta/recipes-devtools/rpm/rpm/rpm-platform2.patch  |   87 ++-
 meta/recipes-devtools/rpm/rpm_5.4.9.bb             |   41 +-
 .../sanity/{zypper_help => smart_help}             |   24 +-
 .../sanity/{zypper_search => smart_query}          |   24 +-
 .../scenario/qemuarm/core-image-lsb                |    4 +-
 .../scenario/qemuarm/core-image-sato               |    4 +-
 .../scenario/qemuarm/core-image-sato-sdk           |    4 +-
 .../scenario/qemumips/core-image-lsb               |    4 +-
 .../scenario/qemumips/core-image-sato              |    4 +-
 .../scenario/qemumips/core-image-sato-sdk          |    4 +-
 .../scenario/qemuppc/core-image-lsb                |    4 +-
 .../scenario/qemuppc/core-image-sato               |    4 +-
 .../scenario/qemuppc/core-image-sato-sdk           |    4 +-
 .../scenario/qemux86-64/core-image-lsb             |    4 +-
 .../scenario/qemux86-64/core-image-sato            |    4 +-
 .../scenario/qemux86-64/core-image-sato-sdk        |    4 +-
 .../scenario/qemux86/core-image-lsb                |    4 +-
 .../scenario/qemux86/core-image-sato               |    4 +-
 .../scenario/qemux86/core-image-sato-sdk           |    4 +-
 .../tools/{zypper_test.sh => smart_test.sh}        |   22 +-
 28 files changed, 635 insertions(+), 626 deletions(-)
 create mode 100644 meta/recipes-devtools/rpm/rpm/rpm-debug-platform.patch
 rename scripts/qemuimage-tests/sanity/{zypper_help => smart_help} (52%)
 rename scripts/qemuimage-tests/sanity/{zypper_search => smart_query} (50%)
 rename scripts/qemuimage-tests/tools/{zypper_test.sh => smart_test.sh} (46%)

-- 
1.7.10.4




             reply	other threads:[~2012-12-12 18:46 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-12 18:31 Paul Eggleton [this message]
2012-12-12 18:31 ` [PATCH v3 01/13] rootfs_rpm.bbclass: Revert to default shell logging behavior Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 02/13] classes/*_rpm: integrate Smart into RPM filesystem construction Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 03/13] classes/rootfs_rpm: install smart instead of zypper in rpm-based images Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 04/13] Update sanity tests to use smart instead of zypper Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 05/13] package_rpm: Update the way the multilib package names are translated Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 06/13] package_rpm.bbclass: Fix the way the RPM platform file is generated Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 07/13] package_rpm.bbclass: Add additional logging Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 08/13] package_rpm.bbclass: Add support for incremental installs Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 09/13] package_rpm.bbclass: Add additional install error detection Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 10/13] rpm/smart: Fix runtime-relocation issues w/ RPM and Smart Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 11/13] package_rpm.bbclass: Add a simply way to enable RPM debugging Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 12/13] coreutils_6.9: Update the older coreutils to no longer provide 'su' Paul Eggleton
2012-12-12 18:31 ` [PATCH v3 13/13] package_rpm: Workaround for 'all' arch multilib package naming Paul Eggleton

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.1355337025.git.paul.eggleton@linux.intel.com \
    --to=paul.eggleton@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.