debian/0000775000000000000000000000000012317274061007173 5ustar debian/shlibs.local0000664000000000000000000000014212317274061011470 0ustar libempathy-gtk 3.8.6 empathy (= ${binary:Version}) libempathy 3.8.6 empathy (= ${binary:Version}) debian/empathy.bug-control0000664000000000000000000000005512317274061013017 0ustar package-status: telepathy-connection-manager debian/mcp-account-manager-uoa.install0000664000000000000000000000031512317274061015165 0ustar usr/lib/mission-control-plugins.0/mcp-account-manager-uoa.* usr/lib/libaccount-plugin-1.0/applications usr/lib/libaccount-plugin-1.0/providers/libempathy-accounts-plugin.so usr/share/accounts/applications debian/compat0000664000000000000000000000000212317274061010371 0ustar 8 debian/account-plugin-myspace.install0000664000000000000000000000013512317274061015151 0ustar usr/share/accounts/providers/myspace.provider usr/share/accounts/services/myspace-im.service debian/mcp-account-manager-goa.install0000664000000000000000000000007412317274061015151 0ustar usr/lib/mission-control-plugins.0/mcp-account-manager-goa.* debian/account-plugin-mxit.install0000664000000000000000000000012712317274061014472 0ustar usr/share/accounts/providers/mxit.provider usr/share/accounts/services/mxit-im.service debian/patches/0000775000000000000000000000000012317274061010622 5ustar debian/patches/include-empathy-keyring.h0000664000000000000000000000101212317274061015523 0ustar Description: Fix implicit reclaration of empathy_keyring_set_account_password_finish and friends Author: Iain Lane Bug-Upstream: https://bugzilla.gnome.org/show_bug.cgi?id=701281 --- empathy-3.8.3.orig/src/empathy-sanity-cleaning.c +++ empathy-3.8.3/src/empathy-sanity-cleaning.c @@ -30,6 +30,7 @@ #include #ifdef HAVE_UOA +#include #include #include debian/patches/0003-Add-missing-include.patch0000664000000000000000000000126312317274061016005 0ustar commit 1158a1e2814e74ce115cfa201fd8a908a79cbd7e Author: Emilio Pozuelo Monfort Date: Fri Aug 16 13:43:00 2013 +0200 Add missing include Needed for EMPATHY_LOCATION_*. Signed-off-by: Emilio Pozuelo Monfort https://bugzilla.gnome.org/show_bug.cgi?id=706125 diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 8f9cb16..9f8e232 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -26,6 +26,7 @@ #include #endif +#include "empathy-location.h" #include "empathy-utils.h" #include "empathy-enum-types.h" debian/patches/47_git_activate_with_platform_data.patch0000664000000000000000000001334412317274061020555 0ustar Description: Ensure focus is gained when raising from indicator Bug-Ubuntu: https://bugs.launchpad.net/ayatana-design/+bug/627195 Index: b/src/empathy.c =================================================================== --- a/src/empathy.c +++ b/src/empathy.c @@ -214,11 +214,6 @@ g_object_unref (handler); } -static gboolean -empathy_app_local_command_line (GApplication *app, - gchar ***arguments, - gint *exit_status); - static void empathy_presence_manager_set_auto_away_cb (GSettings *gsettings, const gchar *key, @@ -285,32 +280,18 @@ } } -static int -empathy_app_command_line (GApplication *app, - GApplicationCommandLine *cmdline) +static void +empathy_app_activate (GApplication *app) { EmpathyApp *self = (EmpathyApp *) app; - gchar **args, **argv; - gint argc, exit_status, i; - - args = g_application_command_line_get_arguments (cmdline, &argc); - /* We have to make an extra copy of the array, since g_option_context_parse() - * assumes that it can remove strings from the array without freeing them. */ - argv = g_new (gchar*, argc + 1); - for (i = 0; i <= argc; i++) - argv[i] = args[i]; - - if (empathy_app_local_command_line (app, &argv, &exit_status)) - DEBUG ("failed to parse command line!"); - - g_free (argv); - g_strfreev (args); if (!self->activated) { GError *error = NULL; TpDBusDaemon *dbus; + empathy_gtk_init (); + /* Create the FT factory */ self->ft_factory = empathy_ft_factory_dup_singleton (); g_signal_connect (self->ft_factory, "new-ft-handler", @@ -356,7 +337,8 @@ if (self->show_preferences) { empathy_roster_window_show_preferences ( - EMPATHY_ROSTER_WINDOW (self->window), self->preferences_tab); + EMPATHY_ROSTER_WINDOW (self->window), + tp_str_empty (self->preferences_tab) ? NULL : self->preferences_tab); self->show_preferences = FALSE; } @@ -395,16 +377,30 @@ gpointer data, GError **error); +static void +open_preference_action_cb (GAction *action, + GVariant *parameter, + gpointer data) +{ + EmpathyApp *self = EMPATHY_APP (data); + + self->show_preferences = TRUE; + + g_free (self->preferences_tab); + self->preferences_tab = g_variant_dup_string (parameter, NULL); +} + static gboolean empathy_app_local_command_line (GApplication *app, gchar ***arguments, gint *exit_status) { EmpathyApp *self = (EmpathyApp *) app; + GSimpleAction *action; gint i; gchar **argv; gint argc = 0; - gboolean retval = FALSE; + gboolean retval = TRUE; GError *error = NULL; gboolean no_connect = FALSE, start_hidden = FALSE; @@ -428,13 +424,26 @@ { NULL } }; + if (!g_application_register (app, NULL, &error)) + { + g_warning("Impossible to register empathy: %s", error->message); + g_clear_error (&error); + *exit_status = EXIT_FAILURE; + return retval; + } + + action = g_simple_action_new ("open-preferences", G_VARIANT_TYPE_STRING); + g_signal_connect (action, "activate", G_CALLBACK (open_preference_action_cb), app); + g_action_map_add_action (G_ACTION_MAP (app), G_ACTION (action)); + g_object_unref (action); + /* We create a group so that GOptionArgFuncs get the user data */ group = g_option_group_new ("empathy", NULL, NULL, app, NULL); g_option_group_set_translation_domain (group, GETTEXT_PACKAGE); g_option_group_add_entries (group, options); optcontext = g_option_context_new (N_("- Empathy IM Client")); - g_option_context_add_group (optcontext, gtk_get_option_group (TRUE)); + g_option_context_add_group (optcontext, gtk_get_option_group (FALSE)); g_option_context_set_main_group (optcontext, group); g_option_context_set_translation_domain (optcontext, GETTEXT_PACKAGE); @@ -453,17 +462,27 @@ "line options.\n", error->message, argv[0]); g_warning ("Error in empathy init: %s", error->message); + g_clear_error (&error); *exit_status = EXIT_FAILURE; - retval = TRUE; } + else + { + self->no_connect = no_connect; + self->start_hidden = start_hidden; - g_free (argv); + if (self->show_preferences) + { + GVariant *parameter; + parameter = g_variant_new_string (self->preferences_tab ? self->preferences_tab : ""); + g_action_group_activate_action (G_ACTION_GROUP (app), "open-preferences", parameter); + } - g_option_context_free (optcontext); + g_application_activate (app); + } - self->no_connect = no_connect; - self->start_hidden = start_hidden; + g_free (argv); + g_option_context_free (optcontext); return retval; } @@ -482,8 +501,8 @@ gobject_class->dispose = empathy_app_dispose; gobject_class->finalize = empathy_app_finalize; - g_app_class->command_line = empathy_app_command_line; g_app_class->local_command_line = empathy_app_local_command_line; + g_app_class->activate = empathy_app_activate; spec = g_param_spec_boolean ("no-connect", "no connect", "Don't connect on startup", @@ -818,14 +837,11 @@ g_type_init (); empathy_init (); - gtk_init (&argc, &argv); - empathy_gtk_init (); add_empathy_features (); app = g_object_new (EMPATHY_TYPE_APP, "application-id", EMPATHY_DBUS_NAME, - "flags", G_APPLICATION_HANDLES_COMMAND_LINE, NULL); retval = g_application_run (G_APPLICATION (app), argc, argv); Index: b/data/empathy.desktop.in.in =================================================================== --- a/data/empathy.desktop.in.in +++ b/data/empathy.desktop.in.in @@ -7,7 +7,7 @@ _Keywords=chat;talk;im;message;irc;voip;gtalk;facebook;jabber; Exec=empathy Icon=empathy -StartupNotify=false +StartupNotify=true Terminal=false Type=Application Categories=GNOME;GTK;Network;InstantMessaging; debian/patches/0001-Use-new-api-versioned-name-for-geocode-glib.patch0000664000000000000000000000167312317274061022336 0ustar commit 4682c05ce90708e89c8690d4fb395fcee73b9d71 Author: Andreas Henriksson Date: Wed Aug 14 20:40:48 2013 +0200 Use new api-versioned name for geocode-glib geocode-glib has changed the name of the pkg-config file to include the api version. Update configure script accordingly. See: https://git.gnome.org/browse/geocode-glib/commit/?id=1cadaa879b7d72d973880680b5f947fd5c275974 "pkg-config: Version the pkg-config file" https://bugzilla.gnome.org/show_bug.cgi?id=706020 diff --git a/configure.ac b/configure.ac index d71de75..b0228ec 100644 --- a/configure.ac +++ b/configure.ac @@ -441,7 +441,7 @@ AC_ARG_ENABLE(geocode, if test "x$enable_geocode" != "xno"; then PKG_CHECK_MODULES(GEOCODE, [ - geocode-glib >= $GEOCODE_GLIB_REQUIRED + geocode-glib-1.0 >= $GEOCODE_GLIB_REQUIRED ], have_geocode="yes", have_geocode="no") if test "x$have_geocode" = "xyes"; then debian/patches/ubuntu_launch_uoa_panel.patch0000664000000000000000000000265712317274061016554 0ustar From 906eb708198b655eb04a3eda08cdce58e8558b0c Mon Sep 17 00:00:00 2001 From: Tim Lunn Date: Tue, 23 Jul 2013 12:30:11 +1000 Subject: [PATCH] Check desktop session to determine which accounts panel to launch --- src/empathy-accounts-dialog.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/empathy-accounts-dialog.c b/src/empathy-accounts-dialog.c index a6a45f2..f4ea626 100644 --- a/src/empathy-accounts-dialog.c +++ b/src/empathy-accounts-dialog.c @@ -2702,8 +2702,9 @@ launch_uoa_panel (TpAccount *selected_account, g_object_unref (manager); } -#else /* HAVE_UOA */ +#endif /* HAVE_UOA */ +#ifdef HAVE_GOA static void launch_empathy_accounts (TpAccount *selected_account, gboolean if_needed, @@ -2734,7 +2735,7 @@ launch_empathy_accounts (TpAccount *selected_account, g_string_free (args, TRUE); } -#endif /* HAVE_UOA */ +#endif /* HAVE_GOA */ void empathy_accounts_dialog_show_application (GdkScreen *screen, @@ -2743,8 +2744,13 @@ empathy_accounts_dialog_show_application (GdkScreen *screen, gboolean hidden) { #ifdef HAVE_UOA - launch_uoa_panel (selected_account, if_needed, hidden); -#else + if (!g_strcmp0 (g_getenv ("XDG_CURRENT_DESKTOP"), "Unity")) { + launch_uoa_panel (selected_account, if_needed, hidden); + return; + } +#endif + +#ifdef HAVE_GOA launch_empathy_accounts (selected_account, if_needed, hidden); #endif } -- 1.8.3.2 debian/patches/41_unity_launcher_progress.patch0000664000000000000000000001512012317274061017123 0ustar Description: Add Unity support to show file transfer progress in the launcher === modified file 'configure.ac' Index: b/configure.ac =================================================================== --- a/configure.ac +++ b/configure.ac @@ -75,6 +75,7 @@ ISO_CODES_REQUIRED=0.35 NAUTILUS_SENDTO_REQUIRED=2.90.0 NETWORK_MANAGER_REQUIRED=0.7.0 +UNITY_REQUIRED=3.4.0 CHAMPLAIN_REQUIRED=0.12.1 CHEESE_GTK_REQUIRED=3.4.0 LIBACCOUNTS_REQUIRED=1.4 @@ -369,6 +370,34 @@ AM_CONDITIONAL(HAVE_ENCHANT, test "x$have_enchant" = "xyes") +# libunity +# ----------------------------------------------------------- +AC_ARG_ENABLE(libunity, + AS_HELP_STRING([--enable-libunity=@<:@no/yes/auto@:>@], + [build libunity support]), , + enable_libunity=auto) + +if test "x$enable_unity" != "xno"; then + PKG_CHECK_MODULES(UNITY, + [ + unity >= $UNITY_REQUIRED + ], have_unity="yes", have_unity="no") + + if test "x$have_unity" = "xyes"; then + AC_DEFINE(HAVE_UNITY, 1, [Define if you have unity]) + fi +else + have_unity=no +fi + +if test "x$enable_unity" = "xyes" -a "x$have_unity" != "xyes"; then + AC_MSG_ERROR([Could not find libunity.]) +fi + +AM_CONDITIONAL(HAVE_UNITY, test "x$have_unity" = "xyes") +AC_SUBST([UNITY_CFLAGS]) +AC_SUBST([UNITY_LIBS]) + # ----------------------------------------------------------- # Map view checks: libchamplain # ----------------------------------------------------------- @@ -675,6 +704,7 @@ Display maps (libchamplain).: ${have_libchamplain} Location awareness (Geoclue): ${have_geoclue} Geocode support (Geocode)...: ${have_geocode} + Unity panel support (unity).: ${have_unity} Cheese webcam support ......: ${have_cheese} Camera monitoring...........: ${have_gudev} Index: b/src/Makefile.am =================================================================== --- a/src/Makefile.am +++ b/src/Makefile.am @@ -13,6 +13,7 @@ AM_LDFLAGS = $(LIBM) AM_CPPFLAGS = \ $(CPPFLAGS_COMMON) \ + $(UNITY_CFLAGS) \ $(LIBCHAMPLAIN_CFLAGS) \ $(UOA_CFLAGS) \ $(NULL) @@ -23,6 +24,7 @@ $(top_builddir)/extensions/libemp-extensions.la \ $(GCR_LIBS) \ $(EMPATHY_LIBS) \ + $(UNITY_LIBS) \ $(LIBCHAMPLAIN_LIBS) \ $(UOA_LIBS) \ $(NULL) @@ -161,6 +163,7 @@ $(top_builddir)/libempathy/libempathy.la \ $(top_builddir)/extensions/libemp-extensions.la \ $(EMPATHY_LIBS) \ + $(UNITY_LIBS) \ $(LIBCHAMPLAIN_LIBS) \ $(NULL) Index: b/src/empathy-ft-manager.c =================================================================== --- a/src/empathy-ft-manager.c +++ b/src/empathy-ft-manager.c @@ -40,6 +40,8 @@ #include "empathy-ft-manager.h" +#include + enum { COL_PERCENT, @@ -59,6 +61,7 @@ GtkWidget *open_button; GtkWidget *abort_button; GtkWidget *clear_button; + UnityLauncherEntry *launcher; } EmpathyFTManagerPriv; enum @@ -78,6 +81,53 @@ static void ft_handler_hashing_started_cb (EmpathyFTHandler *handler, EmpathyFTManager *manager); +static gchar * ft_manager_format_progress_bytes_and_percentage ( + guint64 current, + guint64 total, + gdouble speed, + int *percentage); + +static void +ft_update_unity_launcher (EmpathyFTManager *manager) +{ + EmpathyFTManagerPriv *priv; + + priv = GET_PRIV (manager); + g_return_if_fail (priv->launcher != NULL); + + guint64 current_bytes = 0; + guint64 total_bytes = 0; + int percentage; + gdouble progress; + GHashTableIter iter; + gpointer handler; + + g_hash_table_iter_init (&iter, priv->ft_handler_to_row_ref); + while (g_hash_table_iter_next (&iter, &handler, NULL)) + { + if (!empathy_ft_handler_is_completed (handler) && + !empathy_ft_handler_is_cancelled (handler)) + { + current_bytes = current_bytes + empathy_ft_handler_get_transferred_bytes (handler); + total_bytes = total_bytes + empathy_ft_handler_get_total_bytes (handler); + } + } + ft_manager_format_progress_bytes_and_percentage (current_bytes, total_bytes, -1, &percentage); + + progress = percentage; + progress = progress / 100; + + unity_launcher_entry_set_progress (priv->launcher, progress); + if (progress > 0 && progress < 100) + { + unity_launcher_entry_set_progress_visible (priv->launcher, TRUE); + } + else + { + unity_launcher_entry_set_progress_visible (priv->launcher, FALSE); + } +} + static gchar * ft_manager_format_interval (guint interval) { @@ -387,6 +437,8 @@ COL_PERCENT, percentage, -1); + ft_update_unity_launcher (manager); + gtk_tree_path_free (path); } @@ -453,6 +505,8 @@ ft_manager_clear_handler_time (manager, row_ref); ft_manager_update_buttons (manager); + ft_update_unity_launcher (manager); + g_free (message); } @@ -460,6 +514,7 @@ do_real_transfer_done (EmpathyFTManager *manager, EmpathyFTHandler *handler) { + EmpathyFTManagerPriv *priv; const char *contact_name; const char *filename; char *first_line, *second_line, *message; @@ -469,6 +524,8 @@ GtkRecentManager *recent_manager; GFile *file; + priv = GET_PRIV (manager); + row_ref = ft_manager_get_row_from_handler (manager, handler); g_return_if_fail (row_ref != NULL); @@ -494,6 +551,8 @@ ft_manager_update_handler_message (manager, row_ref, message); ft_manager_clear_handler_time (manager, row_ref); + ft_update_unity_launcher (manager); + /* update buttons */ ft_manager_update_buttons (manager); @@ -530,6 +589,8 @@ DEBUG ("Transfer done, no hashing"); do_real_transfer_done (manager, handler); + + ft_update_unity_launcher (manager); } static void @@ -571,6 +632,8 @@ TpFileTransferChannel *channel, EmpathyFTManager *manager) { + EmpathyFTManagerPriv *priv; + priv = GET_PRIV (manager); guint64 transferred_bytes, total_bytes; DEBUG ("Transfer started"); @@ -1078,6 +1141,12 @@ g_hash_table_unref (priv->ft_handler_to_row_ref); + if (priv->launcher != NULL) + { + g_object_unref(priv->launcher); + priv->launcher = NULL; + } + G_OBJECT_CLASS (empathy_ft_manager_parent_class)->finalize (object); } @@ -1095,6 +1164,8 @@ g_direct_equal, (GDestroyNotify) g_object_unref, (GDestroyNotify) gtk_tree_row_reference_free); + priv->launcher = unity_launcher_entry_get_for_desktop_id ("empathy.desktop"); + ft_manager_build_ui (manager); } debian/patches/42_shell_running.patch0000664000000000000000000000622312317274061015022 0ustar Description: Move to the window / move the window to the user depending on Shell or not === modified file 'src/empathy-chat-window.c' Index: b/src/empathy-chat-window.c =================================================================== --- a/src/empathy-chat-window.c +++ b/src/empathy-chat-window.c @@ -70,6 +70,7 @@ GList *chats; gboolean page_added; gboolean dnd_same_window; + gboolean shell_running; EmpathyChatroomManager *chatroom_manager; EmpathyNotifyManager *notify_mgr; EmpathyIndividualManager *individual_mgr; @@ -173,6 +174,35 @@ G_DEFINE_TYPE (EmpathyChatWindow, empathy_chat_window, GTK_TYPE_WINDOW) + +#define GNOME_SHELL_BUS_NAME "org.gnome.Shell" + +static void +list_names_cb (TpDBusDaemon *bus_daemon, + const gchar * const *names, + const GError *error, + gpointer user_data, + GObject *weak_object) +{ + EmpathyChatWindow *self = EMPATHY_CHAT_WINDOW (weak_object); + guint i; + + if (error != NULL) + goto out; + + for (i = 0; names[i] != NULL; i++) + { + if (!tp_strdiff (names[i], GNOME_SHELL_BUS_NAME)) + { + self->priv->shell_running = TRUE; + break; + } + } + +out: + return; +} + static void chat_window_accel_cb (GtkAccelGroup *accelgroup, GObject *object, @@ -2348,6 +2378,8 @@ GtkWidget *chat_vbox; gchar *filename; EmpathySmileyManager *smiley_manager; + GError *error = NULL; + TpDBusDaemon *dbus; self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, EMPATHY_TYPE_CHAT_WINDOW, EmpathyChatWindowPriv); @@ -2497,6 +2529,15 @@ self->priv->chat_manager, "closed-chats-changed", G_CALLBACK (chat_window_chat_manager_chats_changed_cb), self); + /* check if Shell is running */ + dbus = tp_dbus_daemon_dup (&error); + g_assert_no_error (error); + + tp_dbus_daemon_list_names (dbus, -1, list_names_cb, + NULL, NULL, G_OBJECT (self)); + + g_object_unref (dbus); + chat_window_chat_manager_chats_changed_cb (self->priv->chat_manager, empathy_chat_manager_get_num_closed_chats (self->priv->chat_manager), self); @@ -2791,11 +2832,17 @@ empathy_chat_window_switch_to_chat (self, chat); - /* Don't use empathy_window_present_with_time () which would move the window - * to our current desktop but move to the window's desktop instead. This is - * more coherent with Shell's 'app is ready' notication which moves the view - * to the app desktop rather than moving the app itself. */ - empathy_move_to_window_desktop (GTK_WINDOW (self), x_timestamp); + /* If gnome-shell is running don't use empathy_window_present_with_time () + * which would move the window to our current desktop but move to the + * window's desktop instead. This is more coherent with Shell's + * 'app is ready' notication which moves the view to the app desktop + * rather than moving the app itself. + * If gnome-shell isn't running, move the window to the current desktop */ + + if (!self->priv->shell_running) + empathy_window_present_with_time (GTK_WINDOW (self), x_timestamp); + else + empathy_move_to_window_desktop (GTK_WINDOW (self), x_timestamp); gtk_widget_grab_focus (chat->input_text_view); return self; debian/patches/series0000664000000000000000000000104712317274061012041 0ustar 0001-Use-new-api-versioned-name-for-geocode-glib.patch 0002-Update-to-new-GeocodeLocation-API-in-geocode-glib-0..patch 0003-Add-missing-include.patch 00_linker-fixes.patch 10_use_notify_osd_icons.patch 23_idomessagedialog_for_voip_and_ft.patch 34_start_raised_execpt_in_session.patch 38_default_to_facebook_for_im.patch 39_default_to_freenode_for_irc.patch 41_unity_launcher_progress.patch 42_shell_running.patch 43_quicklists.patch 47_git_activate_with_platform_data.patch include-empathy-keyring.h ubuntu_launch_uoa_panel.patch ucc_panel_name.patch debian/patches/39_default_to_freenode_for_irc.patch0000664000000000000000000000110312317274061017651 0ustar Description: Connect to Freenode IRC by default for Ubuntu channels === modified file 'libempathy-gtk/empathy-irc-network-chooser.c' Index: b/libempathy-gtk/empathy-irc-network-chooser.c =================================================================== --- a/libempathy-gtk/empathy-irc-network-chooser.c +++ b/libempathy-gtk/empathy-irc-network-chooser.c @@ -32,7 +32,7 @@ #include "empathy-irc-network-chooser.h" -#define DEFAULT_IRC_NETWORK "irc.gimp.org" +#define DEFAULT_IRC_NETWORK "chat.freenode.net" #define DEFAULT_IRC_PORT 6667 #define DEFAULT_IRC_SSL FALSE debian/patches/00_linker-fixes.patch0000664000000000000000000000076312317274061014550 0ustar Description: Link with correct libs for empathy-auth-client Author: Rico Tzschichholz --- empathy-3.7.90.orig/src/Makefile.am +++ empathy-3.7.90/src/Makefile.am @@ -79,6 +79,11 @@ empathy_auth_client_SOURCES = \ empathy-auth-client.c \ $(NULL) +empathy_auth_client_LDADD = \ + $(LDADD) \ + $(UOA_LIBS) \ + $(NULL) + empathy_chat_SOURCES = \ empathy-about-dialog.c empathy-about-dialog.h \ empathy-chat-manager.c empathy-chat-manager.h \ debian/patches/10_use_notify_osd_icons.patch0000664000000000000000000000406212317274061016371 0ustar Description: Use the notify-osd image for new message notifications Bug: https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/409828 === modified file 'libempathy-gtk/empathy-images.h' Index: b/libempathy-gtk/empathy-images.h =================================================================== --- a/libempathy-gtk/empathy-images.h +++ b/libempathy-gtk/empathy-images.h @@ -37,6 +37,7 @@ #define EMPATHY_IMAGE_MESSAGE "im-message" #define EMPATHY_IMAGE_NEW_MESSAGE "im-message-new" +#define EMPATHY_IMAGE_NEW_MESSAGE_NOTIFY "notification-message-im" #define EMPATHY_IMAGE_TYPING "user-typing" #define EMPATHY_IMAGE_CONTACT_INFORMATION "gtk-info" #define EMPATHY_IMAGE_GROUP_MESSAGE "system-users" Index: b/libempathy-gtk/empathy-ui-utils.c =================================================================== --- a/libempathy-gtk/empathy-ui-utils.c +++ b/libempathy-gtk/empathy-ui-utils.c @@ -58,6 +58,9 @@ gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), PKGDATADIR G_DIR_SEPARATOR_S "icons"); + gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), + DATADIR G_DIR_SEPARATOR_S "notify-osd" G_DIR_SEPARATOR_S "icons"); + /* Add icons from source dir if available */ if (g_getenv ("EMPATHY_SRCDIR") != NULL) { Index: b/src/empathy-event-manager.c =================================================================== --- a/src/empathy-event-manager.c +++ b/src/empathy-event-manager.c @@ -588,11 +588,11 @@ msg = empathy_message_get_body (message); if (event != NULL) - event_update (approval->manager, event, EMPATHY_IMAGE_NEW_MESSAGE, header, + event_update (approval->manager, event, EMPATHY_IMAGE_NEW_MESSAGE_NOTIFY, header, msg); else event_manager_add (approval->manager, NULL, sender, - EMPATHY_EVENT_TYPE_CHAT, EMPATHY_IMAGE_NEW_MESSAGE, header, msg, + EMPATHY_EVENT_TYPE_CHAT, EMPATHY_IMAGE_NEW_MESSAGE_NOTIFY, header, msg, approval, event_text_channel_process_func, NULL); empathy_sound_manager_play (priv->sound_mgr, NULL, debian/patches/23_idomessagedialog_for_voip_and_ft.patch0000664000000000000000000001526312317274061020674 0ustar Description: Use ido to provide messages for calls and file transfers === modified file 'configure.ac' Index: b/configure.ac =================================================================== --- a/configure.ac +++ b/configure.ac @@ -64,6 +64,7 @@ LIBCANBERRA_GTK_REQUIRED=0.25 LIBNOTIFY_REQUIRED=0.7.0 TELEPATHY_LOGGER=0.8.0 +IDO_REQUIRED=0.2.90 WEBKIT_REQUIRED=1.9.1 GOA_REQUIRED=3.5.1 @@ -210,6 +211,7 @@ libxml-2.0 telepathy-glib >= $TELEPATHY_GLIB_REQUIRED telepathy-logger-0.2 >= $TELEPATHY_LOGGER + libido3-0.1 >= $IDO_REQUIRED x11 gtk+-3.0 >= $GTK_REQUIRED libcanberra-gtk3 >= $LIBCANBERRA_GTK_REQUIRED Index: b/src/empathy-event-manager.c =================================================================== --- a/src/empathy-event-manager.c +++ b/src/empathy-event-manager.c @@ -36,6 +36,12 @@ #include #include +#include +#include + +#include +#include + #include "empathy-event-manager.h" #define DEBUG_FLAG EMPATHY_DEBUG_DISPATCHER @@ -248,6 +254,17 @@ return; } + /* auto approve voip calls and file transfers to raise the idomessagedialog */ + if (type == EMPATHY_EVENT_TYPE_CALL || type == EMPATHY_EVENT_TYPE_TRANSFER) + { + /* Don't fire the 'event-added' signal as we activate the event now */ + if (approval != NULL) + approval->auto_approved = TRUE; + + empathy_event_activate (&event->public); + return; + } + g_signal_emit (event->manager, signals[EVENT_ADDED], 0, event); if (!event->public.must_ack) @@ -444,6 +461,7 @@ } } + static void event_manager_call_window_confirmation_dialog_response_cb (GtkDialog *dialog, gint response, gpointer user_data) @@ -469,6 +487,68 @@ } } + +static void +event_channel_process_ft_func (EventPriv *event) +{ + GtkWidget *dialog; + GtkWidget *button; + GtkWidget *image; + gint width, height; + GdkPixbuf *avatar; + + if (event->approval->dialog != NULL) + { + gtk_window_present (GTK_WINDOW (event->approval->dialog)); + return; + } + + dialog = ido_message_dialog_new (NULL, + GTK_DIALOG_MODAL, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_NONE, + _("Incoming file transfer from %s"), + empathy_contact_get_alias (event->approval->contact)); + gtk_message_dialog_format_secondary_markup (GTK_WINDOW (dialog), _("%s is sending you a file. Do you want to accept it?"), + empathy_contact_get_alias (event->approval->contact)); + + avatar = empathy_pixbuf_avatar_from_contact_scaled (event->approval->contact, 48, 48); + if (avatar != NULL) + { + image = gtk_image_new_from_pixbuf (avatar); + } else { + /* Set image of the dialog */ + image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_DOCUMENT_SEND, + GTK_ICON_SIZE_DIALOG); + } + + gtk_message_dialog_set_image (GTK_MESSAGE_DIALOG (dialog), image); + gtk_widget_show (image); + + gtk_dialog_set_default_response (GTK_DIALOG (dialog), + GTK_RESPONSE_OK); + + button = gtk_dialog_add_button (GTK_DIALOG (dialog), + _("_Reject"), GTK_RESPONSE_REJECT); + image = gtk_image_new_from_icon_name ("stop", + GTK_ICON_SIZE_BUTTON); + gtk_button_set_image (GTK_BUTTON (button), image); + + button = gtk_dialog_add_button (GTK_DIALOG (dialog), + _("_Accept"), GTK_RESPONSE_ACCEPT); + + image = gtk_image_new_from_icon_name ("filesaveas.png", GTK_ICON_SIZE_BUTTON); + gtk_button_set_image (GTK_BUTTON (button), image); + + g_signal_connect (dialog, "response", + G_CALLBACK (event_manager_call_window_confirmation_dialog_response_cb), + event->approval); + + gtk_widget_show (dialog); + + event->approval->dialog = dialog; +} + static void event_channel_process_voip_func (EventPriv *event) { @@ -476,7 +556,8 @@ GtkWidget *button; GtkWidget *image; gboolean video; - gchar *title; + gint width, height; + GdkPixbuf *avatar; EmpathyEventType etype = event->public.type; if (event->approval->dialog != NULL) @@ -497,33 +578,33 @@ return; } - dialog = gtk_message_dialog_new (NULL, 0, - GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, - video ? _("Incoming video call"): _("Incoming call")); - - gtk_message_dialog_format_secondary_text ( - GTK_MESSAGE_DIALOG (dialog), video ? - _("%s is video calling you. Do you want to answer?"): - _("%s is calling you. Do you want to answer?"), - empathy_contact_get_alias (event->approval->contact)); - - title = g_strdup_printf (_("Incoming call from %s"), - empathy_contact_get_alias (event->approval->contact)); - - gtk_window_set_title (GTK_WINDOW (dialog), title); - g_free (title); - - /* Set image of the dialog */ - if (video) + dialog = ido_message_dialog_new (NULL, + GTK_DIALOG_MODAL, + GTK_MESSAGE_QUESTION, + GTK_BUTTONS_NONE, + video ? _("Incoming video call from %s"): _("Incoming call from %s"), empathy_contact_get_alias (event->approval->contact)); + gtk_message_dialog_format_secondary_markup (GTK_WINDOW (dialog), video ? + _("%s is video calling you. Do you want to answer?"): + _("%s is calling you. Do you want to answer?"), + empathy_contact_get_alias (event->approval->contact)); + + avatar = empathy_pixbuf_avatar_from_contact_scaled (event->approval->contact, 48, 48); + if (avatar != NULL) + { + image = gtk_image_new_from_pixbuf (avatar); + } else { + /* Set image of the dialog */ + if (video) { image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VIDEO_CALL, GTK_ICON_SIZE_DIALOG); } - else + else { image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_VOIP, GTK_ICON_SIZE_DIALOG); } + } gtk_message_dialog_set_image (GTK_MESSAGE_DIALOG (dialog), image); gtk_widget_show (image); @@ -942,7 +1023,7 @@ event_manager_add (approval->manager, NULL, approval->contact, EMPATHY_EVENT_TYPE_TRANSFER, EMPATHY_IMAGE_DOCUMENT_SEND, header, NULL, - approval, event_channel_process_func, NULL); + approval, event_channel_process_ft_func, NULL); /* FIXME better sound for incoming file transfers ?*/ empathy_sound_manager_play (priv->sound_mgr, NULL, debian/patches/43_quicklists.patch0000664000000000000000000000142212317274061014343 0ustar Description: Add some Unity Quicklists Index: b/data/empathy.desktop.in.in =================================================================== --- a/data/empathy.desktop.in.in +++ b/data/empathy.desktop.in.in @@ -15,4 +15,21 @@ X-GNOME-Bugzilla-Bugzilla=GNOME X-GNOME-Bugzilla-Product=empathy X-GNOME-Bugzilla-Component=General -X-GNOME-Bugzilla-Version=@VERSION@ +X-GNOME-Bugzilla-Version=@VERSION@8 +X-MessagingMenu-UsesChatSection=true +Actions=Hidden;Prefs;Accounts; + +[Desktop Action Hidden] +_Name=Open Hidden in Background +Exec=empathy -h +NotShowIn=Messaging Menu + +[Desktop Action Prefs] +_Name=Open Preferences +Exec=empathy -p +NotShowIn=Messaging Menu + +[Desktop Action Accounts] +_Name=Open Accounts +Exec=unity-control-center credentials +NotShowIn=Messaging Menu debian/patches/34_start_raised_execpt_in_session.patch0000664000000000000000000000241012317274061020433 0ustar Description: Start raised (window not hidden) when started explicitly; respect last state when autostarted. === modified file 'src/empathy-status-icon.c' Index: b/src/empathy-status-icon.c =================================================================== --- a/src/empathy-status-icon.c +++ b/src/empathy-status-icon.c @@ -493,6 +493,8 @@ EmpathyStatusIcon *icon; gboolean should_hide; + const gchar *desktop_autostart_id; + desktop_autostart_id = g_getenv ("DESKTOP_AUTOSTART_ID"); g_return_val_if_fail (GTK_IS_WINDOW (window), NULL); icon = g_object_new (EMPATHY_TYPE_STATUS_ICON, NULL); @@ -509,8 +511,16 @@ icon); if (!hide_contact_list) { - should_hide = g_settings_get_boolean (priv->gsettings_ui, - EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN); + /* If not started with the session, we should raise the window. + https://bugs.launchpad.net/ubuntu/+source/empathy/+bug/503052 */ + if (desktop_autostart_id == NULL) { + DEBUG ("Not started with session, showing contact list"); + should_hide = FALSE; + } else { + DEBUG ("Auto-started with session, so honor the previous known state"); + should_hide = g_settings_get_boolean (priv->gsettings_ui, + EMPATHY_PREFS_UI_MAIN_WINDOW_HIDDEN); + } } else { should_hide = TRUE; } debian/patches/38_default_to_facebook_for_im.patch0000664000000000000000000000105212317274061017465 0ustar Descrption: Make facebook the default chat account type, it is the most popular now and fits with our Social From the Start theme for Lucid Author: ? === modified file 'libempathy-gtk/empathy-protocol-chooser.c' Index: b/libempathy-gtk/empathy-protocol-chooser.c =================================================================== --- a/libempathy-gtk/empathy-protocol-chooser.c +++ b/libempathy-gtk/empathy-protocol-chooser.c @@ -83,6 +83,7 @@ { guint i; const gchar *names[] = { + "facebook", "jabber", "local-xmpp", "gtalk", debian/patches/ucc_panel_name.patch0000664000000000000000000000154712317274061014603 0ustar Index: empathy-3.8.6/src/empathy-accounts-dialog.c =================================================================== --- empathy-3.8.6.orig/src/empathy-accounts-dialog.c 2014-02-19 19:22:00.245533442 +1300 +++ empathy-3.8.6/src/empathy-accounts-dialog.c 2014-02-19 19:22:44.757532384 +1300 @@ -648,7 +648,7 @@ } else if (!tp_strdiff (provider, EMPATHY_UOA_PROVIDER)) { - empathy_launch_external_app ("gnome-credentials-panel.desktop", + empathy_launch_external_app ("unity-credentials-panel.desktop", NULL, NULL); return; } @@ -2678,7 +2678,7 @@ args = g_strdup_printf ("account-details=%u", g_value_get_uint (value)); } - empathy_launch_external_app ("gnome-credentials-panel.desktop", args, NULL); + empathy_launch_external_app ("unity-credentials-panel.desktop", args, NULL); g_free (args); out: debian/patches/0002-Update-to-new-GeocodeLocation-API-in-geocode-glib-0..patch0000664000000000000000000000346112317274061023457 0ustar commit acaa1e4f9d2c5e746e895a7ca3e6002ac502cc2a Author: Andreas Henriksson Date: Wed Aug 14 21:44:24 2013 +0200 Use new GeocodeLocation API in geocode-glib 0.99.1 Use new accessor functions. The location structure members has been hidden. Use regular g_object_unref, since the geocode_location_free has been removed. See: https://git.gnome.org/browse/geocode-glib/commit?id=5372f2f7ff97707dcc839bd3ed79ea9f289f7409 "lib: Turn GeocodeLocation into a proper GObject" https://bugzilla.gnome.org/show_bug.cgi?id=706020 diff --git a/libempathy/empathy-contact.c b/libempathy/empathy-contact.c index 3561044..8f9cb16 100644 --- a/libempathy/empathy-contact.c +++ b/libempathy/empathy-contact.c @@ -1617,7 +1617,6 @@ geocode_cb (GObject *source, GeocodeLocation *loc; GHashTable *new_location; GHashTable *resolved = NULL; - gdouble latitude, longitude; if (priv->location == NULL) goto out; @@ -1635,14 +1634,14 @@ geocode_cb (GObject *source, loc = res->data; new_location = tp_asv_new ( - EMPATHY_LOCATION_LAT, G_TYPE_DOUBLE, loc->latitude, - EMPATHY_LOCATION_LON, G_TYPE_DOUBLE, loc->longitude, + EMPATHY_LOCATION_LAT, G_TYPE_DOUBLE, geocode_location_get_latitude (loc), + EMPATHY_LOCATION_LON, G_TYPE_DOUBLE, geocode_location_get_longitude (loc), NULL); - DEBUG ("\t - Latitude: %f", loc->latitude); - DEBUG ("\t - Longitude: %f", loc->longitude); + DEBUG ("\t - Latitude: %f", geocode_location_get_latitude (loc)); + DEBUG ("\t - Longitude: %f", geocode_location_get_longitude (loc)); - g_list_free_full (res, (GDestroyNotify) geocode_location_free); + g_list_free_full (res, g_object_unref); /* Copy remaning fields. LAT and LON were not defined so we won't overwrite * the values we just set. */ debian/account-plugin-sametime.install0000664000000000000000000000013712317274061015316 0ustar usr/share/accounts/providers/sametime.provider usr/share/accounts/services/sametime-im.service debian/rules0000775000000000000000000000714512317274061010262 0ustar #!/usr/bin/make -f export AUTOPOINT = true include /usr/share/cdbs/1/rules/autoreconf.mk include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/gnome.mk DEB_DH_AUTORECONF_ARGS = --as-needed # List any files which are not installed include /usr/share/cdbs/1/rules/utils.mk DEB_DH_INSTALL_ARGS := --list-missing # Ensure at build time that the library has no dependencies on undefined # symbols, and speed up loading. DEB_LDFLAGS_MAINT_APPEND=-Wl,-z,defs -Wl,-O1 -Wl,--as-needed include /usr/share/dpkg/buildflags.mk DEB_CONFIGURE_EXTRA_FLAGS := --enable-spell=yes \ --enable-location=yes \ --enable-geocode=no \ --with-cheese \ --with-eds \ --enable-nautilus-sendto=yes \ --disable-schemas-compile \ --enable-map=no \ --enable-goa=yes \ --enable-gst-1.0=yes DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH) DEB_BUILD_ARCH_OS := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS) ifeq ($(DEB_BUILD_ARCH_OS),linux) DEB_CONFIGURE_EXTRA_FLAGS += --with-connectivity=nm --enable-gudev=yes else DEB_CONFIGURE_EXTRA_FLAGS += --with-connectivity=no --enable-gudev=no endif DEB_DH_MAKESHLIBS_ARGS_ALL = -Xusr/lib/mission-control-plugins.0/ -Xusr/lib/empathy/ DEB_DH_SHLIBDEPS_ARGS_ALL = -Lempathy binary-post-install/account-plugin-aim:: rm -f debian/account-plugin-aim/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-gadugadu:: rm -f debian/account-plugin-gadugadu/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-groupwise:: rm -f debian/account-plugin-groupwise/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-icq:: rm -f debian/account-plugin-icq/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-irc:: rm -f debian/account-plugin-irc/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-jabber:: rm -f debian/account-plugin-jabber/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-salut:: rm -f debian/account-plugin-salut/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-mxit:: rm -f debian/account-plugin-mxit/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-myspace:: rm -f debian/account-plugin-myspace/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-sametime:: rm -f debian/account-plugin-sametime/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-sip:: rm -f debian/account-plugin-sip/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-yahoo:: rm -f debian/account-plugin-yahoo/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-yahoojp:: rm -f debian/account-plugin-yahoojp/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/account-plugin-zephyr:: rm -f debian/account-plugin-zephyr/usr/lib/libaccount-plugin-1.0/*/*a binary-post-install/empathy:: rm -f debian/empathy/usr/lib/empathy/*.*a binary-post-install/mcp-account-manager-goa:: rm -f debian/mcp-account-manager-goa/usr/lib/mission-control-plugins.0/*.*a binary-post-install/mcp-account-manager-uoa:: rm -f debian/mcp-account-manager-uoa/usr/lib/mission-control-plugins.0/*.*a rm -f debian/mcp-account-manager-uoa/usr/lib/libaccount-plugin-1.0/applications/*a binary-post-install/nautilus-sendto-empathy:: rm -f debian/nautilus-sendto-empathy/usr/lib/nautilus-sendto/plugins/libnstempathy.*a include $(CURDIR)/debian/update-patches.mk debian/account-plugin-yahoo.install0000664000000000000000000000013112317274061014623 0ustar usr/share/accounts/providers/yahoo.provider usr/share/accounts/services/yahoo-im.service debian/empathy.install0000664000000000000000000000050612317274061012233 0ustar usr/bin/ usr/lib/empathy/*.so usr/lib/empathy/empathy-* usr/share/man/man1/ usr/share/applications/ usr/share/dbus-1/services/ usr/share/telepathy/clients/ usr/share/GConf/gsettings/empathy.convert usr/share/glib-2.0/schemas/org.gnome.Empathy.gschema.xml debian/indicators/empathy /usr/share/indicators/messages/applications/ debian/update-patches.mk0000664000000000000000000000065012317274061012434 0ustar update-patches: mkdir -p $(CURDIR)/debian/patches rm -f $(CURDIR)/debian/patches/*.patch git format-patch -o $(CURDIR)/debian/patches debian-patches ^upstream | \ xargs -n 1 basename > $(CURDIR)/debian/patches/series for patch in $$(ls $(CURDIR)/debian/patches/*.patch) ; \ do \ lines=$$(cat $$patch | wc -l) ; \ head -n $$(($$lines - 3)) $$patch > $${patch}.chomped ; \ mv $${patch}.chomped $$patch ; \ done debian/account-plugin-jabber.install0000664000000000000000000000013312317274061014733 0ustar usr/share/accounts/providers/jabber.provider usr/share/accounts/services/jabber-im.service debian/account-plugin-irc.install0000664000000000000000000000012512317274061014264 0ustar usr/share/accounts/providers/irc.provider usr/share/accounts/services/irc-im.service debian/account-plugin-sip.install0000664000000000000000000000012512317274061014302 0ustar usr/share/accounts/providers/sip.provider usr/share/accounts/services/sip-im.service debian/account-plugin-yahoojp.install0000664000000000000000000000013512317274061015161 0ustar usr/share/accounts/providers/yahoojp.provider usr/share/accounts/services/yahoojp-im.service debian/account-plugin-salut.install0000664000000000000000000000014312317274061014637 0ustar usr/share/accounts/providers/local-xmpp.provider usr/share/accounts/services/local-xmpp-im.service debian/source/0000775000000000000000000000000012317274061010473 5ustar debian/source/format0000664000000000000000000000001412317274061011701 0ustar 3.0 (quilt) debian/watch0000664000000000000000000000012712317274061010224 0ustar version=3 http://ftp.gnome.org/pub/GNOME/sources/empathy/([0-9.]+)/empathy-(.*).tar.xz debian/control0000664000000000000000000004220412317274061010600 0ustar Source: empathy Section: gnome Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Telepathy maintainers Uploaders: Sjoerd Simons , Dafydd Harries , Simon McVittie , Riccardo Setti , Laurent Bigonville , Jonny Lamb , Emilio Pozuelo Monfort Build-Depends: cdbs (>= 0.4.90), debhelper (>= 8), dh-autoreconf, libglib2.0-dev (>= 2.34), libgtk-3-dev (>= 3.5.1), libtelepathy-glib-dev (>= 0.19.9), libtelepathy-logger-dev (>= 0.8.0), intltool (>= 0.50.0), libenchant-dev (>= 1.2.0), iso-codes, xsltproc, yelp-tools, libcanberra-gtk3-dev, libnotify-dev (>= 0.7.0), libx11-dev, libdbus-glib-1-dev, libgstreamer-plugins-base1.0-dev, libnm-glib-dev (>= 0.7) [linux-any], libnm-util-dev (>= 0.7) [linux-any], libgeoclue-dev (>= 0.12), libgnome-keyring-dev (>= 2.26.0), libgcr-3-dev (>= 2.91.4), libfolks-dev (>= 0.7.3), libfolks-telepathy-dev (>= 0.6.6), libgnutls-dev (>= 2.8.5), libwebkitgtk-3.0-dev (>= 1.9.1), gsettings-desktop-schemas-dev, nautilus-sendto (>= 2.90), # libgeocode-glib-dev (>= 0.99.1), libcheese-gtk-dev (>= 3.7), libclutter-gtk-1.0-dev (>= 1.4), libclutter-gst-2.0-dev, libgudev-1.0-dev [linux-any], libmission-control-plugins-dev (>= 1:5.14.0), libpulse-dev, libtelepathy-farstream-dev (>= 0.6.0), libgoa-1.0-dev (>= 3.5.1), # libchamplain-gtk-0.12-dev (>= 0.12.1), libsecret-1-dev, libido3-0.1-dev (>= 0.2.90), libaccount-plugin-1.0-dev, libsignon-glib-dev (>= 1.4), libaccounts-glib-dev (>= 1.1), libunity-dev (>= 5.0.0) Standards-Version: 3.9.4 Vcs-Bzr: https://code.launchpad.net/~ubuntu-desktop/empathy/ubuntu Homepage: http://wiki.gnome.org/Empathy Package: empathy Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy-common (= ${source:Version}), telepathy-mission-control-5 (>= 1:5.12.0), gsettings-desktop-schemas, gnome-icon-theme (>= 2.30.0), geoclue, telepathy-logger (>= 0.2.13), dbus-x11, gstreamer1.0-pulseaudio Recommends: telepathy-gabble, telepathy-salut, telepathy-haze, gvfs-backends, gnome-contacts, mcp-account-manager-uoa | mcp-account-manager-goa, nautilus-sendto-empathy, sound-theme-freedesktop Suggests: vino, telepathy-idle Replaces: libempathy-gtk-common, empathy-call Conflicts: empathy-call Provides: empathy-call Description: GNOME multi-protocol chat and call client Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains the Empathy IM application and account manager. Package: empathy-dbg Architecture: any Depends: ${misc:Depends}, empathy (= ${binary:Version}) Section: debug Priority: extra Description: GNOME multi-protocol chat and call client (debug symbols) Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise, ICQ and QQ. . This package contains debug symbols for the Empathy IM application and account manager. Package: empathy-common Architecture: all Depends: ${misc:Depends} Recommends: yelp Replaces: empathy (<< 2.27.92), empathy-doc, libempathy-common, libempathy-gtk-common Conflicts: empathy-doc, libempathy-common, libempathy-gtk-common Provides: empathy-doc, libempathy-common, libempathy-gtk-common Description: GNOME multi-protocol chat and call client (common files) Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains the architecture independent files for Empathy IM application. Package: nautilus-sendto-empathy Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy-common (= ${source:Version}) Recommends: nautilus-sendto (>= 3.0) Replaces: nautilus-sendto (<< 2.28.2-2) Breaks: nautilus-sendto (<< 3.0), telepathy-sofiasip (<< 0.7.4), telepathy-rakia (<< 0.7.4) Description: GNOME multi-protocol chat and call client (nautilus-sendto plugin) Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains nautilus-sendto plugin for the Empathy IM application. Package: mcp-account-manager-goa Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}) Description: GNOME multi-protocol chat and call client (GOA plugin) Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains GNOME Online Accounts plugin for Mission Control. Package: mcp-account-manager-uoa Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), signon-plugin-password, telepathy-mission-control-5 (>= 1:5.13.0-0ubuntu3) Recommends: ubuntu-control-center-signon, account-plugin-aim, account-plugin-jabber, account-plugin-google, account-plugin-facebook, account-plugin-windows-live, account-plugin-yahoo, account-plugin-salut Suggests: account-plugin-gadugadu, account-plugin-groupwise, account-plugin-icq, account-plugin-irc, account-plugin-mxit, account-plugin-myspace, account-plugin-sametime, account-plugin-sip, account-plugin-yahoojp, account-plugin-zephyr Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: GNOME multi-protocol chat and call client (UOA plugin) Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains Ubuntu Online Accounts plugin for Mission Control. Package: account-plugin-aim Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for AIM Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-gadugadu Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for GaduGadu Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-groupwise Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Groupwise Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-icq Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for ICQ Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-irc Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-idle, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for IRC Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-jabber Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-gabble, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Jabber/XMPP Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-mxit Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Mxit Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-myspace Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for MySpace Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-salut Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-salut, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Local XMPP (Salut) Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-sametime Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Sametime Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-sip Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-rakia, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for SIP Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-yahoo Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Yahoo! Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-yahoojp Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Yahoo Japan Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. Package: account-plugin-zephyr Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, empathy (= ${binary:Version}), telepathy-haze, mcp-account-manager-uoa, unity-asset-pool (>> 0.8.24daily13.03.20.1) Breaks: account-plugin-empathy Replaces: account-plugin-empathy Description: Messaging account plugin for Zephyr Instant messaging program supporting text, voice, video, file transfers and inter-application communication over many different protocols, including: AIM, Windows Live (MSN), Google Talk (Jabber/XMPP), Facebook, Yahoo!, Salut, Gadu-Gadu, Groupwise and ICQ. . This package contains UOA account plugins for the Empathy IM application. debian/gbp.conf0000664000000000000000000000027112317274061010612 0ustar [DEFAULT] debian-branch = debian-experimental upstream-branch = upstream pristine-tar = True compression = xz [git-buildpackage] tarball-dir = ../tarballs/ export-dir = ../build-area/ debian/account-plugin-icq.install0000664000000000000000000000012512317274061014263 0ustar usr/share/accounts/providers/icq.provider usr/share/accounts/services/icq-im.service debian/empathy-common.install0000664000000000000000000000014612317274061013521 0ustar usr/share/adium/message-styles/ usr/share/icons/ usr/share/locale/ usr/share/empathy/ usr/share/help/ debian/copyright0000664000000000000000000005651412317274061011141 0ustar This package was debianized by Sjoerd Simons on Mon, 14 May 2007 22:32:24 +0200. It was downloaded from: http://ftp.gnome.org/pub/GNOME/sources/empathy/ Upstream Authors: Xavier Claessens Richard Hult Michael Hallendal Martyn Russell Raphaël Slinckx Files: * Copyright: Copyright (C) 2000 Eazel, Inc. Copyright (C) 2000-2005 Paolo Maggi Copyright (C) 2002-2003 Jeroen Zwartepoorte Copyright (C) 2002-2004 Marco Presenti Gritti Copyright (C) 2002-2006 Imendio AB Copyright (C) 2003-2004 Xan Lopez Copyright (C) 2003 Bastien Nocera Copyright (C) 2004 Red Hat, Inc. Copyright (C) 2004-2005 Martyn Russel Copyright (C) 2004-2006 Christian Persch Copyright (C) 2006 Xavier Claessens Copyright (C) 2007-2008 Marco Barisione Copyright (C) 2007 Raphael Slinckx Copyright (C) 2007 Guillaume Desmottes Copyright (C) 2007-2009 Collabora Ltd. License: GPL-2+ On Debian systems, the complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. Files: libempathy-gtk/empathy-avatar-chooser.* Copyright: Copyright (C) 2006-2007 Imendio AB. Copyrihgt (C) 2007-2008 Collabora Ltd. License: GPL-2 On Debian systems, the complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. Files: src/empathy-status-icon.*, src/empathy-event-manager.*, src/empathy-tube-dispatch.*, src/empathy-call-window.*, libempathy-gtk/empathy-video-src.*, libempathy-gtk/empathy-audio-src.*, libempathy/empathy-call-factory.*, libempathy/empathy-tp-contact-list.*, libempathy/empathy-dispatcher.*, libempathy/empathy-tp-file.*, libempathy/empathy-irc-network-manager.*, libempathy/empathy-tp-call.*, libempathy/empathy-tp-tube.*, libempathy/empathy-idle.*, libempathy/empathy-debug.*, libempathy/empathy-account-manager.*, libempathy/empathy-contact-factory.*, libempathy/empathy-tp-roomlist.*, libempathy/empathy-contact-monitor.*, libempathy/empathy-tp-group.*, libempathy/empathy-contact-manager.*, libempathy/empathy-tube-handler.*, libempathy/empathy-tp-contact-factory.*, libempathy/empathy-contact-list.*, libempathy/empathy-irc-server.*, libempathy/empathy-tp-chat.*, libempathy/empathy-chatroom.*, libempathy/empathy-call-handler.*, libempathy/empathy-dispatch-operation.*, libempathy-gtk/empathy-contact-dialogs.*, libempathy-gtk/empathy-contact-selector.*, libempathy-gtk/empathy-contact-widget.*, libempathy-gtk/empathy-profile-chooser.*, libempathy-gtk/empathy-audio-sink.*, libempathy-gtk/empathy-cell-renderer-activatable.*, libempathy-gtk/empathy-account-widget-irc.*, libempathy-gtk/empathy-account-widget-sip.*, libempathy-gtk/empathy-video-src.*, libempathy-gtk/empathy-smiley-manager.*, libempathy-gtk/empathy-irc-network-dialog.*, libempathy-gtk/empathy-contact-menu.*, libempathy-gtk/totem-subtitle-encoding.*, libempathy-gtk/empathy-video-widget.*, libempathy-gtk/empathy-new-message-dialog.*, libempathy-gtk/empathy-audio-src.*, tools/* Copyright: Copyright (C) 2007-2009 Collabora Ltd. Copyright (C) 2007 Xavier Claessens Copyright (C) 2007 Elliot Fairweather Copyright (C) 2007 Nokia Corporation Copyright (C) 2007 Marco Barisione Copyright (C) 2007-2008 Guillaume Desmottes Copyright (C) 2007 Raphael Slinckx Copyright (C) 2001-2006 Bastien Nocera License: LGPL-2.1+ On Debian systems, the complete text of the LGPL-2.1 can be found in /usr/share/common-licenses/LGPL-2.1. Files: po/* Copyright: Copyright 2002-2006 Free Software Foundation, Inc. Copyright 2002-2003 Richard Hult Copyright 2003-2004 Christian Rose Copyright 2006 Daniel Nylander License: GPL-2 On Debian systems, the complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. Files: help/* Copyright: Copyright 2009 GNOME Documentation Project License: CC-BY-SA THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 1. Definitions 1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. 2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined below) for the purposes of this License. 3. "Creative Commons Compatible License" means a license that is listed at http://creativecommons.org/compatiblelicenses that has been approved by Creative Commons as being essentially equivalent to this License, including, at a minimum, because that license: (i) contains terms that have the same purpose, meaning and effect as the License Elements of this License; and, (ii) explicitly permits the relicensing of adaptations of works made available under that license under this License or a Creative Commons jurisdiction license with the same License Elements as this License. 4. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. 5. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. 6. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. 7. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. 8. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. 9. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. 10. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. 11. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: 1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; 2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; 3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and, 4. to Distribute and Publicly Perform Adaptations. 5. For the avoidance of doubt: 1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; 2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, 3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: 1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(c), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(c), as requested. 2. You may Distribute or Publicly Perform an Adaptation only under the terms of: (i) this License; (ii) a later version of this License with the same License Elements as this License; (iii) a Creative Commons jurisdiction license (either this or a later license version) that contains the same License Elements as this License (e.g., Attribution-ShareAlike 3.0 US)); (iv) a Creative Commons Compatible License. If you license the Adaptation under one of the licenses mentioned in (iv), you must comply with the terms of that license. If you license the Adaptation under the terms of any of the licenses mentioned in (i), (ii) or (iii) (the "Applicable License"), you must comply with the terms of the Applicable License generally and the following provisions: (I) You must include a copy of, or the URI for, the Applicable License with every copy of each Adaptation You Distribute or Publicly Perform; (II) You may not offer or impose any terms on the Adaptation that restrict the terms of the Applicable License or the ability of the recipient of the Adaptation to exercise the rights granted to that recipient under the terms of the Applicable License; (III) You must keep intact all notices that refer to the Applicable License and to the disclaimer of warranties with every copy of the Work as included in the Adaptation You Distribute or Publicly Perform; (IV) when You Distribute or Publicly Perform the Adaptation, You may not impose any effective technological measures on the Adaptation that restrict the ability of a recipient of the Adaptation from You to exercise the rights granted to that recipient under the terms of the Applicable License. This Section 4(b) applies to the Adaptation as incorporated in a Collection, but this does not require the Collection apart from the Adaptation itself to be made subject to the terms of the Applicable License. 3. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Ssection 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4(c) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. 4. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. 5. Representations, Warranties and Disclaimer UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 7. Termination 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 8. Miscellaneous 1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. 2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. 6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. Files: debian/* Copyright: Copyright 2007-2009 Sjoerd Simons License: GPL-2+ On Debian systems, the complete text of the GPL-2 can be found in /usr/share/common-licenses/GPL-2. debian/nautilus-sendto-empathy.install0000664000000000000000000000006112317274061015363 0ustar usr/lib/nautilus-sendto/plugins/libnstempathy.so debian/account-plugin-groupwise.install0000664000000000000000000000014112317274061015531 0ustar usr/share/accounts/providers/groupwise.provider usr/share/accounts/services/groupwise-im.service debian/changelog0000664000000000000000000014552312317274061011057 0ustar empathy (3.8.6-0ubuntu9) trusty; urgency=medium * Revert ubuntu8 — we don't want to drop support for these accounts even if they do keep gstreamer 0.10. The right approach is to port pidgin to 1.0. -- Iain Lane Thu, 03 Apr 2014 16:03:07 +0100 empathy (3.8.6-0ubuntu8) trusty; urgency=medium * Drop account-plugin-aim and account-plugin-yahoo from recommends to suggests, thus removing 21.8MB of gstreamer0.10 from ubuntu desktop CDs. Both services have declining userbase, and related accounts are already in suggests (icq and yahoojp respectively). -- Dimitri John Ledkov Thu, 03 Apr 2014 00:57:42 +0100 empathy (3.8.6-0ubuntu7) trusty; urgency=medium * debian/{rules,control}: Drop arch-restrictions a little bit harder. -- Adam Conrad Sat, 15 Mar 2014 21:31:37 -0600 empathy (3.8.6-0ubuntu6) trusty; urgency=medium * Drop arch-restrictions, build on Architecture:any. -- Dimitri John Ledkov Sun, 16 Mar 2014 02:34:05 +0000 empathy (3.8.6-0ubuntu5) trusty; urgency=medium * debian/patches/ucc_panel_name.patch: * debian/patches/43_quicklists.patch: - Launch new unity-control-center panel (LP: #1257505) -- Robert Ancell Wed, 19 Feb 2014 19:23:27 +1300 empathy (3.8.6-0ubuntu4) trusty; urgency=medium * debian/control: - recommends ubuntu-control-center-signon (new binary naming) -- Sebastien Bacher Wed, 12 Feb 2014 15:40:03 +0100 empathy (3.8.6-0ubuntu3) trusty; urgency=medium * No-change rebuild for new cogl -- Iain Lane Wed, 15 Jan 2014 09:49:51 +0000 empathy (3.8.6-0ubuntu2) trusty; urgency=low * No-change rebuild for new gnome-online-accounts -- Iain Lane Fri, 06 Dec 2013 11:43:16 +0000 empathy (3.8.6-0ubuntu1) trusty; urgency=low * New upstream version: - need to escape spaces in action names (lp: #1251582) -- Sebastien Bacher Fri, 15 Nov 2013 15:43:39 +0100 empathy (3.8.5-0ubuntu2) trusty; urgency=low * debian/shlibs.local: update version to 3.8.5 there, that's somewhat needed otherwise the build fails on dpkg-shlibdeps errors... -- Sebastien Bacher Fri, 15 Nov 2013 11:24:21 +0100 empathy (3.8.5-0ubuntu1) trusty; urgency=low * New upstream version * debian/patches/git_facebook_login.patch: - dropped, the fix is in the new version -- Sebastien Bacher Wed, 13 Nov 2013 16:20:47 +0100 empathy (3.8.4-1ubuntu2) saucy; urgency=low * debian/patches/git_facebook_login.patch: backport git patch to fix facebook login (lp: #1246265) -- Sebastien Bacher Thu, 31 Oct 2013 11:43:50 -0700 empathy (3.8.4-1ubuntu1) saucy; urgency=low * Merge with Debian (LP: #1068242), remaining changes: - debian/patches/00_linker-fixes.patch - debian/patches/10_use_notify_osd_icons.patch - debian/patches/23_idomessagedialog_for_voip_and_ft.patch - debian/patches/34_start_raised_execpt_in_session.patch - debian/patches/38_default_to_facebook_for_im.patch - debian/patches/39_default_to_freenode_for_irc.patch - debian/patches/41_unity_launcher_progress.patch - debian/patches/42_shell_running.patch - debian/patches/43_quicklists.patch - debian/patches/47_git_activate_with_platform_data.patch: Patches kept, see newly completed patch headers for descriptions. - debian/patches/include-empathy-keyring.h: fix implicit declaration of empathy_keyring_set_account_password_finish and co by including the right header. - debian/patches/ubuntu_launch_uoa_panel.patch: + Only launch UOA panel when running a Unity session. - debian/*: Turn on UOA and split out account plugins into account-plugins-* and mcp-account-manager-goa/uoa packages. - Remove Universe Build-Deps for geocode and champlain and disable these features. - debian/indicators/empathy: Install indicator integration point. - debian/control: + Replace/Conflict/Provide empathy-call + Recommend gnome-contacts -- Jeremy Bicha Mon, 09 Sep 2013 21:21:54 -0400 empathy (3.8.4-1) experimental; urgency=low * New upstream release - debian/shlibs.local: Bump version of the libraries -- Laurent Bigonville Mon, 09 Sep 2013 19:25:48 +0200 empathy (3.8.3-2) experimental; urgency=low * debian/control: Fix Homepage URL * debian/rules: Properly set extra LDFLAGS to not override hardening ones * debian/rules: Re-enable cheese support * debian/control, debian/rules: Re-enable libchamplain support * debian/rules: Call dh-autoreconf with --as-needed option * debian/control, debian/rules: Re-enable geoclue and geocode support * debian/patches/*: Port to the released 0.99.1 version of geocode-glib * debian/control: Drop gnome-doc-utils build-dependency (Closes: #717539) -- Laurent Bigonville Tue, 20 Aug 2013 14:06:00 +0200 empathy (3.8.3-1) experimental; urgency=low [ Emilio Pozuelo Monfort ] * debian/control: + Drop obsolete rarian-compat and librarian-dev build dependencies. [ Simon McVittie ] * New upstream release - fixes a crash when displaying Google Talk vCards now that they can contain a read-only field, which telepathy-gabble does not flag as supported (Closes: #706900) [ Laurent Bigonville ] * New upstream release (3.8.3) * debian/control: - Bump Standards-Version to 3.9.4 (no further changes) - Use canonical URL for the VCS fields * debian/rules: Exclude /usr/lib/mission-control-plugins.0/ and /usr/lib/empathy from dh_makeshlibs call * Add debian/shlibs.local file for private libraries and look for the privates libs in empathy package during build. -- Sjoerd Simons Sun, 16 Jun 2013 22:23:17 +0200 empathy (3.8.0-1) experimental; urgency=low * New upstream release * Drop libchamplain b-d as we're building without maps support atm -- Sjoerd Simons Fri, 29 Mar 2013 09:03:25 +0100 empathy (3.7.92-1) experimental; urgency=low * New upstream release * debian/control: Update build-deps * Temporarly disable geoclue integration * Bump cheese & clutter-gtk build-deps -- Sjoerd Simons Sat, 23 Mar 2013 22:03:28 +0100 empathy (3.6.3-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Sun, 13 Jan 2013 02:38:31 +0100 empathy (3.6.2-1) experimental; urgency=low [ Simon McVittie ] * Bump GLib dependency to 2.34 to bypass the pseudo-epoch in unstable * Build-depend on libgstreamer-plugins-base1.0-dev, not on libgstreamer-plugins-base0.10-dev [ Sjoerd Simons ] * debian/control: Make empathy depend on gstreamer1.0-pulse as required for making calls * New upstream release (3.6.2) -- Sjoerd Simons Sun, 18 Nov 2012 22:44:57 +0100 empathy (3.6.1-1) experimental; urgency=low * New upstream release -- Sjoerd Simons Sat, 20 Oct 2012 18:25:34 +0200 empathy (3.6.0.1-1) experimental; urgency=low * New upstream release * debian/rules: Use gstreamer 1.0 * debian/patches/nst-Link-against-libempathy.patch: + Added. Fix build with --as-needed (From upstream git) * debian/empathy.install: Only install libraries and helpers from /usr/lib/empathy * debian/rules: Create an shlib file for empathy to find private libraries -- Sjoerd Simons Sun, 07 Oct 2012 12:52:35 +0200 empathy (3.4.2.3-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Wed, 27 Jun 2012 14:05:40 +0200 empathy (3.4.2.1-1) unstable; urgency=low * New upstream release * debian/rules: Stop building the obsolete call UI as all supported CMs now support Call * debian/control: Add breaks against older telepathy-rakia versions now that we don't build the obsolete Call ui anymore as calls are the main use-case for SIP. * debian/patches/0001-Call-Fix-floating-toolbar.patch - Removed. Fixed upstream. -- Sjoerd Simons Tue, 22 May 2012 09:57:09 +0200 empathy (3.4.2-2) unstable; urgency=low * debian/patches/0001-Call-Fix-floating-toolbar.patch - Added. Fix the call toolbar not responding to events (from upstream git) -- Sjoerd Simons Sat, 19 May 2012 22:31:44 +0200 empathy (3.4.2-1) unstable; urgency=low * Upload to unstable * New upstream release - Bump build-dependencies * debian/rules: Drop --enable-webkit, --enable-call-logs and --enable-call, these options are now enabled by default * debian/control: Bump telepathy-mission-control-5 dependency to 5.12.0, this is require for telepathy-butterfly → telepathy-haze migration * Drop debian/source/options: Use the default compression format for debian tarball -- Laurent Bigonville Tue, 15 May 2012 11:03:28 +0200 empathy (3.4.1-1) experimental; urgency=low * New upstream release - Bump build-dependencies * Drop debian/patches/use_champlain-0.12.patch: Applied upstream * debian/control: - Drop dconf-gsettings-backend | gsettings-backend dependency: Let dh_installgsettings generate the dependency - Bump Standards-Version to 3.9.3 (no further changes) - Bump telepathy-haze to Recommends (Closes: #610769) - Drop mention to QQ, no connection manager is supporting it anymore (Closes: #646335) - MSN has been rebranded Windows Live, update the description - freedesktop-sound-theme has been renamed to sound-theme-freedesktop * debian/rules: - Compile with geoclue support enabled as intended (Closes: #663697) * debian/gbp.conf: Switch to unstable branch -- Laurent Bigonville Wed, 09 May 2012 10:57:49 +0200 empathy (3.3.90.2-1) experimental; urgency=low * New upstream release (3.3.90) * Sync from the Ubuntu package by Ken VanDine * debian/patches/use_champlain-0.12.patch: - Added. Enabling using libchamplain-0.12 -- Sjoerd Simons Mon, 12 Mar 2012 18:09:13 +0100 empathy (3.2.2-2) experimental; urgency=low * New upstream release, merged back from unstable branch - Experimental changes (update libebook-dev depend, goa support, Call support) -- Sjoerd Simons Sat, 19 Nov 2011 17:32:40 +0000 empathy (3.2.1.1-3) experimental; urgency=low * Build-depend on libebook-dev (>= 3.2.0) to ensure linking against the same ebook library as the folks evolution backend. -- Sjoerd Simons Sun, 13 Nov 2011 14:14:59 +0100 empathy (3.2.1.1-2) experimental; urgency=low * branch for experimental * Enable goa support * Enable Call support -- Sjoerd Simons Sun, 06 Nov 2011 14:37:50 +0000 empathy (3.2.2-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Sat, 19 Nov 2011 17:24:35 +0000 empathy (3.2.1.1-1) unstable; urgency=low * New upstream release * debian/control: Bump libtelepathy-glib b-d -- Sjoerd Simons Tue, 01 Nov 2011 13:43:50 +0100 empathy (3.2.0.1-1) unstable; urgency=low * New upstream release * debian/control: - nautilus-sendto-empathy Breaks nautilus-sendto (<< 3.0), and Recommends nautilus-sendto (>= 3.0) - Drop libtelepathy-farstream-dev build-dependency * debian/rules: Do not pass --enable-call to configure anymore * debian/watch: Switch to .xz tarball -- Laurent Bigonville Fri, 14 Oct 2011 19:20:28 +0200 empathy (3.2.0-1) experimental; urgency=low * New upstream release * Switch to xz for compression * debian/control: Update clutter, champlain and folks build dependencies * debian/{control,empathy.install}: Empathy no longer integrates with the control center -- Sjoerd Simons Fri, 30 Sep 2011 09:02:53 +0100 empathy (3.1.91-1) experimental; urgency=low * New upstream release. -- Laurent Bigonville Thu, 08 Sep 2011 20:36:36 +0200 empathy (3.1.90.1-1) experimental; urgency=low * New upstream release. -- Laurent Bigonville Mon, 05 Sep 2011 14:04:10 +0200 empathy (3.1.5.1-1) experimental; urgency=low * New upstream release. * debian/patches/0001-Fix-call-event.h-detection.patch: Removed now that it's upstream. * debian/control: Upped tp-glib dependency. -- Jonny Lamb Mon, 22 Aug 2011 11:27:50 +0100 empathy (3.1.5-1) experimental; urgency=low * New upstream release. * debian/control: - Only require libgudev-1.0-dev on linux architectures - Bump folks build-dependencies to 0.6 - Add libpulse-dev build-dependency * debian/rules: - Only enable gudev support on linux architectures - Enable build-time geoclue support on Hurd * debian/patches/0001-Fix-call-event.h-detection.patch: Fix call-event.h detection -- Laurent Bigonville Fri, 19 Aug 2011 16:22:20 +0200 empathy (3.1.4-1) experimental; urgency=low * New upstream release. * debian/control: - Bump libtelepathy-glib-dev build-dependency - Add libgudev-1.0-dev as build-dependency - Add libclutter-1.0-dev, libclutter-gtk-1.0-dev, libclutter-gst-dev and libtelepathy-farstream-dev to build-dependencies - Bump libtelepathy-logger-dev and telepathy-logger to be sure Call logging support is enabled - Add dependency against gstreamer0.10-gconf (needed by empathy-call) * debian/rules: - Enable gudev support - Pass --with-eds to configure - Pass --enable-call and --enable-call-logs to configure * debian/README.source: Update git URL to GNOME repository (Closes: #634950) -- Laurent Bigonville Wed, 27 Jul 2011 22:58:16 +0200 empathy (3.1.3-1) experimental; urgency=low * New upstream release. - Bump libtelepathy-glib-dev and libwebkitgtk-3.0-dev build-dependencies * Drop debian/patches/0001-add-missing-gio.patch: Applied upstream -- Laurent Bigonville Tue, 05 Jul 2011 16:32:21 +0200 empathy (3.1.2.1-1) experimental; urgency=low * New upstream release. - Bump build-dependencies * debian/control: - Bump Standards-Version to 3.9.2 (no further changes) - Add libgeocode-glib-dev as build-dependency - Add libcheese-gtk-dev as build-dependency - Drop dependency against libdconf0 | gsettings-backend, dh_installgsettings now add the correct dependencies * debian/rules: - Add --enable-geocode to configure flags - Add --with-cheese to configure flags - Add -Wl,--as-needed to LDFLAGS * debian/patches/0001-add-missing-gio.patch: Add missing gio linkage to fix FTBFS * debian/patches/99_ltmain_as-needed.patch: Fix --as-needed logic -- Laurent Bigonville Sat, 18 Jun 2011 13:07:50 +0200 empathy (3.1.1-1) experimental; urgency=low * New upstream release. * debian/control: + Update glib and tp-glib build-dep versions for new release. + Change libgcr-dev build-dep to libgcr-3-dev. -- Jonny Lamb Tue, 10 May 2011 10:26:38 +0100 empathy (3.0.0-1) experimental; urgency=low * New upstream release -- Sjoerd Simons Fri, 08 Apr 2011 22:00:01 +0200 empathy (2.91.92-1) experimental; urgency=low * New upstream release. + debian/control: - Bump libtelepathy-glib-dev build dependency. * debian/rules: + Don't create an shlibs file for empathy. -- Emilio Pozuelo Monfort Thu, 24 Mar 2011 17:29:07 +0000 empathy (2.91.91.1-1) experimental; urgency=low [ Sjoerd Simons ] * New upstream release * Update b-d to libfolks >= 0.4.0 * Enable contacts on a map [ Emilio Pozuelo Monfort ] * debian/control: - Don't recommend all the geoclue-* packages. geoclue is enough, and it suggests the geoclue-* packages. Closes: #599646. - Add geoclue support for Hurd, since it's available there now. -- Sjoerd Simons Sat, 19 Mar 2011 18:51:04 +0000 empathy (2.91.91-1) experimental; urgency=low * New upstream release * Build-depend on libgtk-3-dev (>= 3.0.2) -- Sjoerd Simons Thu, 10 Mar 2011 00:41:41 +0000 empathy (2.91.90.2-1) experimental; urgency=low [ Emilio Pozuelo Monfort ] * New upstream release. - debian/control: + Update build dependencies. [ Sjoerd Simons ] * debian/control: Update build-depend on tp-logger >= 0.2.0 * Explicitly disable the control center embedding [ Emilio Pozuelo Monfort ] * debian/control, debian/rules: - Let CDBS call dh_bugfiles for us. * debian/rules, debian/control, debian/empathy.install: - Re-enable the control center panel now that it builds fine. * debian/rules: - Remove obsolete configure flag. -- Emilio Pozuelo Monfort Mon, 28 Feb 2011 08:01:59 +0000 empathy (2.91.6.1-1) experimental; urgency=low * debian/control: - Re-enable nautilus-sendto plugin. * New upstream release. - debian/control: + Bump the libfolks and telepathy-glib build dependencies. -- Emilio Pozuelo Monfort Tue, 01 Feb 2011 18:39:57 +0000 empathy (2.91.5.1-1) experimental; urgency=low [ Laurent Bigonville ] * debian/control: Bump libdconf0 to Depends [ Emilio Pozuelo Monfort ] * debian/control, debian/rules: + Re-enable webkit support. * New upstream release. * debian/rules: + Don't tell CDBS what the dbg package is, it already knows that. + No need to tell dh_install to look at debian/tmp, it does that since compat 7. + Link with -Wl,-z,defs -Wl,-O1 again. -- Emilio Pozuelo Monfort Wed, 19 Jan 2011 20:16:39 +0000 empathy (2.91.5-1) experimental; urgency=low * New upstream release. + d/p/0001-Simplify-filter-adding-code-by-just-using-gdk_x11-fu.patch: - Removed, included upstream. + debian/control: - Bump the libgtk3.0-dev build dependency to get the latest ABI. * debian/rules: + Reuse $(DEB_BUILD_ARCH_OS) from CDBS. -- Emilio Pozuelo Monfort Thu, 13 Jan 2011 11:58:52 +0000 empathy (2.91.4.3-1) experimental; urgency=low * New upstream release * Bump libgcr-dev build-dep * d/p/0001-Simplify-filter-adding-code-by-just-using-gdk_x11-fu.patch + Added simplify code and fix building against older gtk -- Sjoerd Simons Sun, 26 Dec 2010 14:09:03 +0100 empathy (2.91.4-1) experimental; urgency=low * New upstream release. - Bump libgtk3.0-dev and libtelepathy-glib-dev build requirements. -- Emilio Pozuelo Monfort Mon, 20 Dec 2010 18:58:37 +0000 empathy (2.91.3.1-1) experimental; urgency=low * New upstream release. - Bump libfolks and telepathy-glib build requirements. -- Emilio Pozuelo Monfort Tue, 14 Dec 2010 18:13:27 +0100 empathy (2.91.3-2) experimental; urgency=low * Add debian/empathy.bug-control: Include version of telepathy-connection-manager in bugreport (Closes: #604441) * debian/rules: Install bug-control file * Bump debhelper to 8 * debian/control: - Build-depend against gsettings-desktop-schemas-dev instead of gsettings-desktop-schemas (Closes: #605898) - Add gsettings-desktop-schemas as dependency for empathy package - Bump libgcr-dev build-dependency to 2.91.3 to avoid build issue -- Laurent Bigonville Sun, 05 Dec 2010 00:52:05 +0100 empathy (2.91.3-1) experimental; urgency=low [ Laurent Bigonville ] * debian/control: - Bump telepathy-logger to Depends (Closes: #595078) [ Sjoerd Simons ] * New upstream release * debian/control: fix typon the libfolks-telepathy-dev build-depends [ Emilio Pozuelo Monfort ] * New upstream release. - Remove the libgconf2-dev build dependency. - Build depend on gsettings-desktop-schemas. - Bump libfolks-dev build dependency to 0.3.2. - 0001-Stop-using-removed-Individual-convenience-methods-fr.patch: + Removed, applied upstream. * debian/control: - Use architecture wildwards. - Add myself to Uploaders. -- Emilio Pozuelo Monfort Wed, 01 Dec 2010 20:46:23 +0100 empathy (2.32.0.1-2) experimental; urgency=low * Re-enable map support -- Laurent Bigonville Wed, 03 Nov 2010 19:50:21 +0100 empathy (2.30.3-1) unstable; urgency=low * New upstream release * debian/control: - Bump Standards-Version to 3.9.1 - Use Breaks instead of Conflicts (per policy §7.4) -- Laurent Bigonville Mon, 11 Oct 2010 14:33:50 +0200 empathy (2.32.0.1-1) experimental; urgency=low * New upstream release - Bump libgtk2.0-dev build-dependency -- Laurent Bigonville Sun, 10 Oct 2010 16:34:01 +0200 empathy (2.32.0-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Thu, 30 Sep 2010 23:13:22 +0200 empathy (2.31.92-1) experimental; urgency=low * New upstream release - Bump libtelepathy-glib-dev build-dependency * debian/control: Add missing libgcr-dev build-dependency (Closes: #596522) -- Laurent Bigonville Sun, 19 Sep 2010 20:05:45 +0200 empathy (2.31.91-1) experimental; urgency=low [ Laurent Bigonville ] * New upstream release * debian/control: - Adjust build-dependencies [ Sjoerd Simons ] * Temporarily disable map support (libchamplain 0.8 isn't packages yet) -- Sjoerd Simons Sun, 05 Sep 2010 13:34:59 +0100 empathy (2.31.90-1) experimental; urgency=low * New upstream release * debian/control: - Bump build-dependencies -- Laurent Bigonville Thu, 19 Aug 2010 15:06:18 +0200 empathy (2.31.6-1) experimental; urgency=low * New upstream release * debian/control: - Bump Standards-Version to 3.9.1 (no further changes) - Adjust build-dependencies -- Laurent Bigonville Mon, 16 Aug 2010 23:14:39 +0200 empathy (2.31.5.1-1) experimental; urgency=low * New upstream release - Install manpages provided by upstream - Install new empathy-av component -- Laurent Bigonville Tue, 13 Jul 2010 17:33:52 +0200 empathy (2.31.4-1) experimental; urgency=low * New upstream release - debian/control: Adjust build-dependencies * Bump Standards-Version to 3.9.0 (no further changes) - debian/control: Use Breaks instead of Conflicts * debian/empathy.install: Install dconf schema instead of the gconf one * debian/rules: Pass --disable-schemas-compile to prevent schemas compiling at build time. * debian/control: Make empathy Recommends telepathy-logger and libdconf0 -- Laurent Bigonville Thu, 08 Jul 2010 12:04:18 +0200 empathy (2.30.2-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Sat, 26 Jun 2010 23:59:13 +0200 empathy (2.30.1.1-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Sun, 13 Jun 2010 19:06:19 +0200 empathy (2.31.3-1) experimental; urgency=low * New upstream release - Bump telepathy-glib-dev build-dependency -- Laurent Bigonville Tue, 08 Jun 2010 11:24:18 +0200 empathy (2.31.2-2) experimental; urgency=low * Add versionized depedency for gnome-icon-theme * Add Breaks for telepathy-butterfly (<< 0.5.10) as the contacts don't appear in the contact list with previous versions -- Laurent Bigonville Tue, 25 May 2010 15:31:33 +0200 empathy (2.31.2-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Mon, 24 May 2010 19:41:14 +0200 empathy (2.31.1-1) experimental; urgency=low * New upstream release - Bump libgtk2.0-dev and libtelepathy-glib-dev build-dep -- Laurent Bigonville Sat, 08 May 2010 14:53:57 +0200 empathy (2.30.1-2) unstable; urgency=low * Explicitly set "compression = bzip2" in debian/source/options -- Laurent Bigonville Sat, 08 May 2010 14:01:38 +0200 empathy (2.30.1-1) unstable; urgency=low * New upstream release * Re-enable geoclue support on kfreebsd-* archs -- Laurent Bigonville Sat, 01 May 2010 16:50:46 +0200 empathy (2.30.0.2-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Tue, 20 Apr 2010 17:57:54 +0200 empathy (2.30.0.1-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Fri, 09 Apr 2010 15:20:39 +0200 empathy (2.30.0-1) experimental; urgency=low * New upstream release * debian/watch: use .bz2 file -- Laurent Bigonville Sat, 03 Apr 2010 13:50:35 +0200 empathy (2.29.93-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Wed, 17 Mar 2010 21:28:57 +0100 empathy (2.29.92-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Sat, 13 Mar 2010 13:12:11 +0100 empathy (2.29.91.2-1) experimental; urgency=low * New upstream release * debian/copyright: Update file -- Laurent Bigonville Sun, 07 Mar 2010 14:42:56 +0100 empathy (2.29.91-1) experimental; urgency=low * New upstream release - debian/empathy-accounts.1: Add manpage for empathy-accounts binary - debian/empathy.install: Also install empathy-accounts.desktop * Bump Standards-Version (no further changes) -- Laurent Bigonville Mon, 22 Feb 2010 23:45:14 +0100 empathy (2.29.90-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Thu, 11 Feb 2010 20:27:11 +0100 empathy (2.28.2-3) unstable; urgency=low * debian/control: - Recommends freedesktop-sound-theme for empathy package (Closes: #526137) -- Laurent Bigonville Sun, 31 Jan 2010 20:45:36 +0100 empathy (2.29.6-1) experimental; urgency=low * New upstream release - Should now build correctly with gcc-4.5 (Closes: #564979) * debian/rules: Remove --enable-python flag -- Laurent Bigonville Wed, 27 Jan 2010 23:39:10 +0100 empathy (2.29.5.1-1) experimental; urgency=low * New upstream release - Bump libtelepathy-glib-dev build-dep * debian/control: - Suggests vino for empathy package (Closes: #562288) * debian/gbp.conf: Use bzip2 compression for orig tarball * Do not install empathy-accounts.1 and empathy-logs.1 manpages anymore -- Laurent Bigonville Tue, 12 Jan 2010 23:47:02 +0100 empathy (2.28.2-2) unstable; urgency=low * debian/control: - Suggests vino for empathy package (Closes: #562288) - Add Recommends to allow -dbg package to pull each other (Closes: #564679) -- Laurent Bigonville Tue, 12 Jan 2010 22:37:10 +0100 empathy (2.29.4-1) experimental; urgency=low * New upstream release * Enable in-tree nautilus-sendto plugin * debian/control: - Use better short description - Recommends freedesktop-sound-theme for empathy package (Closes: #526137) * Use new source package version "3.0 (quilt)" -- Laurent Bigonville Wed, 23 Dec 2009 00:10:21 +0100 empathy (2.28.2-1) unstable; urgency=low * New upstream release -- Laurent Bigonville Tue, 15 Dec 2009 18:43:31 +0100 empathy (2.28.1.2-2) unstable; urgency=low * debian/control: Fix typo (Closes: #559673) -- Laurent Bigonville Wed, 09 Dec 2009 18:14:50 +0100 empathy (2.29.3-1) experimental; urgency=low * New upstream release -- Laurent Bigonville Tue, 01 Dec 2009 13:53:52 +0100 empathy (2.28.1.2-1) unstable; urgency=low * New upstream release - Should now build correctly with --no-add-needed flag (Closes: #554325) * debian/control: Fix typo (packages->package) (Closes: #557373) -- Laurent Bigonville Thu, 26 Nov 2009 06:33:51 +0100 empathy (2.29.2-1) experimental; urgency=low * Merge with debian unstable * New upstream release - Bump build-dependencies - Should now build correctly with --no-add-needed flag (Closes: #554325) - IRC commands should now be passed to server (Closes: #549173) -- Laurent Bigonville Mon, 16 Nov 2009 23:40:52 +0100 empathy (2.28.1.1-4) unstable; urgency=low * Add symbols file for arch where geoclue support is disabled -- Laurent Bigonville Sat, 14 Nov 2009 20:45:54 +0100 empathy (2.28.1.1-3) unstable; urgency=low * Also do not try to build with geoclue support on non-linux arch -- Laurent Bigonville Sat, 14 Nov 2009 19:25:08 +0100 empathy (2.28.1.1-2) unstable; urgency=low * Do not try to build with networkmanager support on non-linux arch -- Laurent Bigonville Wed, 11 Nov 2009 22:56:43 +0100 empathy (2.29.1-1) experimental; urgency=low * New upstream release - Drop megaphone applet - Drop libempathy, libempathy-gtk and python-empathy packages - Rename empathy-doc to empathy-common (Closes: #547904) * debian/control: - Fix typo - packet -> package - Add Recommends on yelp for empathy-common (Closes: #553524) * Move GConf schema to empathy package -- Laurent Bigonville Wed, 04 Nov 2009 18:27:30 +0100 empathy (2.28.1.1-1) unstable; urgency=low * New upstream bugfix release * debian/patches/*: removed, all fixed upstream * debian/control: Recommend empathy-doc instead of depending on it -- Sjoerd Simons Mon, 26 Oct 2009 22:36:02 +0000 empathy (2.28.1-2) unstable; urgency=low * d/patches/0001-Ignoring-non-installed-languages.patch + Added. Fix a crash when trying to spell-check using a dictionary that's no longer installed. (from upstream git) * d/patches/0002-empathy-protocol-chooser-don-t-cache-TpConnectionMan.patch + Added. Prevent TpConnectionManager from being cached as it can be freed under out feet. Fixes a crash while managing accounts (Closes: #551265) (from upstream git) * d/patches/0003-empathy-chat-window-Don-t-update-the-Contact-menu-if.patch, d/patches/0004-Fix-crash-when-joining-a-chat-GTK_WIDGET_VISIBLE-is-.patch: + Added. Fixes Empathy blocking when a notication is displayed while the contact menu is open (from upstream git) -- Sjoerd Simons Sun, 25 Oct 2009 19:04:54 +0000 empathy (2.28.1-1) unstable; urgency=low * New upstream release. * debian/libempathy30.symbols: Updated. -- Jonny Lamb Tue, 20 Oct 2009 13:59:06 +0100 empathy (2.28.0.1-2) unstable; urgency=low * Add libempathy30-dbg, libempathy-gtk28-dbg and empathy-dbg packages. * debian/control: Add Conflicts and Replaces fields to libempathy{30,-gtk28} packages to make upgrades easier. Thanks to Andres Salomon for the "patch". (Closes: #548779) -- Jonny Lamb Sat, 17 Oct 2009 12:34:49 +0100 empathy (2.28.0.1-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Sun, 04 Oct 2009 13:09:34 +0100 empathy (2.28.0-1) unstable; urgency=low [ Laurent Bigonville ] * libempathy-gtk-dev: add missing Depends on libcanberra-gtk-dev [ Jonny Lamb ] * New upstream release. * debian/control: + Upped build-depend versions on libtelepathy-glib and libchamplain. -- Jonny Lamb Mon, 21 Sep 2009 23:23:38 +0100 empathy (2.27.92-1) experimental; urgency=low * New upstream release - Drop debian/patches/0001-Remove-libmissioncontrol-deps.patch: fixed upstream - Bump libraries soname and adjust .symbols files * Split GNOME documentation out of arch-dependent package -- Laurent Bigonville Wed, 09 Sep 2009 19:28:22 +0200 empathy (2.27.91.1-3) experimental; urgency=low * debian/control: - Add missing build-deps - Add missing dependencies to -dev packages (LP: #423174) * Re-enable map support now that new versions of champlain and clutter are in debian -- Laurent Bigonville Thu, 03 Sep 2009 12:08:00 +0200 empathy (2.27.91.1-2) experimental; urgency=low * debian/control: + Remove libtelepathy-dev dependency from libempathy-dev + Remove libmissioncontrol-dev dependency from libempathy-dev * debian/patches/0001-Remove-libmissioncontrol-deps.patch: * Remove missioncontrol deps from the pc files, patch from upstream git -- Sjoerd Simons Thu, 27 Aug 2009 10:20:15 +0100 empathy (2.27.91.1-1) experimental; urgency=low * New upstream release. * debian/control: + Upped dependencies as appropriate for the new release. + Upped Standards-Version. (no changes) + Upped sonames as appropriate. + s/Gadu Gadu/Gadu-Gadu/g + Change dep on libempathy29 to telepathy-mission-control-5. * debian/rules: + Use --with-connectivity instead of --enable-network-manager. * Disable building with map as new enough clutter-gtk and champlain packages aren't in the archive yet. * debian/libempathy-common.install: Don't install profiles anymore. * debian/empathy.install: Don't try to install omf files. * debian/*.symbols: Updated. * debian/{empathy,libempathy-common}.install: Update to include some new files. -- Jonny Lamb Wed, 26 Aug 2009 10:36:05 +0100 empathy (2.27.5-1) experimental; urgency=low * New Upstream Version - Bump libraries soname and adjust .symbols files * debian/control: - Add geoclue-yahoo recommends for libempathy-gtk - Use more meaningful desctiptions (LP: #259788) * debian/update-patches.mk: Update script to work with recent git version * Enable network manager support -- Laurent Bigonville Tue, 04 Aug 2009 11:20:18 +0200 empathy (2.27.3-2) experimental; urgency=low * debian/rules: Remove duplicate include * debian/control: - Bump Standards-Version (no further changes) - Drop all conflicts, packages not even in old-stable anymore * Enable Adium themes support - debian/rules: Pass --enable-webkit to configure - debian/control: Add libwebkit-dev build-dep - debian/libempathy-gtk24.symbols: Add new exported symbols * Enable geoclue support - debian/rules: Pass --enable-location to configure - debian/control: Add libgeoclue-dev build-dep - debian/libempathy-gtk24.symbols: Add new exported symbols * Enable map (champlain) support - debian/rules: Pass --enable-map to configure - debian/control: Add libchamplain-0.3-dev, libchamplain-gtk-0.3-dev and libclutter-gtk-0.8-dev build-dep -- Laurent Bigonville Tue, 23 Jun 2009 11:10:25 +0200 empathy (2.27.3-1) experimental; urgency=low * New upstream release. - Bump libraries soname and adjust .symbols files * debian/control: Bump libtelepathy-glib-dev build-dep * debian/libempathy-gtk-common.install: Add default adium theme -- Laurent Bigonville Wed, 17 Jun 2009 20:38:21 +0200 empathy (2.27.2-1) experimental; urgency=low * New upstream release - Bump libraries soname and adjust .symbols files -- Laurent Bigonville Sun, 31 May 2009 16:52:39 +0200 empathy (2.27.1.1-1) experimental; urgency=low * New upstream release - Bump libraries soname and adjust .symbols files * debian/control: - Bump libgtk2.0-dev and libtelepathy-glib-dev build-dep - Bump libgtk2.0-dev dependency for libempathy-gtk-dev - Remove all libglade references * debian/libempathy-gtk-common.install: now install .ui files instead of .glade files * Bump debhelper version to 7 -- Laurent Bigonville Tue, 19 May 2009 14:18:13 +0200 empathy (2.26.2-1) unstable; urgency=low [ Jonny Lamb ] * debian/control: Added haze and butterfly as empathy Suggests. [ Laurent Bigonville ] * New upstream release -- Laurent Bigonville Mon, 18 May 2009 21:43:25 +0200 empathy (2.26.1-1) unstable; urgency=low * New upstream release * debian/control: Add Homepage field -- Laurent Bigonville Tue, 14 Apr 2009 11:44:14 +0200 empathy (2.26.0-1) unstable; urgency=low * New Upstream Version - Bump libtelepathy-glib-dev build-dependency - Bump libempathy soname and adjust .symbols file * debian/control: - Bump Standards-Version to 3.8.1 (no further changes) - Remove telepathy-stream-engine recommends and conflicts * python-empathy.install: Fix FTBFS with python >= 2.6 -- Laurent Bigonville Wed, 18 Mar 2009 13:18:54 +0100 empathy (2.25.92-1) unstable; urgency=low * New Upstream Version * Bump libempathy soname again -- Sjoerd Simons Tue, 03 Mar 2009 23:46:29 +0000 empathy (2.25.91-2) unstable; urgency=low [ Laurent Bigonville ] * debian/control: Add minimal version for libtelepathy-farsight-dev build-dep [ Jonny Lamb ] * Upload to unstable. -- Jonny Lamb Tue, 03 Mar 2009 18:05:50 +0000 empathy (2.25.91-1) experimental; urgency=low [ Sjoerd Simons ] * debian/patches/0001-Set-initial-value-for-sound-pref-checkboxes.patch - Removed, fixed upstream [ Jonny Lamb ] * New upstream release. + Bumped libempathy{,-gtk} sonames. * debian/gbp.conf: Removed no-create-orig field. * debian/control: + Added myself to Uploaders. + Removed XS-Dm-Upload-Allowed field. + Upped build-dep on libtelepathy-glib-dev to >= 0.7.21. + Removed duplicate Section fields. + Made short descriptions unique. * debian/libempathy21.symbols: Updated symbols file. * debian/libempathy-gtk19.symbols: Updated symbols file. * debian/empathy-logs.1: Added new manpage. * debian/copyright: Completely rewrote. -- Jonny Lamb Fri, 27 Feb 2009 15:20:03 +0000 empathy (2.25.4-1) experimental; urgency=low [ Simon McVittie ] * Switch packaging to git * Add gbp.conf (for git-buildpackage) and `debian/rules update-patches` target * Add README.source [ Sjoerd Simons ] * New Upstream Version * debian/control: Add libcanberra-gtk-dev to build-depends * debian/control: Bump libempathy soname from 17 to 19 * debian/libempathy-gtk17.symbols: Update with new symbols * debian/libempathy19.symbols: Update with new symbols * debian/patches/0001-Set-initial-value-for-sound-pref-checkboxes.patch - Added. Set the initial values of the sound preferences from the configuration. (From upstream git) -- Sjoerd Simons Wed, 07 Jan 2009 18:33:49 +0000 empathy (2.25.3-1) experimental; urgency=low * New upstream release - Bump libempathy-gtk soname - Fix symbols files * debian/control: - Bump libgtk2.0-dev build-dependency - Drop libgnomeui-dev build-dep * Drop debian/patches/64bit-build-fix.patch: fixed upstream -- Laurent Bigonville Sat, 20 Dec 2008 21:45:15 +0100 empathy (2.25.2-2) experimental; urgency=low * debian/patches/64bit-build-fix.patch: - Fix build on 64 bit platforms -- Sjoerd Simons Thu, 04 Dec 2008 00:46:53 +0000 empathy (2.25.2-1) experimental; urgency=low * New upstream release. - Bump libtelepathy-glib-dev build-dep and add libgnomeui-dev - Bump soname of libempathy -- Laurent Bigonville Mon, 01 Dec 2008 21:35:56 +0100 empathy (2.24.1-1) experimental; urgency=low * New upstream release. -- Laurent Bigonville Mon, 20 Oct 2008 21:12:27 +0200 empathy (2.24.0-1) experimental; urgency=low * New upstream release. -- Laurent Bigonville Mon, 22 Sep 2008 21:37:47 +0200 empathy (2.23.92-1) experimental; urgency=low * New upstream release - Adjust libempathy-gtk15.symbols * Use my debian.org address in Uploaders -- Laurent Bigonville Tue, 09 Sep 2008 19:03:12 +0200 empathy (2.23.90-2) experimental; urgency=low * debian/libempathy14.symbols: Fix version of an exported symbol * Use rarian-compat and librarian-dev instead of scrollkeeper as build-dep * Bump build-deps and remove libtelepathy-dev (not needed anymore) * Remove --enable-voip flags (voip enabled by default), rename --enable-aspell to --enable-spell * Add explicit build-depends against libglib2.0-dev * Install gnome help and omf files in empathy package -- Laurent Bigonville Mon, 25 Aug 2008 08:04:11 +0200 empathy (2.23.90-1) experimental; urgency=low * New upstream release. -- Dafydd Harries Sun, 24 Aug 2008 22:03:36 +0100 empathy (0.23.4-1) experimental; urgency=low [ Laurent Bigonville ] * Bump Standards-Version to 3.8.0 (no further changes) [ Sjoerd Simons ] * New upstream release * Bumped soname of libempathy-gtk again and update symbols file * Add a version depend on telepathy-glib-dev matching the configure.ac -- Sjoerd Simons Sat, 02 Aug 2008 22:08:58 +0100 empathy (0.23.3-3) unstable; urgency=low * Use my debian.org address in Uploaders * debian/patches/00empathy_486683.patch: Fix crash when adding SIP contacts (Closes: #486683) -- Laurent Bigonville Sat, 25 Oct 2008 00:30:02 +0200 empathy (0.23.3-2) unstable; urgency=low * Add recommend on gvfs-backends. These are used for the url handlers in the chat window. * debian/patches/00_mark_unknown_presence_id_as_unset.patch + Added. Mark presence as unknown when the presence string isn't recognized -- Sjoerd Simons Sat, 02 Aug 2008 19:56:46 +0100 empathy (0.23.3-1) unstable; urgency=low [ Sjoerd Simons ] * New upstream release (0.23.3) * Bump libempathy and libempathy-gtk sonames * debian/*.symbols: Remove the debian version number from all symbols [ Laurent Bigonville ] * New upstream release (0.23.2) - Bump libempathy and libempathy-gtk soname and fix symbols files * Add dbus-x11 dependency on empathy package (Closes: #480486) * Add licence information about files libempathy-gtk/totem-subtitle-encoding.c and libempathy-gtk/totem-subtitle-encoding.h -- Sjoerd Simons Fri, 06 Jun 2008 17:14:31 +0100 empathy (0.23.1-1) unstable; urgency=low [ Laurent Bigonville ] * debian/control: Add telepathy-stream-engine as a recommends for empathy package [ Sjoerd Simons ] * New upstream release * debian/control: Add conflict with older version of stream-engine * debian/patches/00_fix_python_bindings.patch: - Removed. Fixed upstream * debian/patches/01_remove_unused_code.patch: - Removed. Fixed upstream * Bump libempathy and libempathy-gtk soname * debian/control: Add build-depend on gnome-doc-utils [ Simon McVittie ] * Use my debian.org address in Uploaders -- Sjoerd Simons Thu, 01 May 2008 11:42:57 +0200 empathy (0.22.1-1) unstable; urgency=low * debian/rules, debian/empathy.install: Enable VOIP support * debian/empathy.install: Chat handler is now part of the main empathy process * debian/patches/00_fix_python_bindings.patch: + Added. Don't try to import objects that don't exist anymore (from upstream git) (Closes: #474260) * debian/patches/01_remove_unused_code.patch: + Added. Remove unused code. Fixes compilation errors with Gcc 4.3 (Closes: #466817) * debian/libempathy-gtk11.symbols, debian/libempathy-gtk11.shlibs: Update symbols and shlibs -- Sjoerd Simons Sun, 06 Apr 2008 23:33:50 +0200 empathy (0.22.0-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Mon, 10 Mar 2008 16:39:07 +0100 empathy (0.21.91-1) unstable; urgency=low * New upstream release * debian/patches/00_set_null_presence_message.patch: - Removed. Merged upstream * debian/control: Add xsltproc to build-depends * Bump libempathy and libempathy-gtk soname to 11 * debian/control: Bump libtelepathy-dev build-depend to 0.3.1 * debian/libempathy-common.install: Add irc network definitions -- Sjoerd Simons Mon, 03 Mar 2008 20:45:26 +0100 empathy (0.21.90-2) unstable; urgency=low * debian/*.symbols: Remove the debian versioning * debian/patches/00_set_null_presence_message.patch: - Added. If there is no presence-message, (re)set it to NULL. So the UI can choose the right default message -- Sjoerd Simons Sun, 10 Feb 2008 12:46:53 +0100 empathy (0.21.90-1) unstable; urgency=low * New upstream release * Removed patches merge upstream: - debian/patches/fix-pyftbfs.patch - debian/patches/accounts-icons-path.patch * Bump sonames for libempathy and libempathy-gtk -- Sjoerd Simons Sat, 09 Feb 2008 23:25:59 +0100 empathy (0.21.5.2-1) unstable; urgency=low [ Laurent Bigonville ] * New upstream release (0.21.5.2) * Add XS-Dm-Upload-Allowed: yes, really * Bump libmissioncontrol-client-dev build-dep version * Bump soname of libempathy-gtk * Drop debian/msn-haze.profile: merged upstream * debian/patches/fix-pyftbfs.patch: Fix FTBFS of the python binding (taken from upstream) * debian/patches/accounts-icons-path.patch: Fix search path for icons (taken from upstream) * debian/rules: remove installed test program [ Sjoerd Simons ] * Add symbol files for libempathy and libempathy-gtk * libempathy7: Bumped shlibs * debian/libempathy-common.install: Install empathy-log-manager.xsl * debian/libempathy-common, debian/libempathy-gtk-common.install: Install empathy-chatroom-manager.dtd in libempathy-common instead of libempathy-gtk-common * debian/control: Let libempathy-common conflict with older versions of libempathy-gtk-common * debian/rules: Disable the building of tests -- Sjoerd Simons Mon, 21 Jan 2008 20:28:49 +0100 empathy (0.21.4-1) unstable; urgency=low [ Laurent Bigonville ] * New upstream release * Bump Standards-Version to 3.7.3, no further changes. [ Sjoerd Simons ] * debian/patches/fix_setting_avatar.patch - Added. Fix setting avatars * debian/patches/listen_to_presence_changed.patch - Added. Listen to the PresenceChanged signal from the MC instead of the deprecated PresenceStatusActual. -- Sjoerd Simons Sat, 05 Jan 2008 19:06:01 +0100 empathy (0.21.3-1) unstable; urgency=low * New upstream release * Add XS-Dm-Upload-Allowed: yes * Bump soname of both libraries * Drop debian/patches/00_configure.patch: applied upstream * Make -common packages arch:all and let the libs depends on ${source:Version} of their respective -common packages again. * Let the -dev packages depends on ${binary:Version} of their respective lib packages. -- Laurent Bigonville Tue, 04 Dec 2007 00:00:31 +0100 empathy (0.21.2-2) unstable; urgency=low * debian/patches/00_configure.patch - Added. Use the pkg-config file for X11 to get the right linker arguments Fixes FTBFS (Closes: #451902) -- Sjoerd Simons Wed, 21 Nov 2007 20:59:11 +0100 empathy (0.21.2-1) unstable; urgency=low [ Laurent Bigonville ] * New upstream release, bump soname for both libraries * Drop debian/patch/add-haze-profiles.patch and add debian/msn-haze.profile to avoid patching autofoo, installing it via debian/rules * debian/empathy.install: empathy.desktop is now installed in /etc/xdg/autostart/ * debian/libempathy-gtk-common.install: - Also install icons that are under /usr/share/empathy/icons/ * debian/control: - Add gnome-icon-theme to libempathy-gtk-common dependencies - Bump libmissioncontrol-client-dev build-dep version * Add manpages for empathy and empathy-account, thanks to Simon McVittie (Closes: #448620) * Use now official Vcs-* field * Install empathy-chat-chandler in /usr/lib/empathy/ * Disable voip support and remove recommends for tp-se, not stable enough yet * Install .desktop file in /usr/share/applications [ Sjoerd Simons ] * debian/control: Let the libs depend on ${binary:Version} of their respective -common packages. -- Sjoerd Simons Fri, 16 Nov 2007 11:03:08 +0100 empathy (0.14-1) unstable; urgency=low [ Loic Minier ] * Fix typo in control. [ Laurent Bigonville ] * New upstream version - Drop debian/patches/disable-voip.patch, applied upstream * Enable VOIP and add telepathy-stream-engine to Recommends -- Laurent Bigonville Mon, 01 Oct 2007 18:46:11 +0200 empathy (0.13-1) unstable; urgency=low [ Laurent Bigonville ] * New upstream release, bump soname for libempathy and libempathy-gtk - Drop build-dep on libgnomeui-dev - Add build-dep on libpanel-applet2-dev - Bump build-dep version of libgtk2.0-dev - Build and install the megaphone applet - Add libtelepathy-dev as build-dep * Fix typo in libempathy-dev description * debian/patches/add-haze-profiles.patch: ship .profile files to support telepathy-haze (Closes: #444032) [ Sjoerd Simons ] * debian/patches/disable-voip.patch: Disable voip user interface elements as their noops in this version. * debian/copyright: Updated -- Sjoerd Simons Sat, 29 Sep 2007 18:41:39 +0200 empathy (0.12-2) unstable; urgency=low * debian/control: Let the -common packages conflict and replace the old empathy * debian/control: Let libempathy-gtk-dev depends on libglade2-dev instead of libglade-dev * debian/control: Tighten depends of libempathy-gtk-dev a bit more -- Sjoerd Simons Sat, 08 Sep 2007 21:00:58 +0200 empathy (0.12-1) unstable; urgency=low [ Sjoerd Simons ] * New upstream release * Conflict with cohoba and gossip-telepathy [ Laurent Bigonville ] * debian/control: - Add myself as Uploaders - Add libaspell-dev and iso-codes as build-dep and enable spellchecker - Add XS-Vcs-Bzr field - Bump mission-control build-dep - Remove unneeded libmissioncontrol-sever builddep and rename libmissioncontrol-dev to libmissioncontrol-client-dev [ Loic Minier ] * Tweak copyright. * Wrap build-deps and deps. * Use HTTP in watch file. * Include CDBS' utils.mk. [ Sjoerd Simons ] * Added build-depend on libebook1.2-dev * Split up empathy into a whole slew of packages * Set linker flags to -Wl,-z,defs -Wl,-O1 * debian/rules: Call dh_pysupport on python-empathy * debian/control, debian/rules: Explicitely enable the python bindings -- Sjoerd Simons Sat, 25 Aug 2007 18:41:08 +0200 empathy (0.8-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Sat, 23 Jun 2007 14:45:31 +0100 empathy (0.7-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Mon, 11 Jun 2007 10:31:19 +0200 empathy (0.6-1) unstable; urgency=low [ Dafydd Harries ] * Add watch file. [ Sjoerd Simons ] * New upstream release -- Sjoerd Simons Mon, 04 Jun 2007 09:27:47 +0200 empathy (0.5-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Sat, 26 May 2007 19:02:41 +0200 empathy (0.4-1) unstable; urgency=low * New upstream release -- Sjoerd Simons Sun, 20 May 2007 15:31:42 +0200 empathy (0.3-1) unstable; urgency=low * Initial release -- Sjoerd Simons Mon, 14 May 2007 22:32:24 +0200 debian/account-plugin-gadugadu.install0000664000000000000000000000013712317274061015273 0ustar usr/share/accounts/providers/gadugadu.provider usr/share/accounts/services/gadugadu-im.service debian/account-plugin-zephyr.install0000664000000000000000000000013312317274061015027 0ustar usr/share/accounts/providers/zephyr.provider usr/share/accounts/services/zephyr-im.service debian/indicators/0000775000000000000000000000000012317274061011332 5ustar debian/indicators/empathy0000664000000000000000000000005012317274061012717 0ustar /usr/share/applications/empathy.desktop debian/README.source0000664000000000000000000000331412317274061011353 0ustar Patches ======= This package uses cdbs simple-patch-system to store modifications to the upstream source. To get the fully patched source: make -f debian/rules patch To revert to what's in git: make -f debian/rules unpatch To add a patch: obtain a diff and put it in debian/patches, or see below To remove an existing patch: delete it from debian/patches Packaging using git =================== The repository contains an appropriate debian/gbp.conf to build this package using git-buildpackage. The debian branch contains the latest upstream versions (for unstable, or experimental while a freeze is in progress). The debian-lenny branch contains versions targeted for lenny, etc. Here's how to build it: git clone git://git.debian.org/git/pkg-telepathy/empathy.git cd empathy git checkout debian git-buildpackage -us -uc or for testing/stable branches like debian-lenny: git clone git://git.debian.org/git/pkg-telepathy/empathy.git cd empathy git checkout debian-lenny git-buildpackage -us -uc --git-debian-branch=debian-lenny The branch 'upstream' is a copy of the contents of upstream tarballs. To import upstream tarballs use: git checkout debian git-import-orig ~/empathy-2.x.tar.gz The branch 'debian-patches' is 'upstream' plus any patches needed for Debian. It should be rebased on 'upstream' after each upstream release: git checkout debian-patches git rebase upstream The preferred way of adding patches is to cherry pick from an upstream repository: git remote add gnome \ git://git.gnome.org/empathy.git git fetch git checkout debian-patches git cherry-pick xxxxxxxxxxxxxx git checkout debian fakeroot debian/rules update-patches debian/account-plugin-aim.install0000664000000000000000000000012512317274061014255 0ustar usr/share/accounts/providers/aim.provider usr/share/accounts/services/aim-im.service