[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
78/169: gnu: gtk+-2: Fix ‘builder’ test.
From: |
guix-commits |
Subject: |
78/169: gnu: gtk+-2: Fix ‘builder’ test. |
Date: |
Thu, 28 Oct 2021 02:08:33 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit 9c9c0e035d2db04c6890faf7f1f6f5c51a62ac23
Author: Thiago Jung Bauermann <bauermann@kolabnow.com>
AuthorDate: Tue Oct 12 14:10:18 2021 -0400
gnu: gtk+-2: Fix ‘builder’ test.
The signal callbacks in the ‘builder’ testcase have wrong prototypes.
This causes it to fail the “/Builder/Signal Autoconnect” test on
powerpc64le-linux.
Solve the problem by backporting the upstream fix that was applied to
GTK+ 3.0.
* gnu/packages/patches/gtk2-fix-builder-test.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/gtk.scm (gtk+-2): Use it.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/local.mk | 1 +
gnu/packages/gtk.scm | 3 +-
gnu/packages/patches/gtk2-fix-builder-test.patch | 94 ++++++++++++++++++++++++
3 files changed, 97 insertions(+), 1 deletion(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index d3fd8a6..c895307 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1232,6 +1232,7 @@ dist_patch_DATA =
\
%D%/packages/patches/guile-email-fix-tests.patch \
%D%/packages/patches/guile-ssh-fix-test-suite.patch \
%D%/packages/patches/guile-ssh-read-error.patch \
+ %D%/packages/patches/gtk2-fix-builder-test.patch \
%D%/packages/patches/gtk2-respect-GUIX_GTK2_PATH.patch \
%D%/packages/patches/gtk2-respect-GUIX_GTK2_IM_MODULE_FILE.patch \
%D%/packages/patches/gtk2-theme-paths.patch \
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 3ebd87e..5dfdaae 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -916,7 +916,8 @@ is part of the GNOME accessibility project.")
"1nn6kks1zyvb5xikr9y2k7r9bwjy1g4b0m0s66532bclymbwfamc"))
(patches (search-patches "gtk2-respect-GUIX_GTK2_PATH.patch"
"gtk2-respect-GUIX_GTK2_IM_MODULE_FILE.patch"
- "gtk2-theme-paths.patch"))))
+ "gtk2-theme-paths.patch"
+ "gtk2-fix-builder-test.patch"))))
(build-system gnu-build-system)
(outputs '("out" "bin" "doc" "debug"))
(propagated-inputs
diff --git a/gnu/packages/patches/gtk2-fix-builder-test.patch
b/gnu/packages/patches/gtk2-fix-builder-test.patch
new file mode 100644
index 0000000..8c41e59
--- /dev/null
+++ b/gnu/packages/patches/gtk2-fix-builder-test.patch
@@ -0,0 +1,94 @@
+From e45e11238036e06c8fe78bea1691b256ca41837b Mon Sep 17 00:00:00 2001
+From: Steve Langasek <steve.langasek@ubuntu.com>
+Date: Tue, 7 Jan 2014 13:55:28 +0100
+Subject: [PATCH] fix prototypes of signal callbacks in the test suite
+
+The signal callbacks are defined to take pointers as their arguments, but the
+callbacks found in testsuite/gtk/builder.c are passing a GParamSpec by value
+as the second argument. This confuses and angers the compiler on ppc64el,
+resulting in segfaults after return from the function due to stack-smashing
+by the (completely-unused) argument.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=721700
+---
+
+This is a backport to v2.24.33 of upstream commit:
+
+https://gitlab.gnome.org/GNOME/gtk/-/commit/256561db2f0b34e01047f8882b3e0cb8c6d9dbab
+
+ gtk/tests/builder.c | 16 ++++++++--------
+ 1 file changed, 8 insertions(+), 8 deletions(-)
+
+diff --git a/gtk/tests/builder.c b/gtk/tests/builder.c
+index 8529dacc2f6e..23d5096062fa 100644
+--- a/gtk/tests/builder.c
++++ b/gtk/tests/builder.c
+@@ -132,7 +132,7 @@ static int object = 0;
+ static int object_after = 0;
+
+ void /* exported for GtkBuilder */
+-signal_normal (GtkWindow *window, GParamSpec spec)
++signal_normal (GtkWindow *window, GParamSpec *spec)
+ {
+ g_assert (GTK_IS_WINDOW (window));
+ g_assert (normal == 0);
+@@ -142,7 +142,7 @@ signal_normal (GtkWindow *window, GParamSpec spec)
+ }
+
+ void /* exported for GtkBuilder */
+-signal_after (GtkWindow *window, GParamSpec spec)
++signal_after (GtkWindow *window, GParamSpec *spec)
+ {
+ g_assert (GTK_IS_WINDOW (window));
+ g_assert (normal == 1);
+@@ -152,7 +152,7 @@ signal_after (GtkWindow *window, GParamSpec spec)
+ }
+
+ void /* exported for GtkBuilder */
+-signal_object (GtkButton *button, GParamSpec spec)
++signal_object (GtkButton *button, GParamSpec *spec)
+ {
+ g_assert (GTK_IS_BUTTON (button));
+ g_assert (object == 0);
+@@ -162,7 +162,7 @@ signal_object (GtkButton *button, GParamSpec spec)
+ }
+
+ void /* exported for GtkBuilder */
+-signal_object_after (GtkButton *button, GParamSpec spec)
++signal_object_after (GtkButton *button, GParamSpec *spec)
+ {
+ g_assert (GTK_IS_BUTTON (button));
+ g_assert (object == 1);
+@@ -172,28 +172,28 @@ signal_object_after (GtkButton *button, GParamSpec spec)
+ }
+
+ void /* exported for GtkBuilder */
+-signal_first (GtkButton *button, GParamSpec spec)
++signal_first (GtkButton *button, GParamSpec *spec)
+ {
+ g_assert (normal == 0);
+ normal = 10;
+ }
+
+ void /* exported for GtkBuilder */
+-signal_second (GtkButton *button, GParamSpec spec)
++signal_second (GtkButton *button, GParamSpec *spec)
+ {
+ g_assert (normal == 10);
+ normal = 20;
+ }
+
+ void /* exported for GtkBuilder */
+-signal_extra (GtkButton *button, GParamSpec spec)
++signal_extra (GtkButton *button, GParamSpec *spec)
+ {
+ g_assert (normal == 20);
+ normal = 30;
+ }
+
+ void /* exported for GtkBuilder */
+-signal_extra2 (GtkButton *button, GParamSpec spec)
++signal_extra2 (GtkButton *button, GParamSpec *spec)
+ {
+ g_assert (normal == 30);
+ normal = 40;
- 36/169: gnu: python-sphinxcontrib-htmlhelp: Update to 2.0.0., (continued)
- 36/169: gnu: python-sphinxcontrib-htmlhelp: Update to 2.0.0., guix-commits, 2021/10/28
- 39/169: gnu: gstreamer-docs: Update to 1.19.2., guix-commits, 2021/10/28
- 55/169: gnu: abseil-cpp: Update to 20210324.2., guix-commits, 2021/10/28
- 54/169: gnu: abseil-cpp: Remove googletest patch., guix-commits, 2021/10/28
- 58/169: gnu: polkit: Update to 0.120 and ungraft., guix-commits, 2021/10/28
- 60/169: gnu: gstreamer: Update to 1.18.5., guix-commits, 2021/10/28
- 61/169: gnu: gst-plugins-base: Update to 1.18.5., guix-commits, 2021/10/28
- 62/169: gnu: gst-plugins-good: Update to 1.18.5., guix-commits, 2021/10/28
- 69/169: gnu: tensorflow: Enable parallel build (at least partially)., guix-commits, 2021/10/28
- 72/169: gnu: libnice: Update to 0.1.18-0.47a9633., guix-commits, 2021/10/28
- 78/169: gnu: gtk+-2: Fix ‘builder’ test.,
guix-commits <=
- 75/169: gnu: glibc: Remove unneeded nscd patching., guix-commits, 2021/10/28
- 76/169: gnu: glibc: Look for the current timezone in /etc/localtime., guix-commits, 2021/10/28
- 79/169: gnu: diffutils: Fix signal processing., guix-commits, 2021/10/28
- 77/169: gnu: tzdata: Update to 2021e., guix-commits, 2021/10/28
- 85/169: gnu: Add ld-gold-wrapper., guix-commits, 2021/10/28
- 91/169: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/10/28
- 89/169: aux-files: sitecustomize: Cleanup and add explanatory comments., guix-commits, 2021/10/28
- 94/169: gnu: fontconfig: Add a search path for XDG_DATA_DIRS., guix-commits, 2021/10/28
- 97/169: gnu: Add python-flit-core., guix-commits, 2021/10/28
- 98/169: gnu: Add python-tomli., guix-commits, 2021/10/28