* [OE-core] [PATCH] libproxy: upgrade 0.4.17 -> 0.4.18
@ 2022-06-22 7:48 Wang Mingyu
2022-06-22 7:48 ` [OE-core] [PATCH] python3-dbusmock: upgrade 0.27.5 -> 0.28.0 Wang Mingyu
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-06-22 7:48 UTC (permalink / raw)
To: openembedded-core; +Cc: Wang Mingyu
determinism.patch
removed since it's included in 0.4.18.
Changelog:
=========
build: Allow configuration of sysconfig module
config_envvar: Add environment variable for pacrunner debugging
build: disable mozjs by default
python: Support Python 3.10 and above
Add Duktape pacrunner module
config_kde: Compute list of config file locations ourselves
cpmfog_gnome3: Add gnome-wayland to permitted DESKTOP_SESSION
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
.../libproxy/libproxy/determinism.patch | 26 -------------------
...{libproxy_0.4.17.bb => libproxy_0.4.18.bb} | 5 ++--
2 files changed, 2 insertions(+), 29 deletions(-)
delete mode 100644 meta/recipes-support/libproxy/libproxy/determinism.patch
rename meta/recipes-support/libproxy/{libproxy_0.4.17.bb => libproxy_0.4.18.bb} (91%)
diff --git a/meta/recipes-support/libproxy/libproxy/determinism.patch b/meta/recipes-support/libproxy/libproxy/determinism.patch
deleted file mode 100644
index 09770f68f0..0000000000
--- a/meta/recipes-support/libproxy/libproxy/determinism.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-[PATCH] cmake/modules/config_sysconfig: Allow configuration of sysconfig module
-
-Checking whether the host system has /etc/sysconfig is not deterministic
-when cross compiling. Allow this to be disabled by adding a configure
-option for it. OpenEmbedded can set this and have deterministic build
-output independent of the host OS.
-
-Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-Upstream-Status: Submitted [https://github.com/libproxy/libproxy/pull/160]
-
-Index: libproxy-0.4.17/libproxy/cmake/modules/config_sysconfig.cmk
-===================================================================
---- libproxy-0.4.17.orig/libproxy/cmake/modules/config_sysconfig.cmk
-+++ libproxy-0.4.17/libproxy/cmake/modules/config_sysconfig.cmk
-@@ -1,5 +1,8 @@
- if (NOT WIN32 AND NOT APPLE)
-- if (EXISTS "/etc/sysconfig" AND IS_DIRECTORY "/etc/sysconfig")
-- set(SYSCONFIG_FOUND 1)
-+ option(WITH_SYSCONFIG "Build sysconfig module for /etc/sysconfig" ON)
-+ if(WITH_SYSCONFIG)
-+ if (EXISTS "/etc/sysconfig" AND IS_DIRECTORY "/etc/sysconfig")
-+ set(SYSCONFIG_FOUND 1)
-+ endif()
- endif()
- endif()
-\ No newline at end of file
diff --git a/meta/recipes-support/libproxy/libproxy_0.4.17.bb b/meta/recipes-support/libproxy/libproxy_0.4.18.bb
similarity index 91%
rename from meta/recipes-support/libproxy/libproxy_0.4.17.bb
rename to meta/recipes-support/libproxy/libproxy_0.4.18.bb
index e121681ae8..a9f2bf6cae 100644
--- a/meta/recipes-support/libproxy/libproxy_0.4.17.bb
+++ b/meta/recipes-support/libproxy/libproxy_0.4.18.bb
@@ -12,9 +12,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \
DEPENDS = "glib-2.0"
-SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/${PV}/${BP}.tar.xz \
- file://determinism.patch"
-SRC_URI[sha256sum] = "bc89f842f654ee1985a31c0ba56dc7e2ce8044a0264ddca84e650f46cd7f8b05"
+SRC_URI = "https://github.com/${BPN}/${BPN}/releases/download/${PV}/${BP}.tar.xz"
+SRC_URI[sha256sum] = "69b5856e9ea42c38ac77e6b8c92ffc86a71d341fef74e77bef85f9cc6c47a4b1"
UPSTREAM_CHECK_URI = "https://github.com/libproxy/libproxy/releases"
UPSTREAM_CHECK_REGEX = "libproxy-(?P<pver>.*)\.tar"
--
2.25.1
^ permalink raw reply related [flat|nested] 7+ messages in thread* [OE-core] [PATCH] python3-dbusmock: upgrade 0.27.5 -> 0.28.0 2022-06-22 7:48 [OE-core] [PATCH] libproxy: upgrade 0.4.17 -> 0.4.18 Wang Mingyu @ 2022-06-22 7:48 ` Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] sbc: upgrade 1.5 -> 2.0 Wang Mingyu ` (2 subsequent siblings) 3 siblings, 0 replies; 7+ messages in thread From: Wang Mingyu @ 2022-06-22 7:48 UTC (permalink / raw) To: openembedded-core; +Cc: Wang Mingyu Changelog: =========== Drop unmaintained and broken accountsservice template testcase: Throw an error when spawning a well-known name that exists mockobject: Allow sending signals with extra details Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> --- .../{python3-dbusmock_0.27.5.bb => python3-dbusmock_0.28.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{python3-dbusmock_0.27.5.bb => python3-dbusmock_0.28.0.bb} (83%) diff --git a/meta/recipes-devtools/python/python3-dbusmock_0.27.5.bb b/meta/recipes-devtools/python/python3-dbusmock_0.28.0.bb similarity index 83% rename from meta/recipes-devtools/python/python3-dbusmock_0.27.5.bb rename to meta/recipes-devtools/python/python3-dbusmock_0.28.0.bb index 852d1555be..6155c866a2 100644 --- a/meta/recipes-devtools/python/python3-dbusmock_0.27.5.bb +++ b/meta/recipes-devtools/python/python3-dbusmock_0.28.0.bb @@ -4,7 +4,7 @@ HOMEPAGE = "https://pypi.org/project/python-dbusmock/" LICENSE = "GPL-3.0-only" LIC_FILES_CHKSUM = "file://COPYING;md5=e6a600fd5e1d9cbde2d983680233ad02" -SRC_URI[sha256sum] = "0bff30d8d01e7eef491f75d359c87765abba7001307fa8fed19cb59f06ed3c2a" +SRC_URI[sha256sum] = "c63edeacec7796c4f379b2e17566d62afa404c048931ac9eba446470cec80ada" PYPI_PACKAGE = "python-dbusmock" -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [OE-core] [PATCH] sbc: upgrade 1.5 -> 2.0 2022-06-22 7:48 [OE-core] [PATCH] libproxy: upgrade 0.4.17 -> 0.4.18 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] python3-dbusmock: upgrade 0.27.5 -> 0.28.0 Wang Mingyu @ 2022-06-22 7:48 ` Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] strace: upgrade 5.17 -> 5.18 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 Wang Mingyu 3 siblings, 0 replies; 7+ messages in thread From: Wang Mingyu @ 2022-06-22 7:48 UTC (permalink / raw) To: openembedded-core; +Cc: Wang Mingyu 0001-sbc_primitives-Fix-build-on-non-x86.patch revmoed since it's included in 2.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> --- ...-sbc_primitives-Fix-build-on-non-x86.patch | 45 ------------------- .../sbc/{sbc_1.5.bb => sbc_2.0.bb} | 6 +-- 2 files changed, 2 insertions(+), 49 deletions(-) delete mode 100644 meta/recipes-multimedia/sbc/sbc/0001-sbc_primitives-Fix-build-on-non-x86.patch rename meta/recipes-multimedia/sbc/{sbc_1.5.bb => sbc_2.0.bb} (76%) diff --git a/meta/recipes-multimedia/sbc/sbc/0001-sbc_primitives-Fix-build-on-non-x86.patch b/meta/recipes-multimedia/sbc/sbc/0001-sbc_primitives-Fix-build-on-non-x86.patch deleted file mode 100644 index 11cec74fbb..0000000000 --- a/meta/recipes-multimedia/sbc/sbc/0001-sbc_primitives-Fix-build-on-non-x86.patch +++ /dev/null @@ -1,45 +0,0 @@ -From f4a1224323e386090a44bf70ee0ac9877ba7fb0d Mon Sep 17 00:00:00 2001 -From: Marius Bakke <marius@gnu.org> -Date: Tue, 22 Dec 2020 11:04:26 +0000 -Subject: [PATCH] sbc_primitives: Fix build on non-x86. -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Don't call __builtin_cpu_init unless targeting i386 or x86_64. -Otherwise we get an error at link time: - - CC sbc/sbc_primitives.lo -sbc/sbc_primitives.c: In function ‘sbc_init_primitives_x86’: -sbc/sbc_primitives.c:596:2: warning: implicit declaration of function ‘__builtin_cpu_init’; did you mean ‘__builtin_irint’? [-Wimplicit-function-declaration] -[...] - CCLD src/sbcdec -ld: sbc/.libs/libsbc-private.a(sbc_primitives.o): in function `sbc_init_primitives': -sbc_primitives.c:(.text+0x3a30): undefined reference to `__builtin_cpu_init' - -Upstream-Status: Backport -Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> ---- - sbc/sbc_primitives.c | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/sbc/sbc_primitives.c b/sbc/sbc_primitives.c -index 97a75be..09c214a 100644 ---- a/sbc/sbc_primitives.c -+++ b/sbc/sbc_primitives.c -@@ -593,6 +593,7 @@ static int sbc_calc_scalefactors_j( - - static void sbc_init_primitives_x86(struct sbc_encoder_state *state) - { -+#if defined(__x86_64__) || defined(__i386__) - __builtin_cpu_init(); - - #ifdef SBC_BUILD_WITH_MMX_SUPPORT -@@ -604,6 +605,7 @@ static void sbc_init_primitives_x86(struct sbc_encoder_state *state) - if (__builtin_cpu_supports("sse4.2")) - sbc_init_primitives_sse(state); - #endif -+#endif - } - - /* diff --git a/meta/recipes-multimedia/sbc/sbc_1.5.bb b/meta/recipes-multimedia/sbc/sbc_2.0.bb similarity index 76% rename from meta/recipes-multimedia/sbc/sbc_1.5.bb rename to meta/recipes-multimedia/sbc/sbc_2.0.bb index e5c72ec0b4..d25be9e80c 100644 --- a/meta/recipes-multimedia/sbc/sbc_1.5.bb +++ b/meta/recipes-multimedia/sbc/sbc_2.0.bb @@ -12,11 +12,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=12f884d2ae1ff87c09e5b7ccc2c4ca7e \ DEPENDS = "libsndfile1" -SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/${BP}.tar.xz \ - file://0001-sbc_primitives-Fix-build-on-non-x86.patch \ - " +SRC_URI = "${KERNELORG_MIRROR}/linux/bluetooth/${BP}.tar.xz" -SRC_URI[sha256sum] = "0cbad69823a99e8421fe0700e8cf9eeb8fa0c1ad28e8dbc2182b3353507931d2" +SRC_URI[sha256sum] = "8f12368e1dbbf55e14536520473cfb338c84b392939cc9b64298360fd4a07992" inherit autotools pkgconfig -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [OE-core] [PATCH] strace: upgrade 5.17 -> 5.18 2022-06-22 7:48 [OE-core] [PATCH] libproxy: upgrade 0.4.17 -> 0.4.18 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] python3-dbusmock: upgrade 0.27.5 -> 0.28.0 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] sbc: upgrade 1.5 -> 2.0 Wang Mingyu @ 2022-06-22 7:48 ` Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 Wang Mingyu 3 siblings, 0 replies; 7+ messages in thread From: Wang Mingyu @ 2022-06-22 7:48 UTC (permalink / raw) To: openembedded-core; +Cc: Wang Mingyu 0001-landlock-update-expected-string.patch removed since it's not available in 5.18. skip-load.patch refreshed for new version. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> --- ...0001-landlock-update-expected-string.patch | 67 ------------------- .../strace/strace/skip-load.patch | 40 +++++------ .../strace/{strace_5.17.bb => strace_5.18.bb} | 3 +- 3 files changed, 18 insertions(+), 92 deletions(-) delete mode 100644 meta/recipes-devtools/strace/strace/0001-landlock-update-expected-string.patch rename meta/recipes-devtools/strace/{strace_5.17.bb => strace_5.18.bb} (93%) diff --git a/meta/recipes-devtools/strace/strace/0001-landlock-update-expected-string.patch b/meta/recipes-devtools/strace/strace/0001-landlock-update-expected-string.patch deleted file mode 100644 index 9d67d68331..0000000000 --- a/meta/recipes-devtools/strace/strace/0001-landlock-update-expected-string.patch +++ /dev/null @@ -1,67 +0,0 @@ -From d0dae2fb30b907bc9bf70382f37c9e00207ae036 Mon Sep 17 00:00:00 2001 -From: Bruce Ashfield <bruce.ashfield@gmail.com> -Date: Sat, 30 Apr 2022 01:09:42 -0400 -Subject: [PATCH] landlock: update expected string -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Kernel commit: - - commit 3d4b396a616d0d67bf95d6823ad1197f6247292e - Author: Christian Brauner <christian.brauner@ubuntu.com> - Date: Mon Oct 11 15:37:04 2021 +0200 - - landlock: Use square brackets around "landlock-ruleset" - - commit aea0b9f2486da8497f35c7114b764bf55e17c7ea upstream. - - Make the name of the anon inode fd "[landlock-ruleset]" instead of - "landlock-ruleset". This is minor but most anon inode fds already - carry square brackets around their name: - - [eventfd] - [eventpoll] - [fanotify] - [fscontext] - [io_uring] - [pidfd] - [signalfd] - [timerfd] - [userfaultfd] - - For the sake of consistency lets do the same for the landlock-ruleset anon - inode fd that comes with landlock. We did the same in - 1cdc415f1083 ("uapi, fsopen: use square brackets around "fscontext" [ver #2]") - for the new mount api. - - Cc: linux-security-module@vger.kernel.org - Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com> - Link: https://lore.kernel.org/r/20211011133704.1704369-1-brauner@kernel.org - Cc: stable@vger.kernel.org - Signed-off-by: Mickaël Salaün <mic@linux.microsoft.com> - Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> - -Changed the format of the landlock tracing. We need to update the strace -expected string to match. - -Upstream-Status: Submitted [https://lists.strace.io/pipermail/strace-devel/2022-April/011064.html] - -Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> ---- - tests/landlock_create_ruleset-y.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/landlock_create_ruleset-y.c b/tests/landlock_create_ruleset-y.c -index a30966b..50e19c2 100644 ---- a/tests/landlock_create_ruleset-y.c -+++ b/tests/landlock_create_ruleset-y.c -@@ -1,4 +1,4 @@ --#define FD_PATH "<anon_inode:landlock-ruleset>" -+#define FD_PATH "<anon_inode:[landlock-ruleset]>" - #define SKIP_IF_PROC_IS_UNAVAILABLE skip_if_unavailable("/proc/self/fd/") - - #include "landlock_create_ruleset.c" --- -2.19.1 - diff --git a/meta/recipes-devtools/strace/strace/skip-load.patch b/meta/recipes-devtools/strace/strace/skip-load.patch index fa3ddb8ddc..b1acfda5d8 100644 --- a/meta/recipes-devtools/strace/strace/skip-load.patch +++ b/meta/recipes-devtools/strace/strace/skip-load.patch @@ -4,6 +4,12 @@ care about timing. Upstream-Status: Inappropriate Signed-off-by: Ross Burton <ross.burton@arm.com> +--- + tests/clock_nanosleep.gen.test | 1 + + tests/delay.test | 1 + + tests/strace-r.test | 1 + + 3 files changed, 3 insertions(+) + diff --git a/tests/clock_nanosleep.gen.test b/tests/clock_nanosleep.gen.test index 7a6025b..f0e6dbb 100755 --- a/tests/clock_nanosleep.gen.test @@ -15,41 +21,29 @@ index 7a6025b..f0e6dbb 100755 +skip_ "Test not reliable under load" run_strace_match_diff -e trace=clock_nanosleep,clock_gettime diff --git a/tests/delay.test b/tests/delay.test -index f74e27f..328087e 100755 +index f74e27f..6172c04 100755 --- a/tests/delay.test +++ b/tests/delay.test -@@ -9,6 +9,8 @@ +@@ -8,6 +8,7 @@ + # SPDX-License-Identifier: GPL-2.0-or-later . "${srcdir=.}/init.sh" - +skip_ "Test not reliable under load" -+ + while read -r denter dexit denter_us dexit_us; do [ -n "$denter" ] || continue - -diff --git a/tests/strace-T.test b/tests/strace-T.test -index adca3e8..d4acfe9 100755 ---- a/tests/strace-T.test -+++ b/tests/strace-T.test -@@ -9,6 +9,8 @@ - - . "${srcdir=.}/init.sh" - -+skip_ "Test not reliable under load" -+ - T_opt="${1:--T}" - - run_prog ../sleep 0 diff --git a/tests/strace-r.test b/tests/strace-r.test -index 8299737..c360344 100755 +index 8299737..d89c7df 100755 --- a/tests/strace-r.test +++ b/tests/strace-r.test -@@ -9,6 +9,8 @@ +@@ -8,6 +8,7 @@ + # SPDX-License-Identifier: GPL-2.0-or-later . "${srcdir=.}/init.sh" - +skip_ "Test not reliable under load" -+ + r_opt="${1:--r}" - run_prog ../sleep 0 +-- +2.25.1 + diff --git a/meta/recipes-devtools/strace/strace_5.17.bb b/meta/recipes-devtools/strace/strace_5.18.bb similarity index 93% rename from meta/recipes-devtools/strace/strace_5.17.bb rename to meta/recipes-devtools/strace/strace_5.18.bb index c7fd9edf40..3164ebca51 100644 --- a/meta/recipes-devtools/strace/strace_5.17.bb +++ b/meta/recipes-devtools/strace/strace_5.18.bb @@ -13,9 +13,8 @@ SRC_URI = "https://strace.io/files/${PV}/strace-${PV}.tar.xz \ file://ptest-spacesave.patch \ file://0001-strace-fix-reproducibilty-issues.patch \ file://skip-load.patch \ - file://0001-landlock-update-expected-string.patch \ " -SRC_URI[sha256sum] = "5fb298dbd1331fd1e1bc94c5c32395860d376101b87c6cd3d1ba9f9aa15c161f" +SRC_URI[sha256sum] = "60293ea79ac9253d600cdc9be077ad2988ca22284a439c9e66be5150db3d1187" inherit autotools ptest -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 2022-06-22 7:48 [OE-core] [PATCH] libproxy: upgrade 0.4.17 -> 0.4.18 Wang Mingyu ` (2 preceding siblings ...) 2022-06-22 7:48 ` [OE-core] [PATCH] strace: upgrade 5.17 -> 5.18 Wang Mingyu @ 2022-06-22 7:48 ` Wang Mingyu 2022-06-22 13:54 ` Luca Ceresoli 3 siblings, 1 reply; 7+ messages in thread From: Wang Mingyu @ 2022-06-22 7:48 UTC (permalink / raw) To: openembedded-core; +Cc: Wang Mingyu Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> --- .../xorg-proto/{xcb-proto_1.15.bb => xcb-proto_1.15.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-graphics/xorg-proto/{xcb-proto_1.15.bb => xcb-proto_1.15.2.bb} (92%) diff --git a/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb b/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.2.bb similarity index 92% rename from meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb rename to meta/recipes-graphics/xorg-proto/xcb-proto_1.15.2.bb index f050ed366c..08c7f5bd6b 100644 --- a/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.bb +++ b/meta/recipes-graphics/xorg-proto/xcb-proto_1.15.2.bb @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d763b081cb10c223435b01e00dc0aba7 \ file://src/dri2.xml;beginline=2;endline=28;md5=f8763b13ff432e8597e0d610cf598e65" SRC_URI = "https://xorg.freedesktop.org/archive/individual/proto/${BP}.tar.xz" -SRC_URI[sha256sum] = "d34c3b264e8365d16fa9db49179cfa3e9952baaf9275badda0f413966b65955f" +SRC_URI[sha256sum] = "7072beb1f680a2fe3f9e535b797c146d22528990c72f63ddb49d2f350a3653ed" inherit autotools pkgconfig python3native -- 2.25.1 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 2022-06-22 7:48 ` [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 Wang Mingyu @ 2022-06-22 13:54 ` Luca Ceresoli 2022-06-23 0:38 ` wangmy 0 siblings, 1 reply; 7+ messages in thread From: Luca Ceresoli @ 2022-06-22 13:54 UTC (permalink / raw) To: wangmy; +Cc: openembedded-core Hello wangmy, On Wed, 22 Jun 2022 15:48:50 +0800 "wangmy" <wangmy@fujitsu.com> wrote: > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> This patch triggers autobuilder failures in libxcb-native do_configure: | checking for check >= 0.9.6... no | checking for xcb-proto >= 1.14... no | configure: error: Package requirements (xcb-proto >= 1.14) were not met: | | Variable 'libdir' not defined in '/home/pokybuild/yocto-worker/poky-tiny/build/build/tmp/work/x86_64-linux/libxcb-native/1.15-r0/recipe-sysroot-native/usr/share/pkgconfig/xcb-proto.pc' Some logs: https://autobuilder.yoctoproject.org/typhoon/#/builders/15/builds/5675/steps/11/logs/stdio https://autobuilder.yoctoproject.org/typhoon/#/builders/50/builds/5419/steps/11/logs/stdio https://autobuilder.yoctoproject.org/typhoon/#/builders/75/builds/5384/steps/11/logs/stdio -- Luca Ceresoli, Bootlin Embedded Linux and Kernel engineering https://bootlin.com ^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 2022-06-22 13:54 ` Luca Ceresoli @ 2022-06-23 0:38 ` wangmy 0 siblings, 0 replies; 7+ messages in thread From: wangmy @ 2022-06-23 0:38 UTC (permalink / raw) To: luca.ceresoli@bootlin.com; +Cc: openembedded-core@lists.openembedded.org Sorry, this patch failed the test and I forgot to handle it before sending. Please ignore this patch. -- Best Regards --------------------------------------------------- Wang Mingyu Development Dept.I Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST) No. 6 Wenzhu Road, Nanjing, 210012, China TEL: +86+25-86630566-8568 COINS: 79988548 FAX: +86+25-83317685 MAIL: wangmy@fujitsu.com http://www.fujitsu.com/cn/fnst/ > -----Original Message----- > From: openembedded-core@lists.openembedded.org > <openembedded-core@lists.openembedded.org> On Behalf Of Luca Ceresoli via > lists.openembedded.org > Sent: Wednesday, June 22, 2022 9:55 PM > To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com> > Cc: openembedded-core@lists.openembedded.org > Subject: Re: [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 > > Hello wangmy, > > On Wed, 22 Jun 2022 15:48:50 +0800 > "wangmy" <wangmy@fujitsu.com> wrote: > > > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> > > This patch triggers autobuilder failures in libxcb-native do_configure: > > | checking for check >= 0.9.6... no > | checking for xcb-proto >= 1.14... no > | configure: error: Package requirements (xcb-proto >= 1.14) were not met: > | > | Variable 'libdir' not defined in > '/home/pokybuild/yocto-worker/poky-tiny/build/build/tmp/work/x86_64-linux/li > bxcb-native/1.15-r0/recipe-sysroot-native/usr/share/pkgconfig/xcb-proto.pc' > > Some logs: > > https://autobuilder.yoctoproject.org/typhoon/#/builders/15/builds/5675/steps/1 > 1/logs/stdio > https://autobuilder.yoctoproject.org/typhoon/#/builders/50/builds/5419/steps/1 > 1/logs/stdio > https://autobuilder.yoctoproject.org/typhoon/#/builders/75/builds/5384/steps/1 > 1/logs/stdio > > -- > Luca Ceresoli, Bootlin > Embedded Linux and Kernel engineering > https://bootlin.com ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-06-23 0:38 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-06-22 7:48 [OE-core] [PATCH] libproxy: upgrade 0.4.17 -> 0.4.18 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] python3-dbusmock: upgrade 0.27.5 -> 0.28.0 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] sbc: upgrade 1.5 -> 2.0 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] strace: upgrade 5.17 -> 5.18 Wang Mingyu 2022-06-22 7:48 ` [OE-core] [PATCH] xcb-proto: upgrade 1.15 -> 1.15.2 Wang Mingyu 2022-06-22 13:54 ` Luca Ceresoli 2022-06-23 0:38 ` wangmy
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.