| Message ID | 20260224014448.3334592-1-changqing.li@windriver.com |
|---|---|
| State | New |
| Headers | show |
| Series | gdk-pixbuf: upgrade from 2.44.4 to 2.44.5 | expand |
Thank you for your submission. Patchtest identified one or more issues with the patch. Please see the log below for more information: --- Testing patch /home/patchtest/share/mboxes/gdk-pixbuf-upgrade-from-2.44.4-to-2.44.5.patch FAIL: test commit message presence: Please include a commit message on your patch explaining the change (test_mbox.TestMbox.test_commit_message_presence) PASS: test Signed-off-by presence (test_mbox.TestMbox.test_signed_off_by_presence) PASS: test author valid (test_mbox.TestMbox.test_author_valid) PASS: test commit message user tags (test_mbox.TestMbox.test_commit_message_user_tags) PASS: test mbox format (test_mbox.TestMbox.test_mbox_format) PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade) PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format) PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length) PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list) SKIP: pretest pylint: No python related patches, skipping test (test_python_pylint.PyLint.pretest_pylint) SKIP: test CVE tag format: No new CVE patches introduced (test_patch.TestPatch.test_cve_tag_format) SKIP: test Signed-off-by presence: No new CVE patches introduced (test_patch.TestPatch.test_signed_off_by_presence) SKIP: test Upstream-Status presence: No new CVE patches introduced (test_patch.TestPatch.test_upstream_status_presence_format) SKIP: test bugzilla entry format: No bug ID found (test_mbox.TestMbox.test_bugzilla_entry_format) SKIP: test pylint: No python related patches, skipping test (test_python_pylint.PyLint.test_pylint) SKIP: test series merge on head: Merge test is disabled for now (test_mbox.TestMbox.test_series_merge_on_head) --- Please address the issues identified and submit a new revision of the patch, or alternatively, reply to this email with an explanation of why the patch should be accepted. If you believe these results are due to an error in patchtest, please submit a bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category under 'Yocto Project Subprojects'). For more information on specific failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank you!
diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch index 534f4e0076..45b9aa60c4 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf/0001-meson.build-allow-a-subset-of-tests-in-cross-compile.patch @@ -1,4 +1,4 @@ -From 325a4cde99a00b84116ab7111d27e6973f3c5026 Mon Sep 17 00:00:00 2001 +From 3b6aab24f6844b7d5b3e166bc910bffbcee1f6f5 Mon Sep 17 00:00:00 2001 From: Alexander Kanavin <alex@linutronix.de> Date: Thu, 26 Jan 2023 20:29:46 +0100 Subject: [PATCH] meson.build: allow (a subset of) tests in cross compile @@ -13,16 +13,19 @@ items that do require running target executables. Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/merge_requests/150] Signed-off-by: Alexander Kanavin <alex@linutronix.de> + +rebase to version 2.44.5 +Signed-off-by: Changqing Li <changqing.li@windriver.com> --- meson.build | 6 +++--- tests/meson.build | 10 ++++++---- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/meson.build b/meson.build -index 3eb3fcc..dc7e790 100644 +index f478326..464ae1d 100644 --- a/meson.build +++ b/meson.build -@@ -390,10 +390,10 @@ subdir('gdk-pixbuf') +@@ -428,10 +428,10 @@ subdir('gdk-pixbuf') # i18n subdir('po') @@ -37,19 +40,19 @@ index 3eb3fcc..dc7e790 100644 if not thumbnailer_opt.disabled() subdir('thumbnailer') diff --git a/tests/meson.build b/tests/meson.build -index 3781066..911b5fb 100644 +index 9b96fdc..9c3ed7d 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -4,7 +4,7 @@ # gdk-pixbuf-pixdata from build directory because it needs all DLL locations in # $PATH. Ideally we should use gnome.compile_resources() and let Meson deal with # this problem: See https://github.com/mesonbuild/meson/issues/8266. --if enabled_loaders.contains('png') and host_system != 'windows' -+if enabled_loaders.contains('png') and host_system != 'windows' and not meson.is_cross_build() +-if (enabled_loaders.contains('png') or enabled_loaders.contains('glycin')) and host_system != 'windows' ++if (enabled_loaders.contains('png') or enabled_loaders.contains('glycin')) and host_system != 'windows' and not meson.is_cross_build() # Resources; we cannot use gnome.compile_resources() here, because we need to # override the environment in order to use the utilities we just built instead # of the system ones -@@ -164,9 +164,11 @@ endif +@@ -159,9 +159,11 @@ endif test_deps = gdk_pixbuf_deps + [ gdkpixbuf_dep, ] test_args = [ '-k' ] test_env = environment() @@ -64,3 +67,6 @@ index 3781066..911b5fb 100644 foreach test_name, test_data: installed_tests test_sources = [ test_name + '.c', 'test-common.c' ] +-- +2.34.1 + diff --git a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.44.4.bb b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.44.5.bb similarity index 97% rename from meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.44.4.bb rename to meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.44.5.bb index 0c06bdda09..9ed9a272e0 100644 --- a/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.44.4.bb +++ b/meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.44.5.bb @@ -14,7 +14,7 @@ SECTION = "libs" DEPENDS = "glib-2.0 shared-mime-info" -SRC_URI[archive.sha256sum] = "93a1aac3f1427ae73457397582a2c38d049638a801788ccbd5f48ca607bdbd17" +SRC_URI[archive.sha256sum] = "69b93e09139b80c0ee661503d60deb5a5874a31772b5184b9cd5462a4100ab68" inherit gettext gnomebase pixbufcache ptest-gnome upstream-version-is-even gobject-introspection gi-docgen lib_package manpages
Signed-off-by: Changqing Li <changqing.li@windriver.com> --- ...w-a-subset-of-tests-in-cross-compile.patch | 20 ++++++++++++------- ...-pixbuf_2.44.4.bb => gdk-pixbuf_2.44.5.bb} | 2 +- 2 files changed, 14 insertions(+), 8 deletions(-) rename meta/recipes-gnome/gdk-pixbuf/{gdk-pixbuf_2.44.4.bb => gdk-pixbuf_2.44.5.bb} (97%)