diff options
| author | Chris Larson <chris_larson@mentor.com> | 2010-06-20 12:07:34 -0700 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:37 +0100 |
| commit | ecbd5ca720ce28284280dc60013b3f60e9dd934f (patch) | |
| tree | 00759b5193c3aeea2f7213a8df8596f23ad1cbc5 /bitbake/lib/bb/fetch/__init__.py | |
| parent | ef1de9ecaf73e28234d284b79ec45e084d0f0c53 (diff) | |
| download | poky-ecbd5ca720ce28284280dc60013b3f60e9dd934f.tar.gz | |
3.0 prep
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch/__init__.py')
| -rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 651fea8873..31b9653793 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
| @@ -24,6 +24,7 @@ BitBake build tools. | |||
| 24 | # | 24 | # |
| 25 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig | 25 | # Based on functions from the base bb module, Copyright 2003 Holger Schurig |
| 26 | 26 | ||
| 27 | from __future__ import absolute_import | ||
| 27 | from __future__ import print_function | 28 | from __future__ import print_function |
| 28 | import os, re | 29 | import os, re |
| 29 | import bb | 30 | import bb |
| @@ -727,18 +728,18 @@ class Fetch(object): | |||
| 727 | key = self._revision_key(url, ud, d) | 728 | key = self._revision_key(url, ud, d) |
| 728 | return "%s-%s" % (key, bb.data.getVar("PN", d, True) or "") | 729 | return "%s-%s" % (key, bb.data.getVar("PN", d, True) or "") |
| 729 | 730 | ||
| 730 | import cvs | 731 | from . import cvs |
| 731 | import git | 732 | from . import git |
| 732 | import local | 733 | from . import local |
| 733 | import svn | 734 | from . import svn |
| 734 | import wget | 735 | from . import wget |
| 735 | import svk | 736 | from . import svk |
| 736 | import ssh | 737 | from . import ssh |
| 737 | import perforce | 738 | from . import perforce |
| 738 | import bzr | 739 | from . import bzr |
| 739 | import hg | 740 | from . import hg |
| 740 | import osc | 741 | from . import osc |
| 741 | import repo | 742 | from . import repo |
| 742 | 743 | ||
| 743 | methods.append(local.Local()) | 744 | methods.append(local.Local()) |
| 744 | methods.append(wget.Wget()) | 745 | methods.append(wget.Wget()) |
