[poky] [PATCH 3/7] bb: add bb.fetcher as dynamic fetch module instance for fetch/fetch2

Yu Ke ke.yu at intel.com
Fri Jan 7 23:15:07 PST 2011


bb.fetcher is introduced to swtich between bb.fetch and bb.fetch2.
all bb.fetch/bb.fetch2 referrence can be replaced with bb.fetcher.instance,
so that we can cleanly switch between bb.fetch and bb.fetch2

Signed-off-by: Yu Ke <ke.yu at intel.com>
---
 bitbake/lib/bb/fetcher.py |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)
 create mode 100644 bitbake/lib/bb/fetcher.py

diff --git a/bitbake/lib/bb/fetcher.py b/bitbake/lib/bb/fetcher.py
new file mode 100644
index 0000000..3818d78
--- /dev/null
+++ b/bitbake/lib/bb/fetcher.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# ex:ts=4:sw=4:sts=4:et
+# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import bb
+from bb import fetch, fetch2
+
+# switch between fetch and fetch2
+instance = bb.fetch
+__version__ = "1"
+
+#instance = bb.fetch2
+#__version__ = "2"
-- 
1.7.0.4




More information about the poky mailing list