bitbake-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
From: public@smn.dk
To: bitbake-devel@lists.openembedded.org
Subject: Problems having both git and npmsw sources in recipe #bitbake
Date: Fri, 14 Apr 2023 04:41:57 -0700	[thread overview]
Message-ID: <ppBZ.1681472517878402202.SeyY@lists.openembedded.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 2300 bytes --]

Hi

I have posted the following topic under the group Openembedded-issues. I am a little unsure if that is the right place, as there seems to be little or no activity in that group?

Openembedded-issues@lists.openembedded.org | Problems having both git and npmsw sources in recipe ( https://lists.openembedded.org/g/Openembedded-issues/topic/problems_having_both_git_and/98260091?p=,,,20,0,0,0::recentpostdate/sticky,,,20,2,0,98260091,previd%3D1681471653367016231,nextid%3D1328543407000000000&previd=1681471653367016231&nextid=1328543407000000000 )

Hi

I am experiencing problems with a recipe where I have both a git and a npmsw source in the SRC_URI. It seems that when the fetcher is fetching from the shrinkwrap, the SRCREV variable has been deleted but it still ends up fetching from the git source resulting in an error because SRCREV is undefined.

The problem occurs because the Fetch class defaults to the value of SRC_URI if the urls parameter contains an empty list. The following change to the npmsw.py file seems to solve the problem:

diff --git a/bitbake/lib/bb/fetch2/npmsw.py b/bitbake/lib/bb/fetch2/npmsw.py
index a8c4d3528f..4d700a537a 100644
--- a/bitbake/lib/bb/fetch2/npmsw.py
+++ b/bitbake/lib/bb/fetch2/npmsw.py
@@ -193,7 +193,9 @@ class NpmShrinkWrap(FetchMethod):
# This fetcher resolves multiple URIs from a shrinkwrap file and then
# forwards it to a proxy fetcher. The management of the donestamp file,
# the lockfile and the checksums are forwarded to the proxy fetcher.
-        ud.proxy = Fetch([dep["url"] for dep in ud.deps if dep["url"]], data)
+        shrinkwrap_urls = [dep["url"] for dep in ud.deps if dep["url"]]
+        if shrinkwrap_urls:
+            ud.proxy = Fetch(shrinkwrap_urls, data)
ud.needdonestamp = False

Are this change OK or can it result in other issues?

Also more generally why does the Fetch class default to the value of SRC_URI variable if the urls parameter contains an empty list? Isn't this a strange implementation? It also seems to result in issues if the shrinkwrap file contains no dependencies.

Please note that I am fairly new to bitbake and completely new to the source code. :)

Kind regards,
Svend Meyland Nicolaisen

[-- Attachment #2: Type: text/html, Size: 4237 bytes --]

             reply	other threads:[~2023-04-14 11:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-14 11:41 public [this message]
2023-04-14 16:08 ` [bitbake-devel] Problems having both git and npmsw sources in recipe #bitbake Richard Purdie
2023-04-16 20:11   ` public

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=ppBZ.1681472517878402202.SeyY@lists.openembedded.org \
    --to=public@smn.dk \
    --cc=bitbake-devel@lists.openembedded.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).