[bitbake-devel] [PATCH] bitbake: fetch2/git: Add URL when latest_revision generates an exception.

Richard Purdie richard.purdie at linuxfoundation.org
Tue Apr 28 16:46:01 UTC 2015


On Mon, 2015-04-27 at 11:15 -0500, Mariano Lopez wrote:
> The URL is not sent when _latest_revision generates and exception.
> When performing the sanity checks it is not possible to know the URI 
> that failed.
> 
> This add the URL when latest_revision generates an exception.
> 
> Please disregard previous patch with the same topic.

Please put a message like the above which need not be part of the final
commit below the --- separator below.

> [YOCTO: #7592]
> 
> Signed-off-by: Mariano Lopez <mariano.lopez at linux.intel.com>
> ---
>   bitbake/lib/bb/fetch2/git.py | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
> index 0fd9bee..0d91431 100644
> --- a/bitbake/lib/bb/fetch2/git.py
> +++ b/bitbake/lib/bb/fetch2/git.py
> @@ -352,7 +352,7 @@ class Git(FetchMethod):
>               for l in output.split('\n'):
>                   if s in l:
>                       return l.split()[0]
> -        raise bb.fetch2.FetchError("Unable to resolve '%s' in upstream 
> git repository in git ls-remote output" % ud.unresolvedrev[name])
> +        raise bb.fetch2.FetchError("Unable to resolve '%s' in upstream 
> git repository in git ls-remote output for %s" % 
> (ud.unresolvedrev[name], ud.host+ud.path))
> 
>       def latest_versionstring(self, ud, d):
>           """

Sadly I can't get this patch to apply since the mail client you've sent
this with has mangled the patch with linewrap and done something ugly to
the whitespace.

Cheers,

Richard




More information about the bitbake-devel mailing list