Re: [OE-core] [poky][PATCH] Fix npm to use https rather than http

2022-08-26 Thread Neil Horman
Copy that, thanks!

On Fri, Aug 26, 2022, 7:57 AM Ross Burton  wrote:

>
> > On 26 Aug 2022, at 11:43, Luca Ceresoli via lists.openembedded.org
>  wrote:
> >
> > Apparently you prepared this patch within the poky git repository. You
> > shouldn't do that, poky is an integration layer and should not be used
> > for bitbake development.
> >
> > Since you want to patch bitbake, you should:
> > - clone the bitbake repository
> > - make your commit there
> > - send it to the bitbake mailing list.
> >
> > Look at the README.md in the poky root directory for more info.
>
> FWIW, git is typically clever enough to handle this case.  Feel free to
> post the patch you have against the poky repository directly to the bitbake
> mailing list.
>
> Thanks,
> Ross

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#169916): 
https://lists.openembedded.org/g/openembedded-core/message/169916
Mute This Topic: https://lists.openembedded.org/mt/93257181/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



[OE-core] [poky][PATCH] Fix npm to use https rather than http

2022-08-25 Thread Neil Horman
Hit this error while building nlf-native recently:
{
  "error": {
"summary": "URI malformed",
"detail": ""
  }
}

Some poking about led me to discover that:
1) The npm.py tool replaces npm:// with http://, not https://
2) Some versions of the npm tool don't handle 301 redirects properly,
   choosing to display the above error instead when using the default
   nodejs registry

It would be good to go fix npm to handle the redirect properly, but it
seems like it would also be good to assume secure http when contacting a
registry, hence, this patch

Signed-off-by: Neil Horman 
---
 bitbake/lib/bb/fetch2/npm.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bitbake/lib/bb/fetch2/npm.py b/bitbake/lib/bb/fetch2/npm.py
index 8f7c10ac9b..8a179a339a 100644
--- a/bitbake/lib/bb/fetch2/npm.py
+++ b/bitbake/lib/bb/fetch2/npm.py
@@ -156,7 +156,7 @@ class Npm(FetchMethod):
 raise ParameterError("Invalid 'version' parameter", ud.url)
 
 # Extract the 'registry' part of the url
-ud.registry = re.sub(r"^npm://", "http://;, ud.url.split(";")[0])
+ud.registry = re.sub(r"^npm://", "https://;, ud.url.split(";")[0])
 
 # Using the 'downloadfilename' parameter as local filename
 # or the npm package name.
-- 
2.37.2


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#169894): 
https://lists.openembedded.org/g/openembedded-core/message/169894
Mute This Topic: https://lists.openembedded.org/mt/93257181/21656
Group Owner: openembedded-core+ow...@lists.openembedded.org
Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-