summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuðni Már Gilbert <gudni.m.g@gmail.com>2024-11-20 19:02:40 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-11-21 12:16:28 +0000
commit403c16c89d9145a96348690a5911babfdc2b4698 (patch)
treed066714b4c34c6102783418a4b1f1dbbf78e7fad
parent6ec17dc5f45c4bfaa7a703f0df59a22dd14bb618 (diff)
downloadpoky-403c16c89d9145a96348690a5911babfdc2b4698.tar.gz
glib-2.0: upgrade 2.82.1 -> 2.82.2
https://gitlab.gnome.org/GNOME/glib/-/releases/2.82.2 Upgrade was performed using devtool (From OE-Core rev: c4e48010a49d575ca3b8ed78b68a269c77775fbe) Signed-off-by: Guðni Már Gilbert <gudni.m.g@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-Do-not-write-bindir-into-pkg-config-files.patch8
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch2
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-Install-gio-querymodules-as-libexec_PROGRAM.patch6
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch4
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch2
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-meson-Run-atomics-test-on-clang-as-well.patch6
-rw-r--r--meta/recipes-core/glib-2.0/files/0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch6
-rw-r--r--meta/recipes-core/glib-2.0/files/0010-Do-not-hardcode-python-path-into-various-tools.patch8
-rw-r--r--meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch9
-rw-r--r--meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0002.patch9
-rw-r--r--meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0003.patch11
-rw-r--r--meta/recipes-core/glib-2.0/files/relocate-modules.patch8
-rw-r--r--meta/recipes-core/glib-2.0/files/skip-timeout.patch2
-rw-r--r--meta/recipes-core/glib-2.0/glib-2.0-initial_2.82.2.bb (renamed from meta/recipes-core/glib-2.0/glib-2.0-initial_2.82.1.bb)0
-rw-r--r--meta/recipes-core/glib-2.0/glib-2.0_2.82.2.bb (renamed from meta/recipes-core/glib-2.0/glib-2.0_2.82.1.bb)0
-rw-r--r--meta/recipes-core/glib-2.0/glib.inc2
16 files changed, 37 insertions, 46 deletions
diff --git a/meta/recipes-core/glib-2.0/files/0001-Do-not-write-bindir-into-pkg-config-files.patch b/meta/recipes-core/glib-2.0/files/0001-Do-not-write-bindir-into-pkg-config-files.patch
index ae140b9930..4ef03f3157 100644
--- a/meta/recipes-core/glib-2.0/files/0001-Do-not-write-bindir-into-pkg-config-files.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-Do-not-write-bindir-into-pkg-config-files.patch
@@ -1,4 +1,4 @@
1From bcf62c2e776b9716880ac65e5d553d75d5fddc2e Mon Sep 17 00:00:00 2001 1From 7e00964de0ae27f868726413e46f27145807a50d Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 15 Feb 2019 11:17:27 +0100 3Date: Fri, 15 Feb 2019 11:17:27 +0100
4Subject: [PATCH] Do not prefix executables with $bindir in pkg-config files 4Subject: [PATCH] Do not prefix executables with $bindir in pkg-config files
@@ -15,10 +15,10 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
15 2 files changed, 13 insertions(+), 11 deletions(-) 15 2 files changed, 13 insertions(+), 11 deletions(-)
16 16
17diff --git a/gio/meson.build b/gio/meson.build 17diff --git a/gio/meson.build b/gio/meson.build
18index 77cba7b..25d709e 100644 18index 76d67cd..0584ff5 100644
19--- a/gio/meson.build 19--- a/gio/meson.build
20+++ b/gio/meson.build 20+++ b/gio/meson.build
21@@ -883,17 +883,18 @@ libgio_dep = declare_dependency(link_with : libgio, 21@@ -885,17 +885,18 @@ libgio_dep = declare_dependency(link_with : libgio,
22 pkg.generate(libgio, 22 pkg.generate(libgio,
23 requires : ['glib-2.0', 'gobject-2.0'], 23 requires : ['glib-2.0', 'gobject-2.0'],
24 variables : [ 24 variables : [
@@ -46,7 +46,7 @@ index 77cba7b..25d709e 100644
46 version : glib_version, 46 version : glib_version,
47 install_dir : glib_pkgconfigreldir, 47 install_dir : glib_pkgconfigreldir,
48diff --git a/glib/meson.build b/glib/meson.build 48diff --git a/glib/meson.build b/glib/meson.build
49index d2efeba..5f5841d 100644 49index 9f1515b..a40e4f5 100644
50--- a/glib/meson.build 50--- a/glib/meson.build
51+++ b/glib/meson.build 51+++ b/glib/meson.build
52@@ -447,9 +447,10 @@ pkg.generate(libglib, 52@@ -447,9 +447,10 @@ pkg.generate(libglib,
diff --git a/meta/recipes-core/glib-2.0/files/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch b/meta/recipes-core/glib-2.0/files/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
index 6da9399569..c1d55d87b6 100644
--- a/meta/recipes-core/glib-2.0/files/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-Fix-DATADIRNAME-on-uclibc-Linux.patch
@@ -1,4 +1,4 @@
1From 1d88f52c42a0ed469cb5976f5788b4ba25bb14f9 Mon Sep 17 00:00:00 2001 1From 979d3ddf77abfd00c1e2108cde4aef2d015257b0 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 15 Mar 2014 22:42:29 -0700 3Date: Sat, 15 Mar 2014 22:42:29 -0700
4Subject: [PATCH] Fix DATADIRNAME on uclibc/Linux 4Subject: [PATCH] Fix DATADIRNAME on uclibc/Linux
diff --git a/meta/recipes-core/glib-2.0/files/0001-Install-gio-querymodules-as-libexec_PROGRAM.patch b/meta/recipes-core/glib-2.0/files/0001-Install-gio-querymodules-as-libexec_PROGRAM.patch
index 8423f63cbb..9599156eaf 100644
--- a/meta/recipes-core/glib-2.0/files/0001-Install-gio-querymodules-as-libexec_PROGRAM.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-Install-gio-querymodules-as-libexec_PROGRAM.patch
@@ -1,4 +1,4 @@
1From 75f9eaf2ef760ffb198b0b97a9054f435c79cde9 Mon Sep 17 00:00:00 2001 1From 54f9e7fcbd6345846c379a47c20245259a83d42a Mon Sep 17 00:00:00 2001
2From: Jussi Kukkonen <jussi.kukkonen@intel.com> 2From: Jussi Kukkonen <jussi.kukkonen@intel.com>
3Date: Tue, 22 Mar 2016 15:14:58 +0200 3Date: Tue, 22 Mar 2016 15:14:58 +0200
4Subject: [PATCH] Install gio-querymodules as libexec_PROGRAM 4Subject: [PATCH] Install gio-querymodules as libexec_PROGRAM
@@ -13,10 +13,10 @@ Upstream-Status: Inappropriate [OE specific]
13 1 file changed, 1 insertion(+) 13 1 file changed, 1 insertion(+)
14 14
15diff --git a/gio/meson.build b/gio/meson.build 15diff --git a/gio/meson.build b/gio/meson.build
16index 59c2b0f..77cba7b 100644 16index 1c9a369..76d67cd 100644
17--- a/gio/meson.build 17--- a/gio/meson.build
18+++ b/gio/meson.build 18+++ b/gio/meson.build
19@@ -1007,6 +1007,7 @@ gio_querymodules = executable('gio-querymodules', 'gio-querymodules.c', 'giomodu 19@@ -1009,6 +1009,7 @@ gio_querymodules = executable('gio-querymodules', 'gio-querymodules.c', 'giomodu
20 c_args : gio_c_args, 20 c_args : gio_c_args,
21 # intl.lib is not compatible with SAFESEH 21 # intl.lib is not compatible with SAFESEH
22 link_args : noseh_link_args, 22 link_args : noseh_link_args,
diff --git a/meta/recipes-core/glib-2.0/files/0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch b/meta/recipes-core/glib-2.0/files/0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch
index bd7ed77642..e4c193cfbb 100644
--- a/meta/recipes-core/glib-2.0/files/0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-Remove-the-warning-about-deprecated-paths-in-schemas.patch
@@ -1,4 +1,4 @@
1From 22dcd727203d59a025c8be4280b4654a7054322f Mon Sep 17 00:00:00 2001 1From 1300572dfc8e488a3edaed8cb1f22fcf2303e452 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 12 Jun 2015 17:08:46 +0300 3Date: Fri, 12 Jun 2015 17:08:46 +0300
4Subject: [PATCH] Remove the warning about deprecated paths in schemas 4Subject: [PATCH] Remove the warning about deprecated paths in schemas
@@ -14,7 +14,7 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
14 1 file changed, 13 deletions(-) 14 1 file changed, 13 deletions(-)
15 15
16diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c 16diff --git a/gio/glib-compile-schemas.c b/gio/glib-compile-schemas.c
17index 04ef404..e791ce2 100644 17index 54b980b..be05894 100644
18--- a/gio/glib-compile-schemas.c 18--- a/gio/glib-compile-schemas.c
19+++ b/gio/glib-compile-schemas.c 19+++ b/gio/glib-compile-schemas.c
20@@ -1232,19 +1232,6 @@ parse_state_start_schema (ParseState *state, 20@@ -1232,19 +1232,6 @@ parse_state_start_schema (ParseState *state,
diff --git a/meta/recipes-core/glib-2.0/files/0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch b/meta/recipes-core/glib-2.0/files/0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch
index 8b4304462e..bf3fb93bea 100644
--- a/meta/recipes-core/glib-2.0/files/0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-gio-tests-resources.c-comment-out-a-build-host-only-.patch
@@ -1,4 +1,4 @@
1From 3f054111f991a9dd224b6201dafad7e2c28cb78d Mon Sep 17 00:00:00 2001 1From ec777a7f17c28e72f7b0bdcec385656533c50cca Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Wed, 8 Jan 2020 18:22:46 +0100 3Date: Wed, 8 Jan 2020 18:22:46 +0100
4Subject: [PATCH] gio/tests/resources.c: comment out a build host-only test 4Subject: [PATCH] gio/tests/resources.c: comment out a build host-only test
diff --git a/meta/recipes-core/glib-2.0/files/0001-meson-Run-atomics-test-on-clang-as-well.patch b/meta/recipes-core/glib-2.0/files/0001-meson-Run-atomics-test-on-clang-as-well.patch
index ea1ab568d1..9b26ea8e84 100644
--- a/meta/recipes-core/glib-2.0/files/0001-meson-Run-atomics-test-on-clang-as-well.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-meson-Run-atomics-test-on-clang-as-well.patch
@@ -1,4 +1,4 @@
1From de3eabf9295816b4b4eb7428dee504fd505e723d Mon Sep 17 00:00:00 2001 1From 8b8953adcd0071c39a78e6d2fd437ad0e149591d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com> 2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 12 Oct 2019 17:46:26 -0700 3Date: Sat, 12 Oct 2019 17:46:26 -0700
4Subject: [PATCH] meson: Run atomics test on clang as well 4Subject: [PATCH] meson: Run atomics test on clang as well
@@ -14,10 +14,10 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
14 1 file changed, 1 insertion(+), 1 deletion(-) 14 1 file changed, 1 insertion(+), 1 deletion(-)
15 15
16diff --git a/meson.build b/meson.build 16diff --git a/meson.build b/meson.build
17index b995ebc..a907736 100644 17index 5beb14d..963815f 100644
18--- a/meson.build 18--- a/meson.build
19+++ b/meson.build 19+++ b/meson.build
20@@ -2021,7 +2021,7 @@ atomicdefine = ''' 20@@ -2050,7 +2050,7 @@ atomicdefine = '''
21 # We know that we can always use real ("lock free") atomic operations with MSVC 21 # We know that we can always use real ("lock free") atomic operations with MSVC
22 if cc.get_id() == 'msvc' or cc.get_id() == 'clang-cl' or cc.links(atomictest, name : 'atomic ops') 22 if cc.get_id() == 'msvc' or cc.get_id() == 'clang-cl' or cc.links(atomictest, name : 'atomic ops')
23 have_atomic_lock_free = true 23 have_atomic_lock_free = true
diff --git a/meta/recipes-core/glib-2.0/files/0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch b/meta/recipes-core/glib-2.0/files/0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch
index 82a7a5ad23..80f26b738a 100644
--- a/meta/recipes-core/glib-2.0/files/0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch
+++ b/meta/recipes-core/glib-2.0/files/0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch
@@ -1,4 +1,4 @@
1From 546aa941d2fd42f69b3e2bd6625d65c145a5e265 Mon Sep 17 00:00:00 2001 1From 51d592900e8acdec4f043ceeb23e32d27dded8eb Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de> 2From: Alexander Kanavin <alex@linutronix.de>
3Date: Sat, 16 Sep 2023 22:28:27 +0200 3Date: Sat, 16 Sep 2023 22:28:27 +0200
4Subject: [PATCH] meson.build: do not enable pidfd features on native glib 4Subject: [PATCH] meson.build: do not enable pidfd features on native glib
@@ -14,10 +14,10 @@ Signed-off-by: Alexander Kanavin <alex@linutronix.de>
14 1 file changed, 2 insertions(+), 1 deletion(-) 14 1 file changed, 2 insertions(+), 1 deletion(-)
15 15
16diff --git a/meson.build b/meson.build 16diff --git a/meson.build b/meson.build
17index a907736..53cffb5 100644 17index 963815f..4d4a9f3 100644
18--- a/meson.build 18--- a/meson.build
19+++ b/meson.build 19+++ b/meson.build
20@@ -1019,7 +1019,8 @@ if cc.links('''#include <sys/syscall.h> 20@@ -1048,7 +1048,8 @@ if cc.links('''#include <sys/syscall.h>
21 waitid (P_PIDFD, 0, &child_info, WEXITED | WNOHANG); 21 waitid (P_PIDFD, 0, &child_info, WEXITED | WNOHANG);
22 return 0; 22 return 0;
23 }''', name : 'pidfd_open(2) system call') 23 }''', name : 'pidfd_open(2) system call')
diff --git a/meta/recipes-core/glib-2.0/files/0010-Do-not-hardcode-python-path-into-various-tools.patch b/meta/recipes-core/glib-2.0/files/0010-Do-not-hardcode-python-path-into-various-tools.patch
index 4609f1fb2b..8184c9636c 100644
--- a/meta/recipes-core/glib-2.0/files/0010-Do-not-hardcode-python-path-into-various-tools.patch
+++ b/meta/recipes-core/glib-2.0/files/0010-Do-not-hardcode-python-path-into-various-tools.patch
@@ -1,4 +1,4 @@
1From 20f64ba4b48e46cf238dc638dc3305036358122b Mon Sep 17 00:00:00 2001 1From cc02206c156cb99c441e56a51639cd5ca64efae9 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 3 Oct 2017 10:45:55 +0300 3Date: Tue, 3 Oct 2017 10:45:55 +0300
4Subject: [PATCH] Do not hardcode python path into various tools 4Subject: [PATCH] Do not hardcode python path into various tools
@@ -12,7 +12,7 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
12 3 files changed, 3 insertions(+), 3 deletions(-) 12 3 files changed, 3 insertions(+), 3 deletions(-)
13 13
14diff --git a/gio/gdbus-2.0/codegen/gdbus-codegen.in b/gio/gdbus-2.0/codegen/gdbus-codegen.in 14diff --git a/gio/gdbus-2.0/codegen/gdbus-codegen.in b/gio/gdbus-2.0/codegen/gdbus-codegen.in
15index 67d3675..4e92a7a 100755 15index 877505e..49a1e8c 100755
16--- a/gio/gdbus-2.0/codegen/gdbus-codegen.in 16--- a/gio/gdbus-2.0/codegen/gdbus-codegen.in
17+++ b/gio/gdbus-2.0/codegen/gdbus-codegen.in 17+++ b/gio/gdbus-2.0/codegen/gdbus-codegen.in
18@@ -1,4 +1,4 @@ 18@@ -1,4 +1,4 @@
@@ -22,7 +22,7 @@ index 67d3675..4e92a7a 100755
22 # GDBus - GLib D-Bus Library 22 # GDBus - GLib D-Bus Library
23 # 23 #
24diff --git a/gobject/glib-genmarshal.in b/gobject/glib-genmarshal.in 24diff --git a/gobject/glib-genmarshal.in b/gobject/glib-genmarshal.in
25index aa5af43..56e8e2e 100755 25index 0578b74..56e8e2e 100755
26--- a/gobject/glib-genmarshal.in 26--- a/gobject/glib-genmarshal.in
27+++ b/gobject/glib-genmarshal.in 27+++ b/gobject/glib-genmarshal.in
28@@ -1,4 +1,4 @@ 28@@ -1,4 +1,4 @@
@@ -32,7 +32,7 @@ index aa5af43..56e8e2e 100755
32 # pylint: disable=too-many-lines, missing-docstring, invalid-name 32 # pylint: disable=too-many-lines, missing-docstring, invalid-name
33 33
34diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in 34diff --git a/gobject/glib-mkenums.in b/gobject/glib-mkenums.in
35index e10b910..4b619f8 100755 35index 7e794e9..4b619f8 100755
36--- a/gobject/glib-mkenums.in 36--- a/gobject/glib-mkenums.in
37+++ b/gobject/glib-mkenums.in 37+++ b/gobject/glib-mkenums.in
38@@ -1,4 +1,4 @@ 38@@ -1,4 +1,4 @@
diff --git a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch
index e78d96c3ce..2ee9a40d3d 100644
--- a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch
+++ b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0001.patch
@@ -1,7 +1,7 @@
1From 729d1cbcd599e848bee07c72a276ccc02a06ddc0 Mon Sep 17 00:00:00 2001 1From fc893fe975126ca7d5fcf76b66b5c0ccbd4128d5 Mon Sep 17 00:00:00 2001
2From: "Rebecca N. Palmer" <rebecca_palmer@zoho.com> 2From: "Rebecca N. Palmer" <rebecca_palmer@zoho.com>
3Date: Fri, 11 Oct 2024 09:38:52 +0100 3Date: Fri, 11 Oct 2024 09:38:52 +0100
4Subject: [PATCH 1/3] gdatetime test: Do not assume PST8PDT was always exactly 4Subject: [PATCH] gdatetime test: Do not assume PST8PDT was always exactly
5 -8/-7 5 -8/-7
6 6
7In newer tzdata, it is an alias for America/Los_Angeles, which has a 7In newer tzdata, it is an alias for America/Los_Angeles, which has a
@@ -24,7 +24,7 @@ Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com>
24 1 file changed, 16 insertions(+), 6 deletions(-) 24 1 file changed, 16 insertions(+), 6 deletions(-)
25 25
26diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c 26diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c
27index d46f653ac..2eefc4106 100644 27index d46f653..2eefc41 100644
28--- a/glib/tests/gdatetime.c 28--- a/glib/tests/gdatetime.c
29+++ b/glib/tests/gdatetime.c 29+++ b/glib/tests/gdatetime.c
30@@ -2930,6 +2930,7 @@ test_posix_parse (void) 30@@ -2930,6 +2930,7 @@ test_posix_parse (void)
@@ -67,6 +67,3 @@ index d46f653ac..2eefc4106 100644
67 g_time_zone_unref (tz); 67 g_time_zone_unref (tz);
68 68
69 tz = g_time_zone_new_identifier ("PST8PDT6:32:15"); 69 tz = g_time_zone_new_identifier ("PST8PDT6:32:15");
70--
712.34.1
72
diff --git a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0002.patch b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0002.patch
index d97bec12d6..a03d05f0bf 100644
--- a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0002.patch
+++ b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0002.patch
@@ -1,7 +1,7 @@
1From 2702d7ff73649c05297105bab8977e2a9d28fa0b Mon Sep 17 00:00:00 2001 1From 1110f463fe084ba2675e044be2e045f7c0224a7f Mon Sep 17 00:00:00 2001
2From: Simon McVittie <smcv@debian.org> 2From: Simon McVittie <smcv@debian.org>
3Date: Fri, 18 Oct 2024 11:03:19 +0100 3Date: Fri, 18 Oct 2024 11:03:19 +0100
4Subject: [PATCH 2/3] gdatetime test: Try to make PST8PDT test more obviously 4Subject: [PATCH] gdatetime test: Try to make PST8PDT test more obviously
5 correct 5 correct
6 6
7Instead of using timestamp 0 as a magic number (in this case interpreted 7Instead of using timestamp 0 as a magic number (in this case interpreted
@@ -23,7 +23,7 @@ Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com>
23 1 file changed, 7 insertions(+), 8 deletions(-) 23 1 file changed, 7 insertions(+), 8 deletions(-)
24 24
25diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c 25diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c
26index 2eefc4106..728b87343 100644 26index 2eefc41..728b873 100644
27--- a/glib/tests/gdatetime.c 27--- a/glib/tests/gdatetime.c
28+++ b/glib/tests/gdatetime.c 28+++ b/glib/tests/gdatetime.c
29@@ -2954,19 +2954,16 @@ test_posix_parse (void) 29@@ -2954,19 +2954,16 @@ test_posix_parse (void)
@@ -60,6 +60,3 @@ index 2eefc4106..728b87343 100644
60 60
61 tz = g_time_zone_new_identifier ("PST8PDT6:32:15"); 61 tz = g_time_zone_new_identifier ("PST8PDT6:32:15");
62 #ifdef G_OS_WIN32 62 #ifdef G_OS_WIN32
63--
642.34.1
65
diff --git a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0003.patch b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0003.patch
index dfeec97810..2ef5fbb993 100644
--- a/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0003.patch
+++ b/meta/recipes-core/glib-2.0/files/gdatetime-test-fail-0003.patch
@@ -1,8 +1,8 @@
1From df251923fb2c80cc7acfe99aaf8c98d7d7cbd29f Mon Sep 17 00:00:00 2001 1From 5652c74a14b31b730d26de74ca9dcae1df5c1883 Mon Sep 17 00:00:00 2001
2From: Simon McVittie <smcv@debian.org> 2From: Simon McVittie <smcv@debian.org>
3Date: Fri, 18 Oct 2024 11:23:42 +0100 3Date: Fri, 18 Oct 2024 11:23:42 +0100
4Subject: [PATCH 3/3] gdatetime test: Fall back if legacy System V PST8PDT is 4Subject: [PATCH] gdatetime test: Fall back if legacy System V PST8PDT is not
5 not available 5 available
6 6
7On recent versions of Debian, PST8PDT is part of the tzdata-legacy 7On recent versions of Debian, PST8PDT is part of the tzdata-legacy
8package, which is not always installed and might disappear in future. 8package, which is not always installed and might disappear in future.
@@ -19,7 +19,7 @@ Signed-off-by: Jinfeng Wang <jinfeng.wang.cn@windriver.com>
19 1 file changed, 17 insertions(+), 2 deletions(-) 19 1 file changed, 17 insertions(+), 2 deletions(-)
20 20
21diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c 21diff --git a/glib/tests/gdatetime.c b/glib/tests/gdatetime.c
22index 728b87343..9e1acd097 100644 22index 728b873..9e1acd0 100644
23--- a/glib/tests/gdatetime.c 23--- a/glib/tests/gdatetime.c
24+++ b/glib/tests/gdatetime.c 24+++ b/glib/tests/gdatetime.c
25@@ -2931,6 +2931,7 @@ test_posix_parse (void) 25@@ -2931,6 +2931,7 @@ test_posix_parse (void)
@@ -58,6 +58,3 @@ index 728b87343..9e1acd097 100644
58 /* a date in winter = non-DST */ 58 /* a date in winter = non-DST */
59 gdt1 = g_date_time_new (tz, 2024, 1, 1, 0, 0, 0); 59 gdt1 = g_date_time_new (tz, 2024, 1, 1, 0, 0, 0);
60 i1 = g_time_zone_find_interval (tz, G_TIME_TYPE_STANDARD, g_date_time_to_unix (gdt1)); 60 i1 = g_time_zone_find_interval (tz, G_TIME_TYPE_STANDARD, g_date_time_to_unix (gdt1));
61--
622.34.1
63
diff --git a/meta/recipes-core/glib-2.0/files/relocate-modules.patch b/meta/recipes-core/glib-2.0/files/relocate-modules.patch
index a00703cef8..f4bee2f02e 100644
--- a/meta/recipes-core/glib-2.0/files/relocate-modules.patch
+++ b/meta/recipes-core/glib-2.0/files/relocate-modules.patch
@@ -1,4 +1,4 @@
1From 41470a56d9ae12912e3f2f9cfb0c126b4f91cd53 Mon Sep 17 00:00:00 2001 1From afe2c1e5854102c0e75f9e70a6569c9f2b6360d8 Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@intel.com> 2From: Ross Burton <ross.burton@intel.com>
3Date: Fri, 11 Mar 2016 15:35:55 +0000 3Date: Fri, 11 Mar 2016 15:35:55 +0000
4Subject: [PATCH] glib-2.0: relocate the GIO module directory for native builds 4Subject: [PATCH] glib-2.0: relocate the GIO module directory for native builds
@@ -18,10 +18,10 @@ Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
18 1 file changed, 7 deletions(-) 18 1 file changed, 7 deletions(-)
19 19
20diff --git a/gio/giomodule.c b/gio/giomodule.c 20diff --git a/gio/giomodule.c b/gio/giomodule.c
21index 1e14955..3c09bb5 100644 21index aa6272f..26aebf7 100644
22--- a/gio/giomodule.c 22--- a/gio/giomodule.c
23+++ b/gio/giomodule.c 23+++ b/gio/giomodule.c
24@@ -1259,11 +1259,6 @@ get_gio_module_dir (void) 24@@ -1263,11 +1263,6 @@ get_gio_module_dir (void)
25 g_free (install_dir); 25 g_free (install_dir);
26 #else 26 #else
27 module_dir = g_strdup (GIO_MODULE_DIR); 27 module_dir = g_strdup (GIO_MODULE_DIR);
@@ -33,7 +33,7 @@ index 1e14955..3c09bb5 100644
33 #include <dlfcn.h> 33 #include <dlfcn.h>
34 { 34 {
35 g_autofree gchar *path = NULL; 35 g_autofree gchar *path = NULL;
36@@ -1282,8 +1277,6 @@ get_gio_module_dir (void) 36@@ -1286,8 +1281,6 @@ get_gio_module_dir (void)
37 } 37 }
38 } 38 }
39 } 39 }
diff --git a/meta/recipes-core/glib-2.0/files/skip-timeout.patch b/meta/recipes-core/glib-2.0/files/skip-timeout.patch
index 5ede64fd59..e5f09a4e2d 100644
--- a/meta/recipes-core/glib-2.0/files/skip-timeout.patch
+++ b/meta/recipes-core/glib-2.0/files/skip-timeout.patch
@@ -1,4 +1,4 @@
1From 18d6798ba0e4e15d63a63485b729b6ef1b6a4457 Mon Sep 17 00:00:00 2001 1From 7cd21568601b78720f92955f1e794ca4f11c225d Mon Sep 17 00:00:00 2001
2From: Ross Burton <ross.burton@arm.com> 2From: Ross Burton <ross.burton@arm.com>
3Date: Thu, 28 Mar 2024 16:27:09 +0000 3Date: Thu, 28 Mar 2024 16:27:09 +0000
4Subject: [PATCH] Skip /timeout/rounding test 4Subject: [PATCH] Skip /timeout/rounding test
diff --git a/meta/recipes-core/glib-2.0/glib-2.0-initial_2.82.1.bb b/meta/recipes-core/glib-2.0/glib-2.0-initial_2.82.2.bb
index acec7e9676..acec7e9676 100644
--- a/meta/recipes-core/glib-2.0/glib-2.0-initial_2.82.1.bb
+++ b/meta/recipes-core/glib-2.0/glib-2.0-initial_2.82.2.bb
diff --git a/meta/recipes-core/glib-2.0/glib-2.0_2.82.1.bb b/meta/recipes-core/glib-2.0/glib-2.0_2.82.2.bb
index ef80cc47cf..ef80cc47cf 100644
--- a/meta/recipes-core/glib-2.0/glib-2.0_2.82.1.bb
+++ b/meta/recipes-core/glib-2.0/glib-2.0_2.82.2.bb
diff --git a/meta/recipes-core/glib-2.0/glib.inc b/meta/recipes-core/glib-2.0/glib.inc
index f7631cee83..666d3ef8ef 100644
--- a/meta/recipes-core/glib-2.0/glib.inc
+++ b/meta/recipes-core/glib-2.0/glib.inc
@@ -235,7 +235,7 @@ SRC_URI:append:class-native = " file://relocate-modules.patch \
235 file://0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch \ 235 file://0001-meson.build-do-not-enable-pidfd-features-on-native-g.patch \
236 " 236 "
237 237
238SRC_URI[sha256sum] = "478634440bf52ee4ec4428d558787398c0be6b043c521beb308334b3db4489a6" 238SRC_URI[sha256sum] = "ab45f5a323048b1659ee0fbda5cecd94b099ab3e4b9abf26ae06aeb3e781fd63"
239 239
240# Find any meson cross files in FILESPATH that are relevant for the current 240# Find any meson cross files in FILESPATH that are relevant for the current
241# build (using siteinfo) and add them to EXTRA_OEMESON. 241# build (using siteinfo) and add them to EXTRA_OEMESON.