summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorEtienne Cordonnier <ecordonnier@snap.com>2023-08-21 15:30:07 +0200
committerSteve Sakoman <steve@sakoman.com>2023-12-01 04:14:19 -1000
commitc86e8fe28759cf34ee5430cd200688aa04615636 (patch)
tree2260ec1f7f51726c0b218a86fd73012705000f3b /meta
parent3afde32bfa5e5c7c4f0ebefb66d316d9677b30bd (diff)
downloadpoky-c86e8fe28759cf34ee5430cd200688aa04615636.tar.gz
vim: update obsolete comment
vim 8.3 has been out for a long time, so this comment is obsolete. However we still need UPSTREAM_VERSION_UNKNOWN, since we ignore the last digit of the upstream version number. Test result: $ devtool check-upgrade-status vim ... INFO: vim 9.0.1592 UNKNOWN Tom Rini <trini@konsulko.com> c0370529c027abc5b1698d53fcfb8c02a0c515da (From OE-Core rev: 65f5de85c3f488136d1ec2b1f7fe8d8426d6c5b3) (From OE-Core rev: be68cf4c3e4218cc360ce7a645c92b631224ce94) Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 868a19357841470eb55fb7f1c4ab1af09dea99ed) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-support/vim/vim.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/recipes-support/vim/vim.inc b/meta/recipes-support/vim/vim.inc
index 1464c4f4f4..a12e3c8d89 100644
--- a/meta/recipes-support/vim/vim.inc
+++ b/meta/recipes-support/vim/vim.inc
@@ -22,11 +22,10 @@ SRC_URI = "git://github.com/vim/vim.git;branch=master;protocol=https \
22PV .= ".2048" 22PV .= ".2048"
23SRCREV = "982ef16059bd163a77271107020defde0740bbd6" 23SRCREV = "982ef16059bd163a77271107020defde0740bbd6"
24 24
25# Remove when 8.3 is out
26UPSTREAM_VERSION_UNKNOWN = "1"
27
28# Do not consider .z in x.y.z, as that is updated with every commit 25# Do not consider .z in x.y.z, as that is updated with every commit
29UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+)\.0" 26UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+\.\d+)\.0"
27# Ignore that the upstream version .z in x.y.z is always newer
28UPSTREAM_VERSION_UNKNOWN = "1"
30 29
31S = "${WORKDIR}/git" 30S = "${WORKDIR}/git"
32 31