summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2006-03-16 23:41:59 +0000
committerHolger Hans Peter Freyther <zecke@selfish.org>2006-03-16 23:41:59 +0000
commitca5d762cf9bc6fcc8e0ab47b976cde0f98786f27 (patch)
tree54e1fad72f8fba6b7f69083692b3c8e8fe1dbe12
parentd17325cdaad9c3a4e0de1dbbbd546a5778839162 (diff)
downloadbitbake-ca5d762cf9bc6fcc8e0ab47b976cde0f98786f27.tar.gz
bitbake/lib/bb/fetch/svn:
Remove the CVS origin from the SVN fetcher. ext and pserver are not used by subversion.
-rw-r--r--lib/bb/fetch/svn.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/bb/fetch/svn.py b/lib/bb/fetch/svn.py
index 1d0692399..1df38f94d 100644
--- a/lib/bb/fetch/svn.py
+++ b/lib/bb/fetch/svn.py
@@ -98,21 +98,11 @@ class Svn(Fetch):
date = Fetch.getSRCDate(d)
- if "method" in parm:
- method = parm["method"]
- else:
- method = "pserver"
-
if "proto" in parm:
proto = parm["proto"]
else:
proto = "svn"
- svn_rsh = None
- if method == "ext":
- if "rsh" in parm:
- svn_rsh = parm["rsh"]
-
tarfn = data.expand('%s_%s_%s_%s_%s.tar.gz' % (module.replace('/', '.'), host, path.replace('/', '.'), revision, date), localdata)
data.setVar('TARFILES', dlfile, localdata)
data.setVar('TARFN', tarfn, localdata)
@@ -129,10 +119,6 @@ class Svn(Fetch):
olddir = os.path.abspath(os.getcwd())
os.chdir(data.expand(dldir, localdata))
-# setup svnroot
-# svnroot = ":" + method + ":" + user
-# if pswd:
-# svnroot += ":" + pswd
svnroot = host + path
data.setVar('SVNROOT', svnroot, localdata)