All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9]Realize archiving functions
@ 2012-03-26 10:49 Xiaofeng Yan
  2012-03-26 10:49 ` [PATCH 1/9] sourcepkg.bbclass: Remove sourcepkg.bbclass Xiaofeng Yan
                   ` (8 more replies)
  0 siblings, 9 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2012-03-26 10:49 UTC (permalink / raw)
  To: openembedded-core

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

Hi Saul,

I have modified archiver.bbclass according to your suggestion.
- If the original source is tarball, then copy this package to ${DEPLOY_DIR}/sources
- If the original source comes from git, then archive this directory unpacked to tarball

If you have any suggestion, I will modify this bbclass.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: xiaofeng/1977
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/1977

Thanks,
    Xiaofeng Yan <xiaofeng.yan@windriver.com>
---


Xiaofeng Yan (9):
  sourcepkg.bbclass: Remove sourcepkg.bbclass
  src_distribute.bbclass: Remove src__distribute.bbclass
  src_distributelocal.bbclass: Remove src_distribute_local.bbclass
  package_rpm: Add srpm function to this bbclass
  archiver.bbclass:
  archive-original-source.bbclass: Archive original source
  archive-configured-source.bbclass: Archive configured source
  archive-patched-source.bbclass: Archive patched source
  local.conf.sample: Add set for archiving packages

 meta-yocto/conf/local.conf.sample              |   33 ++
 meta/classes/archive-configured-source.bbclass |   14 +
 meta/classes/archive-original-source.bbclass   |   14 +
 meta/classes/archive-patched-source.bbclass    |   14 +
 meta/classes/archiver.bbclass                  |  460 ++++++++++++++++++++++++
 meta/classes/package_rpm.bbclass               |   53 +++-
 meta/classes/sourcepkg.bbclass                 |  107 ------
 meta/classes/src_distribute.bbclass            |   49 ---
 meta/classes/src_distribute_local.bbclass      |   33 --
 9 files changed, 585 insertions(+), 192 deletions(-)
 create mode 100644 meta/classes/archive-configured-source.bbclass
 create mode 100644 meta/classes/archive-original-source.bbclass
 create mode 100644 meta/classes/archive-patched-source.bbclass
 create mode 100644 meta/classes/archiver.bbclass
 delete mode 100644 meta/classes/sourcepkg.bbclass
 delete mode 100644 meta/classes/src_distribute.bbclass
 delete mode 100644 meta/classes/src_distribute_local.bbclass




^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PATCH 0/9] Realize archiving functions
@ 2012-03-27  2:24 Xiaofeng Yan
  0 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2012-03-27  2:24 UTC (permalink / raw)
  To: openembedded-core

From: Xiaofeng Yan <xiaofeng.yan@windriver.com>

Hi Saul,

I have modified archiver.bbclass according to your suggestion.
- If the original source is tarball, then copy this package to ${DEPLOY_DIR}/sources
- If the original source comes from git, then archive this directory unpacked to tarball

If you have any suggestion, I will modify this bbclass.


Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: xiaofeng/distro
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=xiaofeng/distro

Thanks,
    Xiaofeng Yan <xiaofeng.yan@windriver.com>
---


Xiaofeng Yan (9):
  sourcepkg.bbclass: Remove sourcepkg.bbclass
  src_distribute.bbclass: Remove src__distribute.bbclass
  src_distributelocal.bbclass: Remove src_distribute_local.bbclass
  package_rpm: Add srpm function to this bbclass
  archiver.bbclass: New bbclass for archiving sources, patches, logs
    and scripts
  archive-original-source.bbclass: Archive original source
  archive-configured-source.bbclass: Archive configured source
  archive-patched-source.bbclass: Archive patched source
  local.conf.sample.extended: The set for archiving packages

 meta-yocto/conf/local.conf.sample.extended     |   32 ++
 meta/classes/archive-configured-source.bbclass |   14 +
 meta/classes/archive-original-source.bbclass   |   14 +
 meta/classes/archive-patched-source.bbclass    |   14 +
 meta/classes/archiver.bbclass                  |  460 ++++++++++++++++++++++++
 meta/classes/package_rpm.bbclass               |   53 +++-
 meta/classes/sourcepkg.bbclass                 |  107 ------
 meta/classes/src_distribute.bbclass            |   49 ---
 meta/classes/src_distribute_local.bbclass      |   33 --
 9 files changed, 584 insertions(+), 192 deletions(-)
 create mode 100644 meta/classes/archive-configured-source.bbclass
 create mode 100644 meta/classes/archive-original-source.bbclass
 create mode 100644 meta/classes/archive-patched-source.bbclass
 create mode 100644 meta/classes/archiver.bbclass
 delete mode 100644 meta/classes/sourcepkg.bbclass
 delete mode 100644 meta/classes/src_distribute.bbclass
 delete mode 100644 meta/classes/src_distribute_local.bbclass




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

end of thread, other threads:[~2012-03-27  2:35 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-26 10:49 [PATCH 0/9]Realize archiving functions Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 1/9] sourcepkg.bbclass: Remove sourcepkg.bbclass Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 2/9] src_distribute.bbclass: Remove src__distribute.bbclass Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 3/9] src_distributelocal.bbclass: Remove src_distribute_local.bbclass Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 4/9] package_rpm: Add srpm function to this bbclass Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 5/9] archiver.bbclass: Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 6/9] archive-original-source.bbclass: Archive original source Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 7/9] archive-configured-source.bbclass: Archive configured source Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 8/9] archive-patched-source.bbclass: Archive patched source Xiaofeng Yan
2012-03-26 10:49 ` [PATCH 9/9] local.conf.sample: Add set for archiving packages Xiaofeng Yan
2012-03-26 17:04   ` Richard Purdie
2012-03-27  2:26     ` Xiaofeng Yan
  -- strict thread matches above, loose matches on Subject: below --
2012-03-27  2:24 [PATCH 0/9] Realize archiving functions Xiaofeng Yan

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.