[OE-core] [PATCH] convert-srcuri.py: remove extra spaces before backslash

2021-11-10 Thread kai
From: Kai Kang There may be more than one spaces before backslash in SRC_URI. Strip them otherwise it forges a malformed uri such as open-iscsi-user in meta-openstack: SRC_URI = "git://github.com/open-iscsi/open-iscsi.git;protocol=https ;branch=master \ Signed-off-by: Kai Kang --- scripts/c

Re: [OE-core] [PATCH] convert-srcuri.py: remove extra spaces before backslash

2021-11-11 Thread Quentin Schulz
Hi Kai, On November 11, 2021 4:48:14 AM GMT+01:00, kai wrote: >From: Kai Kang > >There may be more than one spaces before backslash in SRC_URI. Strip There could technically be tabs too and the current code (even after your patch) does not seem to handle that (from the git context I see in you

Re: [OE-core] [PATCH] convert-srcuri.py: remove extra spaces before backslash

2021-11-11 Thread kai
On 11/11/21 4:40 PM, Quentin Schulz wrote: Hi Kai, On November 11, 2021 4:48:14 AM GMT+01:00, kai wrote: From: Kai Kang There may be more than one spaces before backslash in SRC_URI. Strip There could technically be tabs too and the current code (even after your patch) does not seem to han