* [PATCH 1/4] ncurses: only include upstream releases in version check
@ 2020-10-19 15:42 Alexander Kanavin
2020-10-19 15:42 ` [PATCH 2/4] python3: fix upstream " Alexander Kanavin
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Alexander Kanavin @ 2020-10-19 15:42 UTC (permalink / raw)
To: openembedded-core; +Cc: Alexander Kanavin
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
meta/recipes-core/ncurses/ncurses_6.2.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-core/ncurses/ncurses_6.2.bb b/meta/recipes-core/ncurses/ncurses_6.2.bb
index 5c02db8541..f3c84c2877 100644
--- a/meta/recipes-core/ncurses/ncurses_6.2.bb
+++ b/meta/recipes-core/ncurses/ncurses_6.2.bb
@@ -7,7 +7,7 @@ SRC_URI += "file://0001-tic-hang.patch \
SRCREV = "a669013cd5e9d6434e5301348ea51baf306c93c4"
S = "${WORKDIR}/git"
EXTRA_OECONF += "--with-abi-version=5"
-UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+(\+\d+)*)"
+UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>\d+(\.\d+)+)$"
# This is needed when using patchlevel versions like 6.1+20181013
#CVE_VERSION = "${@d.getVar("PV").split('+')[0]}.${@d.getVar("PV").split('+')[1]}"
--
2.28.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/4] python3: fix upstream version check
2020-10-19 15:42 [PATCH 1/4] ncurses: only include upstream releases in version check Alexander Kanavin
@ 2020-10-19 15:42 ` Alexander Kanavin
2020-10-19 15:42 ` [PATCH 3/4] boost-build-native: " Alexander Kanavin
2020-10-19 15:42 ` [PATCH 4/4] selftest/virgl: drop the custom 30 sec timeout Alexander Kanavin
2 siblings, 0 replies; 4+ messages in thread
From: Alexander Kanavin @ 2020-10-19 15:42 UTC (permalink / raw)
To: openembedded-core; +Cc: Alexander Kanavin
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
meta/recipes-devtools/python/python3_3.8.5.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-devtools/python/python3_3.8.5.bb b/meta/recipes-devtools/python/python3_3.8.5.bb
index cabe5dc075..2a3c52a116 100644
--- a/meta/recipes-devtools/python/python3_3.8.5.bb
+++ b/meta/recipes-devtools/python/python3_3.8.5.bb
@@ -45,6 +45,7 @@ SRC_URI[sha256sum] = "e3003ed57db17e617acb382b0cade29a248c6026b1bd8aad1f976e9af6
# exclude pre-releases for both python 2.x and 3.x
UPSTREAM_CHECK_REGEX = "[Pp]ython-(?P<pver>\d+(\.\d+)+).tar"
+UPSTREAM_CHECK_URI = "https://www.python.org/downloads/source/"
CVE_PRODUCT = "python"
--
2.28.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 3/4] boost-build-native: fix upstream version check
2020-10-19 15:42 [PATCH 1/4] ncurses: only include upstream releases in version check Alexander Kanavin
2020-10-19 15:42 ` [PATCH 2/4] python3: fix upstream " Alexander Kanavin
@ 2020-10-19 15:42 ` Alexander Kanavin
2020-10-19 15:42 ` [PATCH 4/4] selftest/virgl: drop the custom 30 sec timeout Alexander Kanavin
2 siblings, 0 replies; 4+ messages in thread
From: Alexander Kanavin @ 2020-10-19 15:42 UTC (permalink / raw)
To: openembedded-core; +Cc: Alexander Kanavin
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
meta/recipes-support/boost/boost-build-native_4.3.0.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-support/boost/boost-build-native_4.3.0.bb b/meta/recipes-support/boost/boost-build-native_4.3.0.bb
index d8096de5af..258f8c9cdf 100644
--- a/meta/recipes-support/boost/boost-build-native_4.3.0.bb
+++ b/meta/recipes-support/boost/boost-build-native_4.3.0.bb
@@ -7,6 +7,8 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e4224ccaecb14d942c71d31bef20d78c"
SRC_URI = "git://github.com/boostorg/build;protocol=https"
SRCREV = "632ea768f3eb225b4472c5ed6d20afee708724ad"
+UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+){2,}))"
+
inherit native
S = "${WORKDIR}/git"
--
2.28.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 4/4] selftest/virgl: drop the custom 30 sec timeout
2020-10-19 15:42 [PATCH 1/4] ncurses: only include upstream releases in version check Alexander Kanavin
2020-10-19 15:42 ` [PATCH 2/4] python3: fix upstream " Alexander Kanavin
2020-10-19 15:42 ` [PATCH 3/4] boost-build-native: " Alexander Kanavin
@ 2020-10-19 15:42 ` Alexander Kanavin
2 siblings, 0 replies; 4+ messages in thread
From: Alexander Kanavin @ 2020-10-19 15:42 UTC (permalink / raw)
To: openembedded-core; +Cc: Alexander Kanavin
This is occasionally reached on the AB; I am not sure if it is due to
host overload, or guest malfunction, but let's use the default 300 sec and
see if it helps.
[YOCTO #14097]
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
---
meta-selftest/lib/oeqa/runtime/cases/virgl.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-selftest/lib/oeqa/runtime/cases/virgl.py b/meta-selftest/lib/oeqa/runtime/cases/virgl.py
index 892c19c848..144decdd6b 100644
--- a/meta-selftest/lib/oeqa/runtime/cases/virgl.py
+++ b/meta-selftest/lib/oeqa/runtime/cases/virgl.py
@@ -13,6 +13,6 @@ class VirglTest(OERuntimeTestCase):
@OETestDepends(['virgl.VirglTest.test_kernel_driver'])
def test_kmscube(self):
- status, output = self.target.run('kmscube', timeout=30)
+ status, output = self.target.run('kmscube')
self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output))
self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output))
--
2.28.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-10-19 15:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-10-19 15:42 [PATCH 1/4] ncurses: only include upstream releases in version check Alexander Kanavin
2020-10-19 15:42 ` [PATCH 2/4] python3: fix upstream " Alexander Kanavin
2020-10-19 15:42 ` [PATCH 3/4] boost-build-native: " Alexander Kanavin
2020-10-19 15:42 ` [PATCH 4/4] selftest/virgl: drop the custom 30 sec timeout Alexander Kanavin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox