aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-11-27 08:57:29 +0000
committerRichard Purdie <richard@openedhand.com>2006-11-27 08:57:29 +0000
commit9f10a98f448568f9e728bf827320def8732200eb (patch)
tree7cb92f28d74819fdbea6c99a667a099c60f498cd /bitbake
parentd8f7680dc0221880a1eeb7bf2275642dfd3ce263 (diff)
downloadopenembedded-core-contrib-9f10a98f448568f9e728bf827320def8732200eb.tar.gz
svn.py, git.py: Sync with bitbake trunk - comment changes
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@961 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/git.py2
-rw-r--r--bitbake/lib/bb/fetch/svn.py4
2 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py
index 75a7629223..bb517c9928 100644
--- a/bitbake/lib/bb/fetch/git.py
+++ b/bitbake/lib/bb/fetch/git.py
@@ -52,7 +52,7 @@ class Git(Fetch):
"""Class to fetch a module or modules from git repositories"""
def supports(self, url, ud, d):
"""
- Check to see if a given url can be fetched with cvs.
+ Check to see if a given url can be fetched with git.
"""
return ud.type in ['git']
diff --git a/bitbake/lib/bb/fetch/svn.py b/bitbake/lib/bb/fetch/svn.py
index b95de2a79b..a5dc91aaff 100644
--- a/bitbake/lib/bb/fetch/svn.py
+++ b/bitbake/lib/bb/fetch/svn.py
@@ -4,6 +4,10 @@
"""
BitBake 'Fetch' implementations
+This implementation is for svn. It is based on the cvs implementation.
+
+Copyright (C) 2004 Marcin Juszkiewicz
+
Classes for obtaining upstream sources for the
BitBake build tools.