rpms/evolution-data-server/devel evolution-data-server-2.21.1-implicit-function-declarations.patch, NONE, 1.1 .cvsignore, 1.73, 1.74 evolution-data-server.spec, 1.191, 1.192 sources, 1.73, 1.74 evolution-data-server-1.10.0-code-cleanup.patch, 1.8, NONE evolution-data-server-1.8.0-db4.patch, 1.1, NONE

Matthew Barnes (mbarnes) fedora-extras-commits at redhat.com
Mon Oct 29 16:59:40 UTC 2007


Author: mbarnes

Update of /cvs/pkgs/rpms/evolution-data-server/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv23110

Modified Files:
	.cvsignore evolution-data-server.spec sources 
Added Files:
	evolution-data-server-2.21.1-implicit-function-declarations.patch 
Removed Files:
	evolution-data-server-1.10.0-code-cleanup.patch 
	evolution-data-server-1.8.0-db4.patch 
Log Message:

* Mon Oct 29 2007 Matthew Barnes <mbarnes at redhat.com> - 2.21.1.1-fc9
- Update to 2.21.1
- Bump eds_base_version to 2.22.
- Remove patch for RH bug #212106 (fixed upstream).
- Remove patch for GNOME bug #417999 (fixed upstream).


evolution-data-server-2.21.1-implicit-function-declarations.patch:

--- NEW FILE evolution-data-server-2.21.1-implicit-function-declarations.patch ---
diff -up evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c.implicit-function-declarations evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c
--- evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c.implicit-function-declarations	2007-10-24 02:39:44.000000000 -0400
+++ evolution-data-server-2.21.1/servers/google/libgdata/gdata-entry.c	2007-10-29 11:14:13.000000000 -0400
@@ -31,6 +31,7 @@
 #include <libxml/xpath.h>  
 #include <libxml/xpathInternals.h>
 
+#include <string.h>
 #include <gdata-entry.h>
 
 #define GDATA_ENTRY_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GDATA_TYPE_ENTRY, GDataEntryPrivate))
@@ -812,7 +813,7 @@ build_hash_table_entries (gchar *key, gc
 
 		if (ptr->next == NULL) {
 			/* FIXME: Will we be needing , these nodes of entries when building them ? */
-			if (!g_strcasecmp (key, "published") || !g_strcasecmp (key, "id") || !g_strcasecmp (key, "updated"))
+			if (!g_ascii_strcasecmp (key, "published") || !g_ascii_strcasecmp (key, "id") || !g_ascii_strcasecmp (key, "updated"))
 				break;
 
 			ptr->next = xmlNewNode (NULL, (xmlChar *)key);
@@ -1081,7 +1082,7 @@ gdata_entry_get_edit_link (GDataEntry *e
 
 	while (list) {
 		link = list->data;
-		if (!g_strcasecmp (link->rel, "edit")) {
+		if (!g_ascii_strcasecmp (link->rel, "edit")) {
 			edit_link = g_strdup(link->href);
 		}
 		list = g_slist_next (list);
diff -up evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c.implicit-function-declarations evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c
--- evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c.implicit-function-declarations	2007-10-29 11:17:57.000000000 -0400
+++ evolution-data-server-2.21.1/servers/google/libgdata-google/gdata-google-service.c	2007-10-29 11:18:19.000000000 -0400
@@ -183,7 +183,7 @@ gdata_google_service_get_feed (GDataServ
 
 	if (!service_is_authenticated( GDATA_GOOGLE_SERVICE(service) )) {
 		status = service_authenticate(GDATA_GOOGLE_SERVICE(service));
-		if (g_strcasecmp(status, "SUCCESS")) {
+		if (g_ascii_strcasecmp(status, "SUCCESS")) {
 			return NULL;
 		}
 	}
@@ -235,7 +235,7 @@ gdata_google_service_insert_entry (GData
 	if (!service_is_authenticated(GDATA_GOOGLE_SERVICE(service))) {
 		status = service_authenticate(GDATA_GOOGLE_SERVICE(service));
 
-		if (g_strcasecmp(status,"SUCCESS"))
+		if (g_ascii_strcasecmp(status,"SUCCESS"))
 			return NULL;
 	}
 
@@ -305,7 +305,7 @@ gdata_google_service_delete_entry (GData
 
 	if (!service_is_authenticated (GDATA_GOOGLE_SERVICE(service))) {
 		status = (xmlChar *)service_authenticate (GDATA_GOOGLE_SERVICE(service));
-		if (g_strcasecmp((gchar *)status, "SUCCESS")) 
+		if (g_ascii_strcasecmp((gchar *)status, "SUCCESS")) 
 			return ;
 	}
 	
@@ -350,7 +350,7 @@ gdata_google_service_update_entry (GData
 	
 	if (!service_is_authenticated (GDATA_GOOGLE_SERVICE (service))) {
 		status = service_authenticate (GDATA_GOOGLE_SERVICE (service));
-		if (g_strcasecmp (status, "SUCCESS"))
+		if (g_ascii_strcasecmp (status, "SUCCESS"))
 			return;
 	}
 
@@ -410,7 +410,7 @@ gdata_google_service_update_entry_with_l
 	
 	if (!service_is_authenticated (GDATA_GOOGLE_SERVICE(service))) {
 		status = service_authenticate (GDATA_GOOGLE_SERVICE(service));
-		if (g_strcasecmp (status, "SUCCESS"))
+		if (g_ascii_strcasecmp (status, "SUCCESS"))
 			return;
 	}
 


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/.cvsignore,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- .cvsignore	15 Oct 2007 16:39:33 -0000	1.73
+++ .cvsignore	29 Oct 2007 16:59:06 -0000	1.74
@@ -1 +1 @@
-evolution-data-server-1.12.1.tar.bz2
+evolution-data-server-2.21.1.tar.bz2


Index: evolution-data-server.spec
===================================================================
RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/evolution-data-server.spec,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -r1.191 -r1.192
--- evolution-data-server.spec	26 Oct 2007 20:26:33 -0000	1.191
+++ evolution-data-server.spec	29 Oct 2007 16:59:06 -0000	1.192
@@ -10,7 +10,7 @@
 %define orbit2_version 2.9.8
 %define soup_version 2.2.3
 
-%define eds_base_version 1.12
+%define eds_base_version 2.22
 %define eds_api_version 1.2
 
 %define use_gnome_keyring 1
@@ -25,8 +25,8 @@
 ### Abstract ###
 
 Name: evolution-data-server
-Version: 1.12.1
-Release: 4%{?dist}
+Version: 2.21.1
+Release: 1%{?dist}
 License: LGPL
 Group: System Environment/Libraries
 Summary: Backend data server for Evolution
@@ -45,9 +45,6 @@
 # RH bug #202309
 Patch12: evolution-data-server-1.7.91-maybe-fix-crash.patch
 
-# RH bug #212106
-Patch13: evolution-data-server-1.8.0-db4.patch
-
 # RH bug #215702 / GNOME bug #487988
 Patch14: evolution-data-server-1.8.0-fix-ldap-query.patch
 
@@ -58,15 +55,15 @@
 # XXX Disabled due to outstanding issues.
 #Patch16: evolution-data-server-1.9.92-e-passwords.patch
 
-# GNOME bug #417999
-Patch17: evolution-data-server-1.10.0-code-cleanup.patch
-
 # GNOME bug #373146
 Patch18: evolution-data-server-1.10.1-camel-folder-summary-crash.patch
 
 # RH bug #243296
 Patch19: evolution-data-server-1.11.5-fix-64bit-acinclude.patch
 
+# Implicit function declarations.
+Patch20: evolution-data-server-2.21.1-implicit-function-declarations.patch
+
 ### Build Dependencies ###
 
 BuildRequires: GConf2-devel
@@ -142,13 +139,12 @@
 %patch10 -p1 -b .ldaphack
 %patch11 -p1 -b .no-gnome-common
 %patch12 -p1 -b .maybe-fix-crash
-%patch13 -p1 -b .db4
 %patch14 -p1 -b .fix-ldap-query
 %patch15 -p1 -b .kill-ememory
 #%patch16 -p1 -b .e-passwords
-%patch17 -p1 -b .code-cleanup
 %patch18 -p1 -b .camel-folder-summary-crash
 %patch19 -p1 -b .fix-64bit-acinclude
+%patch20 -p1 -b .implicit-function-declarations
 
 mkdir -p krb5-fakeprefix/include
 mkdir -p krb5-fakeprefix/lib
@@ -249,7 +245,6 @@
 # http://www.burtonini.com/blog//computers/eds-libdb-2006-07-18-10-40
 
 %configure \
-	%gtkdoc_flags \
 	--with-libdb=/usr \
 	--enable-file-locking=fcntl \
 	--enable-dot-locking=no \
@@ -296,6 +291,8 @@
 %{_libdir}/libedataserverui-%{eds_api_version}.so.*
 %{_libdir}/libegroupwise-%{eds_api_version}.so.*
 %{_libdir}/libexchange-storage-%{eds_api_version}.so.*
+%{_libdir}/libgdata-%{eds_api_version}.so.*
+%{_libdir}/libgdata-google-%{eds_api_version}.so.*
 
 %{_libexecdir}/evolution-data-server-%{eds_base_version}
 %{_libexecdir}/camel-index-control-%{eds_api_version}
@@ -342,12 +339,13 @@
 %{eds_extensions_dir}/libebookbackendgroupwise.so
 %{eds_extensions_dir}/libebookbackendldap.so
 %{eds_extensions_dir}/libebookbackendvcf.so
+%{eds_extensions_dir}/libecalbackendcaldav.so
 %{eds_extensions_dir}/libecalbackendcontacts.so
 %{eds_extensions_dir}/libecalbackendfile.so
+%{eds_extensions_dir}/libecalbackendgoogle.so
 %{eds_extensions_dir}/libecalbackendgroupwise.so
 %{eds_extensions_dir}/libecalbackendhttp.so
 %{eds_extensions_dir}/libecalbackendweather.so
-%{eds_extensions_dir}/libecalbackendcaldav.so
 
 %files devel
 %defattr(-,root,root,-)
@@ -362,6 +360,8 @@
 %{_libdir}/libedataserverui-%{eds_api_version}.so
 %{_libdir}/libegroupwise-%{eds_api_version}.so
 %{_libdir}/libexchange-storage-%{eds_api_version}.so
+%{_libdir}/libgdata-%{eds_api_version}.so
+%{_libdir}/libgdata-google-%{eds_api_version}.so
 %{_libdir}/pkgconfig/camel-%{eds_api_version}.pc
 %{_libdir}/pkgconfig/camel-provider-%{eds_api_version}.pc
 %{_libdir}/pkgconfig/evolution-data-server-%{eds_api_version}.pc
@@ -373,6 +373,8 @@
 %{_libdir}/pkgconfig/libedataserverui-%{eds_api_version}.pc
 %{_libdir}/pkgconfig/libegroupwise-%{eds_api_version}.pc
 %{_libdir}/pkgconfig/libexchange-storage-%{eds_api_version}.pc
+%{_libdir}/pkgconfig/libgdata-%{eds_api_version}.pc
+%{_libdir}/pkgconfig/libgdata-google-%{eds_api_version}.pc
 
 %files doc
 %defattr(-,root,root,-)
@@ -385,6 +387,12 @@
 %{_datadir}/gtk-doc/html/libedataserverui
 
 %changelog
+* Mon Oct 29 2007 Matthew Barnes <mbarnes at redhat.com> - 2.21.1.1-fc9
+- Update to 2.21.1
+- Bump eds_base_version to 2.22.
+- Remove patch for RH bug #212106 (fixed upstream).
+- Remove patch for GNOME bug #417999 (fixed upstream).
+
 * Fri Oct 26 2007 Matthew Barnes <mbarnes at redhat.com> - 1.12.1-4.fc9
 - Remove the use_gtk_doc macro.
 - Remove redundant requirements.


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/evolution-data-server/devel/sources,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- sources	15 Oct 2007 16:39:33 -0000	1.73
+++ sources	29 Oct 2007 16:59:06 -0000	1.74
@@ -1 +1 @@
-5b4d855ed1ceaaab7db14b50133b5252  evolution-data-server-1.12.1.tar.bz2
+c9d5c8c3ab8edf8184828c732f498d06  evolution-data-server-2.21.1.tar.bz2


--- evolution-data-server-1.10.0-code-cleanup.patch DELETED ---


--- evolution-data-server-1.8.0-db4.patch DELETED ---




More information about the scm-commits mailing list