rpms/libgxim/F-10 libgxim-fix-x-event.patch, NONE, 1.1 .cvsignore, 1.6, 1.7 libgxim.spec, 1.5, 1.6 sources, 1.6, 1.7

Akira TAGOH tagoh at fedoraproject.org
Mon Mar 2 07:33:09 UTC 2009


Author: tagoh

Update of /cvs/pkgs/rpms/libgxim/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14425

Modified Files:
	.cvsignore libgxim.spec sources 
Added Files:
	libgxim-fix-x-event.patch 
Log Message:
* Mon Mar  2 2009 Akira TAGOH <tagoh at redhat.com> - 0.3.2-3
- Backport a patch to fix the unknown event issue.

libgxim-fix-x-event.patch:

--- NEW FILE libgxim-fix-x-event.patch ---
2009-03-02  Akira TAGOH  <akira at tagoh.org>

	* libgxim/gximmisc.c (g_xim_xevent_translate_event_type): Fix dealing
	with the event type to avoid the unknown event. (Issue#5)

Index: libgxim/gximmisc.c
===================================================================
--- libgxim/gximmisc.c	(リビジョン 199)
+++ libgxim/gximmisc.c	(リビジョン 200)
@@ -125,7 +125,7 @@
 static GdkEventType
 g_xim_xevent_translate_event_type(gint type)
 {
-	switch (type) {
+	switch (type & 0x7f) {
 	    case KeyPress:
 		    return GDK_KEY_PRESS;
 	    case KeyRelease:


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/libgxim/F-10/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore	23 Oct 2008 12:54:41 -0000	1.6
+++ .cvsignore	2 Mar 2009 07:32:38 -0000	1.7
@@ -6,3 +6,4 @@
 libgxim-0.2.0.tar.bz2
 libgxim-0.3.0.tar.bz2
 libgxim-0.3.1.tar.bz2
+libgxim-0.3.2.tar.bz2


Index: libgxim.spec
===================================================================
RCS file: /cvs/pkgs/rpms/libgxim/F-10/libgxim.spec,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libgxim.spec	23 Oct 2008 12:54:41 -0000	1.5
+++ libgxim.spec	2 Mar 2009 07:32:39 -0000	1.6
@@ -1,12 +1,13 @@
 Name:		libgxim
-Version:	0.3.1
-Release:	1%{?dist}
+Version:	0.3.2
+Release:	3%{?dist}
 License:	LGPLv2+
 URL:		http://code.google.com/p/libgxim/
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 BuildRequires:	intltool gettext ruby
 BuildRequires:	dbus-devel > 0.23, dbus-glib-devel >= 0.74, glib2-devel >= 2.16, gtk2-devel
 Source0:	http://libgxim.googlecode.com/files/%{name}-%{version}.tar.bz2
+Patch0:		libgxim-fix-x-event.patch
 
 Summary:	GObject-based XIM protocol library
 Group:		System Environment/Libraries
@@ -38,6 +39,7 @@
 
 %prep
 %setup -q
+%patch0 -p0 -b .xevent
 
 
 %build
@@ -77,6 +79,15 @@
 %{_datadir}/gtk-doc/html/libgxim
 
 %changelog
+* Mon Mar  2 2009 Akira TAGOH <tagoh at redhat.com> - 0.3.2-3
+- Backport a patch to fix the unknown event issue.
+
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.3.2-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Tue Jan 13 2009 Akira TAGOH <tagoh at redhat.com> - 0.3.2-1
+- New upstream release.
+
 * Thu Oct 23 2008 Akira TAGOH <tagoh at redhat.com> - 0.3.1-1
 - New upstream release.
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/libgxim/F-10/sources,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sources	23 Oct 2008 12:54:41 -0000	1.6
+++ sources	2 Mar 2009 07:32:39 -0000	1.7
@@ -1 +1 @@
-ba72c71bb34a26a0c4ecd56bf4d71345  libgxim-0.3.1.tar.bz2
+03cb1b6c7f9a7842b416ae20fb10cad0  libgxim-0.3.2.tar.bz2




More information about the fedora-extras-commits mailing list