--- evolution-data-server-2.22.1.1.orig/debian/libedata-cal1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libedata-cal1.2-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/lib/pkgconfig/libedata-cal-1.2.pc +debian/tmp/usr/lib/libedata-cal-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/libedata-cal +debian/tmp/usr/share/gtk-doc/html/libedata-cal --- evolution-data-server-2.22.1.1.orig/debian/libedataserver1.2-9.preinst +++ evolution-data-server-2.22.1.1/debian/libedataserver1.2-9.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/patches/25_mute-debug-messages.patch +++ evolution-data-server-2.22.1.1/debian/patches/25_mute-debug-messages.patch @@ -0,0 +1,63 @@ +diff -Nur evolution-data-server-1.10.1/libedataserver/e-categories.c evolution-data-server-1.10.1.new/libedataserver/e-categories.c +--- evolution-data-server-1.10.1/libedataserver/e-categories.c 2007-04-09 14:42:55.000000000 +0200 ++++ evolution-data-server-1.10.1.new/libedataserver/e-categories.c 2007-05-07 01:08:13.000000000 +0200 +@@ -30,6 +30,8 @@ + + #include "libedataserver-private.h" + ++#define d(x) ++ + typedef struct { + char *category; + char *icon_file; +@@ -156,7 +158,7 @@ + + filename = build_categories_filename (); + +- g_debug ("Saving categories to \"%s\"", filename); ++ d (g_debug ("Saving categories to \"%s\"", filename)); + + /* build the file contents */ + buffer = g_string_new ("\n"); +@@ -251,7 +253,7 @@ + if (!g_file_test (filename, G_FILE_TEST_EXISTS)) + goto exit; + +- g_debug ("Loading categories from \"%s\"", filename); ++ d (g_debug ("Loading categories from \"%s\"", filename)); + + if (!g_file_get_contents (filename, &contents, &length, &error)) { + g_warning ("Unable to load categories: %s", error->message); +@@ -307,7 +309,7 @@ + if (string == NULL || *string == '\0') + goto exit; + +- g_debug ("Loading categories from GConf key \"%s\"", key); ++ d (g_debug ("Loading categories from GConf key \"%s\"", key)); + + n_added = parse_categories (string, strlen (string)); + if (n_added == 0) +@@ -379,20 +381,20 @@ + + n_added = load_categories (); + if (n_added > 0) { +- g_debug ("Loaded %d categories", n_added); ++ d (g_debug ("Loaded %d categories", n_added)); + save_is_pending = FALSE; + return; + } + + n_added = migrate_old_categories (); + if (n_added > 0) { +- g_debug ("Loaded %d categories", n_added); ++ d (g_debug ("Loaded %d categories", n_added)); + save_categories (); + return; + } + + load_default_categories (); +- g_debug ("Loaded default categories"); ++ d (g_debug ("Loaded default categories")); + save_categories (); + } + --- evolution-data-server-2.22.1.1.orig/debian/patches/90_from_svn_fix_double_free_groupwise_crasher.patch +++ evolution-data-server-2.22.1.1/debian/patches/90_from_svn_fix_double_free_groupwise_crasher.patch @@ -0,0 +1,15 @@ +--- branches/gnome-2-22/servers/groupwise/e-gw-container.c 2008/05/09 06:39:22 8771 ++++ branches/gnome-2-22/servers/groupwise/e-gw-container.c 2008/05/09 07:00:08 8772 +@@ -59,10 +59,9 @@ + free_node(EShUsers *user) + { + if(user){ +- g_free(user->email); ++ g_free (user->email); + g_free (user); + } +- g_free (user); + return ; + } + + --- evolution-data-server-2.22.1.1.orig/debian/patches/92_from_upstream_signing_dont_break_keyring.patch +++ evolution-data-server-2.22.1.1/debian/patches/92_from_upstream_signing_dont_break_keyring.patch @@ -0,0 +1,74 @@ +Index: libedataserverui/e-passwords.c +=================================================================== +--- libedataserverui/e-passwords.c (revision 8793) ++++ libedataserverui/e-passwords.c (working copy) +@@ -193,19 +193,29 @@ ep_keyring_error_domain (void) + } + + static EUri * +-ep_keyring_uri_new (const gchar *string) ++ep_keyring_uri_new (const gchar *string, ++ GError **error) + { + EUri *uri; + + uri = e_uri_new (string); +- if (uri == NULL) +- return NULL; ++ g_return_val_if_fail (uri != NULL, NULL); + + /* LDAP URIs do not have usernames, so use the URI as the username. */ + if (uri->user == NULL && uri->protocol != NULL && + (strcmp (uri->protocol, "ldap") == 0|| strcmp (uri->protocol, "google") == 0)) + uri->user = g_strdelimit (g_strdup (string), "/=", '_'); + ++ /* Make sure the URI has the required components. */ ++ if (uri->user == NULL && uri->host == NULL) { ++ g_set_error ( ++ error, EP_KEYRING_ERROR, ++ GNOME_KEYRING_RESULT_BAD_ARGUMENTS, ++ _("Keyring key is unusable: no user or host name")); ++ e_uri_free (uri); ++ uri = NULL; ++ } ++ + return uri; + } + +@@ -618,8 +628,9 @@ ep_remember_password_keyring (EPassMsg * + return; + } + +- uri = ep_keyring_uri_new (msg->key); +- g_return_if_fail (uri != NULL); ++ uri = ep_keyring_uri_new (msg->key, &msg->error); ++ if (uri == NULL) ++ return; + + /* Only remove the password from the session hash + * if the keyring insertion was successful. */ +@@ -681,8 +692,9 @@ ep_forget_password_keyring (EPassMsg *ms + EUri *uri; + GError *error = NULL; + +- uri = ep_keyring_uri_new (msg->key); +- g_return_if_fail (uri != NULL); ++ uri = ep_keyring_uri_new (msg->key, &msg->error); ++ if (uri == NULL) ++ return; + + /* Find all Evolution passwords matching the URI and delete them. */ + passwords = ep_keyring_lookup_passwords (uri->user, uri->host, &error); +@@ -754,8 +766,9 @@ ep_get_password_keyring (EPassMsg *msg) + EUri *uri; + GError *error = NULL; + +- uri = ep_keyring_uri_new (msg->key); +- g_return_if_fail (uri != NULL); ++ uri = ep_keyring_uri_new (msg->key, &msg->error); ++ if (uri == NULL) ++ return; + + /* Find the first Evolution password that matches the URI. */ + passwords = ep_keyring_lookup_passwords (uri->user, uri->host, &error); + --- evolution-data-server-2.22.1.1.orig/debian/patches/91_from_upstream_fix_keyring_passwords_storage.patch +++ evolution-data-server-2.22.1.1/debian/patches/91_from_upstream_fix_keyring_passwords_storage.patch @@ -0,0 +1,256 @@ +Index: libedataserverui/e-passwords.c +=================================================================== +--- libedataserverui/e-passwords.c (revision 8774) ++++ libedataserverui/e-passwords.c (working copy) +@@ -212,19 +212,21 @@ ep_keyring_uri_new (const gchar *string) + static gboolean + ep_keyring_validate (const gchar *user, + const gchar *server, ++ const gchar *protocol, + GnomeKeyringAttributeList *attributes) + { + const gchar *user_value = NULL; + const gchar *server_value = NULL; ++ const gchar *protocol_value = NULL; + gint ii; + + g_return_val_if_fail (attributes != NULL, FALSE); + + /* Is there anything to validate? */ +- if (user == NULL && server == NULL) ++ if (user == NULL && server == NULL && protocol == NULL) + return TRUE; + +- /* Look for "user" and "server" attributes. */ ++ /* Look for "user", "server", and "protocol" attributes. */ + for (ii = 0; ii < attributes->len; ii++) { + GnomeKeyringAttribute *attr; + +@@ -235,6 +237,8 @@ ep_keyring_validate (const gchar *user, + user_value = attr->value.string; + else if (strcmp (attr->name, "server") == 0) + server_value = attr->value.string; ++ else if (strcmp (attr->name, "protocol") == 0) ++ protocol_value = attr->value.string; + } + + /* Is there a "user" attribute? */ +@@ -253,12 +257,21 @@ ep_keyring_validate (const gchar *user, + if (server != NULL && strcmp (server, server_value) != 0) + return FALSE; + ++ /* Is there a "protocol" attribute? */ ++ if (protocol != NULL && protocol_value == NULL) ++ return FALSE; ++ ++ /* Does it match what we're looking for? */ ++ if (protocol != NULL && strcmp (protocol, protocol_value) != 0) ++ return FALSE; ++ + return TRUE; + } + + static gboolean + ep_keyring_delete_passwords (const gchar *user, + const gchar *server, ++ const gchar *protocol, + GList *passwords, + GError **error) + { +@@ -267,9 +280,14 @@ ep_keyring_delete_passwords (const gchar + GnomeKeyringResult result; + + /* Validate the item before deleting it. */ +- if (!ep_keyring_validate (user, server, found->attributes)) { +- passwords = g_list_next (passwords); +- continue; ++ if (!ep_keyring_validate (user, server, protocol, found->attributes)) { ++ /* XXX We didn't always store protocols in the ++ * keyring, so for backward-compatibility ++ * try validating by user and server only. */ ++ if (!ep_keyring_validate (user, server, NULL, found->attributes)) { ++ passwords = g_list_next (passwords); ++ continue; ++ } + } + + result = gnome_keyring_item_delete_sync (NULL, found->item_id); +@@ -291,6 +309,7 @@ ep_keyring_delete_passwords (const gchar + static gboolean + ep_keyring_insert_password (const gchar *user, + const gchar *server, ++ const gchar *protocol, + const gchar *display_name, + const gchar *password, + GError **error) +@@ -301,6 +320,7 @@ ep_keyring_insert_password (const gchar + + g_return_val_if_fail (user != NULL, FALSE); + g_return_val_if_fail (server != NULL, FALSE); ++ g_return_val_if_fail (protocol != NULL, FALSE); + g_return_val_if_fail (display_name != NULL, FALSE); + g_return_val_if_fail (password != NULL, FALSE); + +@@ -311,6 +331,8 @@ ep_keyring_insert_password (const gchar + attributes, "user", user); + gnome_keyring_attribute_list_append_string ( + attributes, "server", server); ++ gnome_keyring_attribute_list_append_string ( ++ attributes, "protocol", protocol); + + /* XXX We don't use item_id but gnome-keyring doesn't allow + * for a NULL pointer. In fact it doesn't even check! */ +@@ -333,6 +355,7 @@ ep_keyring_insert_password (const gchar + static GList * + ep_keyring_lookup_passwords (const gchar *user, + const gchar *server, ++ const gchar *protocol, + GError **error) + { + GnomeKeyringAttributeList *attributes; +@@ -348,6 +371,9 @@ ep_keyring_lookup_passwords (const gchar + if (server != NULL) + gnome_keyring_attribute_list_append_string ( + attributes, "server", server); ++ if (protocol != NULL) ++ gnome_keyring_attribute_list_append_string ( ++ attributes, "protocol", protocol); + + result = gnome_keyring_find_items_sync ( + GNOME_KEYRING_ITEM_NETWORK_PASSWORD, attributes, &passwords); +@@ -479,9 +505,9 @@ ep_clear_passwords_keyring (EPassMsg *ms + GError *error = NULL; + + /* Find all Evolution passwords and delete them. */ +- passwords = ep_keyring_lookup_passwords (NULL, NULL, &error); ++ passwords = ep_keyring_lookup_passwords (NULL, NULL, NULL, &error); + if (passwords != NULL) { +- ep_keyring_delete_passwords (NULL, NULL, passwords, &error); ++ ep_keyring_delete_passwords (NULL, NULL, NULL, passwords, &error); + gnome_keyring_found_list_free (passwords); + } + +@@ -509,9 +535,9 @@ ep_clear_passwords_keyfile (EPassMsg *ms + + /* Not finding the requested group is acceptable, but we still + * want to leave an informational message on the terminal. */ +- else if (g_error_matches (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_GROUP_NOT_FOUND)) { +- g_message ("%s", error->message); +- g_error_free (error); ++ else if (g_error_matches (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_GROUP_NOT_FOUND)) { ++ g_message ("%s", error->message); ++ g_error_free (error); + + } else if (error != NULL) + g_propagate_error (&msg->error, error); +@@ -543,9 +569,9 @@ ep_forget_passwords_keyring (EPassMsg *m + GError *error = NULL; + + /* Find all Evolution passwords and delete them. */ +- passwords = ep_keyring_lookup_passwords (NULL, NULL, &error); ++ passwords = ep_keyring_lookup_passwords (NULL, NULL, NULL, &error); + if (passwords != NULL) { +- ep_keyring_delete_passwords (NULL, NULL, passwords, &error); ++ ep_keyring_delete_passwords (NULL, NULL, NULL, passwords, &error); + gnome_keyring_found_list_free (passwords); + + } +@@ -623,7 +649,7 @@ ep_remember_password_keyring (EPassMsg * + + /* Only remove the password from the session hash + * if the keyring insertion was successful. */ +- if (ep_keyring_insert_password (uri->user, uri->host, msg->key, password, &error)) ++ if (ep_keyring_insert_password (uri->user, uri->host, uri->protocol, msg->key, password, &error)) + g_hash_table_remove (password_cache, msg->key); + + if (error != NULL) +@@ -684,10 +710,17 @@ ep_forget_password_keyring (EPassMsg *ms + uri = ep_keyring_uri_new (msg->key); + g_return_if_fail (uri != NULL); + +- /* Find all Evolution passwords matching the URI and delete them. */ +- passwords = ep_keyring_lookup_passwords (uri->user, uri->host, &error); ++ /* Find all Evolution passwords matching the URI and delete them. ++ * ++ * XXX We didn't always store protocols in the keyring, so for ++ * backward-compatibility we need to lookup passwords by user ++ * and host only (no protocol). But we do send the protocol ++ * to ep_keyring_delete_passwords(), which also knows about ++ * the backward-compatibility issue and will filter the list ++ * appropriately. */ ++ passwords = ep_keyring_lookup_passwords (uri->user, uri->host, NULL, &error); + if (passwords != NULL) { +- ep_keyring_delete_passwords (uri->user, uri->host, passwords, &error); ++ ep_keyring_delete_passwords (uri->user, uri->host, uri->protocol, passwords, &error); + gnome_keyring_found_list_free (passwords); + } + +@@ -716,10 +749,10 @@ ep_forget_password_keyfile (EPassMsg *ms + g_message ("%s", error->message); + g_error_free (error); + +- /* Not finding the requested group is also acceptable. */ +- } else if (g_error_matches (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_GROUP_NOT_FOUND)) { +- g_message ("%s", error->message); +- g_error_free (error); ++ /* Not finding the requested group is also acceptable. */ ++ } else if (g_error_matches (error, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_GROUP_NOT_FOUND)) { ++ g_message ("%s", error->message); ++ g_error_free (error); + + } else if (error != NULL) + g_propagate_error (&msg->error, error); +@@ -758,14 +791,43 @@ ep_get_password_keyring (EPassMsg *msg) + g_return_if_fail (uri != NULL); + + /* Find the first Evolution password that matches the URI. */ +- passwords = ep_keyring_lookup_passwords (uri->user, uri->host, &error); ++ passwords = ep_keyring_lookup_passwords (uri->user, uri->host, uri->protocol, &error); ++ if (passwords != NULL) { ++ GList *iter = passwords; ++ ++ while (iter != NULL) { ++ GnomeKeyringFound *found = iter->data; ++ ++ if (ep_keyring_validate (uri->user, uri->host, uri->protocol, found->attributes)) { ++ msg->password = g_strdup (found->secret); ++ break; ++ } ++ ++ iter = g_list_next (iter); ++ } ++ ++ gnome_keyring_found_list_free (passwords); ++ } ++ ++ if (msg->password != NULL) ++ goto done; ++ ++ /* Clear the previous error, if there was one. If the error was ++ * something other than NO_MATCH then it's likely to occur again. */ ++ if (error != NULL) ++ g_clear_error (&error); ++ ++ /* XXX We didn't always store protocols in the keyring, so for ++ * backward-compatibility we also need to lookup passwords ++ * by user and host only (no protocol). */ ++ passwords = ep_keyring_lookup_passwords (uri->user, uri->host, NULL, &error); + if (passwords != NULL) { + GList *iter = passwords; + + while (iter != NULL) { + GnomeKeyringFound *found = iter->data; + +- if (ep_keyring_validate (uri->user, uri->host, found->attributes)) { ++ if (ep_keyring_validate (uri->user, uri->host, NULL, found->attributes)) { + msg->password = g_strdup (found->secret); + break; + } +@@ -776,6 +838,7 @@ ep_get_password_keyring (EPassMsg *msg) + gnome_keyring_found_list_free (passwords); + } + ++done: + /* Not finding the requested key is acceptable, but we still + * want to leave an informational message on the terminal. */ + if (g_error_matches (error, EP_KEYRING_ERROR, GNOME_KEYRING_RESULT_NO_MATCH)) { --- evolution-data-server-2.22.1.1.orig/debian/patches/11_it_translation.patch +++ evolution-data-server-2.22.1.1/debian/patches/11_it_translation.patch @@ -0,0 +1,23 @@ +diff -ruN evolution-data-server-1.8.0.orig/po/it.po evolution-data-server-1.8.0/po/it.po +--- evolution-data-server-1.8.0.orig/po/it.po 2006-04-20 10:53:20.000000000 +0200 ++++ evolution-data-server-1.8.0/po/it.po 2006-09-06 22:59:13.000000000 +0200 +@@ -2425,7 +2425,7 @@ + + #: ../camel/camel-tcp-stream-openssl.c:620 + msgid "Subject/Issuer mismatch" +-msgstr "Oggetto/Emittente sconnessi" ++msgstr "Proprietario/Emittente sconnessi" + + #: ../camel/camel-tcp-stream-openssl.c:622 + msgid "AKID/SKID mismatch" +@@ -2451,8 +2451,8 @@ + "Fingerprint: %s\n" + "Signature: %s" + msgstr "" +-"Mittente: %s\n" +-"Oggetto: %s\n" ++"Emittente: %s\n" ++"Proprietario: %s\n" + "Impronta digitale: %s\n" + "Firma: %s" + --- evolution-data-server-2.22.1.1.orig/debian/libedata-book1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libedata-book1.2-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/lib/pkgconfig/libedata-book-1.2.pc +debian/tmp/usr/lib/libedata-book-1.2.so +debian/tmp/usr/share/gtk-doc/html/libedata-book +debian/tmp/usr/include/evolution-data-server-2.22/libedata-book --- evolution-data-server-2.22.1.1.orig/debian/libedata-cal1.2-6.install +++ evolution-data-server-2.22.1.1/debian/libedata-cal1.2-6.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libedata-cal-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/copyright +++ evolution-data-server-2.22.1.1/debian/copyright @@ -0,0 +1,372 @@ +This package was debianized by Takuo KITAME on +Mon, 15 Dec 2003 10:36:50 +0900. + +The current Debian maintainer is The Debian Evolution Maintainer Team +. + +It was downloaded from +http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/ + +Authors: + Harish Krishnaswamy + JP Rosevear + Chris Toshok + Rodrigo Moya + Hans Petter Jansson + Sivaiah Nallagatla + Chenthill Palanisamy + Jeffrey Stedfast + Nat Friedman + Federico Mena-Quintero + Michael Zucchi + Ettore Perazzoli + Dan Winship + Jesse Pavel (jpavel@ximian.com) + Jon Trowbridge + Christopher James Lahey + Christian Kellner + David Trowbridge + Eskil Heyn Olsen + Damon Chaplin + Miguel de Icaza + Bertrand Guiheneuf + Radek Doulik + Tor Lillqvist + Parthasarathi Susarla + Jacob Berkman + +Copyright: + 1999-2004 Ximian, Inc. + 1999-2005 Novell, Inc. + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This library is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this library; if not, write to the +Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301, USA. + +On Debian systems, the complete text of the GNU Library General Public +License can be found in /usr/share/common-licenses/LGPL-2. Some of the +files are licensed under the GNU Lesser General Public License which +can be found in /usr/share/common-licenses/LGPL-2.1. + +--- + +The source files calendar/backends/contacts/e-cal-backend-contacts.{c,h} +are copyright 2000-2003 Ximian, Inc., 2003 Gergõ Érdi + +--- + +The source file calendar/idl/Evolution-DataServer-Calendar.idl is +copyright 2000 Eskil Heyn Olsen, 2000 Ximian, Inc. + +--- + +The source file calendar/libecal/e-cal-time-util.h is copyright 1998 +The Free Software Foundation, 2000 Ximian, Inc. + +--- + +The source file addressbook/backends/ldap/openldap-extract.h is +copyright 1998-2005 The OpenLDAP Foundation. + + * Redistribution and use in source and binary forms, with or without + * modification, are permitted only as authorized by the OpenLDAP + * Public License. + * + * A copy of this license is available in file LICENSE in the + * top-level directory of the distribution or, alternatively, at + * . + +The OpenLDAP Public License + Version 2.8, 17 August 2003 + +Redistribution and use of this software and associated documentation +("Software"), with or without modification, are permitted provided +that the following conditions are met: + +1. Redistributions in source form must retain copyright statements + and notices, + +2. Redistributions in binary form must reproduce applicable copyright + statements and notices, this list of conditions, and the following + disclaimer in the documentation and/or other materials provided + with the distribution, and + +3. Redistributions must contain a verbatim copy of this document. + +The OpenLDAP Foundation may revise this license from time to time. +Each revision is distinguished by a version number. You may use +this Software under terms of this license revision or under the +terms of any subsequent revision of the license. + +THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS +CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, +INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT +SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S) +OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, +BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN +ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE. + +The names of the authors and copyright holders must not be used in +advertising or otherwise to promote the sale, use or other dealing +in this Software without specific, written prior permission. Title +to copyright in this Software shall at all times remain with copyright +holders. + +OpenLDAP is a registered trademark of the OpenLDAP Foundation. + +Copyright 1999-2003 The OpenLDAP Foundation, Redwood City, +California, USA. All Rights Reserved. Permission to copy and +distribute verbatim copies of this document is granted. + +--- + +LIBICAL (files under calendar/libical/) +Copyright: + 1999-2000 Eric Busboom, The Software Studio (http://www.softwarestudio.org) + 2001 Critical Path +Authors: + Eric Busboom + John Gray + Andrea Campi + + The code and datafiles in this distribution are licensed under the + Mozilla Public License. See http://www.mozilla.org/NPL/MPL-1.0.html + for a copy of the license. Alternately, you may use libical under the + terms of the GNU Library General Public License. See + http://www.fsf.org/copyleft/lesser.html for a copy of the LGPL. + + This dual license ensures that the library can be incorporated into + both proprietary code and GPL'd programs, and will benefit from + improvements made by programmers in both realms. I will only accept + changes into my version of the library if they are similarly + dual-licensed. + + Portions of this distribution are (C) Copyright 1996 Apple Computer, + Inc., AT&T Corp., International Business Machines Corporation and + Siemens Rolm Communications Inc. See src/libicalvcal/README.TXT for + details. + + Portions of this distribution are Copyright (c) 1997 Theo de + Raadt. See the header for src/libical/vsnprintf.c for the full + copyright statement. + +--- + +The source files calendar/libical/src/libical/icalattach* are +copyright 2000 Andrea Campi. +The source file calendar/libical/src/libicalcap/icalcap_utils.c is +copyright 2002 Andrea Campi +The source file calendar/libical/src/libicalcap/Makefile.am is +copyright 2003 Andrea Campi + +This program is free software; you can redistribute it and/or modify + it under the terms of either: + + The LGPL as published by the Free Software Foundation, version + 2.1, available at: http://www.fsf.org/copyleft/lesser.html + + Or: + + The Mozilla Public License Version 1.0. You may obtain a copy of + the License at http://www.mozilla.org/MPL/ + +--- + +The source file calendar/libical/src/libicalcap/client.c. +Copyright: + 2002 Jonas Borgström + 2002 Daniel Lundin + 2002 CodeFactory AB. All rights reserved. + + * See the file LICENSE for redistribution information. + * If you have not received a copy of the license, please contact CodeFactory + * by email at info@codefactory.se, or on the web at http://www.codefactory.se/ + * You may also write to: CodeFactory AB, SE-903 47, Umeå, Sweden. + +--- + +The source files +calendar/libical/src/libicalvcal/vcaltmp.{c,h} +calendar/libical/src/libicalvcal/vcc.{c,h,y} +calendar/libical/src/libicalvcal/vobject.{c,h} +calendar/libical/src/libicalvcal/port.h +are copyright 1996 Apple Computer, Inc., AT&T Corp., International +Business Machines Corporation and Siemens Rolm Communications Inc. + +For purposes of this license notice, the term Licensors shall mean, +collectively, Apple Computer, Inc., AT&T Corp., International +Business Machines Corporation and Siemens Rolm Communications Inc. +The term Licensor shall mean any of the Licensors. + +Subject to acceptance of the following conditions, permission is hereby +granted by Licensors without the need for written agreement and without +license or royalty fees, to use, copy, modify and distribute this +software for any purpose. + +The above copyright notice and the following four paragraphs must be +reproduced in all copies of this software and any software including +this software. + +THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS AND NO LICENSOR SHALL HAVE +ANY OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR +MODIFICATIONS. + +IN NO EVENT SHALL ANY LICENSOR BE LIABLE TO ANY PARTY FOR DIRECT, +INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT +OF THE USE OF THIS SOFTWARE EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. + +EACH LICENSOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, EXPRESS OR IMPLIED, +INCLUDING BUT NOT LIMITED TO ANY WARRANTY OF NONINFRINGEMENT OR THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. + +The software is provided with RESTRICTED RIGHTS. Use, duplication, or +disclosure by the government are subject to restrictions set forth in +DFARS 252.227-7013 or 48 CFR 52.227-19, as applicable. + +--- + +The files calendar/libical/src/libical/{astime.h,caldate.c} are +copyright 1986-2000 Hiram Clawson. All rights reserved. + + * Redistribution and use in source and binary forms, with or + * without modification, are permitted provided that the following + * conditions are met: + * + * Redistributions of source code must retain the above + * copyright notice, this list of conditions and the + * following disclaimer. + * + * Redistributions in binary form must reproduce the + * above copyright notice, this list of conditions and + * the following disclaimer in the documentation and/or + * other materials provided with the distribution. + * + * Neither name of The Museum of Hiram nor the names of + * its contributors may be used to endorse or promote products + * derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND + * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, + * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, + * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING + * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF + * THE POSSIBILITY OF SUCH DAMAGE. + +--- + +The file calendar/libical/src/libical/vsnprintf.c is copyright 1997 +Theo de Raadt. + + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +--- + +Berkeley DB 4.1.25 (files under libdb/) + +/*- + * See the file LICENSE for redistribution information. + * + * Copyright (c) 1996-2002 + * Sleepycat Software. All rights reserved. + */ +/* + * Copyright (c) 1990, 1993, 1994, 1995, 1996 + * Keith Bostic. All rights reserved. + */ +/* + * Copyright (c) 1990, 1993, 1994, 1995 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Mike Olson. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + + * This code implements the MD5 message-digest algorithm. + * The algorithm is due to Ron Rivest. This code was + * written by Colin Plumb in 1993, no copyright is claimed. + * This code is in the public domain; do with it what you wish. + * + * Equivalent code is available from RSA Data Security, Inc. + * This code has been tested against that, and is equivalent, + * except that you don't need to include two pages of legalese + * with every copy. + * + * To compute the message digest of a chunk of bytes, declare an + * MD5Context structure, pass it to md5_init, call md5_update as + * needed on buffers full of bytes, and then call md5_Final, which + * will fill a supplied 16-byte array with the digest. + */ + +/* parts of this file are : + * Written March 1993 by Branko Lankester + * Modified June 1993 by Colin Plumb for altered md5.c. + * Modified October 1995 by Erik Troan for RPM + */ --- evolution-data-server-2.22.1.1.orig/debian/source.lintian-overrides +++ evolution-data-server-2.22.1.1/debian/source.lintian-overrides @@ -0,0 +1,5 @@ +# We link libdb dynamically, so this won't be used +evolution-data-server source: configure-generated-file-in-source libdb/dist/config.status +evolution-data-server source: outdated-autotools-helper-file libdb/dist/config.guess 2002-07-23 +evolution-data-server source: configure-generated-file-in-source libdb/dist/config.log +evolution-data-server source: outdated-autotools-helper-file libdb/dist/config.sub 2002-07-03 --- evolution-data-server-2.22.1.1.orig/debian/libgdata1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libgdata1.2-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/lib/pkgconfig/libgdata-1.2.pc +debian/tmp/usr/lib/libgdata-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/google/gdata --- evolution-data-server-2.22.1.1.orig/debian/libedataserverui1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libedataserverui1.2-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/lib/pkgconfig/libedataserverui-1.2.pc +debian/tmp/usr/lib/libedataserverui-1.2.so +debian/tmp/usr/share/gtk-doc/html/libedataserverui +debian/tmp/usr/include/evolution-data-server-2.22/libedataserverui --- evolution-data-server-2.22.1.1.orig/debian/watch +++ evolution-data-server-2.22.1.1/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://ftp.gnome.org/pub/GNOME/sources/evolution-data-server/([\d\.]+)[02468]/evolution-data-server-([\d\.]+)\.tar\.gz debian uupdate --- evolution-data-server-2.22.1.1.orig/debian/libgdata-google1.2-1.install +++ evolution-data-server-2.22.1.1/debian/libgdata-google1.2-1.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libgdata-google-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/libedata-book1.2-2.install +++ evolution-data-server-2.22.1.1/debian/libedata-book1.2-2.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libedata-book-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/libexchange-storage1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libexchange-storage1.2-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/lib/pkgconfig/libexchange-storage-1.2.pc +debian/tmp/usr/lib/libexchange-storage-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/exchange --- evolution-data-server-2.22.1.1.orig/debian/libegroupwise1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libegroupwise1.2-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/lib/pkgconfig/libegroupwise-1.2.pc +debian/tmp/usr/lib/libegroupwise-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/groupwise --- evolution-data-server-2.22.1.1.orig/debian/control +++ evolution-data-server-2.22.1.1/debian/control @@ -0,0 +1,378 @@ +Source: evolution-data-server +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Debian Evolution Maintainers +Uploaders: Jordi Mallach , + Margarita Manterola , + Loic Minier , + Heikki Henriksen , + Oystein Gisnas , + Riccardo Setti +Build-Depends: debhelper (>= 5.0.0), + cdbs (>= 0.4.37), + dpkg-dev (>= 1.13.19), + pkg-config, + flex, + bison, + libtool, + intltool (>= 0.35.5), + libdb-dev, + libkrb5-dev, + libldap2-dev, + libglib2.0-dev (>= 2.15.4), + libbonobo2-dev (>= 2.20.3), + liborbit2-dev (>= 1:2.9.8), + libglade2-dev, + libgnomeui-dev, + libxml2-dev, + libgconf2-dev, + libnss3-dev, + libgtk2.0-dev (>= 2.10.0), + libgnome-keyring-dev, + libgnome2-dev, + libgnomevfs2-dev, + libsoup2.4-dev, + gtk-doc-tools +Standards-Version: 3.7.2 + +Package: evolution-data-server +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + evolution-data-server-common (= ${source:Version}) +Suggests: evolution (>= 2.6.1), + evolution-data-server-dbg (= ${binary:Version}) +Replaces: evolution-data-server1.2, libcamel1.2-8 (<< 1.8) +Breaks: evolution (<< 2.21.90-0ubuntu1), evolution-exchange (<< 2.21.90-0ubuntu1), evolution-jescs (<= 2.9.0-0ubuntu1) +Conflicts: evolution-scalix (<= 10.0.0.357-0ubuntu10) +Description: evolution database backend server + The data server, called "Evolution Data Server" is responsible for managing + mail, calendar, addressbook, tasks and memo information. + +Package: evolution-data-server-common +Architecture: all +Depends: ${misc:Depends} +Replaces: evolution-data-server (<< 1.6.2-1) +Conflicts: evolution-data-server (<< 1.6.2-1) +Description: architecture independent files for Evolution Data Server + The data server, called "Evolution Data Server" is responsible for managing + calendar and addressbook information. + . + This package contains the architecture independent files needed + by the evolution-data-server package. + +Package: evolution-data-server-dev +Section: devel +Architecture: any +Depends: ${misc:Depends}, + libgnome2-dev, + libbonobo2-dev (>= 2.4.2) +Description: Development files for evolution-data-server (meta package) + This package contains header files and static library of evolution-data-server. + +Package: evolution-data-server-dbg +Priority: extra +Architecture: any +Depends: evolution-data-server (= ${binary:Version}), + ${misc:Depends} +Description: evolution database backend server with debugging symbols + This package contains unstripped binaries used for debugging. + +Package: libedataserver1.2-9 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Utility library for evolution data servers + The data server, called "Evolution Data Server" is responsible for managing + calendar and addressbook information. + . + This package is a utility library for evolution-data-server. + +Package: libedataserver1.2-dev +Section: libdevel +Architecture: any +Depends: libedataserver1.2-9 (= ${binary:Version}), + ${misc:Depends}, + libxml2-dev, + libglib2.0-dev, + libgconf2-dev, + libbonobo2-dev (>= 2.4.2), + liborbit2-dev (>= 1:2.9.8), + libnspr4-dev +Description: Utility library for evolution data servers (development files) + The data server, called "Evolution Data Server" is responsible for managing + calendar and addressbook information. + . + This package contains header files and static library for libedataserver1.2-9. + +Package: libcamel1.2-11 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: The Evolution MIME message handling library + Camel is a generic messaging library. It supports the standard + messaging system for receiving and sending messages. It is the + messaging backend for Evolution. + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + +Package: libcamel1.2-dev +Section: libdevel +Architecture: any +Depends: libcamel1.2-11 (= ${binary:Version}), + ${misc:Depends}, + libglib2.0-dev, + libedataserver1.2-dev (>= 1.8.0) +Description: Development files for libcamel + This package contains header files and static library for libcamel1.2-11 + . + Camel is a generic messaging library. It supports the standard + messaging system for receiving and sending messages. It is the + messaging backend for Evolution. + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + +Package: libebook1.2-9 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Client library for evolution address books + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package is a client library for evolution address book. + +Package: libebook1.2-dev +Section: libdevel +Architecture: any +Depends: libebook1.2-9 (= ${binary:Version}), + ${misc:Depends}, + libbonobo2-dev (>= 2.4.2), + libgnome2-dev, + libedataserver1.2-dev (>= 1.8.0) +Description: Client library for evolution address books (development files) + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for libebook1.2-9. + +Package: libedataserverui1.2-8 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + evolution-data-server-common (>= 1.12.0) +Description: GUI utility library for evolution data servers + The data server, called "Evolution Data Server" is responsible for managing + calendar and addressbook information. + . + This package is a GUI utility library for evolution-data-server. + +Package: libedataserverui1.2-dev +Section: libdevel +Architecture: any +Depends: libedataserverui1.2-8 (= ${binary:Version}), + ${misc:Depends}, + libgtk2.0-dev, + libglade2-dev, + libgnome2-dev, + libedataserver1.2-dev (>= 1.8.0), + libebook1.2-dev (>= 1.8.0) +Description: GUI utility library for evolution data servers (development files) + The data server, called "Evolution Data Server" is responsible for managing + calendar and addressbook information. + . + This package contains header files and static library for + libedataserverui1.2-8. + +Package: libedata-book1.2-2 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Backend library for evolution address books + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package is a backend library for evolution address book. + +Package: libedata-book1.2-dev +Section: libdevel +Architecture: any +Depends: libedata-book1.2-2 (= ${binary:Version}), + ${misc:Depends}, + libbonobo2-dev (>= 2.4.2), + libgnome2-dev, + libedataserver1.2-dev (>= 1.8.0), + libebook1.2-dev (>= 1.8.0), + libdb-dev +Description: Backend library for evolution address books (development files) + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for libedata-book1.2-2 + +Package: libecal1.2-7 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Client library for evolution calendars + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package is a client library for evolution calendar. + +Package: libecal1.2-dev +Section: libdevel +Architecture: any +Depends: libecal1.2-7 (= ${binary:Version}), + ${misc:Depends}, + libgnome2-dev, + libbonobo2-dev (>= 2.4.2), + libedataserver1.2-dev (>= 1.8.0) +Description: Client library for evolution calendars (development files) + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for libecal1.2-7. + +Package: libedata-cal1.2-6 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Backend library for evolution calendars + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package is a backend library for evolution calendar. + +Package: libedata-cal1.2-dev +Section: libdevel +Architecture: any +Depends: libedata-cal1.2-6 (= ${binary:Version}), + ${misc:Depends}, + libgnome2-dev, + libbonobo2-dev (>= 2.4.2), + libgnomevfs2-dev, + libedataserver1.2-dev (>= 1.8.0), + libecal1.2-dev (>= 1.8.0) +Description: Backend library for evolution calendars (development files) + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for libedata-cal1.2-6. + +Package: libegroupwise1.2-13 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Client library for accessing groupwise POA through SOAP interface + This package is a client library for accessing groupwise POA through SOAP + interface of Evolution. + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + +Package: libegroupwise1.2-dev +Section: libdevel +Architecture: any +Depends: libegroupwise1.2-13 (= ${binary:Version}), + ${misc:Depends}, + libsoup2.2-dev +Description: Development files for libegroupwise + This package contains header files and static library for libegroupwise1.2-13. + . + libegroupwise is client library for accessing groupwise POA through SOAP + interface of Evolution. + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + +Package: libexchange-storage1.2-3 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Backend library for evolution calendars + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package is a backend library for evolution exchange. + +Package: libexchange-storage1.2-dev +Section: libdevel +Architecture: any +Depends: libexchange-storage1.2-3 (= ${binary:Version}), + ${misc:Depends}, + libsoup2.2-dev +Description: Backend library for evolution calendars (development files) + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for + libexchange-storage1.2-3. + +Package: libgdata1.2-1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Client library for accessing google POA through SOAP interface + This package is a client library for accessing google POA + through SOAP interface + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + +Package: libgdata1.2-dev +Section: libdevel +Architecture: any +Depends: libgdata1.2-1 (= ${binary:Version}), + ${shlibs:Depends}, + ${misc:Depends}, + libsoup2.2-dev +Description: Client library for accessing google POA through SOAP interface (development files) + This package is a client library for accessing google POA + through SOAP interface + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for libgdata1.2-1. + +Package: libgdata-google1.2-1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: Client library for accessing google POA through SOAP interface + This package is a client library for accessing google POA + through SOAP interface + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + +Package: libgdata-google1.2-dev +Section: libdevel +Architecture: any +Depends: libgdata-google1.2-1 (= ${binary:Version}), + ${shlibs:Depends}, + ${misc:Depends}, + libsoup2.2-dev +Description: Client library for accessing google POA through SOAP interface (development files) + This package is a client library for accessing google POA + through SOAP interface + . + Evolution is the integrated mail, calendar, task and address book + distributed suite from Novell, Inc. + . + This package contains header files and static library for libgdata-google1.2-1. --- evolution-data-server-2.22.1.1.orig/debian/evolution-data-server-dev.install +++ evolution-data-server-2.22.1.1/debian/evolution-data-server-dev.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/pkgconfig/evolution-data-server-1.2.pc --- evolution-data-server-2.22.1.1.orig/debian/libexchange-storage1.2-3.preinst +++ evolution-data-server-2.22.1.1/debian/libexchange-storage1.2-3.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/rules +++ evolution-data-server-2.22.1.1/debian/rules @@ -0,0 +1,31 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/buildvars.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk + +DEB_SHLIBDEPS_INCLUDE += debian/tmp/usr/lib + +DEB_DH_MAKESHLIBS_ARGS_ALL += -V + +CFLAGS += -fPIC + +DEB_CONFIGURE_EXTRA_FLAGS += --sysconfdir=/etc \ + --libexecdir=\$${prefix}/lib/evolution \ + --enable-ipv6 \ + --enable-nss \ + --enable-nntp \ + --enable-smime \ + --with-openldap \ + --with-krb5=/usr \ + --with-libdb=/usr \ + --enable-gnome-keyring=yes + +DEB_FIXPERMS_EXCLUDE += usr/lib/evolution/camel-lock-helper* + +binary-install/evolution-data-server:: + chgrp mail $(CURDIR)/debian/evolution-data-server/usr/lib/evolution/camel-lock-helper* + chmod g+s $(CURDIR)/debian/evolution-data-server/usr/lib/evolution/camel-lock-helper* --- evolution-data-server-2.22.1.1.orig/debian/evolution-data-server.install +++ evolution-data-server-2.22.1.1/debian/evolution-data-server.install @@ -0,0 +1,6 @@ +debian/tmp/usr/lib/evolution +debian/tmp/usr/lib/bonobo +debian/tmp/usr/lib/evolution-data-server-1.2/extensions/*.so +debian/tmp/usr/lib/evolution-data-server-1.2/camel-providers/*.urls +debian/tmp/usr/lib/evolution-data-server-1.2/camel-providers/*.so +debian/lintian/evolution-data-server usr/share/lintian/overrides/ --- evolution-data-server-2.22.1.1.orig/debian/libedataserverui1.2-8.install +++ evolution-data-server-2.22.1.1/debian/libedataserverui1.2-8.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libedataserverui-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/changelog +++ evolution-data-server-2.22.1.1/debian/changelog @@ -0,0 +1,1271 @@ +evolution-data-server (2.22.1.1-0ubuntu3) hardy-proposed; urgency=low + + * debian/patches/91_from_upstream_fix_keyring_passwords_storage.patch: + - change from upstream, use the protocol as a parameter when storing + the passwords so different passwords on the same account don't conflict + * debian/patches/92_from_upstream_signing_dont_break_keyring.patch: + - change from upstream, don't try to store gpg keys to the keyring, + the code should not do that and that breaks other things (lp: #228794) + + -- Sebastien Bacher Sat, 17 May 2008 17:54:08 +0200 + +evolution-data-server (2.22.1.1-0ubuntu2) hardy-proposed; urgency=low + + * debian/patches/90_from_svn_fix_double_free_groupwise_crasher.patch: + - change from SVN to fix a double free crasher when using groupwise, + thanks to dremon who attached a similar change on launchpad (lp: #228107) + + -- Sebastien Bacher Fri, 09 May 2008 11:46:30 +0200 + +evolution-data-server (2.22.1.1-0ubuntu1) hardy-proposed; urgency=low + + * New upstream version: + Bug Fixes: + - #274316: Also copy user tags when copying messages between folders + - #338330: (Novell Bugzilla) Internet Based Calendar Events Are Declined + By Evolution/GroupWise + - #350143: (Novell Bugzilla) Fix a severe memory leak in + evolution-data-server + - #358584: (Novell Bugzilla) Display of web calendars ignores timezones + - #358644: (Novell Bugzilla) Retracted groupwise appointments should + disappear as soon as they are retracted. + - #358650: (Novell Bugzilla) International clock applet is crashing + - #381307: Run a single delta-thread to fetch changes from the server, + instead of spawning multiple threads + - #473880: Fixed a few compiler warnings + - #475616: Use recursive mutex + - #502899: Fix a crash + - #514300: Make sure we do the Inbox -> INBOX translation at the right place + - #520532: Support migration from password file to keyring (lp: #178544) + - #529339: Fixed a crash when searching with an expression + - #530139: Do not ship .svn files + - #530323: Don't free the same variable twice + Other Contributors: + - Load addressbook conditionally + * debian/control: + - build-depends on libgnome-keyring-dev + * debian/patches/80_fix_double_free_in_contacts_backend.patch: + - dropped, fixed in the new version + * debian/patches/90_from_svn_fix_inbox_caching_issue.patch: + - dropped, fixed in the new version + * debian/rules: + - build using the keyring since the password are migrated automatically now + + -- Sebastien Bacher Mon, 05 May 2008 12:30:29 +0200 + +evolution-data-server (2.22.1-0ubuntu2.1) hardy-proposed; urgency=low + + * debian/patches/80_fix_double_free_in_contacts_backend.patch: + - fix double free in the contacts backend, the issue could be causing + the clock applet hang than several users are having (lp: #204775) + + -- Sebastien Bacher Mon, 28 Apr 2008 15:55:05 +0200 + +evolution-data-server (2.22.1-0ubuntu2) hardy; urgency=low + + * debian/control: + - conflicts rather than break on evolution-scalix + - evolution-data-server replaces libcamel1.2-8 (<< 1.8) + * debian/patches/90_from_svn_fix_inbox_caching_issue.patch: + - change from svn, fix inbox naming issue breaking caching (lp: #203201) + + -- Sebastien Bacher Wed, 16 Apr 2008 23:20:04 +0200 + +evolution-data-server (2.22.1-0ubuntu1) hardy; urgency=low + + * New upstream version: + Bug Fixes: + - #524704: Better support for non RFC 2047 subject line with encoded words + - #521015: IMAP custom/user flags are now synced in summary + between two Evolutions + - #520526: Stop work as soon as we know application is going to exit + - #522433: Open files with O_LARGEFILE flag + - #525485: Removed some infinite loops and corrected + the conditional statement + - #523528,372383: + - #522389: Use correct type for g_base64_decode to fix stack + corruption on x86_64. (lp: #204429) + - #500389: Fall back to simple binds if the global catalog server does not + support NTLM binds. + - #523023: Fix a severe memory leak when using exchange + - #494311: Don't terminate connection after sucessful reconnect by ORBit. + - #523126: Initialize variable to NULL, so do not free random memory + - #303067: Random crash looking up addresses in new email + + -- Sebastien Bacher Mon, 07 Apr 2008 17:36:50 +0200 + +evolution-data-server (2.22.0-0ubuntu1) hardy; urgency=low + + * New upstream version + + -- Sebastien Bacher Mon, 10 Mar 2008 11:06:08 +0100 + +evolution-data-server (2.21.92-0ubuntu1) hardy; urgency=low + + * New upstream version: + Bug Fixes: + - #163982: Do not keep popping up error dialogs in case of failure + - #164140: (Novell Bugzilla) Fixes a crash + - #167638: Dont try downloading while exitting + - #183819: (Novell Bugzilla) Fixes a crashwhile + closing evolution in offline mode + - #445489: Handle emails without '<>' in DLs. + - #459468: Return proper error codes from e_gw_* if no items aren't return + - #469119: Check also for correct date values if parse is OK + - #489043: Do not store quotes in param values when quoting, + it is not allowed + - #489810: Remember Google calendar passwords in keyring + - #510949: Memory leak fixes. (Milan Crha) + - #514836: Memory leak fixes (Milan Crha) + - #516074: Don't assume NI_MAXHOST and NI_MAXSERV + are defined in since these are GNU extensions + - #516408: Memory leak fixes + - #516474: Query on EContact should work for custom fields too + - #517190: Fix a crash when refreshing mail folders + - #517885: Do not compare value/parameter names case sensitively + Other Contributors: + - Fix for some warnings + Updated Translations + + -- Sebastien Bacher Tue, 26 Feb 2008 00:36:35 +0100 + +evolution-data-server (2.21.91-0ubuntu2) hardy; urgency=low + + * No-change rebuild against libsoup2.4-1. + + -- Steve Langasek Wed, 20 Feb 2008 08:25:36 +0000 + +evolution-data-server (2.21.91-0ubuntu1) hardy; urgency=low + + * New upstream version: + Bug Fixes: + - #211353 - Make labels work during filtering. + - #324804 - Report all mails that Evolution receives first as new mails + and apply filters + - #395939 - Memory leak fix + - #505806 - Check for permenant flags before storing on the IMAP server + - #509776 - Fix broken alarm failure + - #510949 - Fix memory leaks in EDS + - #511208 - e-d-s free-memory read/write ... + - #513389 - Crash in camel-url + - #513646 - Fixes libsoup infinite authentication + - #514407 - e-d-s crash while syncing palm with Groupwise calendars + - #514487 - CalDAV backend doesn't accept mime types "text/calendar" + with charset information + - #514555 - Evolution mail tree uses "Trash" + but menu item uses "Wastebasket" + - #514682 - Build Fixes + - #515054 - Do better spam filtering - Upsync SPAM flags + * debian/control: + - add libedata-book1.2-dev depends on libdb-dev (lp: #175537) + + -- Sebastien Bacher Mon, 11 Feb 2008 17:19:56 +0100 + +evolution-data-server (2.21.90-0ubuntu2) hardy; urgency=low + + * Correct installation directory + + -- Sebastien Bacher Wed, 30 Jan 2008 11:36:47 +0100 + +evolution-data-server (2.21.90-0ubuntu1) hardy; urgency=low + + * New upstream version: + New in 2.21.90 + - Speed up spam filtering and spam whitelist implementation + Bug Fixes: + - #213072: Avoids the infinite loop that might be caused in case of broken + mbox files or null From addresses. + - #213072: Remove the error condition that inits and persists + the infamous "folder summary mismatch" bug + - #300098: Set proper dependencies for stand-alone programs + linking against camel. + - #324168: Crash while disabling/Deleting accounts + - #335217: Memory leak fixes + Invalid memory read + - #386157: crash in Evolution + - #445309: Save certificates before cleaning up + - #450840: Do not crash if a message is not there in the summary + - #456019: Use 'pop' as service name, instead of 'pop3', in the digest-uri + - #475781: Fix memory leaks + - #481699: Don't crash if the server returns you bad COPYUID + - #482940: Make the maildir summary check thread safe. + May be needed for other functions too. + - #496081: Can't find string in phone field, but can in all fields + - #498977: Prevent encoding to base64 of no data in the content buffer. + - #506250: Improvements in password prompt + - #509124: Check pointer for NULL + - #509644: Use the correct response codes for the dialog buttons. + - #509985: Refactor the keyring logic and emit more informative + warning messages when a keyring operation fails + - #510168: Ensure slave gone in dispose function of the backend + - #510303: Escape the authentication error message so + the markup parser will parse it verbatim + - #510409: Fix memory leaks + - #511235: Changed prototype to reflect actual libsoup + - #511301: Crash on Exchange startup + - #511717: Add gettext imap folders + Other Contributors: + - Camel mime fixes + - Implement byte order for win32 + - Changed error message to a better string + - Remove unused libsoup includes and update for libsoup 2.4 + - Adapt to newer libsoup + Updated Translations + * debian/control: + - version update due to the libcamel soname change + - updated libbonobo, libglib, libsoup requirements + - use breaks on evolution to require the update due to directory change + * debian/patches/45_libcamel_providers_version.patch: + - don't use the debian change + + -- Sebastien Bacher Tue, 29 Jan 2008 18:07:09 +0100 + +evolution-data-server (2.21.5.1-0ubuntu1) hardy; urgency=low + + * New upstream version: + Critical Bug Fix: + - The passwords dialog wasn't working. (LP: #183608) + * debian/patches/10_camel-pkg-config-requires.patch: + - dropped, fixed in the new version + + -- Sebastien Bacher Thu, 17 Jan 2008 12:02:47 +0100 + +evolution-data-server (2.21.5-0ubuntu1) hardy; urgency=low + + * New upstream version: + New in 2.21.5 + - Improved Mime header decoding + Bug Fixes: + - #224026: Do not send headers in UTF-8 (LP: #62395) + - #327965: Fixed multiple password prompts in an exchange account + - #329692: Get the decoded content size of a MIME part + - #339813: Always store birthday of contact with 4-digit year and modify it + according to locale setting upon display + - #341579: Improve SMTP error reporting + - #348149: Convert a g_assert to g_warning. + - #361972: Fix a crash if the action is not recognised by soup. + So if the message is null return + - #379896: Check the value for NULL before comparing. + - #405497: Don't pass events if the object is being destroyed. + - #474118: Downsyncs all the messages from folders marked for offline use + - #500233: Handle empty strings + - #503400: Remove excessive whitespace on password dialogs + - #504837: Do not ignore HELO failed message + - #506457: Fixed a crash in calendar (LP: #179132) + - #508438: Extract error only if it is there + Updated Translations + * debian/patches/30_iconv-gb2312-gb18030.patch: + - dropped, the issue should be fixed in the new version + + -- Sebastien Bacher Mon, 14 Jan 2008 18:23:18 +0100 + +evolution-data-server (2.21.4-0ubuntu2) hardy; urgency=low + + * Build against db4.6. + + -- Martin Pitt Thu, 03 Jan 2008 10:46:22 +0100 + +evolution-data-server (2.21.4-0ubuntu1) hardy; urgency=low + + * New upstream version + Bug Fixes: + - #322917: Change mnemonics for Contacts, Address Book labels. + Add mnemonic for Category label + - #336074: Check for mail only in active folders + - #339510: Accept time inputs with 4 figures + (e.g. '1830' would be converted to '18:30') + - #462593: Prevent from crash on invalid uri + - #466499: Added mnemonics to configuration options + - #486126: Fixed an incorrect format string usage that can lead to crashes + - #487687: Do not dereference NULL when a geo parsing error occurs. + - #501548: Fix leaks + - #501622: Fixes broken Digest-MD5 authentication + - #501969: Passwords should not be forgotten on all errors + - #502866: Allow get the VJOURNAL component at once same + as other components + * debian/patches/90_from_svn_fix_digest_md5_authentification.patch: + - dropped, fixed with the new version + + -- Sebastien Bacher Mon, 17 Dec 2007 14:58:52 +0100 + +evolution-data-server (2.21.3-0ubuntu2) hardy; urgency=low + + * debian/patches/90_from_svn_fix_digest_md5_authentification.patch: + - patch from SVN, "Return an empty string instead of NULL for empty + SASL responses. Fixes broken Digest-MD5 authentication." (LP: #173156) + + -- Sebastien Bacher Thu, 06 Dec 2007 12:24:46 +0100 + +evolution-data-server (2.21.3-0ubuntu1) hardy; urgency=low + + * New upstream version: + Bug Fixes: + - #308815: Colors for categories can now be changed + - #376425: Use proxy if user uses it. Do not crash if have proxy without + name and password + - #415817: Update start/end time for recurrence instances even when + only end time has been changed + - #461979: Fixed a repeatable crash when entering an IMAP folder + - #492426: Do not iterate beyond bounds of the array + - #494314: Don't leak Cal object reference + + -- Sebastien Bacher Tue, 04 Dec 2007 10:21:29 +0100 + +evolution-data-server (2.21.2-0ubuntu1) hardy; urgency=low + + * New upstream version: + Bug Fixes: + - #318842: Task lists should be sorted (LP: #23912) + - #345135: Disable SSLv2 compatible HELLO on SSL stream when + SSLv2 is disabled + - #359267: Not all memos are showed in calendar view + - #430420: Returned size <= 0 is an error + - #460649: Meeting UI Needs To Show Color Of Selected Calendar Source + - #487229: Use GKeyFile instead of gnome-config to access stored passwords + - #488156: Minimize use of the WITH_GNOME_KEYRING macro + - #492130: ESourceSelector uses pointers to ESource + - #494304: Fix leak + Updated Translations + New in 2.21.1: + - Support for Google Calendar + Bug Fixes: + - #203480: (Novell Bugzilla) Compiler warning fix + for usage ofunintialized variable + - #231178: New symbol 'set-label' defined and added corresponding callback + - #271777: Keep character's case as user types + - #417999: Don't use deprecated GTK+ symbols + - #420167: e-d-s now exits with gnome-session + - #469657: Better use of GHashTable + - #474000: Use GLib's Base64 API instead of Camel's + - #475487: When creating the default contact, print errors to the console + - #475493: Use G_DEFINE_TYPE + - #475494: Use G_LOCK instead of a static mutex for clearer code + - #478404: Reset the id to zero + - #483301: Remove an unused variable + - #487270: Fix typo in documentation + - #488173: Remove __FUNCTION__, which is a gcc-ism + - #488351: Fix an addressbook error on a fresh install + Other Contributors: + - Protect against a NULL subject string. + * debian/*.preinst: + - On upgrades from Gutsy, remove the symlinks introduced in Gutsy. They + break upgrades all over, and current cdbs just symlinks individual files. + * Sync with Debian + * debian/control: + - evolution-data-server Breaks evolution (<< 2.9), + evolution-exchange (<= 2.8.1-0ubuntu1), + evolution-jescs (<= 2.8.2-0ubuntu3), + evolution-scalix (<= 10.0.0.357-0ubuntu6) + - updated maintainer to desktop team + * debian/rules: + - don't specify the paths for nspr and nss since the package is built + with firefox + - don't build documentation, it's distributed in the upstream tarball + + -- Sebastien Bacher Tue, 13 Nov 2007 10:59:20 +0100 + +evolution-data-server (1.12.1-1) unstable; urgency=low + + [ Heikki Henriksen ] + * libedataserverui1.2-8 needs files from /usr/share/evolution-data-se + rver-1.12/glade/ so add a versioned depend on e-d-s-common (closes: #444163) + + [ Oystein Gisnas ] + * New upstream release + * 30_iconv-gb2312-gb18030.patch: Use gb18030 which is a superset of gb2312 + to decode gb2312. Thanks to Darren Hoo. (closes: #447233) + + -- Oystein Gisnas Mon, 22 Oct 2007 10:45:32 +0200 + +evolution-data-server (1.12.0-1) unstable; urgency=low + + * New upstream release + * Adjusted Build-Deps + * Adjusted .install paths to reflect the new upstream. + * Dropped patch: + 15_libebook-optimised-folding.patch - Applied upstream. + 20_e-book-is-self.patch - Applied upstream. + 30_vcf-import-linebreak.patch - Applied upstream. + 35_warn-on-server-service-init-failure.patch - Applied upstream. + 50_libebook-get-contact-list-prepend.patch - Applied upstream. + 65_imap-negative-array-index.patch - Applied upstream. + + -- Riccardo Setti Sun, 23 Sep 2007 12:07:20 +0200 + +evolution-data-server (1.10.3-1) unstable; urgency=low + + * New upstream stable release; no API change; bug fixes. + + -- Loic Minier Wed, 25 Jul 2007 16:42:14 +0200 + +evolution-data-server (1.10.2-2) unstable; urgency=high + + [ Oystein Gisnas ] + * Extend description to cover mail, tasks and memos too. + (closes: #426488) + + [ Loic Minier ] + * SECURITY: New patch, 65_imap-negative-array-index, fixes potential + negative array index usage in IMAP code (remote); FEDORA-2007-0464; + GNOME #447414; closes: #429876. + + -- Loic Minier Thu, 21 Jun 2007 10:34:17 +0200 + +evolution-data-server (1.10.2-1) unstable; urgency=low + + [ Oystein Gisnas ] + * New upstream release. + * 15_libebook-optimised-folding.patch: Speed up vCard line folding by + orders of magnitude (bugzilla #433782) + * 20_e-book-is-self.patch: Return TRUE when self contact is returned + (bugzilla #378502) + * 25_mute-debug-messages.patch: Mute debug noise + * 35_warn-on-server-service-init-failure.patch: Do not core dump when + two servers are started at the same time. (closes: #422426) + * Remove unused ${misc:Depends} + + [ Loic Minier ] + * Wrap deps and build-deps. + * Add ${misc:Depends}. + + -- Loic Minier Tue, 29 May 2007 11:57:07 +0200 + +evolution-data-server (1.10.1-2) unstable; urgency=low + + * Upload to unstable. + + -- Loic Minier Tue, 24 Apr 2007 16:30:48 +0200 + +evolution-data-server (1.10.1-1) experimental; urgency=low + + [ Oystein Gisnas ] + * New upstream release. (closes: #414716) + - Bump intltool build-dep to >= 0.35.5 + - Bump libglib2.0-dev build-dep to >= 2.10.0 + - libedataserver1.2-7 -> libedataser1.2-9 SONAME change + - Add libedataserver1.2-dev Depends: libnspr4-dev + - libcamel1.2-8 -> libcamel1.2-10 SONAME change + - libegroupwise1.2-12 -> libegroupwise1.2-13 SONAME change + - libexchange-storage1.2-2 -> libexchange-storage1.2-3 SONAME change + - Drop 40_libcamel_soname_version.patch, applied upstream + - Drop 50_file-backend-recursive-locking.patch, applied upstream + - Drop debian/patches/65_tz-updates.patch, applied upstream + * Update watch file to track all stable versions + * 50_libebook-get-contact-list-prepend.patch: replace g_list_append + with _prepend, which is O(1) + * Add lintian overrides + + [ Loic Minier ] + * Drop shlibs.local generation hack which seems obsolete. + + -- Loic Minier Tue, 24 Apr 2007 16:07:59 +0200 + +evolution-data-server (1.8.3-1) experimental; urgency=low + + * Drop Takuo Kitame from Uploaders. + * New upstream stable release; no API change. + + -- Loic Minier Thu, 05 Apr 2007 14:41:36 +0200 + +evolution-data-server (1.8.2-3) experimental; urgency=low + + * 20_too-many-open-files.patch: Revert patch which consistently caused + crash. (closes: #417656) + + -- Oystein Gisnas Wed, 04 Apr 2007 14:17:13 +0200 + +evolution-data-server (1.8.2-2) experimental; urgency=high + + [ Oystein Gisnas ] + * 20_too-many-open-files.patch: Backport of patch from 2.9.1 and patch + from bugzilla (closes: #401010) + * 30_vcf-import-linebreak.patch: Fix broken newlines in .vcf import + (closes: #395417) + + [ Loic Minier ] + * New patch, 65_tz-updates, misc timezone updates, adapted from a patch + found in the Ubuntu stable package in version 1.8.1-0ubuntu5, itself taken + from Fedora; closes: #415585. + + -- Loic Minier Tue, 03 Apr 2007 18:58:10 +0200 + +evolution-data-server (1.8.2-1) experimental; urgency=low + + * New upstream release + - Remove 20_revert-exchange-offline-supported-patch.patch + * Document mailbox summary corruption and removal of + IMAP4rev1 provider. [debian/README.Debian] + + -- Oystein Gisnas Thu, 11 Jan 2007 21:47:04 +0100 + +evolution-data-server (1.8.1-3) experimental; urgency=low + + * Add recursive lock to avoid race condition in file backend. Thanks + to Patrick Ohly. (closes: #395416) + [debian/patches/50_file-backend-recursive-locking.patch] + + -- Oystein Gisnas Tue, 31 Oct 2006 22:15:53 +0100 + +evolution-data-server (1.8.1-2) experimental; urgency=low + + * Revert obtrusive exchange performance patch. (closes: #391022) + [debian/patches/20_revert-exchange-offline-supported-patch.patch] + * For now, do not use gnome-keyring. [debian/rules] (closes: #392061) + + -- Oystein Gisnas Sun, 22 Oct 2006 09:51:16 +0200 + +evolution-data-server (1.8.1-1) experimental; urgency=low + + * New upstream release + + -- Heikki Henriksen Tue, 3 Oct 2006 15:19:32 +0200 + +evolution-data-server (1.8.0-3) experimental; urgency=low + + [ oysteigi ] + * Correct camel-providers dir calculation. + [debian/patches/45_libcamel_providers_version.patch] + + -- Heikki Henriksen Tue, 26 Sep 2006 09:55:24 +0200 + +evolution-data-server (1.8.0-2) experimental; urgency=low + + * Add build-dep on libglade2-dev for eds-ui [debian/control] + * Enable gtk-doc [debian/rules] + + -- Heikki Henriksen Thu, 21 Sep 2006 14:15:44 +0200 + +evolution-data-server (1.8.0-1) experimental; urgency=low + + [ Oystein Gisnas ] + * debian/patches/55_no-fallback-for-tls.patch: Applied upstream + * debian/patches/60_gpg-smartcard.patch: Applied upstream + * debian/patches/9?_from_cvs_*.patch: Applied upstream + * debian/rules: Explicitly enable dynamic libdb + * debian/rules: Enable gnome-keyring integration + * debian/patches/20_xulrunner.patch: remove - fixed upstream + * debian/patches/35_external-libdb.patch - fixed upstream + * libebook1.2-5 -> libebook1.2-9 SONAME change + * libedataserverui1.2-6 -> libedataserverui1.2-8 SONAME change + * libegroupwise1.2-9 -> libegroupwise1.2-12 SONAME change + * libexchange1.2-1 -> libexchange1.2-2 SONAME change + * Remove libdb-dev build dep - no longer compiles with libdb3-dev. + [debian/control] + + [ Heikki Henriksen ] + * New upstream release (1.8.0) + * Updated watch-file to follow 1.8-series + * Removed patch applied upstream [debian/patches/10_de_translation.patch] + * Add build-depend on libgnome-keyring-dev [debian/control] + * libecal1.2-5 -> libecal1.2-7 SONAME change + * libedatacal1.2-5 -> libedatacal1.2-6 SONAME change + * Update soname-changes in descriptions [debian/control] + * Update patch for camel pkg-config [debian/patches/10_camel-pkg-config-requires.patch] + * Update small translation patch [debian/patches/11_it_translation.patch] + * Update camel-version patch [debian/patches/40_libcamel_soname_version.patch] + * Update camel-providers patch [debian/patches/45_libcamel_providers_version.patch] + + -- Heikki Henriksen Mon, 11 Sep 2006 22:35:46 +0200 + +evolution-data-server (1.6.3-1) unstable; urgency=low + + * New upstream release + * Depend on (= source:Version) of -common package for binNMU + compatibility. [debian/control] + * Explicitly build-depend on everything used in configure.in. + [debian/control] + * Bump libegroupwise SONAME to libegroupwise1.2-10. + [debian/control, debian/libegroupwise1.2-10.install] + * Drop patch applied upstream: + - 92_from_cvs_fix_attachment_icon_to_messages_list.patch + * Let evolution-data-server-dev depend only on what's in its + .pc file. This means that deps on e-d-s-dev has to be replaced + by explicit deps to each library. [debian/control] + + -- Oystein Gisnas Tue, 8 Aug 2006 10:56:51 +0200 + +evolution-data-server (1.6.2-3) unstable; urgency=low + + [ Oystein Gisnas ] + * debian/control: Add ${misc:Depends} + * debian/control: Clean up dependencies + * debian/patches/10_pkg-config-requires.patch: Fix camel pkgconfig + + [ Heikki Henriksen ] + * Added libglade2-dev to dep for libedataserverui-dev [debian/control] + + -- Oystein Gisnas Sun, 18 Jun 2006 15:57:23 +0200 + +evolution-data-server (1.6.2-2) unstable; urgency=low + + [ Heikki Henriksen ] + * Make package binNMU-safe: + - build-depend on dpkg-dev >= 1.13.19. [debian/control] + - Use ${binary:Version} [debian/control] + * Lower build-dep on cdbs to what's needed, and not work around the + broken version [debian/control] + + -- Heikki Henriksen Mon, 12 Jun 2006 11:36:00 +0200 + +evolution-data-server (1.6.2-1) unstable; urgency=low + + [ Heikki Henriksen ] + * New upstream release + * Soname-bump for libecal & libedatacal + [debian/control] + * Bump build-dep on cdbs (>= 0.4.40) to fix DEB_SHLIBDEPS_INCLUDE + [debian/control] + * Change dep on Source-Version from = to >= to have it binNMU-able + [debian/control] + * Move architechture independent files to package + evolution-data-server-common + * Add replaces evolution-data-server1.2 [debian/control] (closes: #371863) + * Updated patches: + - debian/patches/20_xulrunner.patch + - debian/patches/35_external-libdb.patch + - debian/patches/40_libcamel_soname_version.patch + - debian/patches/45_libcamel_providers_version.patch + - debian/patches/60_gpg-smartcard.patch + - debian/patches/91_from_cvs_valid_utf8_vcard.patch + - debian/patches/92_from_cvs_fix_attachment_icon_to_messages_list.patch + * Drop patches applied upstream: + - debian/patches/55_no-fallback-for-tls.patch + - debian/patches/90_from_cvs_dont_override_namespace_when_not_required.patch + - debian/patches/93_from_cvs_fix_prefered_encoding.patch + - debian/patches/94_from_cvs_fix_compare_im_performances_and_leak.patch + + [ Oystein Gisnas ] + * debian/evolution-data-server-dev.install: Remove the rest of .la + files + + -- Heikki Henriksen Sun, 11 Jun 2006 20:26:50 +0200 + +evolution-data-server (1.6.1-3) unstable; urgency=low + + [ Oystein Gisnas ] + * debian/rules: Set CFLAG += -fPIC to comply to Debian Policy 3.7.1 + * debian/control: Claim compliance with Debian Policy 3.7.2 + * Dropped installation of .la-files to /usr/lib in -dev packages + + [ Heikki Henriksen ] + * pull patches from ubuntu: + - 90_from_cvs_dont_override_namespace_when_not_required.patch + - 91_from_cvs_valid_utf8_vcard.patch + - 92_from_cvs_fix_attachment_icon_to_messages_list.patch + - 93_from_cvs_fix_prefered_encoding.patch + - 94_from_cvs_fix_compare_im_performances_and_leak.patch + * debian/control: update build-dep & -dev deps to libdb4.4-dev + + -- Heikki Henriksen Tue, 23 May 2006 23:04:30 +0200 + +evolution-data-server (1.6.1-2) unstable; urgency=low + + * debian/patches/35_external-libdb.patch: + update to fix disable build of internal libdb, so we can build on + mips/mipsel + * debian/control.in: removed + * debian/rules, debian/lib*@VER*: remove update-control + * debian/control: add suggests on evolution-data-server-dbg + * debian/copyright: fix slight typo + + -- Heikki Henriksen Wed, 3 May 2006 14:42:12 +0200 + +evolution-data-server (1.6.1-1) unstable; urgency=low + + [ Heikki Henriksen ] + * Upload to unstable + * New upstream release (1.6.1) + * debian/patches/10_de_translation.patch (closes: #313698) + * debian/patches/11_it_translation.patch (closes: #295269) + * debian/control[.in]: bump debhelper build-dep to > 5.0.0 + * debian/rules: clean out clean:: + * e-d-s is now restarted on upgrade (closes: #319054) + * debian/watch: added + * debian/control[.in]: remove old unnecessary conflicts/replaces + * debian/patches/55_no-fallback-for-tls.patch: + don't fallback to plain password for tls/ssl (upstream bug 321797) + * debian/patches/60_gpg-smartcard.patch: + Handle GPG keys stored on a smartcard device. Thanks to Tilman Koschnick + (closes: #365327) + + [ Oystein Gisnas ] + * Make libcamel versioned and remove conflict with previous versions + * Move libcamel providers to e-d-s package + * debian/contol{,.in}: Change Recommends: evolution to Suggests: + * debian/copyright: + Mention current package maintainer + More detailed path of download location + Include authors from all files, not just AUTHORS + Include Copyright owner + Change copyright statement from GPL-2 to LGPL-2 (ref. COPYING) + Mention all other copyright holders and specific licenses + + + -- Heikki Henriksen Mon, 1 May 2006 11:02:00 +0200 + +evolution-data-server (1.6.0-1) experimental; urgency=low + + * New upstream release + * Target experimental + * Added -dbg-package + * debian/patches/20_xulrunner.patch: + Build with xulrunner + * debian/patches/35_external-libdb.patch: + Build with debian's libdb4.3 + * Change build-dep from libgnutls11-dev to libgnutls-dev + * Add gtk-doc for lib*-dev (closes: #316063) + + -- Heikki Henriksen Wed, 29 Mar 2006 15:52:31 +0100 + +evolution-data-server (1.4.2.1-2) unstable; urgency=medium + + * Acknowledge NMU (closes: #358590) + * Add myself to Uploaders + * Add back hurd-i386 build-dep for libldap2-dev (closes: #357261) + * Add libgtk2.0-dev in dep for libedataserverui-dev (closes: #358914) + * debian/patches/50_imapoffline_imap-store.patch: + fix crash with Draft-saving when offline + * debian/patches/51_uw-imapd-new-folder_imap-command.patch: + * debian/patches/55_camel-imap-command-1.71.2.3.patch + fix hang on new folder with uw-imapd + fix access to utf8-folders in imap + * debian/patches/55_camel-imap-store-1.330.2.2.patch + fix access to utf8-folders in imap + * debian/patches/55_camel-imap-store-summary.1.16.2.1.patch + fix access to utf8-folders in imap + * debian/patches/81_reload-http_e-cal-backend-http.patch: + fix crash on http-cal-reload + * debian/patches/60_e-name-selector-dialog.1.24.patch: + put focus on search in "Select from Addressbook" + * debian/patches/61_e-name-selector-dialog.1.26.patch: + crash on "Select from Addressbook" (closes: #359200, #354448) + + -- Heikki Henriksen Sun, 26 Mar 2006 17:28:44 +0100 + +evolution-data-server (1.4.2.1-1.1) unstable; urgency=low + + * NMU to fix crasher in e-cal-backend-http + (pulled from upstream cvs) + + -- Heikki Henriksen Thu, 23 Mar 2006 11:43:52 +0000 + +evolution-data-server (1.4.2.1-1) unstable; urgency=low + + * New uptream release. + - fixes an implicit pointer conversion (closes: #431323). + * ACK Steve Langasek's NMU; thanks! (closes: #344829). + * Upload to unstable. + * Update patches: + - 70_rebootstrap.patch: update, including a full intltoolisation, as + upstream's is broken. + + -- Jordi Mallach Mon, 9 Jan 2006 03:28:07 +0100 + +evolution-data-server (1.4.1.1-1.1) experimental; urgency=low + + * Non-maintainer upload. + * Added libexchange-storage and libexchange-storage-dev. The Exchange + server communication code has moved to evolution-data-server under + servers/exchange. Patch from Sebastien Bacher and Lawrence Walton. + Closes: #344829. + + -- Steve Langasek Fri, 6 Jan 2006 11:07:51 -0800 + +evolution-data-server (1.4.1.1-1) experimental; urgency=high + + [ Jordi Mallach ] + * New upstream release. + * Merge all changes from 1.2.3-4.1, 1.2.3-4.2, 1.2.3-5 and 1.2.3-6 to + experimental. + * debian/patches/ia64_crash_fix.patch: update for new version. + + [ Loic Minier ] + * Merge changes from 1.2.3-7 to experimental. + * Drop patches merged upstream: + - 10_pc-files-inversion.patch + * Update patches to apply cleanly: + - 05_libical-declare-const.patch + - 15_amd64-build.patch + - 20_decode-non-space-separated-mime-header.patch + * Port the patch to build against Debian's libdb4.2 to the new upstream + release, 35_use-debians-libdb42.patch, and update the reboostrapping + patch, 70_rebootstrap.patch. + * Update FSF address in copyright file. + * Clarify License versus Copyright and update authors list in copyright + file. + * Fix description of libedataserver and libedataserverui packages. + (Closes: #291469) + * Add CDBS' utils. + * Wrap description of libedataserverui1.2-dev. + * Follow libcamel's SONAME changes: + - Uncomment the configure.in scanning hack for libcamel as the SONAME / + libtool version-info is updated for -provider. + (Closes: #333142, #337464) + - Add debian/libcamel1.2-6.install and remove old debian/lib*.install for + previous SONAMEs. + - Add Conflicts / Replaces with libcamel1.2-0 on libcamel1.2-@VER@. + * Merge changes from 1.2.3-8 to experimental. + * Move libcamel from the libdevel section to libs. (Closes: #305611) + * Remove superfluous self-depends of libcamel@VER@-dev. + * Sync shlibs. + * E-D-S plugins are in /usr/lib/evolution-data-server-1.2, not 1.4. + [debian/evolution-data-server.install] + + -- Loic Minier Mon, 7 Nov 2005 17:22:25 +0100 + +evolution-data-server (1.4.1-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Mon, 10 Oct 2005 05:34:04 +0900 + +evolution-data-server (1.4.0-3) experimental; urgency=low + + * libedataserver1.2-dev: fix unmet dependency. + + -- Takuo KITAME Mon, 10 Oct 2005 05:08:29 +0900 + +evolution-data-server (1.4.0-2) experimental; urgency=low + + * Build against libdb4.2 + + -- Takuo KITAME Wed, 21 Sep 2005 16:55:06 +0900 + +evolution-data-server (1.4.0-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Mon, 12 Sep 2005 02:23:41 +0900 + +evolution-data-server (1.2.3-8) unstable; urgency=high + + * Add depends to *-dev packages to match .la files referenced in the + dependency_libs of *.la files they ship: + - evolution-data-server-dev: libaudiofile-dev, libbonobo2-dev, + libdb4.2-dev, libebook1.2-dev, libecal1.2-dev, libedataserver1.2-dev, + libesd0-dev, libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, + libgnome2-dev, libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, + liborbit2-dev, libpopt-dev, libsoup2.2-dev, libtasn1-2-dev, libxml2-dev + - libedataserver1.2-dev: libaudiofile-dev, libbonobo2-dev, libesd0-dev, + libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, libgnome2-dev, + libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev, + libpopt-dev, libtasn1-2-dev, libxml2-dev + - libedataserverui1.2-dev: libaudiofile-dev, libbonobo2-dev, + libcamel1.2-dev, libdb4.2-dev, libebook1.2-dev, libesd0-dev, + libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, libgnomevfs2-dev, + libgnutls11-dev, libgpg-error-dev, liborbit2-dev, libpopt-dev, + libtasn1-2-dev, libxml2-dev (Closes: #337422) + - libebook1.2-dev: libaudiofile-dev, libbonobo2-dev, libcamel1.2-dev, + libesd0-dev, libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, + libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev, + libpopt-dev, libtasn1-2-dev, libxml2-dev + - libedata-book1.2-dev: libaudiofile-dev, libbonobo2-dev, libcamel1.2-dev, + libdb4.2-dev, libedataserver1.2-dev, libesd0-dev, libgconf2-dev, + libgcrypt11-dev, libglib2.0-dev, libgnome2-dev, libgnomevfs2-dev, + libgnutls11-dev, libgpg-error-dev, liborbit2-dev, libpopt-dev, + libtasn1-2-dev, libxml2-dev (Closes: #337421) + - libecal1.2-dev: libaudiofile-dev, libbonobo2-dev, libdb4.2-dev, + libesd0-dev, libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, + libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev, + libpopt-dev, libtasn1-2-dev, libxml2-dev + - libedata-cal1.2-dev: libaudiofile-dev, libbonobo2-dev, libdb4.2-dev, + libedataserver1.2-dev, libesd0-dev, libgconf2-dev, libgcrypt11-dev, + libglib2.0-dev, libgnome2-dev, libgnomevfs2-dev, libgnutls11-dev, + libgpg-error-dev, liborbit2-dev, libpopt-dev, libtasn1-2-dev, libxml2-dev + - libegroupwise1.2-dev: libaudiofile-dev, libbonobo2-dev, libesd0-dev, + libgconf2-dev, libgcrypt11-dev, libglib2.0-dev, libgnome2-dev, + libgnomevfs2-dev, libgnutls11-dev, libgpg-error-dev, liborbit2-dev, + libpopt-dev, libtasn1-2-dev, libxml2-dev + - libcamel1.2-dev: libaudiofile-dev, libbonobo2-dev, libcamel1.2-dev, + libegroupwise1.2-dev, libesd0-dev, libgconf2-dev, libgcrypt11-dev, + libglib2.0-dev, libgnome2-dev, libgnomevfs2-dev, libgnutls11-dev, + libgpg-error-dev, liborbit2-dev, libpopt-dev, libsoup2.2-dev, + libtasn1-2-dev, libxml2-dev + * Add ${misc:Depends} to all Depends. + + -- Loic Minier Sat, 5 Nov 2005 16:13:06 +0100 + +evolution-data-server (1.2.3-7) unstable; urgency=high + + * Update the patch to build against Debian's libdb4.2 instead of the bundled + libdb4.1 copy. + - Clean up. + - Split in two patches, one for configure.in and **/Makefile.am, the other + to update generated files: debian/patches/35_use-debians-libdb42.patch + and debian/patches/70_rebootstrap.patch (result of automake-1.7 && + autoconf && rm -rf autom4te.cache) + - Also cover the addressbook/backends/file sub-directory. + (Closes: #336761, #336897, #337018, #337077) + * Add DEB_FIXPERMS_EXCLUDE to preserve the mail group and the setgid bit of + usr/lib/evolution/evolution-data-server*. (Closes: #336755) + * Re-create patches applying cleanly, preprend a number to patches missing + one. + - debian/patches/05_libical-declare-const.patch: cleaned up, renamed. + - debian/patches/10_pc-files-inversion.patch: cleaned up, renamed. + - debian/patches/15_amd64-build.patch: cleaned up, renamed. + - debian/patches/20_decode-non-space-separated-mime-header.patch: cleaned + up, renamed. + - debian/patches/25_ia64-crash.patch: cleaned up, renamed. + - debian/patches/30_dont-send-second-pop-capa.patch: cleaned up, renamed. + * Don't overwrite DEB_SHLIBDEPS_INCLUDE, DEB_CONFIGURE_EXTRA_FLAGS, nor + DEB_DH_MAKESHLIBS_ARGS_ALL. + * Add myself to Uploaders. + + -- Loic Minier Wed, 2 Nov 2005 17:12:50 +0100 + +evolution-data-server (1.2.3-6) unstable; urgency=low + + * debian/control.in, debian/control: + - duplicate all changes made in the + last three uploads to sync both files. debian/control isn't regenerated + at build time, so many changes were missing. + - bump Standards-Version to 3.6.2.0, no changes required. + + -- Jordi Mallach Mon, 31 Oct 2005 13:24:39 +0100 + +evolution-data-server (1.2.3-5) unstable; urgency=low + + * Acknowledge NMU changes, thanks James Troup and Loïc Minier + (closes: #331569, #330013, #331570, #331571). + * Forwardport a security improvement from evolution 2.0.3-1.2 that got + lost later on: + - debian/rules: move here chmod/chgrp calls for camel-lock-helper + from evolution-data-server.postinst, and make it sgid mail, not + suid root. + - debian/evolution-data-server.postinst: removed. + * Patch from Michael Banck to not build with libldap2-dev on hurd-i386 + (closes: #315163). + - debian/control.in (Build-Depends): Do not Build-Depend on + libldap2-dev on hurd-i386. + - debian/rules (DEB_CONFIGURE_EXTRA_FLAGS): Do not add --with-openldap + on GNU/Hurd. + * Move to team maintenance: + - debian/control.in: + + set maintainer to Debian Evolution Maintainers + . + + add Takuo, Marga and me to Uploaders. + + -- Jordi Mallach Mon, 31 Oct 2005 10:06:04 +0100 + +evolution-data-server (1.2.3-4.2) unstable; urgency=high + + * Non-maintainer upload. + * Urgency high for RC bug fix. + * Add missing libdb4.2-dev dependency to libebook1.2-dev and + libcamel1.2-dev. (Closes: #331570, #331571) + + -- Loic Minier Sat, 8 Oct 2005 17:42:11 +0200 + +evolution-data-server (1.2.3-4.1) unstable; urgency=low + + * debian/control: fix libedataserver1.2-dev to Depend on libdb4.2-dev + rather than libdb4.1-dev. Closes: #331569, #330013 + + -- James Troup Sat, 8 Oct 2005 01:54:09 +0100 + +evolution-data-server (1.2.3-2) unstable; urgency=low + + * libcamel-dev: depends on libkrb5-dev (closes: #318981, #319787) + + -- Takuo KITAME Mon, 1 Aug 2005 12:38:53 +0900 + +evolution-data-server (1.2.3-1) unstable; urgency=low + + * New upstream release + * enable GSSAPI. (closes: Bug#317175) + * close bugs which fixed in 1.2.2-6 (closes: #305597, #308927) + + -- Takuo KITAME Wed, 13 Jul 2005 14:29:57 +0900 + +evolution-data-server (1.2.2-6) unstable; urgency=low + + * Maintainer upload (closes: #305597) + * Change package name untagged. (except libraries) (closes: #308927) + * build with -sa + * e-d-s: conflicts and replaces with e-d-s1.2 + * e-d-s-dev: conflicts and replaces with e-d-s1.2-dev + + -- Takuo KITAME Thu, 23 Jun 2005 12:48:03 +0900 + +evolution-data-server1.2 (1.2.2-5.1) unstable; urgency=low + + * Non-maintainer upload. + * Rename ia64_crash_fix to ia64_crash_fix.patch, so that the build system + will pick it up. (closes: #305597) + + -- dann frazier Tue, 24 May 2005 15:38:49 -0600 + +evolution-data-server1.2 (1.2.2-5) unstable; urgency=low + + * libedataserver1.2: depends on libnspr4 (closes: #309449) + * libedataserver1.2-dev: depends on libnspr-dev (closes: #309189) + + -- Takuo KITAME Wed, 18 May 2005 15:59:32 +0900 + +evolution-data-server1.2 (1.2.2-4) unstable; urgency=low + + * fix dependency of *-dev packages. (closes: Bug#307931) + + -- Takuo KITAME Tue, 10 May 2005 12:49:34 +0900 + +evolution-data-server1.2 (1.2.2-3) unstable; urgency=low + + * fix crash on ia64 when clicking on "reply" in evolution mailer (closes: #305597) + * applied patch to use system libdb (closes: #305518) + + -- Takuo KITAME Thu, 5 May 2005 19:49:11 +0900 + +evolution-data-server1.2 (1.2.2-2) unstable; urgency=low + + * applied amd64 build fix patch. (closes: #304584) + * trying force decode not-space-separated mime header. + Feel free to submit bug caused by this patch. + + -- Takuo KITAME Thu, 14 Apr 2005 18:22:29 +0900 + +evolution-data-server1.2 (1.2.2-1) unstable; urgency=high + + * New upstream release + * Build-Depends on libnss-dev, It will fix SSL issue. + closes: #304361, #304243, #304279, #304243, #304083, #299603 + * debian/rules: added some configure options from evolution/debian/rules. + * libebook1.2-dev depend on libnss-dev (closes: #304085) + * libebook1.2 depend on libcamel1.2 (closes: #304075) + * fix description (closes: #303761) + + -- Takuo KITAME Wed, 13 Apr 2005 17:57:28 +0900 + +evolution-data-server1.2 (1.2.1-1) unstable; urgency=low + + * New upstream release + * upload to unstable/main. + + -- Takuo KITAME Tue, 29 Mar 2005 11:34:48 +0900 + +evolution-data-server1.2 (1.1.6-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Tue, 22 Mar 2005 14:20:55 +0900 + +evolution-data-server1.2 (1.1.5-2) experimental; urgency=low + + * remove unnecessary dependency. + + -- Takuo KITAME Mon, 28 Feb 2005 16:48:26 +0900 + +evolution-data-server1.2 (1.1.5-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Mon, 21 Feb 2005 18:45:56 +0900 + +evolution-data-server1.2 (1.1.4-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Fri, 4 Feb 2005 14:26:26 +0900 + +evolution-data-server1.2 (1.1.3-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Thu, 13 Jan 2005 13:34:40 +0900 + +evolution-data-server1.2 (1.1.2-4) experimental; urgency=low + + * chmod u+s /usr/lib/evolution/camel-lock-helper-1.2 + + -- Takuo KITAME Thu, 6 Jan 2005 18:48:04 +0900 + +evolution-data-server1.2 (1.1.2-3) experimental; urgency=low + + * Conflicts and Replaces libedata-cal1.2-0, libedata-book1.2-0 and libegroupwise1.2-0 (= 1.1.2-1) + * includes libcamel*.la into libcamel1.2-dev + + -- Takuo KITAME Thu, 6 Jan 2005 16:22:10 +0900 + +evolution-data-server1.2 (1.1.2-2) experimental; urgency=low + + * separate libcamel package. + * evolution-data-server1.2-dev depends on earch libdevel packages. + + -- Takuo KITAME Thu, 6 Jan 2005 15:23:40 +0900 + +evolution-data-server1.2 (1.1.2-1) experimental; urgency=low + + * New upstream release + * build-depends on libgnomeui-dev (closes: #281339) + + -- Takuo KITAME Thu, 6 Jan 2005 14:37:02 +0900 + +evolution-data-server1.2 (1.1.1-1) experimental; urgency=low + + * New upstream release + * Build depends on libgnome2-dev (closes: #281339) + + -- Takuo KITAME Fri, 17 Dec 2004 15:42:46 +0900 + +evolution-data-server1.2 (1.1.0-1) experimental; urgency=low + + * New upstream release + * tagged package name 1.2. + + -- Takuo KITAME Fri, 5 Nov 2004 11:46:58 +0900 + +evolution-data-server (1.0.2-2) unstable; urgency=low + + * upload to unstable/main + + -- Takuo KITAME Tue, 19 Oct 2004 11:51:47 +0900 + +evolution-data-server (1.0.2-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Wed, 13 Oct 2004 12:00:09 +0900 + +evolution-data-server (1.0.1-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Wed, 29 Sep 2004 15:31:14 +0900 + +evolution-data-server (1.0.0-1) experimental; urgency=low + + * New upstream release, RC package for uploading into main. + * change package structure. + lib* is into own package. + e-d-s-dev is meta package of lib*-dev packages. + (closes: #270678) + + -- Takuo KITAME Tue, 14 Sep 2004 17:09:57 +0900 + +evolution-data-server (0.0.99-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Tue, 31 Aug 2004 13:55:25 +0900 + +evolution-data-server (0.0.98-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Mon, 16 Aug 2004 12:42:30 +0900 + +evolution-data-server (0.0.97-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Thu, 5 Aug 2004 18:58:54 +0900 + +evolution-data-server (0.0.96-1) experimental; urgency=low + + * New upstream release + * remove useless files in doc (closes: #257405) + + -- Takuo KITAME Tue, 20 Jul 2004 16:18:03 +0900 + +evolution-data-server (0.0.95-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Thu, 8 Jul 2004 18:41:50 +0900 + +evolution-data-server (0.0.94.1-2) experimental; urgency=low + + * --with-uniquename=eds (closes: #255727) + + -- Takuo KITAME Wed, 30 Jun 2004 00:15:58 +0900 + +evolution-data-server (0.0.94.1-1) experimental; urgency=low + + * New upstream release + * use cdbs instead of cdb + + -- Takuo KITAME Mon, 28 Jun 2004 10:59:44 +0900 + +evolution-data-server (0.0.94-1) experimental; urgency=low + + * New upstream release + * Conflicts: evolution1.5 (<< 1.5.9) + + -- Takuo KITAME Mon, 7 Jun 2004 11:50:34 +0900 + +evolution-data-server (0.0.93-2) experimental; urgency=low + + * Conflict with evolution1.5 (<< 1.5.8) + + -- Takuo KITAME Wed, 26 May 2004 15:36:23 +0900 + +evolution-data-server (0.0.93-1) experimental; urgency=low + + * New upstream release + * build against libgnutls10 + + -- Takuo KITAME Mon, 24 May 2004 19:47:53 +0900 + +evolution-data-server (0.0.92-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Tue, 20 Apr 2004 17:02:50 +0900 + +evolution-data-server (0.0.91-2) experimental; urgency=low + + * Applied patch to fix build problem on ppc (closes: #242044) + * Build-Depends on gtk-doc-tools (closes: #241227) + + -- Takuo KITAME Mon, 12 Apr 2004 09:57:50 +0900 + +evolution-data-server (0.0.91-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Wed, 7 Apr 2004 12:35:34 +0900 + +evolution-data-server (0.0.90-1) experimental; urgency=low + + * New upstream release + * NOTE: + libsoup2.2-3 and libgtkhtml3.1-6 package had been uploaded already. + But it marked as NEW package and waiting for ACCEPTED. + So please wait for installing into archive by ftp-maintainer. + + -- Takuo KITAME Tue, 9 Mar 2004 12:59:34 +0900 + +evolution-data-server (0.0.7-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Thu, 19 Feb 2004 14:47:19 +0900 + +evolution-data-server (0.0.6-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Tue, 3 Feb 2004 14:23:19 +0900 + +evolution-data-server (0.0.5-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Tue, 20 Jan 2004 16:43:50 +0900 + +evolution-data-server (0.0.4-1) experimental; urgency=low + + * New upstream release + + -- Takuo KITAME Fri, 9 Jan 2004 14:16:21 +0900 + +evolution-data-server (0.0.3-2) experimental; urgency=low + + * fix unavailable libdb.a + + -- Takuo KITAME Thu, 18 Dec 2003 11:17:42 +0900 + +evolution-data-server (0.0.3-1) experimental; urgency=low + + * Initial Release. + + -- Takuo KITAME Mon, 15 Dec 2003 10:36:50 +0900 + --- evolution-data-server-2.22.1.1.orig/debian/libecal1.2-7.install +++ evolution-data-server-2.22.1.1/debian/libecal1.2-7.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libecal-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/libedataserver1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libedataserver1.2-dev.install @@ -0,0 +1,5 @@ +debian/tmp/usr/lib/pkgconfig/libedataserver-1.2.pc +debian/tmp/usr/lib/libedataserver-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/libedataserver +debian/tmp/usr/share/idl/evolution-data-server-1.2/Evolution-DataServer.idl +debian/tmp/usr/share/gtk-doc/html/libedataserver --- evolution-data-server-2.22.1.1.orig/debian/libegroupwise1.2-13.preinst +++ evolution-data-server-2.22.1.1/debian/libegroupwise1.2-13.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/lintian/evolution-data-server +++ evolution-data-server-2.22.1.1/debian/lintian/evolution-data-server @@ -0,0 +1,2 @@ +# camel-lock-helper-1.2 must have access to the mail lock files +evolution-data-server: setgid-binary usr/lib/evolution/camel-lock-helper-1.2 2755 root/mail --- evolution-data-server-2.22.1.1.orig/debian/libgdata-google1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libgdata-google1.2-dev.install @@ -0,0 +1,3 @@ +debian/tmp/usr/lib/pkgconfig/libgdata-google-1.2.pc +debian/tmp/usr/lib/libgdata-google-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/google/gdata-google --- evolution-data-server-2.22.1.1.orig/debian/libgdata1.2-1.install +++ evolution-data-server-2.22.1.1/debian/libgdata1.2-1.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libgdata-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/libedata-book1.2-2.preinst +++ evolution-data-server-2.22.1.1/debian/libedata-book1.2-2.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/libexchange-storage1.2-3.install +++ evolution-data-server-2.22.1.1/debian/libexchange-storage1.2-3.install @@ -0,0 +1,2 @@ +debian/tmp/usr/lib/libexchange-storage-1.2.so.* + --- evolution-data-server-2.22.1.1.orig/debian/README.Debian +++ evolution-data-server-2.22.1.1/debian/README.Debian @@ -0,0 +1,14 @@ +Evolution for Debian +==================== + +IMAP +---- + +In versions prior to 2.8, two different IMAP providers (backend modules) were installed. "IMAP" was considered more stable and "IMAP4rev1" had a few experimental features. Starting with version 2.8, IMAP4rev1 has been removed. All accounts with IMAP4rev1 set as server type for incoming email must be switched to IMAP. + +Mailbox corruption +------------------ + +Mailbox summary corruption is an issue that is known to appear in exceptional cases as reported in http://bugs.debian.org/295270 and http://bugs.debian.org/347703. A typical symptom is the error message: "Error while Refreshing folder: Summary and folder mismatch, even after a sync." No data is lost, but one or more summary files are corrupted. + +Before fixing the problem, backup your ~/.evolution folder just in case. Delete ~/.evolution/mail/local/MAILBOX.ev-summary where MAILBOX is your mailboxes. For example, the inbox summary file is Inbox.ev-summary. To rebuild the summaries, restart evolution and evolution-data-server. --- evolution-data-server-2.22.1.1.orig/debian/evolution-data-server-common.install +++ evolution-data-server-2.22.1.1/debian/evolution-data-server-common.install @@ -0,0 +1,3 @@ +debian/tmp/usr/share/evolution-data-server-2.22 +debian/tmp/usr/share/locale +debian/tmp/usr/share/pixmaps --- evolution-data-server-2.22.1.1.orig/debian/libedataserver1.2-9.install +++ evolution-data-server-2.22.1.1/debian/libedataserver1.2-9.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libedataserver-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/libecal1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libecal1.2-dev.install @@ -0,0 +1,6 @@ +debian/tmp/usr/lib/pkgconfig/libecal-1.2.pc +debian/tmp/usr/lib/libecal-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/libecal +debian/tmp/usr/include/evolution-data-server-2.22/libical +debian/tmp/usr/share/idl/evolution-data-server-1.2/Evolution-DataServer-Calendar.idl +debian/tmp/usr/share/gtk-doc/html/libecal --- evolution-data-server-2.22.1.1.orig/debian/libedata-cal1.2-6.preinst +++ evolution-data-server-2.22.1.1/debian/libedata-cal1.2-6.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/libedataserverui1.2-8.preinst +++ evolution-data-server-2.22.1.1/debian/libedataserverui1.2-8.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/libegroupwise1.2-13.install +++ evolution-data-server-2.22.1.1/debian/libegroupwise1.2-13.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libegroupwise-1.2.so.* --- evolution-data-server-2.22.1.1.orig/debian/libcamel1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libcamel1.2-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/lib/libcamel*.so +debian/tmp/usr/lib/pkgconfig/camel* +debian/tmp/usr/share/gtk-doc/html/camel +debian/tmp/usr/include/evolution-data-server-2.22/camel --- evolution-data-server-2.22.1.1.orig/debian/compat +++ evolution-data-server-2.22.1.1/debian/compat @@ -0,0 +1 @@ +5 --- evolution-data-server-2.22.1.1.orig/debian/libcamel1.2-11.install +++ evolution-data-server-2.22.1.1/debian/libcamel1.2-11.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libcamel-*.so.* --- evolution-data-server-2.22.1.1.orig/debian/libebook1.2-dev.install +++ evolution-data-server-2.22.1.1/debian/libebook1.2-dev.install @@ -0,0 +1,5 @@ +debian/tmp/usr/lib/pkgconfig/libebook-1.2.pc +debian/tmp/usr/lib/libebook-1.2.so +debian/tmp/usr/include/evolution-data-server-2.22/libebook +debian/tmp/usr/share/idl/evolution-data-server-1.2/Evolution-DataServer-Addressbook.idl +debian/tmp/usr/share/gtk-doc/html/libebook --- evolution-data-server-2.22.1.1.orig/debian/libecal1.2-7.preinst +++ evolution-data-server-2.22.1.1/debian/libecal1.2-7.preinst @@ -0,0 +1,18 @@ +#!/bin/sh + +set -e + +case "$1" in + install|upgrade) + # clean up doc directory symlinking from Gutsy + if dpkg --compare-versions "$2" lt-nl 2.21.2; then + for p in evolution-data-server evolution-data-server-dev evolution-data-server-dbg libedataserver1.2-dev libcamel1.2-10 libcamel1.2-dev libebook1.2-9 libebook1.2-dev libedataserverui1.2-8 libedataserverui1.2-dev libedata-book1.2-2 libedata-book1.2-dev libecal1.2-7 libecal1.2-dev libedata-cal1.2-6 libedata-cal1.2-dev libegroupwise1.2-dev libexchange-storage1.2-3 libexchange-storage1.2-dev; do + f=/usr/share/doc/$p + [ -e "$f" ] && rm -f $f || true + done + fi +esac + +#DEBHELPER# + +exit 0 --- evolution-data-server-2.22.1.1.orig/debian/libebook1.2-9.install +++ evolution-data-server-2.22.1.1/debian/libebook1.2-9.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/libebook-1.2.so.*