diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-07-06 10:07:20 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-07-08 00:09:42 +0100 |
commit | 626db1733878b4b91a01a238fcf317b3be6818fd (patch) | |
tree | bbd59b6f3bcb34df08ca828858f678567b60fe53 /meta/recipes-extended | |
parent | dd24a74e58cd5d4143bf408d5b5217d78cacba92 (diff) | |
download | poky-626db1733878b4b91a01a238fcf317b3be6818fd.tar.gz |
procps: restrict version check to 3.x
(From OE-Core rev: bda284fd31786417c8169cebfca05e5c18e232ef)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/procps/procps_3.3.17.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-extended/procps/procps_3.3.17.bb b/meta/recipes-extended/procps/procps_3.3.17.bb index 0f5575c9ab..59ad89d326 100644 --- a/meta/recipes-extended/procps/procps_3.3.17.bb +++ b/meta/recipes-extended/procps/procps_3.3.17.bb | |||
@@ -18,6 +18,10 @@ SRC_URI = "git://gitlab.com/procps-ng/procps.git;protocol=https;branch=master \ | |||
18 | file://0002-proc-escape.c-add-missing-include.patch \ | 18 | file://0002-proc-escape.c-add-missing-include.patch \ |
19 | " | 19 | " |
20 | SRCREV = "19a508ea121c0c4ac6d0224575a036de745eaaf8" | 20 | SRCREV = "19a508ea121c0c4ac6d0224575a036de745eaaf8" |
21 | # 4.x version is an API incompatible rewrite | ||
22 | # until procps consumers are transitioned to it we need to stick with 3.x | ||
23 | # https://gitlab.com/procps-ng/procps/-/issues/239 | ||
24 | UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>3(\.\d+)+)" | ||
21 | 25 | ||
22 | S = "${WORKDIR}/git" | 26 | S = "${WORKDIR}/git" |
23 | 27 | ||
@@ -100,4 +104,4 @@ ALTERNATIVE_LINK_NAME[ps] = "${base_bindir}/ps" | |||
100 | 104 | ||
101 | ALTERNATIVE:${PN}-sysctl = "sysctl" | 105 | ALTERNATIVE:${PN}-sysctl = "sysctl" |
102 | ALTERNATIVE_TARGET[sysctl] = "${base_sbindir}/sysctl" | 106 | ALTERNATIVE_TARGET[sysctl] = "${base_sbindir}/sysctl" |
103 | ALTERNATIVE_LINK_NAME[sysctl] = "${base_sbindir}/sysctl" \ No newline at end of file | 107 | ALTERNATIVE_LINK_NAME[sysctl] = "${base_sbindir}/sysctl" |