public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Takao Fujiwara <tfujiwar@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/ibus] autotool: Added ibus-xx-g-ir-compiler.patch to fix g-ir-compiler error.
Date: Sun, 31 May 2026 02:04:47 GMT [thread overview]
Message-ID: <178019308788.1.1127543145255837889.rpms-ibus-81a94b838ded@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/ibus
Branch : autotool
Commit : 81a94b838ded9c7fe4e57df85f4b40dccb2b2349
Author : Takao Fujiwara <tfujiwar@redhat.com>
Date : 2010-09-29T16:33:14+09:00
Stats : +45/-10 in 2 file(s)
URL : https://src.fedoraproject.org/rpms/ibus/c/81a94b838ded9c7fe4e57df85f4b40dccb2b2349?branch=autotool
Log:
Added ibus-xx-g-ir-compiler.patch to fix g-ir-compiler error.
---
diff --git a/ibus-xx-g-ir-compiler.patch b/ibus-xx-g-ir-compiler.patch
new file mode 100644
index 0000000..e19009d
--- /dev/null
+++ b/ibus-xx-g-ir-compiler.patch
@@ -0,0 +1,32 @@
+--- ibus-1.3.7/src/Makefile.am.orig 2010-09-29 15:46:18.941239947 +0900
++++ ibus-1.3.7/src/Makefile.am 2010-09-29 15:45:50.288225017 +0900
+@@ -139,7 +139,7 @@ introspection_files = \
+ $(NULL)
+ IBus-1.0.gir: $(ibustargetlib) Makefile
+ IBus_1_0_gir_SCANNERFLAGS = --strip-prefix=IBus --pkg=dbus-1,glib-2.0
+-IBus_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0
++IBus_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0 DBus-1.0
+ IBus_1_0_gir_LIBS = $(ibustargetlib)
+ IBus_1_0_gir_FILES = $(addprefix $(srcdir)/,$(introspection_files))
+ IBus_1_0_gir_CFLAGS = $(INCLUDES)
+--- ibus-1.3.7/src/Makefile.in.orig 2010-09-29 15:46:30.076225797 +0900
++++ ibus-1.3.7/src/Makefile.in 2010-09-29 15:47:13.322226068 +0900
+@@ -537,7 +537,7 @@ ibusincludedir = $(includedir)/ibus-1.0
+ @HAVE_INTROSPECTION_TRUE@ $(NULL)
+
+ @HAVE_INTROSPECTION_TRUE@IBus_1_0_gir_SCANNERFLAGS = --strip-prefix=IBus --pkg=dbus-1,glib-2.0
+-@HAVE_INTROSPECTION_TRUE@IBus_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0
++@HAVE_INTROSPECTION_TRUE@IBus_1_0_gir_INCLUDES = GLib-2.0 GObject-2.0 DBus-1.0
+ @HAVE_INTROSPECTION_TRUE@IBus_1_0_gir_LIBS = $(ibustargetlib)
+ @HAVE_INTROSPECTION_TRUE@IBus_1_0_gir_FILES = $(addprefix $(srcdir)/,$(introspection_files))
+ @HAVE_INTROSPECTION_TRUE@IBus_1_0_gir_CFLAGS = $(INCLUDES)
+--- ibus-1.3.7/client/gtk3/ibusimcontext.c.orig 2010-09-29 16:05:47.435225305 +0900
++++ ibus-1.3.7/client/gtk3/ibusimcontext.c 2010-09-29 16:06:15.385224305 +0900
+@@ -24,6 +24,7 @@
+ #endif
+
+ #include <gdk/gdkkeysyms.h>
++#include <gdk/gdkkeysyms-compat.h>
+ #include <gdk/gdkx.h>
+ #include <sys/types.h>
+ #include <sys/socket.h>
diff --git a/ibus.spec b/ibus.spec
index 990d32a..3c334a6 100644
--- a/ibus.spec
+++ b/ibus.spec
@@ -11,7 +11,7 @@
Name: ibus
Version: 1.3.7
-Release: 7%{?dist}
+Release: 8%{?dist}
Summary: Intelligent Input Bus for Linux OS
License: LGPLv2+
Group: System Environment/Libraries
@@ -21,10 +21,11 @@ Source1: xinput-ibus
# Patch0: ibus-HEAD.patch
Patch1: ibus-621795-engineproxy-segv.patch
Patch2: ibus-626652-leak.patch
-# Patch3: ibus-xx-va_list.patch
-# Patch4: ibus-530711-preload-sys.patch
-Patch5: ibus-541492-xkb.patch
-Patch6: ibus-435880-surrounding-text.patch
+Patch3: ibus-xx-g-ir-compiler.patch
+# Patch4: ibus-xx-va_list.patch
+# Patch5: ibus-530711-preload-sys.patch
+Patch6: ibus-541492-xkb.patch
+Patch7: ibus-435880-surrounding-text.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -131,12 +132,13 @@ The ibus-devel-docs package contains developer documentation for ibus
# %patch0 -p1
%patch1 -p1 -b .segv
%patch2 -p1 -b .leak
-# %patch3 -p1 -b .valist
-# %patch4 -p1 -b .preload-sys
+%patch3 -p1 -b .gir
+# %patch4 -p1 -b .valist
+# %patch5 -p1 -b .preload-sys
%if %have_libxkbfile
-%patch5 -p1 -b .xkb
+%patch6 -p1 -b .xkb
%endif
-%patch6 -p1 -b .surrounding
+%patch7 -p1 -b .surrounding
%build
%if %have_libxkbfile
@@ -279,7 +281,8 @@ fi
%{_datadir}/gtk-doc/html/*
%changelog
-* Wed Sep 29 2010 Takao Fujiwara <tfujiwar@redhat.com> - 1.3.7-7
+* Wed Sep 29 2010 Takao Fujiwara <tfujiwar@redhat.com> - 1.3.7-8
+- Added ibus-xx-g-ir-compiler.patch to fix g-ir-compiler error.
- Updated ibus-435880-surrounding-text.patch
Fixes Bug 634829 - ibus_im_context_set_surrounding() to get strings.
reply other threads:[~2026-05-31 2:04 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178019308788.1.1127543145255837889.rpms-ibus-81a94b838ded@fedoraproject.org \
--to=tfujiwar@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox