All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/13] Smart package management integration
@ 2012-12-12 18:31 Paul Eggleton
  2012-12-12 18:31 ` [PATCH v3 01/13] rootfs_rpm.bbclass: Revert to default shell logging behavior Paul Eggleton
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Paul Eggleton @ 2012-12-12 18:31 UTC (permalink / raw)
  To: openembedded-core

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




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

end of thread, other threads:[~2012-12-12 18:46 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-12 18:31 [PATCH v3 00/13] Smart package management integration Paul Eggleton
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

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.