update changelog.

This commit is contained in:
Yue-Lan 2023-04-25 15:32:05 +08:00 committed by cckylin-cibot
parent e05239960e
commit e26bfe7a29
3 changed files with 31 additions and 0 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
glib2.0 (2.74.5-ok3~0425build2) yangtze; urgency=medium
* 继续修复arm64下的编译问题
-- Yue Lan <lanyue@kylinos.cn> Tue, 25 Apr 2023 15:31:34 +0800
glib2.0 (2.74.5-ok3~0425build1) yangtze; urgency=medium
* 修复riscv64架构下spawn-test失败的问题

View File

@ -2,3 +2,4 @@ Modify-debian-control.patch
update-changelog.patch
update-changelog-1.patch
update-changelog-2.patch
update-changelog-3.patch

24
debian/patches/update-changelog-3.patch vendored Normal file
View File

@ -0,0 +1,24 @@
From: Yue-Lan <lanyue@ubuntukylin.com>
Date: Tue, 25 Apr 2023 15:32:05 +0800
Subject: update changelog.
---
gobject/tests/threadtests.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gobject/tests/threadtests.c b/gobject/tests/threadtests.c
index 6ea9a48..799dc79 100644
--- a/gobject/tests/threadtests.c
+++ b/gobject/tests/threadtests.c
@@ -492,6 +492,11 @@ test_threaded_toggle_notify (void)
}
#endif
+#if defined(__aarch64__)
+ g_test_skip ("skip arm64 test");
+ return;
+#endif
+
g_object_add_toggle_ref (object, on_toggle_notify, &data);
g_object_unref (object);