From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Robert Yang <liezhi.yang@windriver.com>
Cc: bitbake-devel@lists.openembedded.org
Subject: Re: [PATCH 1/1] bitbake: fetch2/git: Anchor names when using ls-remote
Date: Wed, 26 Mar 2014 10:04:59 +0000 [thread overview]
Message-ID: <1395828299.24890.85.camel@ted> (raw)
In-Reply-To: <6d78004e5ccfd737bac24e5346d079aab11df2e7.1395802560.git.liezhi.yang@windriver.com>
On Wed, 2014-03-26 at 05:27 -0400, Robert Yang wrote:
> From: Richard Purdie <richard.purdie@linuxfoundation.org>
>
> When specifying tags, they're searched for unanchored so foo/bar could
> match:
>
> refs/heads/abc/foo/bar
> refs/heads/xyz/foo/bar
> refs/heads/foo/bar
>
> This change anchors the expressions so they are based against heads
> or tags (or any other base level tree that has been created).
>
> (Bitbake master rev: df2e0972cd1db7abd5ec8b7cb295fb0c42e284a4)
>
> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
>
> Conflicts:
> bitbake/lib/bb/fetch2/git.py
> (ud.basecmd and basecmd conflicts, keep using basecmd)
>
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
> bitbake/lib/bb/fetch2/git.py | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
> index 6175e4c..cff5ce1 100644
> --- a/bitbake/lib/bb/fetch2/git.py
> +++ b/bitbake/lib/bb/fetch2/git.py
> @@ -305,8 +305,8 @@ class Git(FetchMethod):
> username = ""
>
> basecmd = data.getVar("FETCHCMD_git", d, True) or "git"
> - cmd = "%s ls-remote %s://%s%s%s %s" % \
> - (basecmd, ud.proto, username, ud.host, ud.path, ud.branches[name])
> + cmd = "%s ls-remote %s://%s%s%s refs/heads/%s refs/tags/%s" % \
> + (basecmd, ud.proto, username, ud.host, ud.path, ud.unresolvedrev[name], ud.unresolvedrev[name])
Shouldn't this be ud.branches[name] for dora?
Cheers,
Richard
next prev parent reply other threads:[~2014-03-26 10:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-26 9:27 [dora] [PATCH 0/1] bitbake: fetch2/git: Anchor names when using ls-remote Robert Yang
2014-03-26 9:27 ` [PATCH 1/1] " Robert Yang
2014-03-26 10:04 ` Richard Purdie [this message]
2014-03-27 3:25 ` Robert Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1395828299.24890.85.camel@ted \
--to=richard.purdie@linuxfoundation.org \
--cc=bitbake-devel@lists.openembedded.org \
--cc=liezhi.yang@windriver.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.