]> code.ossystems Code Review - openembedded-core.git/commitdiff
distrodata.bbclass:Fix some recipes upstream version check issue.
authorMei Lei <lei.mei@intel.com>
Tue, 6 Dec 2011 09:09:52 +0000 (17:09 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 6 Dec 2011 14:25:47 +0000 (14:25 +0000)
Some recipes,like rt-tests,clutter-box2d,iproute2,didn't declare upstream protocal, but in distrodata.bbclass, we use rsync as the default protocal,
this will lead an error when checking upstream version.
Change default protocal from rsync to git in distrodata.bbclass.

Signed-off-by: Mei Lei <lei.mei@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/distrodata.bbclass

index 0c0b549fefa534db75bb80bb836c1c2b977327df..ff5b8368715bc5418f4b4104d63771276a593260 100644 (file)
@@ -562,7 +562,7 @@ python do_checkpkg() {
                if 'protocol' in parm:
                        gitproto = parm['protocol']
                else:
-                       gitproto = "rsync"
+                       gitproto = "git"
                gitcmd = "git ls-remote %s://%s%s%s *tag* 2>&1" % (gitproto, gituser, host, path)
                gitcmd2 = "git ls-remote %s://%s%s%s HEAD 2>&1" % (gitproto, gituser, host, path)
                tmp = os.popen(gitcmd).read()