From: Hongxu Jia Date: Sun, 12 May 2019 08:16:25 +0000 (+0800) Subject: ncurses: fix incorrect UPSTREAM_CHECK_GITTAGREGEX X-Git-Tag: uninative-2.5~165 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=50c872f402656e192d47b7a64e003f345227e55c;p=openembedded-core.git ncurses: fix incorrect UPSTREAM_CHECK_GITTAGREGEX The upstream git tag has a `upstream/' prefix, such as: >>> import re >>> pattern = "upstream/(?P\d+(\.\d+)+(\+\d+)*)" >>> string = "upstream/6.1+20181013" >>> result = re.match(pattern, string) >>> result['pver'] '6.1+20181013' Signed-off-by: Hongxu Jia Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb b/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb index ef6ca9879b..928c47742c 100644 --- a/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb +++ b/meta/recipes-core/ncurses/ncurses_6.1+20181013.bb @@ -8,4 +8,4 @@ SRC_URI += "file://0001-tic-hang.patch \ SRCREV = "7a97a7f937762ba342d5b2fd7cd090885a809835" S = "${WORKDIR}/git" EXTRA_OECONF += "--with-abi-version=5 --cache-file=${B}/config.cache" -UPSTREAM_CHECK_GITTAGREGEX = "(?P\d+(\.\d+)+(\+\d+)*)" +UPSTREAM_CHECK_GITTAGREGEX = "upstream/(?P\d+(\.\d+)+(\+\d+)*)"