summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/hg.py
diff options
context:
space:
mode:
authorVolker Vogelhuber <v.vogelhuber@digitalendoscopy.de>2014-05-09 10:10:13 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-11 12:27:56 +0100
commit60436dc604a0b1962e379e45d486d51810158ae2 (patch)
tree9b02756da1bbaba84874a3ba5d6866d9151f7f2e /bitbake/lib/bb/fetch2/hg.py
parent76fd64f2e5755890fe442d023578e17355a52b20 (diff)
downloadpoky-60436dc604a0b1962e379e45d486d51810158ae2.tar.gz
bitbake: fix cloning of mercurial repository with username and password specified in url
(Bitbake rev: 9a328262e047562a6edf7b2ec7b8a1949e287cbe) Signed-off-by: Volker Vogelhuber <v.vogelhuber@digitalendoscopy.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/hg.py')
-rw-r--r--bitbake/lib/bb/fetch2/hg.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py
index 8a31b20ff1..157b1b1d8b 100644
--- a/bitbake/lib/bb/fetch2/hg.py
+++ b/bitbake/lib/bb/fetch2/hg.py
@@ -110,7 +110,10 @@ class Hg(FetchMethod):
110 options.append("-r %s" % ud.revision) 110 options.append("-r %s" % ud.revision)
111 111
112 if command == "fetch": 112 if command == "fetch":
113 cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module) 113 if ud.user and ud.pswd:
114 cmd = "%s --config auth.default.prefix=* --config auth.default.username=%s --config auth.default.password=%s --config \"auth.default.schemes=%s\" clone %s %s://%s/%s %s" % (basecmd, ud.user, ud.pswd, " ".join(options), proto, hgroot, ud.module, ud.module)
115 else:
116 cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module)
114 elif command == "pull": 117 elif command == "pull":
115 # do not pass options list; limiting pull to rev causes the local 118 # do not pass options list; limiting pull to rev causes the local
116 # repo not to contain it and immediately following "update" command 119 # repo not to contain it and immediately following "update" command