From patchwork Tue Jul 10 11:16:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 3/5] fetch2/hg.py: Use "protocol" parameter and warn user if recipe is using "proto" Date: Tue, 10 Jul 2012 11:16:46 -0000 From: Andrei Gherzan X-Patchwork-Id: 31613 Message-Id: To: bitbake-devel@lists.openembedded.org If SRC_URI uses the parameter "proto" while specifying the protocol, use this value but warn the user about this problem. Signed-off-by: Andrei Gherzan --- bitbake/lib/bb/fetch2/hg.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bitbake/lib/bb/fetch2/hg.py b/bitbake/lib/bb/fetch2/hg.py index ad6e85d..31ba1cf 100644 --- a/bitbake/lib/bb/fetch2/hg.py +++ b/bitbake/lib/bb/fetch2/hg.py @@ -82,7 +82,12 @@ class Hg(FetchMethod): basecmd = data.expand('${FETCHCMD_hg}', d) - proto = ud.parm.get('proto', 'http') + proto = ud.parm.get('protocol', 'http') + + if ud.parm.get('proto') is not None: + logger.warn('Update %s recipe to use "protocol" not "proto".', d.getVar('PN', True)) + # Use proto value for now + proto = ud.parm.get('proto') host = ud.host if proto == "file":