summaryrefslogtreecommitdiffstats
path: root/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:34 +0100
commit9a328262e047562a6edf7b2ec7b8a1949e287cbe (patch)
treeb4be9b56bae78e4cca2eae9236500c268e7b2c56 /lib/bb/fetch2/hg.py
parentaaefbc0b4e7484d6f4854ce49602821a6e4adc4b (diff)
downloadbitbake-contrib-9a328262e047562a6edf7b2ec7b8a1949e287cbe.tar.gz
fix cloning of mercurial repository with username and password specified in url
Signed-off-by: Volker Vogelhuber <v.vogelhuber@digitalendoscopy.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/hg.py')
-rw-r--r--lib/bb/fetch2/hg.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/bb/fetch2/hg.py b/lib/bb/fetch2/hg.py
index 8a31b20ff..157b1b1d8 100644
--- a/lib/bb/fetch2/hg.py
+++ b/lib/bb/fetch2/hg.py
@@ -110,7 +110,10 @@ class Hg(FetchMethod):
options.append("-r %s" % ud.revision)
if command == "fetch":
- cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module)
+ if ud.user and ud.pswd:
+ 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)
+ else:
+ cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module)
elif command == "pull":
# do not pass options list; limiting pull to rev causes the local
# repo not to contain it and immediately following "update" command