Your message dated Mon, 02 Apr 2012 09:36:29 +0000
with message-id <[email protected]>
and subject line Bug#666890: fixed in evolution-data-server 3.2.2-3
has caused the Debian Bug report #666890,
regarding Crashes when adding appointments
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
666890: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=666890
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: evolution-data-server
Version: 3.2.2-2
Severity: important
Tags: patch
Hey,
Quite often when adding appointments in evolution my e-d-s crashes. After some
more research it seems this is gnome bug #659756, which has been fixed for 3.4.
Attached is the same patch hand-applied to 3.2.2 which solves the issue for me
-- System Information:
Debian Release: wheezy/sid
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (101,
'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 3.2.0-2-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_GB.utf8, LC_CTYPE=en_GB.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages evolution-data-server depends on:
ii evolution-data-server-common 3.2.2-2.1
ii gconf-service 3.2.3-4
ii libatk1.0-0 2.2.0-2
ii libc6 2.13-27
ii libcairo-gobject2 1.12.0-2
ii libcairo2 1.12.0-2
ii libcamel-1.2-29 3.2.2-2.1
ii libcomerr2 1.42.2-1
ii libdb5.1 5.1.29-1
ii libdbus-1-3 1.5.12-1
ii libdbus-glib-1-2 0.98-1
ii libebackend-1.2-1 3.2.2-2.1
ii libebook-1.2-12 3.2.2-2.1
ii libecal-1.2-10 3.2.2-2.1
ii libedata-book-1.2-11 3.2.2-2.1
ii libedata-cal-1.2-13 3.2.2-2.1
ii libedataserver-1.2-15 3.2.2-2.1
ii libgconf-2-4 3.2.3-4
ii libgdata13 0.10.2-1
ii libgdk-pixbuf2.0-0 2.26.0-2
ii libglib2.0-0 2.32.0-3
ii libgoa-1.0-0 3.3.0-1
ii libgssapi-krb5-2 1.10+dfsg~beta1-2
ii libgtk-3-0 3.4.0-1
ii libgweather-3-0 3.4.1-1
ii libical0 0.48-1
ii libk5crypto3 1.10+dfsg~beta1-2
ii libkrb5-3 1.10+dfsg~beta1-2
ii libldap-2.4-2 2.4.28-1.2
ii libnspr4-0d 4.9-1
ii libnss3-1d 3.13.3-1
ii liboauth0 0.9.4-3+b1
ii libpango1.0-0 1.29.5-1
ii libsoup2.4-1 2.38.0-1
ii libsqlite3-0 3.7.11-2
ii libxml2 2.7.8.dfsg-7
ii zlib1g 1:1.2.6.dfsg-2
evolution-data-server recommends no packages.
Versions of packages evolution-data-server suggests:
ii evolution 3.2.2-1
ii evolution-data-server-dbg 3.2.2-2.1
-- no debconf information
>From 595a9e84d6c09693d6faa164204acca21c10bfbe Mon Sep 17 00:00:00 2001
From: Sjoerd Simons <[email protected]>
Date: Mon, 2 Apr 2012 09:53:33 +0200
Subject: [PATCH] Initialize dbus-glib threading
Based on upstreams 990e10860a7a624edcc38241422b7ad39f2cdf45, fixes gnome
bug #659756.
---
addressbook/libedata-book/Makefile.am | 7 +++++--
addressbook/libedata-book/e-data-book-factory.c | 5 +++++
calendar/libedata-cal/Makefile.am | 6 ++++--
calendar/libedata-cal/e-data-cal-factory.c | 5 +++++
configure.ac | 9 +++++++++
5 files changed, 28 insertions(+), 4 deletions(-)
diff --git a/addressbook/libedata-book/Makefile.am b/addressbook/libedata-book/Makefile.am
index 2fff48a..6af90c3 100644
--- a/addressbook/libedata-book/Makefile.am
+++ b/addressbook/libedata-book/Makefile.am
@@ -90,7 +90,8 @@ e_addressbook_factory_CPPFLAGS = \
-I$(top_builddir)/addressbook \
$(EVOLUTION_ADDRESSBOOK_CFLAGS) \
$(GOA_CFLAGS) \
- $(FACTORY_GTK_CFLAGS)
+ $(FACTORY_GTK_CFLAGS) \
+ $(DBUS_GLIB_CFLAGS)
e_addressbook_factory_SOURCES = \
e-data-book-factory.c \
@@ -103,7 +104,9 @@ e_addressbook_factory_LDADD = \
$(top_builddir)/libebackend/libebackend-1.2.la \
$(EVOLUTION_ADDRESSBOOK_LIBS) \
$(GOA_LIBS) \
- $(FACTORY_GTK_LIBS)
+ $(FACTORY_GTK_LIBS) \
+ $(DBUS_GLIB_LIBS)
+
%-$(API_VERSION).pc: %.pc
cp $< $@
diff --git a/addressbook/libedata-book/e-data-book-factory.c b/addressbook/libedata-book/e-data-book-factory.c
index dca4255..e7dec12 100644
--- a/addressbook/libedata-book/e-data-book-factory.c
+++ b/addressbook/libedata-book/e-data-book-factory.c
@@ -26,6 +26,8 @@
#include <unistd.h>
#include <glib/gi18n.h>
+#include <dbus/dbus-glib.h>
+
#ifdef ENABLE_MAINTAINER_MODE
#include <gtk/gtk.h>
#endif
@@ -842,6 +844,9 @@ main (gint argc,
gtk_init_check (&argc, &argv);
#endif
+ /* this is to initialize threading for dbus-glib used by GConf */
+ dbus_g_thread_init ();
+
context = g_option_context_new (NULL);
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
g_option_context_parse (context, &argc, &argv, &error);
diff --git a/calendar/libedata-cal/Makefile.am b/calendar/libedata-cal/Makefile.am
index a7d1a02..11bf702 100644
--- a/calendar/libedata-cal/Makefile.am
+++ b/calendar/libedata-cal/Makefile.am
@@ -107,7 +107,8 @@ e_calendar_factory_CPPFLAGS = \
-I$(top_builddir)/calendar \
$(LIBICAL_CFLAGS) \
$(EVOLUTION_CALENDAR_CFLAGS) \
- $(FACTORY_GTK_CFLAGS)
+ $(FACTORY_GTK_CFLAGS) \
+ $(DBUS_GLIB_CFLAGS)
e_calendar_factory_LDADD = \
$(top_builddir)/calendar/libecal/libecal-1.2.la \
@@ -117,6 +118,7 @@ e_calendar_factory_LDADD = \
$(top_builddir)/libebackend/libebackend-1.2.la \
$(LIBICAL_LIBS) \
$(EVOLUTION_CALENDAR_LIBS) \
- $(FACTORY_GTK_LIBS)
+ $(FACTORY_GTK_LIBS) \
+ $(DBUS_GLIB_LIBS)
-include $(top_srcdir)/git.mk
diff --git a/calendar/libedata-cal/e-data-cal-factory.c b/calendar/libedata-cal/e-data-cal-factory.c
index df3e136..a831d64 100644
--- a/calendar/libedata-cal/e-data-cal-factory.c
+++ b/calendar/libedata-cal/e-data-cal-factory.c
@@ -30,6 +30,8 @@
#include <unistd.h>
#include <glib/gi18n.h>
+#include <dbus/dbus-glib.h>
+
#ifdef ENABLE_MAINTAINER_MODE
#include <gtk/gtk.h>
#endif
@@ -1043,6 +1045,9 @@ main (gint argc,
gtk_init_check (&argc, &argv);
#endif
+ /* this is to initialize threading for dbus-glib used by GConf */
+ dbus_g_thread_init ();
+
context = g_option_context_new (NULL);
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
g_option_context_parse (context, &argc, &argv, &error);
diff --git a/configure.ac b/configure.ac
index 3d3995e..0bdba2c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -345,6 +345,15 @@ if `$PKG_CONFIG --atleast-version=0.9.1 libgdata`; then
AC_DEFINE(HAVE_LIBGDATA_0_9, 1, [libgdata is 0.9.1 or higher])
fi
+dnl ******************************
+dnl DBus-glib stuff, to initialize thread for GConf, which is using it
+dnl this is returned back only temporarily and wil lbe removed as soon
+dnl as eds will stop using GConf completely
+dnl ******************************
+PKG_CHECK_MODULES(DBUS_GLIB, dbus-glib-1 >= 0.6)
+AC_SUBST(DBUS_GLIB_CFLAGS)
+AC_SUBST(DBUS_GLIB_LIBS)
+
dnl *******************************
dnl Check for GNOME Online Accounts
dnl *******************************
--
1.7.9.5
--- End Message ---
--- Begin Message ---
Source: evolution-data-server
Source-Version: 3.2.2-3
We believe that the bug you reported is fixed in the latest version of
evolution-data-server, which is due to be installed in the Debian FTP archive:
evolution-data-server-common_3.2.2-3_all.deb
to main/e/evolution-data-server/evolution-data-server-common_3.2.2-3_all.deb
evolution-data-server-dbg_3.2.2-3_amd64.deb
to main/e/evolution-data-server/evolution-data-server-dbg_3.2.2-3_amd64.deb
evolution-data-server-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/evolution-data-server-dev_3.2.2-3_amd64.deb
evolution-data-server_3.2.2-3.debian.tar.gz
to main/e/evolution-data-server/evolution-data-server_3.2.2-3.debian.tar.gz
evolution-data-server_3.2.2-3.dsc
to main/e/evolution-data-server/evolution-data-server_3.2.2-3.dsc
evolution-data-server_3.2.2-3_amd64.deb
to main/e/evolution-data-server/evolution-data-server_3.2.2-3_amd64.deb
gir1.2-ebook-1.2_3.2.2-3_amd64.deb
to main/e/evolution-data-server/gir1.2-ebook-1.2_3.2.2-3_amd64.deb
gir1.2-ecalendar-1.2_3.2.2-3_amd64.deb
to main/e/evolution-data-server/gir1.2-ecalendar-1.2_3.2.2-3_amd64.deb
gir1.2-edataserver-1.2_3.2.2-3_amd64.deb
to main/e/evolution-data-server/gir1.2-edataserver-1.2_3.2.2-3_amd64.deb
libcamel-1.2-29_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libcamel-1.2-29_3.2.2-3_amd64.deb
libcamel1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libcamel1.2-dev_3.2.2-3_amd64.deb
libebackend-1.2-1_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libebackend-1.2-1_3.2.2-3_amd64.deb
libebackend1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libebackend1.2-dev_3.2.2-3_amd64.deb
libebook-1.2-12_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libebook-1.2-12_3.2.2-3_amd64.deb
libebook1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libebook1.2-dev_3.2.2-3_amd64.deb
libecal-1.2-10_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libecal-1.2-10_3.2.2-3_amd64.deb
libecal1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libecal1.2-dev_3.2.2-3_amd64.deb
libedata-book-1.2-11_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedata-book-1.2-11_3.2.2-3_amd64.deb
libedata-book1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedata-book1.2-dev_3.2.2-3_amd64.deb
libedata-cal-1.2-13_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedata-cal-1.2-13_3.2.2-3_amd64.deb
libedata-cal1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedata-cal1.2-dev_3.2.2-3_amd64.deb
libedataserver-1.2-15_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedataserver-1.2-15_3.2.2-3_amd64.deb
libedataserver1.2-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedataserver1.2-dev_3.2.2-3_amd64.deb
libedataserverui-3.0-1_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedataserverui-3.0-1_3.2.2-3_amd64.deb
libedataserverui-3.0-dev_3.2.2-3_amd64.deb
to main/e/evolution-data-server/libedataserverui-3.0-dev_3.2.2-3_amd64.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sjoerd Simons <[email protected]> (supplier of updated evolution-data-server
package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Mon, 02 Apr 2012 10:50:44 +0200
Source: evolution-data-server
Binary: evolution-data-server evolution-data-server-common
evolution-data-server-dev evolution-data-server-dbg libedataserver-1.2-15
libedataserver1.2-dev gir1.2-edataserver-1.2 libcamel-1.2-29 libcamel1.2-dev
libebook-1.2-12 libebook1.2-dev gir1.2-ebook-1.2 libedataserverui-3.0-1
libedataserverui-3.0-dev libedata-book-1.2-11 libedata-book1.2-dev
libecal-1.2-10 libecal1.2-dev gir1.2-ecalendar-1.2 libedata-cal-1.2-13
libedata-cal1.2-dev libebackend-1.2-1 libebackend1.2-dev
Architecture: source all amd64
Version: 3.2.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Evolution Maintainers
<[email protected]>
Changed-By: Sjoerd Simons <[email protected]>
Description:
evolution-data-server - evolution database backend server
evolution-data-server-common - architecture independent files for Evolution
Data Server
evolution-data-server-dbg - evolution database backend server with debugging
symbols
evolution-data-server-dev - Development files for evolution-data-server
(metapackage)
gir1.2-ebook-1.2 - GObject introspection for the EBook library
gir1.2-ecalendar-1.2 - GObject introspection for the ECalendar library
gir1.2-edataserver-1.2 - GObject introspection for the EDataServer library
libcamel-1.2-29 - Evolution MIME message handling library
libcamel1.2-dev - Development files for libcamel
libebackend-1.2-1 - Utility library for evolution data servers
libebackend1.2-dev - Utility library for evolution data servers (development
files)
libebook-1.2-12 - Client library for evolution address books
libebook1.2-dev - Client library for evolution address books (development
files)
libecal-1.2-10 - Client library for evolution calendars
libecal1.2-dev - Client library for evolution calendars (development files)
libedata-book-1.2-11 - Backend library for evolution address books
libedata-book1.2-dev - Backend library for evolution address books
(development files)
libedata-cal-1.2-13 - Backend library for evolution calendars
libedata-cal1.2-dev - Backend library for evolution calendars (development
files)
libedataserver-1.2-15 - Utility library for evolution data servers
libedataserver1.2-dev - Utility library for evolution data servers
(development files)
libedataserverui-3.0-1 - GUI utility library for evolution data servers
libedataserverui-3.0-dev - GUI utility library for evolution data servers
(development files
Closes: 666890
Changes:
evolution-data-server (3.2.2-3) unstable; urgency=low
.
* debian/patches/23_dbus_glib_threading.patch
- Added. Initialize threading support in dbus-glib which is used through
gconf (Closes: #666890).
* debian/control: Add myself to uploaders
Checksums-Sha1:
25e23be1db3298e4130ce9a7a201d8b69f775e3a 3898 evolution-data-server_3.2.2-3.dsc
51da99abb6fc0cfd2f65828fa6da4a7e131a43b3 28746
evolution-data-server_3.2.2-3.debian.tar.gz
12d6dec6e803c3ffd22679c80bd1adf0f3ddeef7 2488732
evolution-data-server-common_3.2.2-3_all.deb
6be041c3b8bb1176211b222ca5a1d6e8c1ae6d54 873504
evolution-data-server_3.2.2-3_amd64.deb
05494759b16b22b2208d73ae6d26624b371ed613 331618
evolution-data-server-dev_3.2.2-3_amd64.deb
36cce93e3a0af064ae24196e65e63dd94cf7c08e 4042958
evolution-data-server-dbg_3.2.2-3_amd64.deb
1667d533379209db6cdb52f40f9ee7792eefbd0e 446890
libedataserver-1.2-15_3.2.2-3_amd64.deb
ba5fe962bf74ea0450f6629326cbb3a311a245e9 464376
libedataserver1.2-dev_3.2.2-3_amd64.deb
cbf6e679e7631083a7dfc3e02c8b2089a361c15c 346210
gir1.2-edataserver-1.2_3.2.2-3_amd64.deb
0e9b662e3c465e351231a971066cc5677e1d6082 791184
libcamel-1.2-29_3.2.2-3_amd64.deb
543ebe6bbb29cc7db7942e14fba7bb1d52d26026 698880
libcamel1.2-dev_3.2.2-3_amd64.deb
8ec216dca3449ba217041cd695c02e78e24a697f 440948
libebook-1.2-12_3.2.2-3_amd64.deb
e64b5861b47b5388d69bb4abda1051e43e27e199 460744
libebook1.2-dev_3.2.2-3_amd64.deb
13655e0ac8792ace9f532c5f4620726c8aeae061 345478
gir1.2-ebook-1.2_3.2.2-3_amd64.deb
7970e0e2ab6d89551d21739422ff15f6ecd25256 439668
libedataserverui-3.0-1_3.2.2-3_amd64.deb
b243118d1c7c5c94360e8bba4e596caef0ed0d80 389172
libedataserverui-3.0-dev_3.2.2-3_amd64.deb
d09b6d637c8535951b4e503b79011ba9d1f7cfa2 405856
libedata-book-1.2-11_3.2.2-3_amd64.deb
6ca71fffee445b58fa17836db47f61556465c394 388188
libedata-book1.2-dev_3.2.2-3_amd64.deb
a6e65f86cadcc0fc4df61e60a6b8cbe6ea87a99d 481106
libecal-1.2-10_3.2.2-3_amd64.deb
cf23ef73937342cf01f763c1d189e9201d7d8d4c 472664
libecal1.2-dev_3.2.2-3_amd64.deb
f36438fd060dd52788c5258b0cdb20d916c4e761 340868
gir1.2-ecalendar-1.2_3.2.2-3_amd64.deb
3b373e43dcf404a3e48a02b04a52f461a1190c0b 426180
libedata-cal-1.2-13_3.2.2-3_amd64.deb
94174409ce0bea99e9f74f1b4df0e82b856befb9 393114
libedata-cal1.2-dev_3.2.2-3_amd64.deb
99587d99a701cae8923e9c6d860e57a75be3c092 345374
libebackend-1.2-1_3.2.2-3_amd64.deb
b3bbda88d7d4e0304350b56567d5c9357c215626 350358
libebackend1.2-dev_3.2.2-3_amd64.deb
Checksums-Sha256:
f0d29e01f3077bd652e598b11960a4f28ae9c12a69ab2832de2ab06389bf09ef 3898
evolution-data-server_3.2.2-3.dsc
64472e5b9ed34960b7d8c8b2dd888a13ffe6990f787d628cfe75d927752db886 28746
evolution-data-server_3.2.2-3.debian.tar.gz
f6a48b971e034f61856808aafdd2a559ca10e0e2f7b682df11be653bf66b6f28 2488732
evolution-data-server-common_3.2.2-3_all.deb
4f36b68804dd60218e0e0339abf1e986fd4b44fad6b8e0a959fae1bccb84ce46 873504
evolution-data-server_3.2.2-3_amd64.deb
eef35ecf36c629d1cac94b8343e02dc8c94513ff4533630b3d533fa04975c539 331618
evolution-data-server-dev_3.2.2-3_amd64.deb
4961af85700455afe0d463d89bf5deee656c563d03cc32f2455666ca07d4be76 4042958
evolution-data-server-dbg_3.2.2-3_amd64.deb
b09530c9687d07473a5aa2549e528cc0905460834f8363a87a4f5cb4fa27457b 446890
libedataserver-1.2-15_3.2.2-3_amd64.deb
349ef898b9af8b5260853b6c4dcc03e20e5bd7d8abe1a6d0a41b169c5dc805c8 464376
libedataserver1.2-dev_3.2.2-3_amd64.deb
8ea438e5a57a7ea8ae1001ed602cc2b4369bce41be3a1213c3925355f354056f 346210
gir1.2-edataserver-1.2_3.2.2-3_amd64.deb
45e03d75e4c152722a5dcb9c2b9ec1f46ff95366935bff4db278273153705ba2 791184
libcamel-1.2-29_3.2.2-3_amd64.deb
fbe0634a706453da4954fa00bdd78042b6b17116e22109248533dd54b6f1a3c1 698880
libcamel1.2-dev_3.2.2-3_amd64.deb
f7bd3279d7ef180dfe90d744a02f4e5b66c70def0022f19a9943aeebaeba7b2d 440948
libebook-1.2-12_3.2.2-3_amd64.deb
e6638655f90a7c6ccd6adfd92c938bfc49d429e362a78c072117eb0e7da5d6f8 460744
libebook1.2-dev_3.2.2-3_amd64.deb
2632e020c179ff5d0e842a05d6e25f4a07f9d12e394a973fc2315491e45454e9 345478
gir1.2-ebook-1.2_3.2.2-3_amd64.deb
d658b919630800760de8c143fa4366f8d3232d42b649f78654de3d3b9af55cee 439668
libedataserverui-3.0-1_3.2.2-3_amd64.deb
a910a0133125bb7bcb22c3384b90cd4f7265c494a91ef4ad57cf38289771d319 389172
libedataserverui-3.0-dev_3.2.2-3_amd64.deb
4608fac73d8e773f7d4e224741be5c4c0d80744955572236861dbc60e6a9f8cd 405856
libedata-book-1.2-11_3.2.2-3_amd64.deb
2dcaea1b0e2a3c75ab4feb5950f99ad96412a8b5949a56aa1d6b95326cd6a9f5 388188
libedata-book1.2-dev_3.2.2-3_amd64.deb
cbf8c38615acf77ac5f3b1d669f30e18e4b966522823113b3aeb69642c83c01f 481106
libecal-1.2-10_3.2.2-3_amd64.deb
dd546ac0aad8f7887dd2bb463c8fb2d141a1ebad0852915a5517ffa1ae79e0c1 472664
libecal1.2-dev_3.2.2-3_amd64.deb
de3ca819d66416f9ae5fe134fc1f772b782677fb9020e98dcf245de9ab9a94af 340868
gir1.2-ecalendar-1.2_3.2.2-3_amd64.deb
5d5793b1ff8ea8af3e372804e27e236456a768946d66fe52ee01191c56f21921 426180
libedata-cal-1.2-13_3.2.2-3_amd64.deb
1579f56b2c5a53b2dc7ecaddfc027d5afd653d07254ee316973e5553e630205c 393114
libedata-cal1.2-dev_3.2.2-3_amd64.deb
51f3fb6a29823ff9517f3938d9f3bfa59fcea0c420b260fdf99788a5d5ba3d36 345374
libebackend-1.2-1_3.2.2-3_amd64.deb
48515fdd359419a53073cd469568ccc9a8790fdf29b04f4f1f2aefa2b89f17d6 350358
libebackend1.2-dev_3.2.2-3_amd64.deb
Files:
bea7b3ab3ff6677cee2cec2267ae185a 3898 gnome optional
evolution-data-server_3.2.2-3.dsc
a37e679a8f02f35173d77c1bd04a4da7 28746 gnome optional
evolution-data-server_3.2.2-3.debian.tar.gz
d52f92c1b33a1704cd321cfc51412d58 2488732 gnome optional
evolution-data-server-common_3.2.2-3_all.deb
27876887c7db72821cf1dd7444d43ce4 873504 gnome optional
evolution-data-server_3.2.2-3_amd64.deb
43fbddc092f0672e3c282f3feef788eb 331618 devel optional
evolution-data-server-dev_3.2.2-3_amd64.deb
0523cdd441707afac1c613c77e381096 4042958 debug extra
evolution-data-server-dbg_3.2.2-3_amd64.deb
92376f07d5799400ce3cf3cd0b81dba0 446890 libs optional
libedataserver-1.2-15_3.2.2-3_amd64.deb
c435e70b302f013734fd4c0027001121 464376 libdevel optional
libedataserver1.2-dev_3.2.2-3_amd64.deb
693bd1a1211cc3f4e5162e7a82c7df54 346210 introspection optional
gir1.2-edataserver-1.2_3.2.2-3_amd64.deb
751f556ad6bf900b468f93e2a730a487 791184 libs optional
libcamel-1.2-29_3.2.2-3_amd64.deb
c04bdcf460cd7d11e776ff61112f160b 698880 libdevel optional
libcamel1.2-dev_3.2.2-3_amd64.deb
d3b933bf2d6cd2242a9dc742639167eb 440948 libs optional
libebook-1.2-12_3.2.2-3_amd64.deb
55da3ac2cb8ce7614e34cef8885dd5c6 460744 libdevel optional
libebook1.2-dev_3.2.2-3_amd64.deb
96bde5917db6aeffa5254242dff377a8 345478 introspection optional
gir1.2-ebook-1.2_3.2.2-3_amd64.deb
85544b27446c1466790715abb6b2eb73 439668 libs optional
libedataserverui-3.0-1_3.2.2-3_amd64.deb
4e8611a68579476058d4b6e6acb8dc78 389172 libdevel optional
libedataserverui-3.0-dev_3.2.2-3_amd64.deb
2aba97b55025bebe26704b0afb72ccc5 405856 libs optional
libedata-book-1.2-11_3.2.2-3_amd64.deb
e2fa69455455a0ec3a5c359a55ad74f8 388188 libdevel optional
libedata-book1.2-dev_3.2.2-3_amd64.deb
0e1bdcc50a63788aba9f4befcbb8e626 481106 libs optional
libecal-1.2-10_3.2.2-3_amd64.deb
00fcc5e420cbad2749a2ec015ebb7fe7 472664 libdevel optional
libecal1.2-dev_3.2.2-3_amd64.deb
0b24a018f9040946cd5290f7c04454a3 340868 introspection optional
gir1.2-ecalendar-1.2_3.2.2-3_amd64.deb
fdedcf8ca88c4b5f15fda5ebe48c09ce 426180 libs optional
libedata-cal-1.2-13_3.2.2-3_amd64.deb
cdae6e17c516fdb393e61da31eb87278 393114 libdevel optional
libedata-cal1.2-dev_3.2.2-3_amd64.deb
db97a8b16e7087d344342991c14ba377 345374 libs optional
libebackend-1.2-1_3.2.2-3_amd64.deb
f5b593df1e56615995da892587c47413 350358 libdevel optional
libebackend1.2-dev_3.2.2-3_amd64.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)
iEYEARECAAYFAk95a0gACgkQgTd+SodosdJlyACg4G2ayr4jONCr5vXmskBHDYsu
BhwAnA9dg/RtxP1QbtNOD4opklNJ2BkV
=EGes
-----END PGP SIGNATURE-----
--- End Message ---
_______________________________________________
Pkg-evolution-maintainers mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-evolution-maintainers