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

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