rpms/gtkspell/F-10 gtkspell-2.0.15-fix-language-comparison.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 gtkspell.spec, 1.27, 1.28 sources, 1.7, 1.8

Matthew Barnes mbarnes at fedoraproject.org
Fri Dec 12 20:53:28 UTC 2008


Author: mbarnes

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

Modified Files:
	.cvsignore gtkspell.spec sources 
Added Files:
	gtkspell-2.0.15-fix-language-comparison.patch 
Log Message:

* Fri Dec 12 2008 Matthew Barnes <mbarnes at redhat.com> - 2.0.15-1.fc10
- Update to 2.0.15
- Add patch for a language comparison bug reported by Zdeněk Jurka.


gtkspell-2.0.15-fix-language-comparison.patch:

--- NEW FILE gtkspell-2.0.15-fix-language-comparison.patch ---
diff -up gtkspell-2.0.15/gtkspell/gtkspell.c.fix-language-comparison gtkspell-2.0.15/gtkspell/gtkspell.c
--- gtkspell-2.0.15/gtkspell/gtkspell.c.fix-language-comparison	2008-12-12 15:38:09.000000000 -0500
+++ gtkspell-2.0.15/gtkspell/gtkspell.c	2008-12-12 15:38:22.000000000 -0500
@@ -545,7 +545,7 @@ gtkspell_set_language_internal(GtkSpell 
 	if (lang == NULL) {
 		lang = g_getenv("LANG");
 		if (lang) {
-			if (g_strncasecmp(lang, "C", 1) == 0)
+			if (g_strcmp0(lang, "C") == 0)
 				lang = NULL;
 			else if (lang[0] == 0)
 				lang = NULL;


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/gtkspell/F-10/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore	27 Nov 2008 17:03:13 -0000	1.7
+++ .cvsignore	12 Dec 2008 20:52:57 -0000	1.8
@@ -1 +1 @@
-gtkspell-2.0.14.tar.gz
+gtkspell-2.0.15.tar.gz


Index: gtkspell.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gtkspell/F-10/gtkspell.spec,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- gtkspell.spec	27 Nov 2008 17:03:13 -0000	1.27
+++ gtkspell.spec	12 Dec 2008 20:52:57 -0000	1.28
@@ -1,7 +1,7 @@
 ### Abstract ###
 
 Name: gtkspell
-Version: 2.0.14
+Version: 2.0.15
 Release: 1%{?dist}
 License: GPLv2+
 Group: System Environment/Libraries
@@ -10,6 +10,11 @@
 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 
 Source: http://gtkspell.sourceforge.net/download/%{name}-%{version}.tar.gz
 
+### Patches ###
+
+# Reported by Zdeněk Jurka <zdenek.jurka at jware.cz>
+Patch0: gtkspell-2.0.15-fix-language-comparison.patch
+
 ### Build Dependencies ###
 
 BuildRequires: autoconf
@@ -38,6 +43,7 @@
 
 %prep
 %setup -q
+%patch0 -p1 -b .fix-language-comparison
 
 %build
 autoreconf --force
@@ -71,6 +77,10 @@
 %{_libdir}/pkgconfig/gtkspell-2.0.pc
 
 %changelog
+* Fri Dec 12 2008 Matthew Barnes <mbarnes at redhat.com> - 2.0.15-1.fc10
+- Update to 2.0.15
+- Add patch for a language comparison bug reported by Zdeněk Jurka.
+
 * Thu Nov 27 2008 Matthew Barnes <mbarnes at redhat.com> - 2.0.14-1.fc10
 - Update to 2.0.14
 


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/gtkspell/F-10/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources	27 Nov 2008 17:03:13 -0000	1.7
+++ sources	12 Dec 2008 20:52:57 -0000	1.8
@@ -1 +1 @@
-f8cf4d010f69d9cbc821cd18e13b9804  gtkspell-2.0.14.tar.gz
+d90a7fe883f29caca149f04f31e2f0f9  gtkspell-2.0.15.tar.gz




More information about the fedora-extras-commits mailing list