All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yu Ke <ke.yu@intel.com>
To: poky@yoctoproject.org
Subject: [PATCH 0/7] add initial bb.fetch2 code
Date: Sat, 08 Jan 2011 15:14:21 +0800	[thread overview]
Message-ID: <cover.1294469496.git.ke.yu@intel.com> (raw)

this patchset add bb.fetch2 as initiaial code base for fetcher overhaul,
and bb.fetcher.instance is introduced to swtich between bb.fetch and bb.fetch2.

The purpose of this patchset is to provide a place holder for fetcher overhaul.
currently the bb.fetch2 code is mostly the same as bb.fetch. In the future,
fetcher overhaul change will come to bb.fetch2, and this allow us to conduct
fetcher change without impacting the existing fetcher bb.fetch.

there is no functional change with this patchset, the bb.fetcher.instance is
set to bb.fetch by default.

Thanks Richard for the suggestion.

this patchset has been teseted by
- qemux86 poky-image-sato with empty $DL_DIR

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

Thanks,
    Yu Ke <ke.yu@intel.com>
---


Yu Ke (7):
  fetch2: copy bb.fetch to bb.fetch2 as initial code base
  bb.fetch2: replace bb.fetch with bb.fetch2 in the bb.fetch2
  bb: add bb.fetcher as dynamic fetch module instance for fetch/fetch2
  BBHandler: remove bb.fetch referrence
  bb.cooker: remove bb.fetch.persistent_database_connection referrence
  bb: replace bb.fetch referrence with bb.fetcher instance
  bbclass: replace the bb.fetch referrence with bb.fetcher instance

 bitbake/lib/bb/command.py                  |    3 +-
 bitbake/lib/bb/cooker.py                   |   10 +-
 bitbake/lib/bb/fetch2/__init__.py          |  833 ++++++++++++++++++++++++++++
 bitbake/lib/bb/fetch2/bzr.py               |  148 +++++
 bitbake/lib/bb/fetch2/cvs.py               |  172 ++++++
 bitbake/lib/bb/fetch2/git.py               |  261 +++++++++
 bitbake/lib/bb/fetch2/hg.py                |  180 ++++++
 bitbake/lib/bb/fetch2/local.py             |   73 +++
 bitbake/lib/bb/fetch2/osc.py               |  143 +++++
 bitbake/lib/bb/fetch2/perforce.py          |  206 +++++++
 bitbake/lib/bb/fetch2/repo.py              |   98 ++++
 bitbake/lib/bb/fetch2/ssh.py               |  118 ++++
 bitbake/lib/bb/fetch2/svk.py               |  104 ++++
 bitbake/lib/bb/fetch2/svn.py               |  204 +++++++
 bitbake/lib/bb/fetch2/wget.py              |   93 +++
 bitbake/lib/bb/fetcher.py                  |   26 +
 bitbake/lib/bb/parse/parse_py/BBHandler.py |    2 +-
 meta/classes/base.bbclass                  |   20 +-
 meta/classes/distrodata.bbclass            |   18 +-
 meta/classes/patch.bbclass                 |    4 +-
 meta/classes/sstate.bbclass                |   10 +-
 meta/classes/utility-tasks.bbclass         |   12 +-
 meta/classes/utils.bbclass                 |    2 +-
 23 files changed, 2697 insertions(+), 43 deletions(-)
 create mode 100644 bitbake/lib/bb/fetch2/__init__.py
 create mode 100644 bitbake/lib/bb/fetch2/bzr.py
 create mode 100644 bitbake/lib/bb/fetch2/cvs.py
 create mode 100644 bitbake/lib/bb/fetch2/git.py
 create mode 100644 bitbake/lib/bb/fetch2/hg.py
 create mode 100644 bitbake/lib/bb/fetch2/local.py
 create mode 100644 bitbake/lib/bb/fetch2/osc.py
 create mode 100644 bitbake/lib/bb/fetch2/perforce.py
 create mode 100644 bitbake/lib/bb/fetch2/repo.py
 create mode 100644 bitbake/lib/bb/fetch2/ssh.py
 create mode 100644 bitbake/lib/bb/fetch2/svk.py
 create mode 100644 bitbake/lib/bb/fetch2/svn.py
 create mode 100644 bitbake/lib/bb/fetch2/wget.py
 create mode 100644 bitbake/lib/bb/fetcher.py



             reply	other threads:[~2011-01-08  7:05 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-08  7:14 Yu Ke [this message]
2011-01-08  7:14 ` [PATCH 1/7] fetch2: copy bb.fetch to bb.fetch2 as initial code base Yu Ke
2011-01-08  7:15 ` [PATCH 2/7] bb.fetch2: replace bb.fetch with bb.fetch2 in the bb.fetch2 Yu Ke
2011-01-08  7:15 ` [PATCH 3/7] bb: add bb.fetcher as dynamic fetch module instance for fetch/fetch2 Yu Ke
2011-01-10 10:13   ` Joshua Lock
2011-01-10 11:42     ` Richard Purdie
2011-01-10 16:43       ` Richard Purdie
2011-01-10 20:19         ` Richard Purdie
2011-01-11  0:06           ` Yu Ke
2011-01-11  0:13           ` Yu Ke
2011-01-11  0:50             ` Richard Purdie
2011-01-11  1:16               ` Yu Ke
2011-01-11 11:54           ` Joshua Lock
2011-01-08  7:15 ` [PATCH 4/7] BBHandler: remove bb.fetch referrence Yu Ke
2011-01-08  7:15 ` [PATCH 5/7] bb.cooker: remove bb.fetch.persistent_database_connection referrence Yu Ke
2011-01-08  7:15 ` [PATCH 6/7] bb: replace bb.fetch referrence with bb.fetcher instance Yu Ke
2011-01-08  7:15 ` [PATCH 7/7] bbclass: replace the " Yu Ke

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.1294469496.git.ke.yu@intel.com \
    --to=ke.yu@intel.com \
    --cc=poky@yoctoproject.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.