Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=gnome22.git;a=commitdiff;h=ab4c1aed8574ab67aed584f0a47b85e2c21b046d

commit ab4c1aed8574ab67aed584f0a47b85e2c21b046d
Author: Christian Hamar alias krix <[EMAIL PROTECTED]>
Date:   Wed Apr 9 17:43:14 2008 +0200

evolution-data-server-2.22.1-1-x86_64
* Version bump
* Removed obsolote patch from GIT
* Added --enable-calendar option

diff --git a/source/gnome/evolution-data-server/FrugalBuild 
b/source/gnome/evolution-data-server/FrugalBuild
index 10e8a9d..16e9807 100644
--- a/source/gnome/evolution-data-server/FrugalBuild
+++ b/source/gnome/evolution-data-server/FrugalBuild
@@ -2,16 +2,16 @@
# Maintainer: Christian Hamar alias krix <[EMAIL PROTECTED]>

pkgname=evolution-data-server
-pkgver=1.12.3
-pkgrel=3
+pkgver=2.22.1
+pkgrel=1
pkgdesc="Evolution Data Server provides a central location for addressbook and 
calendar in the GNOME Desktop"
-depends=('nss>=3.11.5' 'libsoup>=2.2.104-2' 'libgnomeui>=2.20.1.1' 
'heimdal>=1.1' 'gnome-keyring>=2.20.3' \
+depends=('nss>=3.11.7' 'libsoup>=2.4.1' 'libgnomeui>=2.22.1' 'heimdal>=1.1' 
'gnome-keyring>=2.22.1' \
'db>=4.6.18')
makedepends=('intltool' 'gtk-doc>=1.9' 'openldap>=2.3.24')
groups=('gnome' 'gnome-minimal')
archs=('i686' 'x86_64')
Finclude gnome
-sha1sums=('12b8b23fb77ff6436def3cc5ea472886c8e0350e')
+sha1sums=('b78f6865db1358c1dbece6c09f92e9ba6a523d6d')
export CFLAGS="$CFLAGS -fno-strict-aliasing"

subpkgs=('evolution-data-server-ldap' "$pkgname-docs")
@@ -23,7 +23,7 @@ subarchs=('x86_64 i686' 'x86_64 i686')
build() {
Fbuild --with-openldap=yes --enable-nss=yes --enable-gtk-doc \
--enable-nntp=yes --enable-smime=yes --enable-ipv6=yes --disable-debug \
-           --with-krb5=/usr --with-libdb=/usr --enable-gnome-keyring
+           --with-krb5=/usr --with-libdb=/usr --enable-gnome-keyring 
--enable-calendar=yes
Fsplit evolution-data-server-ldap usr/lib/libexchange-storage*
Fsplit evolution-data-server-ldap 
usr/lib/evolution-data-server-1.2/extensions/libebookbackendldap*
Fsplit $pkgname-docs usr/share/gtk-doc
diff --git a/source/gnome/evolution-data-server/SA25766-secfix.patch 
b/source/gnome/evolution-data-server/SA25766-secfix.patch
deleted file mode 100644
index e7db586..0000000
--- a/source/gnome/evolution-data-server/SA25766-secfix.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff -Naur evolution-data-server-1.10.2.orig/camel/ChangeLog 
evolution-data-server-1.10.2/camel/ChangeLog
---- evolution-data-server-1.10.2.orig/camel/ChangeLog  2007-05-28 
07:11:49.000000000 +0200
-+++ evolution-data-server-1.10.2/camel/ChangeLog       2007-06-29 
19:15:29.000000000 +0200
-@@ -1,3 +1,9 @@
-+2007-06-14  Philip Van Hoof  <[EMAIL PROTECTED]>
-+
-+       * camel-imap-folder.c: Security bugfix. The sequence can be a negative
-+       value while it is being used as the index of an array (#447414)
-+
-+
- 2007-05-28  Srinivasa Ragavan  <[EMAIL PROTECTED]>
-
-       ** Fix for bug #322105
-diff -Naur 
evolution-data-server-1.10.2.orig/camel/providers/imap/camel-imap-folder.c 
evolution-data-server-1.10.2/camel/providers/imap/camel-imap-folder.c
---- evolution-data-server-1.10.2.orig/camel/providers/imap/camel-imap-folder.c 
2007-04-09 14:42:39.000000000 +0200
-+++ evolution-data-server-1.10.2/camel/providers/imap/camel-imap-folder.c      
2007-06-29 19:14:45.000000000 +0200
-@@ -655,7 +655,7 @@
-               uid = g_datalist_get_data (&data, "UID");
-               flags = GPOINTER_TO_UINT (g_datalist_get_data (&data, "FLAGS"));
-
--              if (!uid || !seq || seq > summary_len) {
-+              if (!uid || !seq || seq > summary_len || seq < 0) {
-                       g_datalist_clear (&data);
-                       continue;
-               }
-@@ -2789,7 +2789,7 @@
-
-               if (*response != '*' || *(response + 1) != ' ')
-                       return NULL;
--              seq = strtol (response + 2, &response, 10);
-+              seq = strtoul (response + 2, &response, 10);
-               if (seq == 0)
-                       return NULL;
-               if (g_ascii_strncasecmp (response, " FETCH (", 8) != 0)
_______________________________________________
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git

Reply via email to