mirror of
https://abf.rosa.ru/djam/evolution-exchange.git
synced 2025-02-24 10:22:46 +00:00
Automatic import for version 2.32.3
This commit is contained in:
commit
5adc686924
3 changed files with 966 additions and 0 deletions
2
.abf.yml
Normal file
2
.abf.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
sources:
|
||||
"evolution-exchange-2.32.3.tar.bz2": b7b6896d98eb3dba9d2a675afcc2b984804f6cc4
|
312
evolution-exchange-2.32.2-gtk-2.24.patch
Normal file
312
evolution-exchange-2.32.2-gtk-2.24.patch
Normal file
|
@ -0,0 +1,312 @@
|
|||
From e9596e5a2f5e2c1bc5c8700eafc3ead17f819020 Mon Sep 17 00:00:00 2001
|
||||
From: Milan Crha <mcrha@redhat.com>
|
||||
Date: Tue, 26 Oct 2010 08:38:22 +0000
|
||||
Subject: Be able to compile against Gtk+ 2.23.0
|
||||
|
||||
---
|
||||
diff --git a/eplugin/exchange-delegates-user.c b/eplugin/exchange-delegates-user.c
|
||||
index a8bf13b..6487d12 100644
|
||||
--- a/eplugin/exchange-delegates-user.c
|
||||
+++ b/eplugin/exchange-delegates-user.c
|
||||
@@ -43,6 +43,8 @@
|
||||
|
||||
#include <string.h>
|
||||
|
||||
+#include "gtk-compat.h"
|
||||
+
|
||||
#define EXCHANGE_DELEGATES_USER_CUSTOM -3
|
||||
/* Can't use E2K_PERMISSIONS_ROLE_CUSTOM, because it's -1, which
|
||||
* means "end of list" to e_dialog_combo_box_get/set
|
||||
@@ -130,7 +132,7 @@ static void
|
||||
set_perms (GtkWidget *combobox, E2kPermissionsRole role)
|
||||
{
|
||||
if (!is_delegate_role (role)) {
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (combobox), _("Custom"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (combobox), _("Custom"));
|
||||
role = EXCHANGE_DELEGATES_USER_CUSTOM;
|
||||
}
|
||||
|
||||
@@ -297,45 +299,45 @@ exchange_delegates_user_edit (ExchangeAccount *account,
|
||||
gtk_label_set_justify (GTK_LABEL (contact_label), GTK_JUSTIFY_CENTER);
|
||||
gtk_misc_set_alignment (GTK_MISC (contact_label), 0, 0.5);
|
||||
|
||||
- calendar_perms_combobox = gtk_combo_box_new_text ();
|
||||
+ calendar_perms_combobox = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (calendar_perms_combobox);
|
||||
gtk_table_attach (GTK_TABLE (folders_table), calendar_perms_combobox, 1, 2, 0, 1,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("None"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("Reviewer (read-only)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("Author (read, create)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (calendar_perms_combobox), _("Editor (read, create, edit)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (calendar_perms_combobox), _("None"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (calendar_perms_combobox), _("Reviewer (read-only)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (calendar_perms_combobox), _("Author (read, create)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (calendar_perms_combobox), _("Editor (read, create, edit)"));
|
||||
|
||||
- task_perms_combobox = gtk_combo_box_new_text ();
|
||||
+ task_perms_combobox = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (task_perms_combobox);
|
||||
gtk_table_attach (GTK_TABLE (folders_table), task_perms_combobox, 1, 2, 1, 2,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("None"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("Reviewer (read-only)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("Author (read, create)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (task_perms_combobox), _("Editor (read, create, edit)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (task_perms_combobox), _("None"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (task_perms_combobox), _("Reviewer (read-only)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (task_perms_combobox), _("Author (read, create)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (task_perms_combobox), _("Editor (read, create, edit)"));
|
||||
|
||||
- inbox_perms_combobox = gtk_combo_box_new_text ();
|
||||
+ inbox_perms_combobox = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (inbox_perms_combobox);
|
||||
gtk_table_attach (GTK_TABLE (folders_table), inbox_perms_combobox, 1, 2, 2, 3,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("None"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("Reviewer (read-only)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("Author (read, create)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (inbox_perms_combobox), _("Editor (read, create, edit)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (inbox_perms_combobox), _("None"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (inbox_perms_combobox), _("Reviewer (read-only)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (inbox_perms_combobox), _("Author (read, create)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (inbox_perms_combobox), _("Editor (read, create, edit)"));
|
||||
|
||||
- contact_perms_combobox = gtk_combo_box_new_text ();
|
||||
+ contact_perms_combobox = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (contact_perms_combobox);
|
||||
gtk_table_attach (GTK_TABLE (folders_table), contact_perms_combobox, 1, 2, 3, 4,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("None"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("Reviewer (read-only)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("Author (read, create)"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (contact_perms_combobox), _("Editor (read, create, edit)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (contact_perms_combobox), _("None"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (contact_perms_combobox), _("Reviewer (read-only)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (contact_perms_combobox), _("Author (read, create)"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (contact_perms_combobox), _("Editor (read, create, edit)"));
|
||||
|
||||
delegate_mail = gtk_check_button_new_with_mnemonic (_("_Summarize permissions"));
|
||||
gtk_widget_show (delegate_mail);
|
||||
diff --git a/eplugin/exchange-folder-subscription.c b/eplugin/exchange-folder-subscription.c
|
||||
index 2067f5c..d61a7eb 100644
|
||||
--- a/eplugin/exchange-folder-subscription.c
|
||||
+++ b/eplugin/exchange-folder-subscription.c
|
||||
@@ -38,6 +38,7 @@
|
||||
#include "exchange-config-listener.h"
|
||||
#include "exchange-folder-subscription.h"
|
||||
#include "exchange-operations.h"
|
||||
+#include "gtk-compat.h"
|
||||
|
||||
static void
|
||||
user_response (ENameSelectorDialog *name_selector_dialog, gint response, gpointer data)
|
||||
@@ -63,7 +64,7 @@ setup_name_selector (GtkWidget *placeholder, GtkWidget *button_user, ENameSelect
|
||||
ENameSelectorDialog *name_selector_dialog;
|
||||
GtkWidget *widget;
|
||||
|
||||
- g_assert (GTK_IS_CONTAINER (placeholder));
|
||||
+ g_return_val_if_fail (GTK_IS_CONTAINER (placeholder), NULL);
|
||||
|
||||
name_selector = e_name_selector_new ();
|
||||
|
||||
@@ -89,7 +90,7 @@ setup_name_selector (GtkWidget *placeholder, GtkWidget *button_user, ENameSelect
|
||||
static void
|
||||
setup_folder_name_combo (GtkWidget *widget, const gchar *fname)
|
||||
{
|
||||
- GtkComboBox *combo;
|
||||
+ GtkComboBoxText *combo;
|
||||
const gchar *strings[] = {
|
||||
"Calendar",
|
||||
"Inbox",
|
||||
@@ -100,13 +101,13 @@ setup_folder_name_combo (GtkWidget *widget, const gchar *fname)
|
||||
};
|
||||
gint i;
|
||||
|
||||
- combo = GTK_COMBO_BOX (widget);
|
||||
- g_assert (GTK_IS_COMBO_BOX_ENTRY (combo));
|
||||
+ combo = GTK_COMBO_BOX_TEXT (widget);
|
||||
+ g_return_if_fail (GTK_IS_COMBO_BOX_TEXT (combo));
|
||||
|
||||
- gtk_list_store_clear (GTK_LIST_STORE (gtk_combo_box_get_model (combo)));
|
||||
+ gtk_list_store_clear (GTK_LIST_STORE (gtk_combo_box_get_model (GTK_COMBO_BOX (combo))));
|
||||
|
||||
for (i = 0; strings[i] != NULL; i++)
|
||||
- gtk_combo_box_append_text (combo, strings[i]);
|
||||
+ gtk_combo_box_text_append_text (combo, strings[i]);
|
||||
|
||||
gtk_entry_set_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (combo))), fname);
|
||||
}
|
||||
@@ -139,11 +140,11 @@ user_name_entry_changed_callback (GtkEditable *editable, gpointer data)
|
||||
static void
|
||||
setup_server_combobox (GtkWidget *widget, gchar *mail_account)
|
||||
{
|
||||
- g_return_if_fail (GTK_IS_COMBO_BOX (widget));
|
||||
+ g_return_if_fail (GTK_IS_COMBO_BOX_TEXT (widget));
|
||||
|
||||
gtk_list_store_clear (GTK_LIST_STORE (gtk_combo_box_get_model (GTK_COMBO_BOX (widget))));
|
||||
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (widget), mail_account);
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (widget), mail_account);
|
||||
gtk_combo_box_set_active (GTK_COMBO_BOX (widget), 0);
|
||||
|
||||
/* FIXME: Default to the current storage in the shell view. */
|
||||
@@ -345,13 +346,29 @@ create_folder_subscription_dialog (ExchangeAccount *account, const gchar *fname)
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (0), 0, 0);
|
||||
|
||||
+#if GTK_CHECK_VERSION(2,23,0)
|
||||
+ /* FIXME Rewrite this when removing the version check. */
|
||||
+ {
|
||||
+ GtkListStore *store;
|
||||
+
|
||||
+ store = gtk_list_store_new (1, G_TYPE_STRING);
|
||||
+ folder_name_combo = g_object_new (
|
||||
+ GTK_TYPE_COMBO_BOX,
|
||||
+ "model", store,
|
||||
+ "has-entry", TRUE,
|
||||
+ "entry-text-column", 0,
|
||||
+ NULL);
|
||||
+ g_object_unref (store);
|
||||
+ }
|
||||
+#else
|
||||
folder_name_combo = gtk_combo_box_entry_new_text ();
|
||||
+#endif
|
||||
gtk_widget_show (folder_name_combo);
|
||||
gtk_table_attach (GTK_TABLE (table1), folder_name_combo, 1, 2, 2, 3,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
|
||||
- server_combobox = gtk_combo_box_new_text ();
|
||||
+ server_combobox = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (server_combobox);
|
||||
gtk_table_attach (GTK_TABLE (table1), server_combobox, 1, 2, 0, 1,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
diff --git a/eplugin/exchange-permissions-dialog.c b/eplugin/exchange-permissions-dialog.c
|
||||
index 51d1398..82b2cfb 100644
|
||||
--- a/eplugin/exchange-permissions-dialog.c
|
||||
+++ b/eplugin/exchange-permissions-dialog.c
|
||||
@@ -42,6 +42,8 @@
|
||||
#include <e-util/e-dialog-utils.h>
|
||||
#include <e-util/e-alert-dialog.h>
|
||||
|
||||
+#include "gtk-compat.h"
|
||||
+
|
||||
struct _ExchangePermissionsDialogPrivate {
|
||||
ExchangeAccount *account;
|
||||
gchar *base_uri, *folder_path;
|
||||
@@ -542,14 +544,14 @@ display_role (ExchangePermissionsDialog *dialog)
|
||||
|
||||
if (role == E2K_PERMISSIONS_ROLE_CUSTOM) {
|
||||
if (dialog->priv->custom_added == FALSE) {
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (dialog->priv->role_optionmenu), _("Custom"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (dialog->priv->role_optionmenu), _("Custom"));
|
||||
dialog->priv->custom_added = TRUE;
|
||||
}
|
||||
role = E2K_PERMISSIONS_ROLE_NUM_ROLES;
|
||||
}
|
||||
else {
|
||||
if (dialog->priv->custom_added) {
|
||||
- gtk_combo_box_remove_text (GTK_COMBO_BOX (dialog->priv->role_optionmenu), E2K_PERMISSIONS_ROLE_NUM_ROLES);
|
||||
+ gtk_combo_box_text_remove (GTK_COMBO_BOX_TEXT (dialog->priv->role_optionmenu), E2K_PERMISSIONS_ROLE_NUM_ROLES);
|
||||
dialog->priv->custom_added = FALSE;
|
||||
}
|
||||
}
|
||||
@@ -680,11 +682,11 @@ exchange_permissions_role_optionmenu_new (void)
|
||||
const gchar **roles;
|
||||
gint role;
|
||||
|
||||
- menu = gtk_combo_box_new_text ();
|
||||
+ menu = gtk_combo_box_text_new ();
|
||||
roles = g_new (const gchar *, E2K_PERMISSIONS_ROLE_NUM_ROLES + 1);
|
||||
for (role = 0; role < E2K_PERMISSIONS_ROLE_NUM_ROLES; role++) {
|
||||
roles[role] = e2k_permissions_role_get_name (role);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (menu), roles[role]);
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (menu), roles[role]);
|
||||
}
|
||||
|
||||
roles[role] = NULL;
|
||||
diff --git a/eplugin/exchange-send-options.c b/eplugin/exchange-send-options.c
|
||||
index 31b6a56..47c6cf0 100644
|
||||
--- a/eplugin/exchange-send-options.c
|
||||
+++ b/eplugin/exchange-send-options.c
|
||||
@@ -32,6 +32,7 @@
|
||||
#include <e-util/e-alert-dialog.h>
|
||||
|
||||
#include "exchange-send-options.h"
|
||||
+#include "gtk-compat.h"
|
||||
|
||||
G_DEFINE_TYPE (ExchangeSendOptionsDialog, exchange_sendoptions_dialog, G_TYPE_OBJECT)
|
||||
|
||||
@@ -385,24 +386,24 @@ exchange_sendoptions_dialog_run (ExchangeSendOptionsDialog *sod, GtkWidget *pare
|
||||
(GtkAttachOptions) (0), 0, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (sensitivity_label), 0, 0.5);
|
||||
|
||||
- sensitivity_combo_box = gtk_combo_box_new_text ();
|
||||
+ sensitivity_combo_box = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (sensitivity_combo_box);
|
||||
gtk_table_attach (GTK_TABLE (msg_settings_table), sensitivity_combo_box, 1, 2, 1, 2,
|
||||
(GtkAttachOptions) (GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (sensitivity_combo_box), _("Normal"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (sensitivity_combo_box), _("Personal"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (sensitivity_combo_box), _("Private"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (sensitivity_combo_box), _("Confidential"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (sensitivity_combo_box), _("Normal"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (sensitivity_combo_box), _("Personal"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (sensitivity_combo_box), _("Private"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (sensitivity_combo_box), _("Confidential"));
|
||||
|
||||
- imp_combo_box = gtk_combo_box_new_text ();
|
||||
+ imp_combo_box = gtk_combo_box_text_new ();
|
||||
gtk_widget_show (imp_combo_box);
|
||||
gtk_table_attach (GTK_TABLE (msg_settings_table), imp_combo_box, 1, 2, 0, 1,
|
||||
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
|
||||
(GtkAttachOptions) (GTK_FILL), 0, 0);
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (imp_combo_box), _("Normal"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (imp_combo_box), _("High"));
|
||||
- gtk_combo_box_append_text (GTK_COMBO_BOX (imp_combo_box), _("Low"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (imp_combo_box), _("Normal"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (imp_combo_box), _("High"));
|
||||
+ gtk_combo_box_text_append_text (GTK_COMBO_BOX_TEXT (imp_combo_box), _("Low"));
|
||||
|
||||
del_enabled_check = gtk_check_button_new_with_mnemonic (_("Send as Delegate"));
|
||||
gtk_widget_show (del_enabled_check);
|
||||
diff --git a/eplugin/gtk-compat.h b/eplugin/gtk-compat.h
|
||||
new file mode 100644
|
||||
index 0000000..3505e66
|
||||
--- a/dev/null
|
||||
+++ b/eplugin/gtk-compat.h
|
||||
@@ -0,0 +1,27 @@
|
||||
+#ifndef __GTK_COMPAT_H__
|
||||
+#define __GTK_COMPAT_H__
|
||||
+
|
||||
+#include <gtk/gtk.h>
|
||||
+
|
||||
+/* Provide a GTK+ compatibility layer. */
|
||||
+
|
||||
+#if !GTK_CHECK_VERSION (2,23,0)
|
||||
+#define gtk_combo_box_text_new gtk_combo_box_new_text
|
||||
+#define gtk_combo_box_text_append_text gtk_combo_box_append_text
|
||||
+#define gtk_combo_box_text_remove gtk_combo_box_remove_text
|
||||
+#define gtk_combo_box_text_prepend_text gtk_combo_box_prepend_text
|
||||
+#define gtk_combo_box_text_get_active_text gtk_combo_box_get_active_text
|
||||
+#define GTK_COMBO_BOX_TEXT GTK_COMBO_BOX
|
||||
+#define GTK_IS_COMBO_BOX_TEXT GTK_IS_COMBO_BOX
|
||||
+#define GtkComboBoxText GtkComboBox
|
||||
+#endif
|
||||
+
|
||||
+#if GTK_CHECK_VERSION (2,23,0)
|
||||
+#define GTK_COMBO_BOX_ENTRY GTK_COMBO_BOX
|
||||
+#define GTK_IS_COMBO_BOX_ENTRY GTK_IS_COMBO_BOX
|
||||
+#else
|
||||
+#define gtk_combo_box_set_entry_text_column \
|
||||
+ gtk_combo_box_entry_set_text_column
|
||||
+#endif
|
||||
+
|
||||
+#endif /* __GTK_COMPAT_H__ */
|
||||
--
|
||||
cgit v0.9
|
652
evolution-exchange.spec
Normal file
652
evolution-exchange.spec
Normal file
|
@ -0,0 +1,652 @@
|
|||
%define major_version 2.32
|
||||
%define evolution_version 2.32.2
|
||||
%define eds_version 2.32.2
|
||||
%define api_version 1.2
|
||||
|
||||
%define build_mono 1
|
||||
%ifarch %arm %mips
|
||||
%define build_mono 0
|
||||
%endif
|
||||
|
||||
Name: evolution-exchange
|
||||
Summary: Exchange Connector for Evolution
|
||||
Version: 2.32.3
|
||||
Release: %mkrel 2
|
||||
License: GPLv2
|
||||
Group: Networking/Mail
|
||||
Source0: ftp://ftp.gnome.org/pub/GNOME/sources/%{name}/%{name}-%{version}.tar.bz2
|
||||
Patch0: evolution-exchange-2.32.2-gtk-2.24.patch
|
||||
URL: http://projects.gnome.org/evolution/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
# (fc) 0.8-5mdk implicit dependency is not enough
|
||||
Requires: evolution >= %{evolution_version}
|
||||
BuildRequires: evolution-devel >= %{evolution_version}
|
||||
BuildRequires: evolution-data-server-devel >= %eds_version
|
||||
BuildRequires: libGConf2-devel GConf2
|
||||
BuildRequires: db-devel
|
||||
BuildRequires: openldap-devel
|
||||
BuildRequires: krb5-devel
|
||||
BuildRequires: automake
|
||||
BuildRequires: intltool
|
||||
BuildRequires: gnome-common
|
||||
%if %{build_mono}
|
||||
BuildRequires: libmono-devel
|
||||
%endif
|
||||
BuildRequires: gtk-doc
|
||||
#gw another .la dep
|
||||
BuildRequires: gnome-desktop-devel
|
||||
Obsoletes: ximian-connector
|
||||
Provides: ximian-connector
|
||||
|
||||
%description
|
||||
This package is a connector to allow access to Exchange server
|
||||
for Evolution.
|
||||
|
||||
Currently, only Exchange 2000 and 2003 are supported.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
export CPPFLAGS="$CPPFLAGS -I%_includedir/libical"
|
||||
%configure2_5x --with-openldap=yes --with-static-ldap=no --enable-gtk-doc --disable-static
|
||||
%make
|
||||
|
||||
%install
|
||||
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%makeinstall_std
|
||||
|
||||
|
||||
#remove unpackaged files
|
||||
rm -f $RPM_BUILD_ROOT%{_libdir}/evolution/%{major_version}/*.{a,la} \
|
||||
$RPM_BUILD_ROOT%{_libdir}/evolution-data-server-%{api_version}/camel-providers/*.{a,la} \
|
||||
$RPM_BUILD_ROOT%{_libdir}/evolution/%{major_version}/evolution-mail-importers/*.{a,la} \
|
||||
$RPM_BUILD_ROOT%{_libdir}/evolution/%{major_version}/evolution-calendar-importers/*.{a,la}
|
||||
|
||||
%{find_lang} %{name}-%{major_version} --with-gnome
|
||||
|
||||
%clean
|
||||
[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%post_install_gconf_schemas apps_exchange_addressbook-%{major_version}
|
||||
|
||||
%preun
|
||||
%preun_uninstall_gconf_schemas apps_exchange_addressbook-%{major_version}
|
||||
|
||||
%files -f %{name}-%{major_version}.lang
|
||||
%defattr(-, root, root)
|
||||
%doc AUTHORS COPYING ChangeLog NEWS README
|
||||
%_sysconfdir/gconf/schemas/apps_exchange_addressbook-%{major_version}.schemas
|
||||
%{_bindir}/*
|
||||
%{_libdir}/evolution-data-server-%{api_version}/camel-providers/*.so
|
||||
%{_libdir}/evolution-data-server-%{api_version}/camel-providers/*.urls
|
||||
%{_libdir}/evolution-data-server-%{api_version}/extensions/*
|
||||
%_libdir/evolution/%major_version/plugins/*org-gnome-exchange*
|
||||
%{_datadir}/evolution-exchange
|
||||
%_datadir/gtk-doc/html/%name
|
||||
%_datadir/evolution/%major_version/errors/*.error
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon May 23 2011 Funda Wang <fwang@mandriva.org> 2.32.3-2mdv2011.0
|
||||
+ Revision: 677667
|
||||
- rebuild to add gconftool as req
|
||||
|
||||
+ Götz Waschk <waschk@mandriva.org>
|
||||
- update build deps
|
||||
|
||||
* Fri Apr 22 2011 Götz Waschk <waschk@mandriva.org> 2.32.3-1
|
||||
+ Revision: 656717
|
||||
- update to new version 2.32.3
|
||||
|
||||
* Mon Apr 11 2011 Funda Wang <fwang@mandriva.org> 2.32.2-2
|
||||
+ Revision: 652428
|
||||
- add upstream patch to build with gcc 4.6
|
||||
|
||||
* Mon Feb 07 2011 Götz Waschk <waschk@mandriva.org> 2.32.2-1
|
||||
+ Revision: 636535
|
||||
- update to new version 2.32.2
|
||||
|
||||
* Mon Nov 15 2010 Götz Waschk <waschk@mandriva.org> 2.32.1-1mdv2011.0
|
||||
+ Revision: 597832
|
||||
- update build deps
|
||||
- update to new version 2.32.1
|
||||
|
||||
* Tue Sep 28 2010 Götz Waschk <waschk@mandriva.org> 2.32.0-1mdv2011.0
|
||||
+ Revision: 581613
|
||||
- update build deps
|
||||
- update to new version 2.32.0
|
||||
|
||||
* Mon Sep 13 2010 Götz Waschk <waschk@mandriva.org> 2.31.92-1mdv2011.0
|
||||
+ Revision: 578035
|
||||
- update to new version 2.31.92
|
||||
|
||||
* Mon Aug 30 2010 Götz Waschk <waschk@mandriva.org> 2.31.91-1mdv2011.0
|
||||
+ Revision: 574414
|
||||
- update to new version 2.31.91
|
||||
|
||||
* Mon Aug 16 2010 Götz Waschk <waschk@mandriva.org> 2.31.90-1mdv2011.0
|
||||
+ Revision: 570578
|
||||
- new version
|
||||
- update api version in file list
|
||||
|
||||
* Tue Aug 03 2010 Götz Waschk <waschk@mandriva.org> 2.31.6-1mdv2011.0
|
||||
+ Revision: 565558
|
||||
- new version
|
||||
- new evolution directory version
|
||||
|
||||
* Fri Jul 30 2010 Götz Waschk <waschk@mandriva.org> 2.31.5-1mdv2011.0
|
||||
+ Revision: 563658
|
||||
- new version
|
||||
- bump deps
|
||||
|
||||
* Tue Jun 22 2010 Frederic Crozat <fcrozat@mandriva.com> 2.30.2-1mdv2010.1
|
||||
+ Revision: 548547
|
||||
- Release 2.30.2
|
||||
|
||||
* Mon Apr 26 2010 Götz Waschk <waschk@mandriva.org> 2.30.1-1mdv2010.1
|
||||
+ Revision: 538963
|
||||
- update to new version 2.30.1
|
||||
|
||||
* Fri Apr 09 2010 Funda Wang <fwang@mandriva.org> 2.30.0-3mdv2010.1
|
||||
+ Revision: 533379
|
||||
- fix rel
|
||||
|
||||
* Fri Apr 09 2010 Funda Wang <fwang@mandriva.org> 2.30.0-2mdv2010.1
|
||||
+ Revision: 533373
|
||||
- rebuild
|
||||
|
||||
* Tue Mar 30 2010 Götz Waschk <waschk@mandriva.org> 2.30.0-1mdv2010.1
|
||||
+ Revision: 530042
|
||||
- update to new version 2.30.0
|
||||
|
||||
* Thu Mar 25 2010 Oden Eriksson <oeriksson@mandriva.com> 2.29.92-2mdv2010.1
|
||||
+ Revision: 527392
|
||||
- rebuilt against nss-3.12.6
|
||||
|
||||
* Mon Mar 08 2010 Götz Waschk <waschk@mandriva.org> 2.29.92-1mdv2010.1
|
||||
+ Revision: 515753
|
||||
- update to new version 2.29.92
|
||||
|
||||
* Fri Feb 26 2010 Oden Eriksson <oeriksson@mandriva.com> 2.29.91-2mdv2010.1
|
||||
+ Revision: 511564
|
||||
- rebuilt against openssl-0.9.8m
|
||||
|
||||
* Tue Feb 23 2010 Götz Waschk <waschk@mandriva.org> 2.29.91-1mdv2010.1
|
||||
+ Revision: 509948
|
||||
- update to new version 2.29.91
|
||||
|
||||
* Mon Feb 08 2010 Götz Waschk <waschk@mandriva.org> 2.29.90-1mdv2010.1
|
||||
+ Revision: 502194
|
||||
- update to new version 2.29.90
|
||||
|
||||
* Mon Jan 25 2010 Götz Waschk <waschk@mandriva.org> 2.29.6-1mdv2010.1
|
||||
+ Revision: 496475
|
||||
- update to new version 2.29.6
|
||||
|
||||
+ Frederic Crozat <fcrozat@mandriva.com>
|
||||
- fix url
|
||||
|
||||
* Wed Jan 13 2010 Götz Waschk <waschk@mandriva.org> 2.29.5-2mdv2010.1
|
||||
+ Revision: 490509
|
||||
- rebuild for new libgnome-desktop
|
||||
|
||||
* Tue Jan 12 2010 Götz Waschk <waschk@mandriva.org> 2.29.5-1mdv2010.1
|
||||
+ Revision: 490153
|
||||
- update build deps
|
||||
- update to new version 2.29.5
|
||||
|
||||
* Tue Dec 22 2009 Götz Waschk <waschk@mandriva.org> 2.29.4-1mdv2010.1
|
||||
+ Revision: 481227
|
||||
- new version
|
||||
- drop patch
|
||||
|
||||
* Wed Dec 09 2009 Götz Waschk <waschk@mandriva.org> 2.29.3-1mdv2010.1
|
||||
+ Revision: 475722
|
||||
- new version
|
||||
- bump deps
|
||||
- fix file list
|
||||
- fix build
|
||||
|
||||
* Thu Oct 22 2009 Frederic Crozat <fcrozat@mandriva.com> 2.28.1-1mdv2010.0
|
||||
+ Revision: 458861
|
||||
- Release 2.28.1
|
||||
|
||||
* Fri Sep 25 2009 Olivier Blin <oblin@mandriva.com> 2.28.0-2mdv2010.0
|
||||
+ Revision: 448901
|
||||
- disable mono on mips & arm (from Arnaud Patard)
|
||||
|
||||
* Mon Sep 21 2009 Götz Waschk <waschk@mandriva.org> 2.28.0-1mdv2010.0
|
||||
+ Revision: 446649
|
||||
- update to new version 2.28.0
|
||||
|
||||
* Fri Sep 11 2009 Götz Waschk <waschk@mandriva.org> 2.27.92-1mdv2010.0
|
||||
+ Revision: 437909
|
||||
- new version
|
||||
|
||||
* Mon Aug 24 2009 Götz Waschk <waschk@mandriva.org> 2.27.91-1mdv2010.0
|
||||
+ Revision: 420436
|
||||
- update build deps
|
||||
- new version
|
||||
|
||||
* Mon Aug 10 2009 Götz Waschk <waschk@mandriva.org> 2.27.90-1mdv2010.0
|
||||
+ Revision: 414297
|
||||
- update to new version 2.27.90
|
||||
|
||||
* Mon Jul 27 2009 Götz Waschk <waschk@mandriva.org> 2.27.5-1mdv2010.0
|
||||
+ Revision: 400652
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon Jul 13 2009 Götz Waschk <waschk@mandriva.org> 2.27.4-1mdv2010.0
|
||||
+ Revision: 395628
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon Jun 15 2009 Götz Waschk <waschk@mandriva.org> 2.27.3-1mdv2010.0
|
||||
+ Revision: 386076
|
||||
- update to new version 2.27.3
|
||||
|
||||
* Mon May 25 2009 Götz Waschk <waschk@mandriva.org> 2.27.2-1mdv2010.0
|
||||
+ Revision: 379675
|
||||
- new version
|
||||
- drop patch
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon May 11 2009 Götz Waschk <waschk@mandriva.org> 2.27.1-1mdv2010.0
|
||||
+ Revision: 374548
|
||||
- new version
|
||||
- new api
|
||||
- bump deps
|
||||
|
||||
* Tue Apr 14 2009 Götz Waschk <waschk@mandriva.org> 2.26.1-1mdv2009.1
|
||||
+ Revision: 367036
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon Mar 16 2009 Götz Waschk <waschk@mandriva.org> 2.26.0-1mdv2009.1
|
||||
+ Revision: 355736
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon Mar 02 2009 Götz Waschk <waschk@mandriva.org> 2.25.92-1mdv2009.1
|
||||
+ Revision: 347285
|
||||
- new version
|
||||
- bump deps
|
||||
|
||||
* Mon Feb 16 2009 Götz Waschk <waschk@mandriva.org> 2.25.91-1mdv2009.1
|
||||
+ Revision: 341028
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon Feb 02 2009 Götz Waschk <waschk@mandriva.org> 2.25.90-1mdv2009.1
|
||||
+ Revision: 336625
|
||||
- new version
|
||||
- bump deps
|
||||
- fix build
|
||||
|
||||
* Mon Jan 19 2009 Götz Waschk <waschk@mandriva.org> 2.25.5-1mdv2009.1
|
||||
+ Revision: 331340
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Tue Jan 06 2009 Götz Waschk <waschk@mandriva.org> 2.25.4-1mdv2009.1
|
||||
+ Revision: 325446
|
||||
- update to new version 2.25.4
|
||||
|
||||
* Fri Dec 19 2008 Götz Waschk <waschk@mandriva.org> 2.25.3-1mdv2009.1
|
||||
+ Revision: 316147
|
||||
- new version
|
||||
- fix build
|
||||
|
||||
* Tue Dec 02 2008 Götz Waschk <waschk@mandriva.org> 2.25.2-1mdv2009.1
|
||||
+ Revision: 309211
|
||||
- new version
|
||||
- clean up configure options
|
||||
|
||||
* Mon Nov 03 2008 Götz Waschk <waschk@mandriva.org> 2.25.1-1mdv2009.1
|
||||
+ Revision: 299481
|
||||
- new version
|
||||
- new api version
|
||||
|
||||
* Mon Oct 20 2008 Götz Waschk <waschk@mandriva.org> 2.24.1-1mdv2009.1
|
||||
+ Revision: 295654
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Mon Sep 22 2008 Götz Waschk <waschk@mandriva.org> 2.24.0-1mdv2009.0
|
||||
+ Revision: 286521
|
||||
- new version
|
||||
|
||||
* Mon Sep 08 2008 Götz Waschk <waschk@mandriva.org> 2.23.92-1mdv2009.0
|
||||
+ Revision: 282513
|
||||
- new version
|
||||
|
||||
* Mon Sep 01 2008 Götz Waschk <waschk@mandriva.org> 2.23.91-1mdv2009.0
|
||||
+ Revision: 278189
|
||||
- new version
|
||||
|
||||
* Tue Aug 19 2008 Götz Waschk <waschk@mandriva.org> 2.23.90-1mdv2009.0
|
||||
+ Revision: 273680
|
||||
- new version
|
||||
|
||||
* Mon Aug 04 2008 Götz Waschk <waschk@mandriva.org> 2.23.6-1mdv2009.0
|
||||
+ Revision: 263275
|
||||
- new version
|
||||
- bump deps
|
||||
|
||||
* Tue Jul 22 2008 Götz Waschk <waschk@mandriva.org> 2.23.5-1mdv2009.0
|
||||
+ Revision: 240227
|
||||
- new version
|
||||
- bump e-d-s dep
|
||||
|
||||
* Fri Jul 04 2008 Götz Waschk <waschk@mandriva.org> 2.23.4-1mdv2009.0
|
||||
+ Revision: 231564
|
||||
- fix buildrequires
|
||||
- new version
|
||||
|
||||
* Mon Jun 30 2008 Götz Waschk <waschk@mandriva.org> 2.22.3-1mdv2009.0
|
||||
+ Revision: 230237
|
||||
- new version
|
||||
- update license
|
||||
- bump e-d-s dep
|
||||
|
||||
* Thu Jun 05 2008 Frederic Crozat <fcrozat@mandriva.com> 2.22.2-1mdv2009.0
|
||||
+ Revision: 215318
|
||||
- Really disable underlinking check
|
||||
- Release 2.22.2
|
||||
|
||||
* Thu May 15 2008 Götz Waschk <waschk@mandriva.org> 2.22.1.2-1mdv2009.0
|
||||
+ Revision: 207529
|
||||
- new version
|
||||
|
||||
* Sun May 04 2008 Götz Waschk <waschk@mandriva.org> 2.22.1.1-1mdv2009.0
|
||||
+ Revision: 201162
|
||||
- enable gtk-doc
|
||||
- new version
|
||||
|
||||
* Wed Apr 09 2008 Götz Waschk <waschk@mandriva.org> 2.22.1-1mdv2009.0
|
||||
+ Revision: 192467
|
||||
- new version
|
||||
|
||||
* Mon Mar 10 2008 Götz Waschk <waschk@mandriva.org> 2.22.0-1mdv2008.1
|
||||
+ Revision: 183315
|
||||
- new version
|
||||
|
||||
* Mon Feb 25 2008 Götz Waschk <waschk@mandriva.org> 2.21.92-1mdv2008.1
|
||||
+ Revision: 174979
|
||||
- new version
|
||||
|
||||
* Tue Feb 12 2008 Götz Waschk <waschk@mandriva.org> 2.21.91-2mdv2008.1
|
||||
+ Revision: 166154
|
||||
- libsoup rebuild
|
||||
|
||||
* Mon Feb 11 2008 Götz Waschk <waschk@mandriva.org> 2.21.91-1mdv2008.1
|
||||
+ Revision: 165208
|
||||
- new version
|
||||
|
||||
* Tue Jan 29 2008 Götz Waschk <waschk@mandriva.org> 2.21.90-1mdv2008.1
|
||||
+ Revision: 159824
|
||||
- new version
|
||||
|
||||
* Mon Jan 14 2008 Götz Waschk <waschk@mandriva.org> 2.21.5-1mdv2008.1
|
||||
+ Revision: 151337
|
||||
- new version
|
||||
|
||||
* Thu Dec 27 2007 Oden Eriksson <oeriksson@mandriva.com> 2.21.4-2mdv2008.1
|
||||
+ Revision: 138467
|
||||
- rebuilt against bdb 4.6.x and openldap 2.4.x libs
|
||||
|
||||
+ Olivier Blin <oblin@mandriva.com>
|
||||
- restore BuildRoot
|
||||
|
||||
* Tue Dec 18 2007 Götz Waschk <waschk@mandriva.org> 2.21.4-1mdv2008.1
|
||||
+ Revision: 132252
|
||||
- new version
|
||||
- bump deps
|
||||
|
||||
+ Thierry Vignaud <tv@mandriva.org>
|
||||
- kill re-definition of %%buildroot on Pixel's request
|
||||
|
||||
* Tue Dec 04 2007 Götz Waschk <waschk@mandriva.org> 2.21.3-1mdv2008.1
|
||||
+ Revision: 115203
|
||||
- new version
|
||||
|
||||
* Tue Nov 13 2007 Götz Waschk <waschk@mandriva.org> 2.21.2-1mdv2008.1
|
||||
+ Revision: 108521
|
||||
- new version
|
||||
|
||||
* Tue Oct 30 2007 Götz Waschk <waschk@mandriva.org> 2.21.1-1mdv2008.1
|
||||
+ Revision: 103728
|
||||
- new version
|
||||
- update file list
|
||||
- new API version
|
||||
|
||||
* Mon Oct 15 2007 Götz Waschk <waschk@mandriva.org> 2.12.1-1mdv2008.1
|
||||
+ Revision: 98421
|
||||
- new version
|
||||
|
||||
* Mon Sep 17 2007 Götz Waschk <waschk@mandriva.org> 2.12.0-1mdv2008.0
|
||||
+ Revision: 89322
|
||||
- new version
|
||||
|
||||
* Mon Sep 03 2007 Götz Waschk <waschk@mandriva.org> 2.11.92-1mdv2008.0
|
||||
+ Revision: 78816
|
||||
- new version
|
||||
- update eds dep
|
||||
|
||||
* Mon Aug 27 2007 Götz Waschk <waschk@mandriva.org> 2.11.91-1mdv2008.0
|
||||
+ Revision: 72038
|
||||
- new version
|
||||
|
||||
* Tue Aug 14 2007 Götz Waschk <waschk@mandriva.org> 2.11.90-1mdv2008.0
|
||||
+ Revision: 63066
|
||||
- new version
|
||||
|
||||
* Wed Aug 01 2007 Götz Waschk <waschk@mandriva.org> 2.11.6.1-1mdv2008.0
|
||||
+ Revision: 57361
|
||||
- new version
|
||||
- update file list
|
||||
|
||||
* Tue Jul 31 2007 Götz Waschk <waschk@mandriva.org> 2.11.6-1mdv2008.0
|
||||
+ Revision: 56917
|
||||
- new version
|
||||
- update file list
|
||||
- fix buildrequires
|
||||
|
||||
* Mon Jul 09 2007 Götz Waschk <waschk@mandriva.org> 2.11.5-1mdv2008.0
|
||||
+ Revision: 50638
|
||||
- new version
|
||||
|
||||
* Mon Jun 18 2007 Götz Waschk <waschk@mandriva.org> 2.11.4-1mdv2008.0
|
||||
+ Revision: 40994
|
||||
- new version
|
||||
|
||||
* Thu Jun 07 2007 Götz Waschk <waschk@mandriva.org> 2.11.3.1-1mdv2008.0
|
||||
+ Revision: 36882
|
||||
- new version
|
||||
- bump deps
|
||||
- update file list
|
||||
|
||||
* Mon May 28 2007 Götz Waschk <waschk@mandriva.org> 2.10.2-1mdv2008.0
|
||||
+ Revision: 32141
|
||||
- new version
|
||||
|
||||
* Tue Apr 17 2007 Götz Waschk <waschk@mandriva.org> 2.10.1-1mdv2008.0
|
||||
+ Revision: 14051
|
||||
- new version
|
||||
|
||||
|
||||
* Wed Mar 14 2007 Götz Waschk <waschk@mandriva.org> 2.10.0-1mdv2007.1
|
||||
+ Revision: 143548
|
||||
- fix buildrequires
|
||||
- new version
|
||||
|
||||
* Mon Feb 26 2007 Götz Waschk <waschk@mandriva.org> 2.9.92-1mdv2007.1
|
||||
+ Revision: 126040
|
||||
- new version
|
||||
|
||||
* Thu Feb 15 2007 Götz Waschk <waschk@mandriva.org> 2.9.91-1mdv2007.1
|
||||
+ Revision: 121317
|
||||
- fix buildrequires
|
||||
- new version
|
||||
|
||||
* Tue Jan 23 2007 Götz Waschk <waschk@mandriva.org> 2.9.6-1mdv2007.1
|
||||
+ Revision: 112250
|
||||
- fix buildrequires
|
||||
- new version
|
||||
- bump deps
|
||||
|
||||
* Tue Dec 19 2006 Götz Waschk <waschk@mandriva.org> 2.9.4-1mdv2007.1
|
||||
+ Revision: 99164
|
||||
- new version
|
||||
- bump deps
|
||||
|
||||
* Tue Dec 05 2006 Götz Waschk <waschk@mandriva.org> 2.9.3-1mdv2007.1
|
||||
+ Revision: 91001
|
||||
- new version
|
||||
- drop patch
|
||||
- bump deps
|
||||
- add gconf schema
|
||||
|
||||
* Thu Nov 30 2006 Götz Waschk <waschk@mandriva.org> 2.8.2-2mdv2007.1
|
||||
+ Revision: 89466
|
||||
- rebuild
|
||||
- Import evolution-exchange
|
||||
|
||||
* Thu Nov 30 2006 Götz Waschk <waschk@mandriva.org> 2.8.2-1mdv2007.1
|
||||
- fix build with new evolution
|
||||
- New version 2.8.2
|
||||
|
||||
* Wed Sep 06 2006 Frederic Crozat <fcrozat@mandriva.com> 2.8.0-1mdv2007.0
|
||||
- Release 2.8.0
|
||||
|
||||
* Tue Aug 22 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.92-1mdv2007.0
|
||||
- Release 2.7.92
|
||||
- Remove source1, no longer needed
|
||||
|
||||
* Wed Aug 09 2006 Jerome Soyer <saispo@mandriva.org> 2.7.91-1mdv2007.0
|
||||
- Release 2.7.91
|
||||
|
||||
* Thu Aug 03 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.90-2mdv2007.0
|
||||
- Rebuild with latest dbus
|
||||
|
||||
* Wed Jul 26 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.90-1mdv2007.0
|
||||
- Release 2.7.90
|
||||
|
||||
* Fri Jul 14 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.4-2mdv2007.0
|
||||
- Rebuild with latest libgail
|
||||
|
||||
* Thu Jul 13 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.4-1mdv2007.0
|
||||
- Releasse 2.7.4
|
||||
|
||||
* Thu Jun 15 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.3-1mdv2007.0
|
||||
- Release 2.7.3
|
||||
- Add source1 : missing po file from upstream tarball
|
||||
|
||||
* Wed Jun 07 2006 Frederic Crozat <fcrozat@mandriva.com> 2.7.2-1mdv2007.0
|
||||
- Release 2.7.2
|
||||
|
||||
* Sun Apr 23 2006 Christiaan Welvaart <cjw@daneel.dyndns.org> 2.6.1-2mdk
|
||||
- buildrequires: automake1.9, add libmono-devel
|
||||
|
||||
* Fri Apr 21 2006 Frederic Crozat <fcrozat@mandriva.com> 2.6.1-1mdk
|
||||
- Release 2.6.1
|
||||
|
||||
* Mon Feb 27 2006 Frederic Crozat <fcrozat@mandriva.com> 2.4.2-2mdk
|
||||
- Use mkrel
|
||||
|
||||
* Tue Nov 29 2005 Frederic Crozat <fcrozat@mandriva.com> 2.4.2-1mdk
|
||||
- Release 2.4.2
|
||||
|
||||
* Fri Oct 14 2005 Christiaan Welvaart <cjw@daneel.dyndns.org> 2.4.1-2mdk
|
||||
- add BuildRequires: libgnomeprint-devel libgtkhtml-3.8-devel
|
||||
|
||||
* Sat Oct 08 2005 Frederic Crozat <fcrozat@mandriva.com> 2.4.1-1mdk
|
||||
- Release 2.4.1
|
||||
- Renamed evolution-exchange
|
||||
|
||||
* Mon Sep 05 2005 Michael Scherer <misc@mandriva.org> 2.2.3-2mdk
|
||||
- Rebuild to avoid libglitz deps
|
||||
|
||||
* Fri Sep 02 2005 Frederic Crozat <fcrozat@mandriva.com> 2.2.3-1mdk
|
||||
- Release 2.2.3
|
||||
|
||||
* Wed Aug 31 2005 Oden Eriksson <oeriksson@mandriva.com> 2.2.2-6mdk
|
||||
- rebuilt against new openldap-2.3.6 libs
|
||||
|
||||
* Sat Jun 18 2005 Andreas Hasenack <andreas@mandriva.com> 2.2.2-5mdk
|
||||
- rebuilt without krb4 support
|
||||
|
||||
* Sat Jun 11 2005 Buchan Milne <bgmilne@linux-mandrake.com> 2.2.2-4mdk
|
||||
- Rebuild for libkrb53-devel 1.4.1
|
||||
|
||||
* Sun May 29 2005 Christiaan Welvaart <cjw@daneel.dyndns.org> 2.2.2-3mdk
|
||||
- add BuildRequires: intltool gnome-common
|
||||
|
||||
* Tue May 10 2005 Frederic Crozat <fcrozat@mandriva.com> 2.2.2-2mdk
|
||||
- Fix build on x86-64
|
||||
|
||||
* Fri Apr 29 2005 Frederic Crozat <fcrozat@mandriva.com> 2.2.2-1mdk
|
||||
- Release 2.2.2
|
||||
|
||||
* Fri Feb 18 2005 Frederic Crozat <fcrozat@mandrakesoft.com> 2.0.4-1mdk
|
||||
- Release 2.0.4
|
||||
|
||||
* Wed Jan 12 2005 Michael Scherer <misc@mandrake.org> 2.0.3-3mdk
|
||||
- add the supported iExchange version in description
|
||||
|
||||
* Thu Jan 06 2005 Frederic Crozat <fcrozat@mandrakesoft.com> 2.0.3-2mdk
|
||||
- Rebuild with latest howl
|
||||
|
||||
* Tue Dec 07 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 2.0.3-1mdk
|
||||
- New release 2.0.3
|
||||
- Remove patch 0 (merged upstream)
|
||||
|
||||
* Tue Oct 12 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 2.0.1-2mdk
|
||||
- Patch0: initialize i18n correctly
|
||||
|
||||
* Thu Sep 30 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 2.0.1-1mdk
|
||||
- Release 2.0.1
|
||||
|
||||
* Wed Sep 01 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.94.1-1mdk
|
||||
- Release 1.5.94.1
|
||||
|
||||
* Sat Aug 28 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.93-2mdk
|
||||
- Rebuild with latest libsoup
|
||||
|
||||
* Sat Aug 21 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.93-1mdk
|
||||
- Release 1.5.93
|
||||
- Remove patch0 (merged upstream)
|
||||
|
||||
* Sat Aug 21 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.92-3mdk
|
||||
- Patch0 (CVS): fix build with Evolution 1.5.93
|
||||
- Rebuild with latest libsoup
|
||||
|
||||
* Tue Aug 10 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.92-2mdk
|
||||
- Relax dependencies a little
|
||||
|
||||
* Wed Aug 04 2004 Frederic Crozat <fcrozat@mandrakesofto.com> 1.5.92-1mdk
|
||||
- Release 1.5.92
|
||||
|
||||
* Tue Aug 03 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.91-2mdk
|
||||
- fix BuildRequires
|
||||
|
||||
* Wed Jul 21 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.91-1mdk
|
||||
- New release 1.5.91
|
||||
|
||||
* Thu Jul 08 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.5.90-1mdk
|
||||
- Release 1.5.90
|
||||
- Fix description
|
||||
- Clean specfile
|
||||
- Drop patch 0
|
||||
|
||||
* Mon Jun 21 2004 Luca Berra <bluca@vodka.it> 1.5.9-1mdk
|
||||
- 1.5.9
|
||||
|
||||
* Wed May 12 2004 Frederic Crozat <fcrozat@mandrakesoft.com> 1.4.7-1mdk
|
||||
- Initial Mdk package
|
||||
|
Loading…
Add table
Reference in a new issue