Re: [OE-core] [PATCH] lib/oe/reciputils.py: support character `+' in git pv

2019-06-03 Thread Alexander Kanavin
Thanks, this addresses the issue well :) Alex On Mon, 3 Jun 2019 at 10:49, Hongxu Jia wrote: > While pv contains char `+' (such as ncurses 6.1+20181013), > it was incorrectly converted to `6.1' > > In this commit: > - Convert [^\+]* to .*? > Support pv to contain char `+' and not greedy match

[OE-core] [PATCH] lib/oe/reciputils.py: support character `+' in git pv

2019-06-03 Thread Hongxu Jia
While pv contains char `+' (such as ncurses 6.1+20181013), it was incorrectly converted to `6.1' In this commit: - Convert [^\+]* to .*? Support pv to contain char `+' and not greedy match (Such as ncurses 6.1+20181013) - Add [^\+] to sfx match Support sfx contains extra chars between `+' a