]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
fetch/hg.py: Fix hg fetcher username/password handling and fix crash
authorRichard Purdie <rpurdie@linux.intel.com>
Tue, 30 Sep 2008 20:05:51 +0000 (20:05 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Tue, 30 Sep 2008 20:05:51 +0000 (20:05 +0000)
ChangeLog
lib/bb/fetch/hg.py

index 225786c51e8445e1e6f5e005da3efead39feaac9..943a5f972f0c404f3542aed136f736095084ed1a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -145,6 +145,7 @@ Changes in Bitbake 1.9.x:
        - Allow to checkout CVS by Date and Time. Just add HHmm to the SRCDATE.
        - Move prunedir function to utils.py and add explode_dep_versions function
        - Raise an exception if SRCREV == 'INVALID'
+       - Fix hg fetcher username/password handling and fix crash
 
 Changes in Bitbake 1.8.0:
        - Release 1.7.x as a stable series
index ee3bd2f7fe132949ed4957d5f3c3daa13e66a9d2..1cd5a8aa5cdceb6b8bd883fd1246d794e2315c40 100644 (file)
@@ -79,7 +79,10 @@ class Hg(Fetch):
             host = "/"
             ud.host = "localhost"
 
-        hgroot = host + ud.path
+        if ud.user == None:
+            hgroot = host + ud.path
+        else:
+            hgroot = ud.user + "@" + host + ud.path
 
         if command is "info":
             return "%s identify -i %s://%s/%s" % (basecmd, proto, hgroot, ud.module)
@@ -91,7 +94,10 @@ class Hg(Fetch):
         if command is "fetch":
             cmd = "%s clone %s %s://%s/%s %s" % (basecmd, " ".join(options), proto, hgroot, ud.module, ud.module)
         elif command is "pull":
-            cmd = "%s pull %s" % (basecmd, " ".join(options))
+            # do not pass options list; limiting pull to rev causes the local
+            # repo not to contain it and immediately following "update" command
+            # will crash
+            cmd = "%s pull" % (basecmd)
         elif command is "update":
             cmd = "%s update -C %s" % (basecmd, " ".join(options))
         else: