--- pidgin-2.5.5.orig/debian/pidgin-dev.preinst +++ pidgin-2.5.5/debian/pidgin-dev.preinst @@ -0,0 +1,42 @@ +#!/bin/sh +# preinst script for pidgin-dev +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + if dpkg --compare-versions "$2" lt 1:2.1.1-2; then + if [ -h /usr/share/doc/pidgin-dev ]; then + rm /usr/share/doc/pidgin-dev + fi + fi + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- pidgin-2.5.5.orig/debian/prefs.xml +++ pidgin-2.5.5/debian/prefs.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --- pidgin-2.5.5.orig/debian/pidgin-dev.doc-base +++ pidgin-2.5.5/debian/pidgin-dev.doc-base @@ -0,0 +1,9 @@ +Document: pidgin-dev +Title: Gaim API Manual +Abstract: This manual describes the Gaim programming interface + for use by Gaim plugins and scripts. +Section: devel + +Format: HTML +Index: /usr/share/doc/pidgin-dev/html/index.html +Files: /usr/share/doc/pidgin-dev/html/*.html --- pidgin-2.5.5.orig/debian/README.Debian.dev +++ pidgin-2.5.5/debian/README.Debian.dev @@ -0,0 +1,25 @@ +README for pidgin-dev - How to package Pidgin plugins +------------------------------------------------- + +First, let me explain the current Pidgin versioning scheme (as of 1.0.0): +Every time the plugin API in pidgin is made backwards-incompatible with +previous versions, the major version number (the first number before the .) +is incremented. So if currently in the pidgin 2.x series, the next +time the API will change such that plugins may need to be changed is +at 3.0.0. + +pidgin plugin packages should be named pidgin-, so for +Guifications, the package name should be pidgin-guifications. Plugin packages +should build-depend on pidgin-dev (>= minimum pidgin version required to +support plugin). Normally the minimum version of pidgin-dev will just +be 2.0.0 for the 2.x series, or higher if the plugin uses a new function +introduced in a later version. + +Plugin packages should also use dh_pidgin to set the correct dependencies +for the resulting package. dh_pidgin is included in the pidgin-dev package, +and can be used by making sure the Depends: field in the plugin package's +debian/control file contains "${misc:Depends}", the Conflicts: field contains +"${misc:Conflicts}", as well as calling dh_pidgin from debian/rules, normally +in the install rule. + +-- Ari Pollak 25 Sep 2006 --- pidgin-2.5.5.orig/debian/copyright.in +++ pidgin-2.5.5/debian/copyright.in @@ -0,0 +1,97 @@ +pidgin was initially packaged for Debian by Ari Pollak +on Sun, Apr 8 2007. + +It was downloaded from: + http://www.pidgin.im + +Purple/Pidgin/Finch is the legal property of its developers. +Please refer to the COPYRIGHT file distributed with this source distribution. +The contents of the COPYRIGHT file is included here: +@PIDGIN_COPYRIGHT@ + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License as +published by the Free Software Foundation; either version 2 of +the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL file. + +-------------------- + +The code for the GG protocol plugin (libpurple/protocols/gg/lib) has the +following copyright notice: + + (C) Copyright 2001-2003 Wojtek Kaniewski + Robert J. Woźny + Arkadiusz Miśkiewicz + Tomasz Chiliński + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License Version + 2.1 as published by the Free Software Foundation. + +On Debian systems, the complete text of the GNU Lesser General Public +License Version 2.1 can be found in /usr/share/common-licenses/LGPL-2.1 file. + +-------------------- + +The code for the OSCAR protocol (libpurple/protocols/oscar) has the following +copyright notice: + +This file is the legal property of its developers. +Please see the AUTHORS file distributed alongside this file. +The contents of the AUTHORS file is included here: +@OSCAR_AUTHORS@ + +This library is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +-------------------- + +The code for libzephyr (libpurple/protocols/zephyr), which is not built for the +Debian package, has the following copyright notices: + +Copyright 1987,1988 by the Massachusetts Institute of Technology + +All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of the Massachusetts +Institute of Technology (M.I.T.) not be used in advertising or publicity +pertaining to distribution of the software without specific, written +prior permission. + +M.I.T. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +M.I.T. BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR +ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +SOFTWARE. + + +Copyright 1987, 1989 by the Student Information Processing Board + of the Massachusetts Institute of Technology + +Permission to use, copy, modify, and distribute this software +and its documentation for any purpose and without fee is +hereby granted, provided that the above copyright notice +appear in all copies and that both that copyright notice and +this permission notice appear in supporting documentation, +and that the names of M.I.T. and the M.I.T. S.I.P.B. not be +used in advertising or publicity pertaining to distribution +of the software without specific, written prior permission. +M.I.T. and the M.I.T. S.I.P.B. make no representations about +the suitability of this software for any purpose. It is +provided "as is" without express or implied warranty. --- pidgin-2.5.5.orig/debian/TODO +++ pidgin-2.5.5/debian/TODO @@ -0,0 +1,2 @@ +- Add a dh_finch for people who want to package plugins for +it. --- pidgin-2.5.5.orig/debian/pidgin-dbg.preinst +++ pidgin-2.5.5/debian/pidgin-dbg.preinst @@ -0,0 +1,42 @@ +#!/bin/sh +# preinst script for pidgin-dbg +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + if dpkg --compare-versions "$2" lt 1:2.1.1-2; then + if [ -h /usr/share/doc/pidgin-dbg ]; then + rm /usr/share/doc/pidgin-dbg + fi + fi + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- pidgin-2.5.5.orig/debian/watch +++ pidgin-2.5.5/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://sf.net/pidgin/pidgin-([\d.]+)\.tar\.gz --- pidgin-2.5.5.orig/debian/libpurple0.install +++ pidgin-2.5.5/debian/libpurple0.install @@ -0,0 +1,7 @@ +debian/tmp/usr/lib/libpurple*.so.* +debian/tmp/usr/lib/purple-2 +debian/tmp/usr/lib/perl5/Purple.pm +debian/tmp/usr/lib/perl5/auto/Purple +debian/tmp/usr/share/man/*/Purple.* +debian/tmp/usr/share/purple +debian/lintian-override/libpurple0 usr/share/lintian/overrides --- pidgin-2.5.5.orig/debian/dh_pidgin +++ pidgin-2.5.5/debian/dh_pidgin @@ -0,0 +1,67 @@ +#! /usr/bin/perl -w + +=head1 NAME + +dh_pidgin- depend on the appropriate version of pidgin + +=cut + +use strict; +use Debian::Debhelper::Dh_Lib; + +=head1 SYNOPSIS + +B [S>] + +=head1 DESCRIPTION + +dh_pidgin is a debhelper program that is responsible for generating +the ${misc:Depends} substitutions that depend on the correct versions of pidgin, +and adding them to substvars files. + +To use this program, make sure it is executed in debian/rules at some point +during the build process (normally during the install), and make sure that +your Depends: field in debian/control contains ${misc:Depends}. + +=cut + +init(); + +my ($pidgin_epoch, $pidgin_version, $next_version, $pidgin_major, $pidgin_minor, + $pidgin_rest); +$pidgin_version = `dpkg -s pidgin`; +$pidgin_version =~ /^Version:\s*([\S]+)/m; +$pidgin_version = $1; + +if (! defined $pidgin_version) { + error("pidgin is not installed. (Probably forgot to Build-Depend on pidgin)"); +} +if ($pidgin_version =~ m/(\d+:)?(\d+)\.(\d+)\.(.*)/) { + $pidgin_epoch = $1 || ""; + $pidgin_major = $2; + $pidgin_minor = $3; + $pidgin_rest = $4; +} else { + error("Unable to parse pidgin version out of '$pidgin_version'"); +} + +$next_version = $pidgin_epoch . ($pidgin_major + 1) . ".0"; +$pidgin_version = $pidgin_epoch . $pidgin_major . "." .$pidgin_minor; + +foreach my $package (@{$dh{DOPACKAGES}}) { + my $tmp=tmpdir($package); + addsubstvar($package, "misc:Depends", "pidgin", ">= $pidgin_version"); + addsubstvar($package, "misc:Depends", "pidgin", "<< $next_version"); + addsubstvar($package, "misc:Conflicts", "pidgin", ">= $next_version"); +} + +=head1 SEE ALSO + +L + +=head1 AUTHOR + +Written by Tollef Fog Heen , based on various other +dh_* commands written by Joey Hess . + +=cut --- pidgin-2.5.5.orig/debian/libpurple-bin.manpages +++ pidgin-2.5.5/debian/libpurple-bin.manpages @@ -0,0 +1 @@ +debian/purple-remote.1 --- pidgin-2.5.5.orig/debian/control +++ pidgin-2.5.5/debian/control @@ -0,0 +1,152 @@ +Source: pidgin +Section: net +Priority: optional +Maintainer: Ubuntu Core Developers +XSBC-Original-Maintainer: Ari Pollak +Build-Depends: cdbs (>= 0.4.37), debhelper (>= 5.0.0), intltool + libgtk2.0-dev, libxss-dev, libmeanwhile-dev, libgadu-dev (>= 1:1.6+20060215-1), + libnss3-dev (>= 3.11.7-1), tcl8.4-dev, tk8.4-dev, libgstreamer0.10-dev, + libgtkspell-dev, libltdl3-dev, libperl-dev, + libstartup-notification0-dev, libzephyr-dev, libxml2-dev, + libebook1.2-dev, libedata-book1.2-dev, libcamel1.2-dev, + libdbus-glib-1-dev, dbus, python (>= 2.4), libavahi-client-dev, + libavahi-glib-dev, libxml-parser-perl, libncursesw5-dev, libsasl2-dev, + xsltproc, doxygen, libsilc-1.1-2-dev | libsilc-dev (>= 1.1.1), + libsqlite3-dev (>= 3.3), ca-certificates, liblaunchpad-integration-dev, intltool, + network-manager-dev +Standards-Version: 3.7.2 +XS-Vcs-Svn: svn://svn.debian.org/svn/collab-maint/deb-maint/pidgin/ +XS-Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/pidgin/ +Homepage: http://www.pidgin.im + +Package: libpurple0 +Architecture: any +Depends: pidgin-data (>= ${source:Upstream-Version}), pidgin-data (<< ${source:Upstream-Version}-z), ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libsasl2-modules +Recommends: ca-certificates, libpurple-bin +Replaces: pidgin (<< 1:2.1.1-2), pidgin-data (<< 1:2.4.0-1) +Conflicts: pidgin (<< 1:2.1.1-2), pidgin-data (<< 1:2.4.0-1) +Suggests: ${shlibs:Suggests} +Description: multi-protocol instant messaging library + libpurple is a library intended to be used by programmers seeking + to write an IM client that connects to many IM networks. + Currently supported are: AIM/ICQ, Yahoo!, MSN, IRC, Jabber, Napster, Zephyr, + Gadu-Gadu, Bonjour, Groupwise, Sametime, SILC, and SIMPLE. + . + Some extra packages are suggested to use increased functionality: + * tcl8.4, tk8.4: + - Support for writing plugins with Tcl/Tk + +Package: pidgin +Architecture: any +Depends: pidgin-data (>= ${source:Upstream-Version}), pidgin-data (<< ${source:Upstream-Version}-z), ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends} +Conflicts: gaim (<< 1:2.0.0+beta6-3), pidgin-data (<< 1:2.4.0-1) +Replaces: gaim (<< 1:2.0.0+beta6-3), pidgin-data (<< 1:2.4.0-1) +Recommends: gstreamer0.10-plugins-base, gstreamer0.10-plugins-good +Suggests: gnome-panel (>= 2.1) | kdebase-workspace-bin | docker, evolution-data-server (>= 1.10.0), ${shlibs:Suggests} +Description: graphical multi-protocol instant messaging client for X + Pidgin is a graphical, modular Instant Messaging client capable of using + AIM/ICQ, Yahoo!, MSN, IRC, Jabber, Napster, Zephyr, Gadu-Gadu, Bonjour, + Groupwise, Sametime, SILC, and SIMPLE all at once. + . + Some extra packages are recommended to use the core functionality present + in most pidgin installations: + * gstreamer0.10-plugins-base, gstreamer0.10-plugins-good + - Sound support. + . + More extra packages are suggested to use increased functionality: + * gnome-panel | kdebase-workspace-bin | docker: + - To use the system tray icon functionality (minimizing to an icon, having + the icon blink when there are new messages, etc.) + * evolution-data-server: + - For interfacing with an Evolution address book + * libsqlite3-0: + - To use Contact Availability Prediction plugin + +Package: pidgin-data +Architecture: all +Depends: ${misc:Depends} +Enhances: libpurple0, finch, pidgin +Description: multi-protocol instant messaging client - data files + This package contains architecture-independent supporting data files + required for use with pidgin, such as documentation, icons, translations, + and sounds. + +Package: pidgin-dev +Section: devel +Architecture: all +Depends: pidgin (>= ${source:Version}), pkg-config, libpurple-dev, libgtk2.0-dev +Conflicts: gaim-dev (<< 1:2.0.0+beta6-3) +Replaces: gaim-dev (<< 1:2.0.0+beta6-3) +Suggests: doc-base +Description: multi-protocol instant messaging client - development files + This package contains the headers and other development files not included in + the main pidgin package. Install this if you wish to compile your own plugins. + . + If you are creating a pidgin plugin package, please be sure to read + /usr/share/doc/pidgin-dev/README.Debian.dev after installing pidgin-dev. + +Package: pidgin-dbg +Priority: extra +Architecture: any +Depends: pidgin (= ${binary:Version}) | finch (= ${binary:Version}) | libpurple0 (= ${binary:Version}), pidgin-data (= ${source:Version}), ${shlibs:Depends} +Conflicts: gaim-dbg (<< 1:2.0.0+beta6-3) +Replaces: gaim-dbg (<< 1:2.0.0+beta6-3) +Description: Debugging symbols for Pidgin + This package includes the debugging symbols useful for debugging Pidgin + and its plugins, contained in the pidgin package. The debugging symbols are + used for execution tracing and core dump analysis. + +Package: finch +Architecture: any +Depends: pidgin-data (>= ${source:Upstream-Version}), pidgin-data (<< ${source:Upstream-Version}-z), ${shlibs:Depends}, ${misc:Depends} +Recommends: gstreamer0.10-plugins-base, gstreamer0.10-plugins-good +Replaces: gaim (<< 1:2.0.0+beta6-3), pidgin (<< 1:2.1.1-2), pidgin-data (<< 1:2.4.0-1) +Conflicts: gaim (<< 1:2.0.0+beta6-3), pidgin (<< 1:2.1.1-2), pidgin-data (<< 1:2.4.0-1) +Suggests: ${shlibs:Suggests} +Description: text-based multi-protocol instant messaging client + Finch is a text/console-based, modular instant messaging client capable of + using AIM/ICQ, Yahoo!, MSN, IRC, Jabber, Napster, Zephyr, Gadu-Gadu, Bonjour, + Groupwise, Sametime, SILC, and SIMPLE all at once. + . + Some extra packages are recommended to use the core functionality present + in most finch installations: + * gstreamer0.10-plugins-base, gstreamer0.10-plugins-good + - Sound support. + . + More extra packages are suggested to use increased functionality: + * libx11-6 + - To use the Clipboard and/or Toaster plugins. + +Package: finch-dev +Section: devel +Architecture: all +Depends: finch (>= ${source:Version}), pkg-config, libpurple-dev, libglib2.0-dev, libncursesw5-dev +Replaces: gaim (<< 1:2.0.0+beta6-3), pidgin-dev (<< 1:2.1.1-2) +Conflicts: gaim (<< 1:2.0.0+beta6-3), pidgin-dev (<< 1:2.1.1-2) +Description: text-based multi-protocol instant messaging client - development + This package contains the headers and other development files not included in + the main finch package. Install this if you wish to compile your own plugins, + or would like to compile programs that use the libgnt library. + +Package: libpurple-dev +Section: libdevel +Architecture: all +Depends: libpurple0 (>= ${source:Version}), pkg-config, libglib2.0-dev, libdbus-glib-1-dev, ${misc:Depends} +Replaces: pidgin-dev (<< 1:2.1.1-2) +Conflicts: pidgin-dev (<< 1:2.1.1-2) +Description: multi-protocol instant messaging library - development files + This package contains the headers and other development files not included in + the main libpurple0 package. Install this if you wish to compile your own + client-agnostic plugins, or would like to compile programs that use + libpurple. + +Package: libpurple-bin +Section: net +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, python, python-dbus +Replaces: pidgin (<< 1:2.1.1-2), pidgin-data (<< 1:2.4.0-1) +Conflicts: pidgin (<< 1:2.1.1-2), pidgin-data (<< 1:2.4.0-1) +Description: multi-protocol instant messaging library - extra utilities + This package contains the utilities not included in the main libpurple0 + package. Currently included are: purple-remote, purple-send, + purple-send-async, and purple-url-handler, --- pidgin-2.5.5.orig/debian/pidgin-data.install +++ pidgin-2.5.5/debian/pidgin-data.install @@ -0,0 +1,6 @@ +debian/tmp/usr/share/icons +debian/tmp/usr/share/locale +debian/tmp/usr/share/pixmaps +debian/tmp/usr/share/sounds +debian/pidgin-menu.xpm usr/share/pixmaps +debian/prefs.xml etc/purple --- pidgin-2.5.5.orig/debian/libpurple0.symbols +++ pidgin-2.5.5/debian/libpurple0.symbols @@ -0,0 +1,2537 @@ +libgnt.so.0 libpurple0 #MINVER# + gnt_ascii_only@Base 1:2.5.0 + gnt_bindable_action_free@Base 1:2.5.0 + gnt_bindable_action_param_free@Base 1:2.5.0 + gnt_bindable_bindings_view@Base 1:2.5.0 + gnt_bindable_build_help_window@Base 1:2.5.0 + gnt_bindable_check_key@Base 1:2.5.0 + gnt_bindable_class_register_action@Base 1:2.5.0 + gnt_bindable_get_gtype@Base 1:2.5.0 + gnt_bindable_perform_action_key@Base 1:2.5.0 + gnt_bindable_perform_action_named@Base 1:2.5.0 + gnt_bindable_register_binding@Base 1:2.5.0 + gnt_bindable_remap_keys@Base 1:2.5.0 + gnt_boolean_handled_accumulator@Base 1:2.5.0 + gnt_box_add_widget@Base 1:2.5.0 + gnt_box_get_gtype@Base 1:2.5.0 + gnt_box_give_focus_to_child@Base 1:2.5.0 + gnt_box_move_focus@Base 1:2.5.0 + gnt_box_new@Base 1:2.5.0 + gnt_box_readjust@Base 1:2.5.0 + gnt_box_remove@Base 1:2.5.0 + gnt_box_remove_all@Base 1:2.5.0 + gnt_box_set_alignment@Base 1:2.5.0 + gnt_box_set_fill@Base 1:2.5.0 + gnt_box_set_pad@Base 1:2.5.0 + gnt_box_set_title@Base 1:2.5.0 + gnt_box_set_toplevel@Base 1:2.5.0 + gnt_box_sync_children@Base 1:2.5.0 + gnt_button_get_gtype@Base 1:2.5.0 + gnt_button_new@Base 1:2.5.0 + gnt_check_box_get_checked@Base 1:2.5.0 + gnt_check_box_get_gtype@Base 1:2.5.0 + gnt_check_box_new@Base 1:2.5.0 + gnt_check_box_set_checked@Base 1:2.5.0 + gnt_clipboard_get_gtype@Base 1:2.5.0 + gnt_clipboard_get_string@Base 1:2.5.0 + gnt_clipboard_set_string@Base 1:2.5.0 + gnt_closure_marshal_BOOLEAN__INT_INT@Base 1:2.5.0 + gnt_closure_marshal_BOOLEAN__INT_INT_INT@Base 1:2.5.0 + gnt_closure_marshal_BOOLEAN__INT_INT_INT_POINTER@Base 1:2.5.0 + gnt_closure_marshal_BOOLEAN__POINTER_POINTER_POINTER@Base 1:2.5.0 + gnt_closure_marshal_BOOLEAN__STRING@Base 1:2.5.0 + gnt_closure_marshal_BOOLEAN__VOID@Base 1:2.5.0 + gnt_closure_marshal_VOID__INT_INT@Base 1:2.5.0 + gnt_closure_marshal_VOID__INT_INT_INT_INT@Base 1:2.5.0 + gnt_closure_marshal_VOID__POINTER_BOOLEAN@Base 1:2.5.0 + gnt_closure_marshal_VOID__POINTER_POINTER@Base 1:2.5.0 + gnt_closure_marshal_VOID__STRING_STRING@Base 1:2.5.0 + gnt_color_add_pair@Base 1:2.5.0 + gnt_color_pair@Base 1:2.5.0 + gnt_color_pairs_parse@Base 1:2.5.0 + gnt_colors_get_color@Base 1:2.5.0 + gnt_colors_parse@Base 1:2.5.0 + gnt_combo_box_add_data@Base 1:2.5.0 + gnt_combo_box_get_gtype@Base 1:2.5.0 + gnt_combo_box_get_selected_data@Base 1:2.5.0 + gnt_combo_box_new@Base 1:2.5.0 + gnt_combo_box_remove@Base 1:2.5.0 + gnt_combo_box_remove_all@Base 1:2.5.0 + gnt_combo_box_set_selected@Base 1:2.5.0 + gnt_entry_add_suggest@Base 1:2.5.0 + gnt_entry_add_to_history@Base 1:2.5.0 + gnt_entry_clear@Base 1:2.5.0 + gnt_entry_get_gtype@Base 1:2.5.0 + gnt_entry_get_text@Base 1:2.5.0 + gnt_entry_new@Base 1:2.5.0 + gnt_entry_remove_suggest@Base 1:2.5.0 + gnt_entry_set_always_suggest@Base 1:2.5.0 + gnt_entry_set_flag@Base 1:2.5.0 + gnt_entry_set_history_length@Base 1:2.5.0 + gnt_entry_set_masked@Base 1:2.5.0 + gnt_entry_set_max@Base 1:2.5.0 + gnt_entry_set_text@Base 1:2.5.0 + gnt_entry_set_word_suggest@Base 1:2.5.0 + gnt_file_new@Base 1:2.5.0 + gnt_file_new_dir@Base 1:2.5.0 + gnt_file_sel_get_dirs_only@Base 1:2.5.0 + gnt_file_sel_get_gtype@Base 1:2.5.0 + gnt_file_sel_get_must_exist@Base 1:2.5.0 + gnt_file_sel_get_selected_file@Base 1:2.5.0 + gnt_file_sel_get_selected_multi_files@Base 1:2.5.0 + gnt_file_sel_new@Base 1:2.5.0 + gnt_file_sel_set_current_location@Base 1:2.5.0 + gnt_file_sel_set_dirs_only@Base 1:2.5.0 + gnt_file_sel_set_multi_select@Base 1:2.5.0 + gnt_file_sel_set_must_exist@Base 1:2.5.0 + gnt_file_sel_set_read_fn@Base 1:2.5.0 + gnt_file_sel_set_suggested_filename@Base 1:2.5.0 + gnt_get_clipboard@Base 1:2.5.0 + gnt_get_clipboard_string@Base 1:2.5.0 + gnt_giveup_console@Base 1:2.5.0 + gnt_init@Base 1:2.5.0 + gnt_init_colors@Base 1:2.5.0 + gnt_init_keys@Base 1:2.5.0 + gnt_init_styles@Base 1:2.5.0 + gnt_is_refugee@Base 1:2.5.0 + gnt_key_cdown@Base 1:2.5.0 + gnt_key_cleft@Base 1:2.5.0 + gnt_key_cright@Base 1:2.5.0 + gnt_key_cup@Base 1:2.5.0 + gnt_key_lookup@Base 1:2.5.0 + gnt_key_translate@Base 1:2.5.0 + gnt_keys_add_combination@Base 1:2.5.0 + gnt_keys_del_combination@Base 1:2.5.0 + gnt_keys_find_combination@Base 1:2.5.0 + gnt_keys_print_combinations@Base 1:2.5.0 + gnt_keys_refine@Base 1:2.5.0 + gnt_label_get_gtype@Base 1:2.5.0 + gnt_label_new@Base 1:2.5.0 + gnt_label_new_with_format@Base 1:2.5.0 + gnt_label_set_text@Base 1:2.5.0 + gnt_line_get_gtype@Base 1:2.5.0 + gnt_line_new@Base 1:2.5.0 + gnt_main@Base 1:2.5.0 + gnt_menu_add_item@Base 1:2.5.0 + gnt_menu_get_gtype@Base 1:2.5.0 + gnt_menu_get_item@Base 1:2.5.0 + gnt_menu_new@Base 1:2.5.0 + gnt_menuitem_activate@Base 1:2.5.0 + gnt_menuitem_check_get_checked@Base 1:2.5.0 + gnt_menuitem_check_get_gtype@Base 1:2.5.0 + gnt_menuitem_check_new@Base 1:2.5.0 + gnt_menuitem_check_set_checked@Base 1:2.5.0 + gnt_menuitem_get_gtype@Base 1:2.5.0 + gnt_menuitem_get_id@Base 1:2.5.0 + gnt_menuitem_get_submenu@Base 1:2.5.0 + gnt_menuitem_get_trigger@Base 1:2.5.0 + gnt_menuitem_new@Base 1:2.5.0 + gnt_menuitem_set_callback@Base 1:2.5.0 + gnt_menuitem_set_id@Base 1:2.5.0 + gnt_menuitem_set_submenu@Base 1:2.5.0 + gnt_menuitem_set_trigger@Base 1:2.5.0 + gnt_quit@Base 1:2.5.0 + gnt_register_action@Base 1:2.5.0 + gnt_screen_menu_show@Base 1:2.5.0 + gnt_screen_move_widget@Base 1:2.5.0 + gnt_screen_occupy@Base 1:2.5.0 + gnt_screen_release@Base 1:2.5.0 + gnt_screen_rename_widget@Base 1:2.5.0 + gnt_screen_resize_widget@Base 1:2.5.0 + gnt_screen_update@Base 1:2.5.0 + gnt_set_clipboard_string@Base 1:2.5.0 + gnt_slider_advance_step@Base 1:2.5.0 + gnt_slider_get_gtype@Base 1:2.5.0 + gnt_slider_get_value@Base 1:2.5.0 + gnt_slider_new@Base 1:2.5.0 + gnt_slider_reflect_label@Base 1:2.5.0 + gnt_slider_set_large_step@Base 1:2.5.0 + gnt_slider_set_range@Base 1:2.5.0 + gnt_slider_set_small_step@Base 1:2.5.0 + gnt_slider_set_step@Base 1:2.5.0 + gnt_slider_set_value@Base 1:2.5.0 + gnt_style_get@Base 1:2.5.0 + gnt_style_get_bool@Base 1:2.5.0 + gnt_style_get_color@Base 1:2.5.0 + gnt_style_get_from_name@Base 1:2.5.0 + gnt_style_get_string_list@Base 1:2.5.0 + gnt_style_parse_bool@Base 1:2.5.0 + gnt_style_read_actions@Base 1:2.5.0 + gnt_style_read_configure_file@Base 1:2.5.0 + gnt_style_read_menu_accels@Base 1:2.5.0 + gnt_style_read_workspaces@Base 1:2.5.0 + gnt_styles_get_keyremaps@Base 1:2.5.0 + gnt_text_format_flag_to_chtype@Base 1:2.5.0 + gnt_text_view_append_text_with_flags@Base 1:2.5.0 + gnt_text_view_append_text_with_tag@Base 1:2.5.0 + gnt_text_view_attach_editor_widget@Base 1:2.5.0 + gnt_text_view_attach_pager_widget@Base 1:2.5.0 + gnt_text_view_attach_scroll_widget@Base 1:2.5.0 + gnt_text_view_clear@Base 1:2.5.0 + gnt_text_view_get_gtype@Base 1:2.5.0 + gnt_text_view_get_lines_above@Base 1:2.5.0 + gnt_text_view_get_lines_below@Base 1:2.5.0 + gnt_text_view_new@Base 1:2.5.0 + gnt_text_view_next_line@Base 1:2.5.0 + gnt_text_view_scroll@Base 1:2.5.0 + gnt_text_view_set_flag@Base 1:2.5.0 + gnt_text_view_tag_change@Base 1:2.5.0 + gnt_tree_add_choice@Base 1:2.5.0 + gnt_tree_add_row_after@Base 1:2.5.0 + gnt_tree_add_row_last@Base 1:2.5.0 + gnt_tree_adjust_columns@Base 1:2.5.0 + gnt_tree_change_text@Base 1:2.5.0 + gnt_tree_create_row@Base 1:2.5.0 + gnt_tree_create_row_from_list@Base 1:2.5.0 + gnt_tree_get_choice@Base 1:2.5.0 + gnt_tree_get_gtype@Base 1:2.5.0 + gnt_tree_get_parent_key@Base 1:2.5.0 + gnt_tree_get_row_text_list@Base 1:2.5.0 + gnt_tree_get_rows@Base 1:2.5.0 + gnt_tree_get_selection_data@Base 1:2.5.0 + gnt_tree_get_selection_text@Base 1:2.5.0 + gnt_tree_get_selection_text_list@Base 1:2.5.0 + gnt_tree_get_selection_visible_line@Base 1:2.5.0 + gnt_tree_get_visible_rows@Base 1:2.5.0 + gnt_tree_is_searching@Base 1:2.5.0 + gnt_tree_new@Base 1:2.5.0 + gnt_tree_new_with_columns@Base 1:2.5.0 + gnt_tree_remove@Base 1:2.5.0 + gnt_tree_remove_all@Base 1:2.5.0 + gnt_tree_scroll@Base 1:2.5.0 + gnt_tree_set_choice@Base 1:2.5.0 + gnt_tree_set_col_width@Base 1:2.5.0 + gnt_tree_set_column_is_binary@Base 1:2.5.0 + gnt_tree_set_column_is_right_aligned@Base 1:2.5.0 + gnt_tree_set_column_resizable@Base 1:2.5.0 + gnt_tree_set_column_title@Base 1:2.5.0 + gnt_tree_set_column_titles@Base 1:2.5.0 + gnt_tree_set_column_visible@Base 1:2.5.0 + gnt_tree_set_column_width_ratio@Base 1:2.5.0 + gnt_tree_set_compare_func@Base 1:2.5.0 + gnt_tree_set_expanded@Base 1:2.5.0 + gnt_tree_set_hash_fns@Base 1:2.5.0 + gnt_tree_set_row_color@Base 1:2.5.0 + gnt_tree_set_row_flags@Base 1:2.5.0 + gnt_tree_set_search_column@Base 1:2.5.0 + gnt_tree_set_search_function@Base 1:2.5.0 + gnt_tree_set_selected@Base 1:2.5.0 + gnt_tree_set_show_separator@Base 1:2.5.0 + gnt_tree_set_show_title@Base 1:2.5.0 + gnt_tree_set_visible_rows@Base 1:2.5.0 + gnt_tree_sort_row@Base 1:2.5.0 + gnt_uninit_colors@Base 1:2.5.0 + gnt_uninit_styles@Base 1:2.5.0 + gnt_util_get_text_bound@Base 1:2.5.0 + gnt_util_onscreen_fit_string@Base 1:2.5.0 + gnt_util_onscreen_width@Base 1:2.5.0 + gnt_util_onscreen_width_to_pointer@Base 1:2.5.0 + gnt_util_parse_widgets@Base 1:2.5.0 + gnt_util_parse_xhtml_to_textview@Base 1:2.5.0 + gnt_util_set_trigger_widget@Base 1:2.5.0 + gnt_widget_activate@Base 1:2.5.0 + gnt_widget_bindings_view@Base 1:2.5.0 + gnt_widget_clicked@Base 1:2.5.0 + gnt_widget_confirm_size@Base 1:2.5.0 + gnt_widget_destroy@Base 1:2.5.0 + gnt_widget_draw@Base 1:2.5.0 + gnt_widget_expose@Base 1:2.5.0 + gnt_widget_get_gtype@Base 1:2.5.0 + gnt_widget_get_name@Base 1:2.5.0 + gnt_widget_get_position@Base 1:2.5.0 + gnt_widget_get_size@Base 1:2.5.0 + gnt_widget_has_focus@Base 1:2.5.0 + gnt_widget_has_shadow@Base 1:2.5.0 + gnt_widget_hide@Base 1:2.5.0 + gnt_widget_key_pressed@Base 1:2.5.0 + gnt_widget_queue_update@Base 1:2.5.0 + gnt_widget_set_focus@Base 1:2.5.0 + gnt_widget_set_name@Base 1:2.5.0 + gnt_widget_set_position@Base 1:2.5.0 + gnt_widget_set_size@Base 1:2.5.0 + gnt_widget_set_take_focus@Base 1:2.5.0 + gnt_widget_set_urgent@Base 1:2.5.0 + gnt_widget_set_visible@Base 1:2.5.0 + gnt_widget_show@Base 1:2.5.0 + gnt_widget_size_request@Base 1:2.5.0 + gnt_window_box_new@Base 1:2.5.0 + gnt_window_get_accel_item@Base 1:2.5.0 + gnt_window_get_gtype@Base 1:2.5.0 + gnt_window_get_maximize@Base 1:2.5.0 + gnt_window_new@Base 1:2.5.0 + gnt_window_present@Base 1:2.5.0 + gnt_window_set_maximize@Base 1:2.5.0 + gnt_window_set_menu@Base 1:2.5.0 + gnt_window_workspace_hiding@Base 1:2.5.0 + gnt_window_workspace_showing@Base 1:2.5.0 + gnt_wm_add_workspace@Base 1:2.5.0 + gnt_wm_copy_win@Base 1:2.5.0 + gnt_wm_get_gtype@Base 1:2.5.0 + gnt_wm_get_idle_time@Base 1:2.5.0 + gnt_wm_move_window@Base 1:2.5.0 + gnt_wm_new_window@Base 1:2.5.0 + gnt_wm_process_click@Base 1:2.5.0 + gnt_wm_process_input@Base 1:2.5.0 + gnt_wm_raise_window@Base 1:2.5.0 + gnt_wm_resize_window@Base 1:2.5.0 + gnt_wm_set_event_stack@Base 1:2.5.0 + gnt_wm_set_workspaces@Base 1:2.5.0 + gnt_wm_switch_workspace@Base 1:2.5.0 + gnt_wm_switch_workspace_next@Base 1:2.5.0 + gnt_wm_switch_workspace_prev@Base 1:2.5.0 + gnt_wm_update_window@Base 1:2.5.0 + gnt_wm_widget_find_workspace@Base 1:2.5.0 + gnt_wm_widget_move_workspace@Base 1:2.5.0 + gnt_wm_window_close@Base 1:2.5.0 + gnt_wm_window_decorate@Base 1:2.5.0 + gnt_ws_add_widget@Base 1:2.5.0 + gnt_ws_draw_taskbar@Base 1:2.5.0 + gnt_ws_get_gtype@Base 1:2.5.0 + gnt_ws_get_name@Base 1:2.5.0 + gnt_ws_hide@Base 1:2.5.0 + gnt_ws_new@Base 1:2.5.0 + gnt_ws_remove_widget@Base 1:2.5.0 + gnt_ws_set_name@Base 1:2.5.0 + gnt_ws_show@Base 1:2.5.0 + gnt_ws_widget_hide@Base 1:2.5.0 + gnt_ws_widget_show@Base 1:2.5.0 +libpurple-client.so.0 libpurple0 #MINVER# + PURPLE_BLIST_NODE_HAS_FLAG@Base 1:2.2.0 + PURPLE_BLIST_NODE_IS_BUDDY@Base 1:2.2.0 + PURPLE_BLIST_NODE_IS_CHAT@Base 1:2.2.0 + PURPLE_BLIST_NODE_IS_CONTACT@Base 1:2.2.0 + PURPLE_BLIST_NODE_IS_GROUP@Base 1:2.2.0 + PURPLE_BLIST_NODE_SHOULD_SAVE@Base 1:2.2.0 + PURPLE_BUDDY_IS_ONLINE@Base 1:2.2.0 + PURPLE_CONNECTION_IS_CONNECTED@Base 1:2.2.0 + PURPLE_CONNECTION_IS_VALID@Base 1:2.2.0 + PURPLE_CONV_CHAT@Base 1:2.2.0 + PURPLE_CONV_IM@Base 1:2.2.0 + purple_account_add_buddies@Base 1:2.2.0 + purple_account_add_buddy@Base 1:2.2.0 + purple_account_change_password@Base 1:2.2.0 + purple_account_clear_current_error@Base 1:2.3.0 + purple_account_clear_settings@Base 1:2.2.0 + purple_account_connect@Base 1:2.2.0 + purple_account_destroy@Base 1:2.2.0 + purple_account_destroy_log@Base 1:2.2.0 + purple_account_disconnect@Base 1:2.2.0 + purple_account_get_active_status@Base 1:2.2.0 + purple_account_get_alias@Base 1:2.2.0 + purple_account_get_bool@Base 1:2.2.0 + purple_account_get_buddy_icon_path@Base 1:2.2.0 + purple_account_get_check_mail@Base 1:2.2.0 + purple_account_get_connection@Base 1:2.2.0 + purple_account_get_current_error@Base 1:2.3.0 + purple_account_get_enabled@Base 1:2.2.0 + purple_account_get_int@Base 1:2.2.0 + purple_account_get_log@Base 1:2.2.0 + purple_account_get_password@Base 1:2.2.0 + purple_account_get_presence@Base 1:2.2.0 + purple_account_get_protocol_id@Base 1:2.2.0 + purple_account_get_protocol_name@Base 1:2.2.0 + purple_account_get_proxy_info@Base 1:2.2.0 + purple_account_get_remember_password@Base 1:2.2.0 + purple_account_get_status@Base 1:2.2.0 + purple_account_get_status_type@Base 1:2.2.0 + purple_account_get_status_type_with_primitive@Base 1:2.2.0 + purple_account_get_status_types@Base 1:2.2.0 + purple_account_get_string@Base 1:2.2.0 + purple_account_get_ui_bool@Base 1:2.2.0 + purple_account_get_ui_int@Base 1:2.2.0 + purple_account_get_ui_string@Base 1:2.2.0 + purple_account_get_user_info@Base 1:2.2.0 + purple_account_get_username@Base 1:2.2.0 + purple_account_is_connected@Base 1:2.2.0 + purple_account_is_connecting@Base 1:2.2.0 + purple_account_is_disconnected@Base 1:2.2.0 + purple_account_is_status_active@Base 1:2.2.0 + purple_account_new@Base 1:2.2.0 + purple_account_notify_added@Base 1:2.2.0 + purple_account_register@Base 1:2.2.0 + purple_account_remove_buddies@Base 1:2.2.0 + purple_account_remove_buddy@Base 1:2.2.0 + purple_account_remove_group@Base 1:2.2.0 + purple_account_request_add@Base 1:2.2.0 + purple_account_request_change_password@Base 1:2.2.0 + purple_account_request_change_user_info@Base 1:2.2.0 + purple_account_request_close@Base 1:2.2.0 + purple_account_request_close_with_account@Base 1:2.2.0 + purple_account_set_alias@Base 1:2.2.0 + purple_account_set_bool@Base 1:2.2.0 + purple_account_set_buddy_icon_path@Base 1:2.2.0 + purple_account_set_check_mail@Base 1:2.2.0 + purple_account_set_connection@Base 1:2.2.0 + purple_account_set_enabled@Base 1:2.2.0 + purple_account_set_int@Base 1:2.2.0 + purple_account_set_password@Base 1:2.2.0 + purple_account_set_protocol_id@Base 1:2.2.0 + purple_account_set_proxy_info@Base 1:2.2.0 + purple_account_set_remember_password@Base 1:2.2.0 + purple_account_set_status_list@Base 1:2.2.0 + purple_account_set_status_types@Base 1:2.2.0 + purple_account_set_string@Base 1:2.2.0 + purple_account_set_ui_bool@Base 1:2.2.0 + purple_account_set_ui_int@Base 1:2.2.0 + purple_account_set_ui_string@Base 1:2.2.0 + purple_account_set_user_info@Base 1:2.2.0 + purple_account_set_username@Base 1:2.2.0 + purple_account_supports_offline_message@Base 1:2.2.0 + purple_accounts_add@Base 1:2.2.0 + purple_accounts_delete@Base 1:2.2.0 + purple_accounts_find@Base 1:2.2.0 + purple_accounts_find_any@Base 1:2.2.0 + purple_accounts_find_connected@Base 1:2.2.0 + purple_accounts_get_all@Base 1:2.2.0 + purple_accounts_get_all_active@Base 1:2.2.0 + purple_accounts_get_ui_ops@Base 1:2.2.0 + purple_accounts_init@Base 1:2.2.0 + purple_accounts_remove@Base 1:2.2.0 + purple_accounts_reorder@Base 1:2.2.0 + purple_accounts_restore_current_statuses@Base 1:2.2.0 + purple_accounts_set_ui_ops@Base 1:2.2.0 + purple_accounts_uninit@Base 1:2.2.0 + purple_attention_type_get_icon_name@Base 1:2.4.0 + purple_attention_type_get_incoming_desc@Base 1:2.4.0 + purple_attention_type_get_name@Base 1:2.4.0 + purple_attention_type_get_outgoing_desc@Base 1:2.4.0 + purple_attention_type_get_unlocalized_name@Base 1:2.4.0 + purple_attention_type_new@Base 1:2.4.0 + purple_attention_type_set_icon_name@Base 1:2.4.0 + purple_attention_type_set_incoming_desc@Base 1:2.4.0 + purple_attention_type_set_name@Base 1:2.4.0 + purple_attention_type_set_outgoing_desc@Base 1:2.4.0 + purple_attention_type_set_unlocalized_name@Base 1:2.4.0 + purple_blist_add_account@Base 1:2.2.0 + purple_blist_add_buddy@Base 1:2.2.0 + purple_blist_add_chat@Base 1:2.2.0 + purple_blist_add_contact@Base 1:2.2.0 + purple_blist_add_group@Base 1:2.2.0 + purple_blist_alias_buddy@Base 1:2.2.0 + purple_blist_alias_chat@Base 1:2.2.0 + purple_blist_alias_contact@Base 1:2.2.0 + purple_blist_destroy@Base 1:2.2.0 + purple_blist_find_chat@Base 1:2.2.0 + purple_blist_get_group_online_count@Base 1:2.2.0 + purple_blist_get_group_size@Base 1:2.2.0 + purple_blist_get_root@Base 1:2.2.0 + purple_blist_get_ui_ops@Base 1:2.2.0 + purple_blist_init@Base 1:2.2.0 + purple_blist_load@Base 1:2.2.0 + purple_blist_merge_contact@Base 1:2.2.0 + purple_blist_new@Base 1:2.2.0 + purple_blist_node_get_bool@Base 1:2.2.0 + purple_blist_node_get_extended_menu@Base 1:2.2.0 + purple_blist_node_get_first_child@Base 1:2.4.0 + purple_blist_node_get_flags@Base 1:2.2.0 + purple_blist_node_get_int@Base 1:2.2.0 + purple_blist_node_get_parent@Base 1:2.4.0 + purple_blist_node_get_sibling_next@Base 1:2.4.0 + purple_blist_node_get_sibling_prev@Base 1:2.4.0 + purple_blist_node_get_string@Base 1:2.2.0 + purple_blist_node_get_type@Base 1:2.2.0 + purple_blist_node_next@Base 1:2.2.0 + purple_blist_node_remove_setting@Base 1:2.2.0 + purple_blist_node_set_bool@Base 1:2.2.0 + purple_blist_node_set_flags@Base 1:2.2.0 + purple_blist_node_set_int@Base 1:2.2.0 + purple_blist_node_set_string@Base 1:2.2.0 + purple_blist_remove_account@Base 1:2.2.0 + purple_blist_remove_buddy@Base 1:2.2.0 + purple_blist_remove_chat@Base 1:2.2.0 + purple_blist_remove_contact@Base 1:2.2.0 + purple_blist_remove_group@Base 1:2.2.0 + purple_blist_rename_buddy@Base 1:2.2.0 + purple_blist_rename_group@Base 1:2.2.0 + purple_blist_request_add_buddy@Base 1:2.2.0 + purple_blist_request_add_chat@Base 1:2.2.0 + purple_blist_request_add_group@Base 1:2.2.0 + purple_blist_schedule_save@Base 1:2.2.0 + purple_blist_server_alias_buddy@Base 1:2.2.0 + purple_blist_set_ui_ops@Base 1:2.2.0 + purple_blist_set_visible@Base 1:2.2.0 + purple_blist_show@Base 1:2.2.0 + purple_blist_uninit@Base 1:2.2.0 + purple_blist_update_buddy_icon@Base 1:2.2.0 + purple_blist_update_buddy_status@Base 1:2.2.0 + purple_blist_update_node_icon@Base 1:2.5.0 + purple_buddy_get_account@Base 1:2.2.0 + purple_buddy_get_alias@Base 1:2.2.0 + purple_buddy_get_alias_only@Base 1:2.2.0 + purple_buddy_get_contact@Base 1:2.2.0 + purple_buddy_get_contact_alias@Base 1:2.2.0 + purple_buddy_get_group@Base 1:2.2.0 + purple_buddy_get_icon@Base 1:2.2.0 + purple_buddy_get_local_alias@Base 1:2.2.0 + purple_buddy_get_name@Base 1:2.2.0 + purple_buddy_get_presence@Base 1:2.2.0 + purple_buddy_get_server_alias@Base 1:2.2.0 + purple_buddy_icon_get_account@Base 1:2.2.0 + purple_buddy_icon_get_checksum@Base 1:2.2.0 + purple_buddy_icon_get_extension@Base 1:2.2.0 + purple_buddy_icon_get_full_path@Base 1:2.2.0 + purple_buddy_icon_get_scale_size@Base 1:2.2.0 + purple_buddy_icon_get_username@Base 1:2.2.0 + purple_buddy_icon_new@Base 1:2.2.0 + purple_buddy_icon_ref@Base 1:2.2.0 + purple_buddy_icon_set_data@Base 1:2.5.0 + purple_buddy_icon_unref@Base 1:2.2.0 + purple_buddy_icon_update@Base 1:2.2.0 + purple_buddy_icons_find@Base 1:2.5.0 + purple_buddy_icons_find_account_icon@Base 1:2.5.0 + purple_buddy_icons_find_custom_icon@Base 1:2.5.0 + purple_buddy_icons_get_account_icon_timestamp@Base 1:2.5.0 + purple_buddy_icons_get_cache_dir@Base 1:2.2.0 + purple_buddy_icons_has_custom_icon@Base 1:2.5.0 + purple_buddy_icons_init@Base 1:2.2.0 + purple_buddy_icons_is_caching@Base 1:2.2.0 + purple_buddy_icons_node_find_custom_icon@Base 1:2.5.0 + purple_buddy_icons_node_has_custom_icon@Base 1:2.5.0 + purple_buddy_icons_node_set_custom_icon@Base 1:2.5.0 + purple_buddy_icons_node_set_custom_icon_from_file@Base 1:2.5.0 + purple_buddy_icons_set_account_icon@Base 1:2.5.0 + purple_buddy_icons_set_cache_dir@Base 1:2.2.0 + purple_buddy_icons_set_caching@Base 1:2.2.0 + purple_buddy_icons_set_custom_icon@Base 1:2.5.0 + purple_buddy_icons_set_for_user@Base 1:2.5.0 + purple_buddy_icons_uninit@Base 1:2.2.0 + purple_buddy_new@Base 1:2.2.0 + purple_buddy_set_icon@Base 1:2.2.0 + purple_build_dir@Base 1:2.2.0 + purple_chat_get_account@Base 1:2.4.0 + purple_chat_get_group@Base 1:2.2.0 + purple_chat_get_name@Base 1:2.2.0 + purple_chat_new@Base 1:2.2.0 + purple_connection_destroy@Base 1:2.2.0 + purple_connection_error@Base 1:2.2.0 + purple_connection_error_is_fatal@Base 1:2.5.0 + purple_connection_error_reason@Base 1:2.5.0 + purple_connection_get_account@Base 1:2.2.0 + purple_connection_get_display_name@Base 1:2.2.0 + purple_connection_get_password@Base 1:2.2.0 + purple_connection_get_prpl@Base 1:2.4.0 + purple_connection_get_state@Base 1:2.2.0 + purple_connection_new@Base 1:2.2.0 + purple_connection_notice@Base 1:2.2.0 + purple_connection_set_account@Base 1:2.2.0 + purple_connection_set_display_name@Base 1:2.2.0 + purple_connection_set_state@Base 1:2.2.0 + purple_connection_ssl_error@Base 1:2.5.0 + purple_connection_update_progress@Base 1:2.2.0 + purple_connections_disconnect_all@Base 1:2.2.0 + purple_connections_get_all@Base 1:2.2.0 + purple_connections_get_connecting@Base 1:2.2.0 + purple_connections_get_ui_ops@Base 1:2.2.0 + purple_connections_init@Base 1:2.2.0 + purple_connections_set_ui_ops@Base 1:2.2.0 + purple_connections_uninit@Base 1:2.2.0 + purple_contact_get_alias@Base 1:2.2.0 + purple_contact_get_priority_buddy@Base 1:2.2.0 + purple_contact_invalidate_priority_buddy@Base 1:2.2.0 + purple_contact_new@Base 1:2.2.0 + purple_contact_on_account@Base 1:2.2.0 + purple_contact_set_alias@Base 1:2.2.0 + purple_conv_chat_add_user@Base 1:2.2.0 + purple_conv_chat_add_users@Base 1:2.2.0 + purple_conv_chat_cb_destroy@Base 1:2.2.0 + purple_conv_chat_cb_find@Base 1:2.2.0 + purple_conv_chat_cb_get_name@Base 1:2.2.0 + purple_conv_chat_cb_new@Base 1:2.2.0 + purple_conv_chat_clear_users@Base 1:2.2.0 + purple_conv_chat_find_user@Base 1:2.2.0 + purple_conv_chat_get_conversation@Base 1:2.2.0 + purple_conv_chat_get_id@Base 1:2.2.0 + purple_conv_chat_get_ignored@Base 1:2.2.0 + purple_conv_chat_get_ignored_user@Base 1:2.2.0 + purple_conv_chat_get_nick@Base 1:2.2.0 + purple_conv_chat_get_topic@Base 1:2.2.0 + purple_conv_chat_get_users@Base 1:2.2.0 + purple_conv_chat_has_left@Base 1:2.2.0 + purple_conv_chat_ignore@Base 1:2.2.0 + purple_conv_chat_is_user_ignored@Base 1:2.2.0 + purple_conv_chat_left@Base 1:2.2.0 + purple_conv_chat_remove_user@Base 1:2.2.0 + purple_conv_chat_remove_users@Base 1:2.2.0 + purple_conv_chat_rename_user@Base 1:2.2.0 + purple_conv_chat_send@Base 1:2.2.0 + purple_conv_chat_send_with_flags@Base 1:2.2.0 + purple_conv_chat_set_id@Base 1:2.2.0 + purple_conv_chat_set_ignored@Base 1:2.2.0 + purple_conv_chat_set_nick@Base 1:2.2.0 + purple_conv_chat_set_topic@Base 1:2.2.0 + purple_conv_chat_set_users@Base 1:2.2.0 + purple_conv_chat_unignore@Base 1:2.2.0 + purple_conv_chat_user_get_flags@Base 1:2.2.0 + purple_conv_chat_user_set_flags@Base 1:2.2.0 + purple_conv_chat_write@Base 1:2.2.0 + purple_conv_custom_smiley_add@Base 1:2.2.0 + purple_conv_custom_smiley_close@Base 1:2.2.0 + purple_conv_im_get_conversation@Base 1:2.2.0 + purple_conv_im_get_icon@Base 1:2.2.0 + purple_conv_im_get_send_typed_timeout@Base 1:2.2.0 + purple_conv_im_get_type_again@Base 1:2.2.0 + purple_conv_im_get_typing_state@Base 1:2.2.0 + purple_conv_im_get_typing_timeout@Base 1:2.2.0 + purple_conv_im_send@Base 1:2.2.0 + purple_conv_im_send_with_flags@Base 1:2.2.0 + purple_conv_im_set_icon@Base 1:2.2.0 + purple_conv_im_set_type_again@Base 1:2.2.0 + purple_conv_im_set_typing_state@Base 1:2.2.0 + purple_conv_im_start_send_typed_timeout@Base 1:2.2.0 + purple_conv_im_start_typing_timeout@Base 1:2.2.0 + purple_conv_im_stop_send_typed_timeout@Base 1:2.2.0 + purple_conv_im_stop_typing_timeout@Base 1:2.2.0 + purple_conv_im_update_typing@Base 1:2.2.0 + purple_conv_im_write@Base 1:2.2.0 + purple_conv_present_error@Base 1:2.2.0 + purple_conv_send_confirm@Base 1:2.2.0 + purple_conversation_autoset_title@Base 1:2.2.0 + purple_conversation_clear_message_history@Base 1:2.2.0 + purple_conversation_destroy@Base 1:2.2.0 + purple_conversation_get_account@Base 1:2.2.0 + purple_conversation_get_chat_data@Base 1:2.2.0 + purple_conversation_get_data@Base 1:2.2.0 + purple_conversation_get_extended_menu@Base 1:2.2.0 + purple_conversation_get_features@Base 1:2.2.0 + purple_conversation_get_gc@Base 1:2.2.0 + purple_conversation_get_im_data@Base 1:2.2.0 + purple_conversation_get_message_history@Base 1:2.2.0 + purple_conversation_get_name@Base 1:2.2.0 + purple_conversation_get_title@Base 1:2.2.0 + purple_conversation_get_type@Base 1:2.2.0 + purple_conversation_get_ui_ops@Base 1:2.2.0 + purple_conversation_has_focus@Base 1:2.2.0 + purple_conversation_is_logging@Base 1:2.2.0 + purple_conversation_message_get_flags@Base 1:2.2.0 + purple_conversation_message_get_message@Base 1:2.2.0 + purple_conversation_message_get_sender@Base 1:2.2.0 + purple_conversation_message_get_timestamp@Base 1:2.2.0 + purple_conversation_new@Base 1:2.2.0 + purple_conversation_present@Base 1:2.2.0 + purple_conversation_set_account@Base 1:2.2.0 + purple_conversation_set_data@Base 1:2.2.0 + purple_conversation_set_features@Base 1:2.2.0 + purple_conversation_set_logging@Base 1:2.2.0 + purple_conversation_set_name@Base 1:2.2.0 + purple_conversation_set_title@Base 1:2.2.0 + purple_conversation_set_ui_ops@Base 1:2.2.0 + purple_conversation_update@Base 1:2.2.0 + purple_conversation_write@Base 1:2.2.0 + purple_conversations_init@Base 1:2.2.0 + purple_conversations_set_ui_ops@Base 1:2.2.0 + purple_conversations_uninit@Base 1:2.2.0 + purple_core_ensure_single_instance@Base 1:2.2.0 + purple_core_get_ui@Base 1:2.2.0 + purple_core_get_ui_ops@Base 1:2.2.0 + purple_core_get_version@Base 1:2.2.0 + purple_core_init@Base 1:2.2.0 + purple_core_migrate@Base 1:2.2.0 + purple_core_quit@Base 1:2.2.0 + purple_core_quit_cb@Base 1:2.2.0 + purple_core_set_ui_ops@Base 1:2.2.0 + purple_email_is_valid@Base 1:2.2.0 + purple_escape_filename@Base 1:2.2.0 + purple_fd_get_ip@Base 1:2.2.0 + purple_find_buddies@Base 1:2.2.0 + purple_find_buddy@Base 1:2.2.0 + purple_find_buddy_in_group@Base 1:2.2.0 + purple_find_chat@Base 1:2.2.0 + purple_find_conversation_with_account@Base 1:2.2.0 + purple_find_group@Base 1:2.2.0 + purple_find_prpl@Base 1:2.3.0 + purple_get_attention_type_from_code@Base 1:2.2.0 + purple_get_blist@Base 1:2.2.0 + purple_get_chats@Base 1:2.2.0 + purple_get_conversations@Base 1:2.2.0 + purple_get_core@Base 1:2.2.0 + purple_get_host_name@Base 1:2.5.0 + purple_get_ims@Base 1:2.2.0 + purple_got_protocol_handler_uri@Base 1:2.2.0 + purple_group_get_accounts@Base 1:2.2.0 + purple_group_get_name@Base 1:2.2.0 + purple_group_new@Base 1:2.2.0 + purple_group_on_account@Base 1:2.2.0 + purple_home_dir@Base 1:2.2.0 + purple_init@Base 1:2.2.0 + purple_ip_address_is_valid@Base 1:2.4.0 + purple_log_common_deleter@Base 1:2.2.0 + purple_log_common_is_deletable@Base 1:2.2.0 + purple_log_common_lister@Base 1:2.2.0 + purple_log_common_sizer@Base 1:2.2.0 + purple_log_common_total_sizer@Base 1:2.2.0 + purple_log_common_writer@Base 1:2.2.0 + purple_log_delete@Base 1:2.2.0 + purple_log_free@Base 1:2.2.0 + purple_log_get_log_dir@Base 1:2.2.0 + purple_log_get_logs@Base 1:2.2.0 + purple_log_get_size@Base 1:2.2.0 + purple_log_get_system_logs@Base 1:2.2.0 + purple_log_get_total_size@Base 1:2.2.0 + purple_log_init@Base 1:2.2.0 + purple_log_is_deletable@Base 1:2.2.0 + purple_log_logger_add@Base 1:2.2.0 + purple_log_logger_free@Base 1:2.2.0 + purple_log_logger_get@Base 1:2.2.0 + purple_log_logger_get_options@Base 1:2.2.0 + purple_log_logger_remove@Base 1:2.2.0 + purple_log_logger_set@Base 1:2.2.0 + purple_log_set_free@Base 1:2.2.0 + purple_log_uninit@Base 1:2.2.0 + purple_log_write@Base 1:2.2.0 + purple_markup_get_css_property@Base 1:2.2.0 + purple_markup_get_tag_name@Base 1:2.2.0 + purple_markup_linkify@Base 1:2.2.0 + purple_markup_slice@Base 1:2.2.0 + purple_markup_strip_html@Base 1:2.2.0 + purple_markup_unescape_entity@Base 1:2.2.0 + purple_menu_action_free@Base 1:2.2.0 + purple_mime_decode_field@Base 1:2.2.0 + purple_normalize@Base 1:2.2.0 + purple_normalize_nocase@Base 1:2.2.0 + purple_notify_close@Base 1:2.2.0 + purple_notify_close_with_handle@Base 1:2.2.0 + purple_notify_get_ui_ops@Base 1:2.2.0 + purple_notify_init@Base 1:2.2.0 + purple_notify_searchresults_column_add@Base 1:2.2.0 + purple_notify_searchresults_column_get_title@Base 1:2.2.0 + purple_notify_searchresults_column_new@Base 1:2.2.0 + purple_notify_searchresults_free@Base 1:2.2.0 + purple_notify_searchresults_get_columns_count@Base 1:2.2.0 + purple_notify_searchresults_get_rows_count@Base 1:2.2.0 + purple_notify_searchresults_new@Base 1:2.2.0 + purple_notify_searchresults_new_rows@Base 1:2.2.0 + purple_notify_searchresults_row_add@Base 1:2.2.0 + purple_notify_searchresults_row_get@Base 1:2.2.0 + purple_notify_set_ui_ops@Base 1:2.2.0 + purple_notify_uninit@Base 1:2.2.0 + purple_notify_user_info_add_pair@Base 1:2.2.0 + purple_notify_user_info_add_section_break@Base 1:2.2.0 + purple_notify_user_info_add_section_header@Base 1:2.2.0 + purple_notify_user_info_destroy@Base 1:2.2.0 + purple_notify_user_info_entry_get_label@Base 1:2.2.0 + purple_notify_user_info_entry_get_type@Base 1:2.2.0 + purple_notify_user_info_entry_get_value@Base 1:2.2.0 + purple_notify_user_info_entry_new@Base 1:2.2.0 + purple_notify_user_info_entry_set_label@Base 1:2.2.0 + purple_notify_user_info_entry_set_type@Base 1:2.2.0 + purple_notify_user_info_entry_set_value@Base 1:2.2.0 + purple_notify_user_info_get_entries@Base 1:2.2.0 + purple_notify_user_info_get_text_with_newline@Base 1:2.2.0 + purple_notify_user_info_new@Base 1:2.2.0 + purple_notify_user_info_prepend_pair@Base 1:2.2.0 + purple_notify_user_info_prepend_section_break@Base 1:2.5.0 + purple_notify_user_info_prepend_section_header@Base 1:2.5.0 + purple_notify_user_info_remove_entry@Base 1:2.2.0 + purple_notify_user_info_remove_last_item@Base 1:2.2.0 + purple_prefs_add_bool@Base 1:2.2.0 + purple_prefs_add_int@Base 1:2.2.0 + purple_prefs_add_none@Base 1:2.2.0 + purple_prefs_add_path@Base 1:2.2.0 + purple_prefs_add_path_list@Base 1:2.2.0 + purple_prefs_add_string@Base 1:2.2.0 + purple_prefs_add_string_list@Base 1:2.2.0 + purple_prefs_destroy@Base 1:2.2.0 + purple_prefs_disconnect_by_handle@Base 1:2.2.0 + purple_prefs_disconnect_callback@Base 1:2.2.0 + purple_prefs_exists@Base 1:2.2.0 + purple_prefs_get_bool@Base 1:2.2.0 + purple_prefs_get_children_names@Base 1:2.2.0 + purple_prefs_get_int@Base 1:2.2.0 + purple_prefs_get_path@Base 1:2.2.0 + purple_prefs_get_path_list@Base 1:2.2.0 + purple_prefs_get_string@Base 1:2.2.0 + purple_prefs_get_string_list@Base 1:2.2.0 + purple_prefs_get_type@Base 1:2.2.0 + purple_prefs_init@Base 1:2.2.0 + purple_prefs_load@Base 1:2.2.0 + purple_prefs_remove@Base 1:2.2.0 + purple_prefs_rename@Base 1:2.2.0 + purple_prefs_rename_boolean_toggle@Base 1:2.2.0 + purple_prefs_set_bool@Base 1:2.2.0 + purple_prefs_set_generic@Base 1:2.2.0 + purple_prefs_set_int@Base 1:2.2.0 + purple_prefs_set_path@Base 1:2.2.0 + purple_prefs_set_path_list@Base 1:2.2.0 + purple_prefs_set_string@Base 1:2.2.0 + purple_prefs_set_string_list@Base 1:2.2.0 + purple_prefs_trigger_callback@Base 1:2.2.0 + purple_prefs_uninit@Base 1:2.2.0 + purple_prefs_update_old@Base 1:2.2.0 + purple_presence_add_status@Base 1:2.2.0 + purple_presence_compare@Base 1:2.2.0 + purple_presence_destroy@Base 1:2.2.0 + purple_presence_get_account@Base 1:2.2.0 + purple_presence_get_active_status@Base 1:2.2.0 + purple_presence_get_buddy@Base 1:2.2.0 + purple_presence_get_chat_user@Base 1:2.2.0 + purple_presence_get_context@Base 1:2.2.0 + purple_presence_get_conversation@Base 1:2.2.0 + purple_presence_get_idle_time@Base 1:2.2.0 + purple_presence_get_login_time@Base 1:2.2.0 + purple_presence_get_status@Base 1:2.2.0 + purple_presence_get_statuses@Base 1:2.2.0 + purple_presence_is_available@Base 1:2.2.0 + purple_presence_is_idle@Base 1:2.2.0 + purple_presence_is_online@Base 1:2.2.0 + purple_presence_is_status_active@Base 1:2.2.0 + purple_presence_is_status_primitive_active@Base 1:2.2.0 + purple_presence_new@Base 1:2.2.0 + purple_presence_new_for_account@Base 1:2.2.0 + purple_presence_new_for_buddy@Base 1:2.2.0 + purple_presence_new_for_conv@Base 1:2.2.0 + purple_presence_set_idle@Base 1:2.2.0 + purple_presence_set_login_time@Base 1:2.2.0 + purple_presence_set_status_active@Base 1:2.2.0 + purple_presence_switch_status@Base 1:2.2.0 + purple_primitive_get_id_from_type@Base 1:2.2.0 + purple_primitive_get_name_from_type@Base 1:2.2.0 + purple_primitive_get_type_from_id@Base 1:2.2.0 + purple_program_is_valid@Base 1:2.2.0 + purple_prpl_change_account_status@Base 1:2.3.0 + purple_prpl_get_statuses@Base 1:2.3.0 + purple_prpl_got_account_idle@Base 1:2.3.0 + purple_prpl_got_account_login_time@Base 1:2.3.0 + purple_prpl_got_attention@Base 1:2.5.0 + purple_prpl_got_attention_in_chat@Base 1:2.5.0 + purple_prpl_got_user_idle@Base 1:2.3.0 + purple_prpl_got_user_login_time@Base 1:2.3.0 + purple_prpl_got_user_status_deactive@Base 1:2.3.0 + purple_prpl_send_attention@Base 1:2.5.0 + purple_restore_default_signal_handlers@Base 1:2.2.0 + purple_roomlist_cancel_get_list@Base 1:2.2.0 + purple_roomlist_expand_category@Base 1:2.2.0 + purple_roomlist_field_get_hidden@Base 1:2.4.0 + purple_roomlist_field_get_label@Base 1:2.4.0 + purple_roomlist_field_get_type@Base 1:2.4.0 + purple_roomlist_field_new@Base 1:2.2.0 + purple_roomlist_get_fields@Base 1:2.4.0 + purple_roomlist_get_in_progress@Base 1:2.2.0 + purple_roomlist_get_list@Base 1:2.2.0 + purple_roomlist_get_ui_ops@Base 1:2.2.0 + purple_roomlist_new@Base 1:2.2.0 + purple_roomlist_ref@Base 1:2.2.0 + purple_roomlist_room_add@Base 1:2.2.0 + purple_roomlist_room_get_fields@Base 1:2.4.0 + purple_roomlist_room_get_name@Base 1:2.4.0 + purple_roomlist_room_get_parent@Base 1:2.4.0 + purple_roomlist_room_get_type@Base 1:2.4.0 + purple_roomlist_room_join@Base 1:2.2.0 + purple_roomlist_room_new@Base 1:2.2.0 + purple_roomlist_set_fields@Base 1:2.2.0 + purple_roomlist_set_in_progress@Base 1:2.2.0 + purple_roomlist_set_ui_ops@Base 1:2.2.0 + purple_roomlist_show_with_account@Base 1:2.2.0 + purple_roomlist_unref@Base 1:2.2.0 + purple_running_gnome@Base 1:2.2.0 + purple_running_kde@Base 1:2.2.0 + purple_running_osx@Base 1:2.2.0 + purple_savedstatus_activate@Base 1:2.2.0 + purple_savedstatus_activate_for_account@Base 1:2.2.0 + purple_savedstatus_delete@Base 1:2.2.0 + purple_savedstatus_delete_by_status@Base 1:2.2.0 + purple_savedstatus_find@Base 1:2.2.0 + purple_savedstatus_find_by_creation_time@Base 1:2.2.0 + purple_savedstatus_find_transient_by_type_and_message@Base 1:2.2.0 + purple_savedstatus_get_creation_time@Base 1:2.2.0 + purple_savedstatus_get_current@Base 1:2.2.0 + purple_savedstatus_get_default@Base 1:2.2.0 + purple_savedstatus_get_idleaway@Base 1:2.2.0 + purple_savedstatus_get_message@Base 1:2.2.0 + purple_savedstatus_get_startup@Base 1:2.2.0 + purple_savedstatus_get_substatus@Base 1:2.2.0 + purple_savedstatus_get_title@Base 1:2.2.0 + purple_savedstatus_get_type@Base 1:2.2.0 + purple_savedstatus_has_substatuses@Base 1:2.2.0 + purple_savedstatus_is_idleaway@Base 1:2.2.0 + purple_savedstatus_is_transient@Base 1:2.2.0 + purple_savedstatus_new@Base 1:2.2.0 + purple_savedstatus_set_idleaway@Base 1:2.2.0 + purple_savedstatus_set_message@Base 1:2.2.0 + purple_savedstatus_set_substatus@Base 1:2.2.0 + purple_savedstatus_set_title@Base 1:2.2.0 + purple_savedstatus_set_type@Base 1:2.2.0 + purple_savedstatus_substatus_get_message@Base 1:2.2.0 + purple_savedstatus_substatus_get_type@Base 1:2.2.0 + purple_savedstatus_unset_substatus@Base 1:2.2.0 + purple_savedstatuses_get_all@Base 1:2.2.0 + purple_savedstatuses_get_popular@Base 1:2.2.0 + purple_savedstatuses_init@Base 1:2.2.0 + purple_savedstatuses_uninit@Base 1:2.2.0 + purple_serv_got_join_chat_failed@Base 1:2.5.0 + purple_serv_got_private_alias@Base 1:2.4.0 + purple_set_blist@Base 1:2.2.0 + purple_smiley_delete@Base 1:2.5.0 + purple_smiley_get_checksum@Base 1:2.5.0 + purple_smiley_get_extension@Base 1:2.5.0 + purple_smiley_get_full_path@Base 1:2.5.0 + purple_smiley_get_shortcut@Base 1:2.5.0 + purple_smiley_get_stored_image@Base 1:2.5.0 + purple_smiley_new@Base 1:2.5.0 + purple_smiley_new_from_file@Base 1:2.5.0 + purple_smiley_set_data@Base 1:2.5.0 + purple_smiley_set_shortcut@Base 1:2.5.0 + purple_smileys_find_by_checksum@Base 1:2.5.0 + purple_smileys_find_by_shortcut@Base 1:2.5.0 + purple_smileys_get_all@Base 1:2.5.0 + purple_smileys_get_storing_dir@Base 1:2.5.0 + purple_smileys_init@Base 1:2.5.0 + purple_smileys_uninit@Base 1:2.5.0 + purple_status_attr_destroy@Base 1:2.2.0 + purple_status_attr_get_id@Base 1:2.2.0 + purple_status_attr_get_name@Base 1:2.2.0 + purple_status_attr_get_value@Base 1:2.2.0 + purple_status_attr_new@Base 1:2.2.0 + purple_status_compare@Base 1:2.2.0 + purple_status_destroy@Base 1:2.2.0 + purple_status_get_attr_boolean@Base 1:2.2.0 + purple_status_get_attr_int@Base 1:2.2.0 + purple_status_get_attr_string@Base 1:2.2.0 + purple_status_get_attr_value@Base 1:2.2.0 + purple_status_get_id@Base 1:2.2.0 + purple_status_get_name@Base 1:2.2.0 + purple_status_get_presence@Base 1:2.2.0 + purple_status_get_type@Base 1:2.2.0 + purple_status_init@Base 1:2.2.0 + purple_status_is_active@Base 1:2.2.0 + purple_status_is_available@Base 1:2.2.0 + purple_status_is_exclusive@Base 1:2.2.0 + purple_status_is_independent@Base 1:2.2.0 + purple_status_is_online@Base 1:2.2.0 + purple_status_new@Base 1:2.2.0 + purple_status_set_active@Base 1:2.2.0 + purple_status_set_active_with_attrs_list@Base 1:2.2.0 + purple_status_set_attr_boolean@Base 1:2.2.0 + purple_status_set_attr_int@Base 1:2.2.0 + purple_status_set_attr_string@Base 1:2.2.0 + purple_status_type_add_attr@Base 1:2.2.0 + purple_status_type_destroy@Base 1:2.2.0 + purple_status_type_find_with_id@Base 1:2.2.0 + purple_status_type_get_attr@Base 1:2.2.0 + purple_status_type_get_attrs@Base 1:2.2.0 + purple_status_type_get_id@Base 1:2.2.0 + purple_status_type_get_name@Base 1:2.2.0 + purple_status_type_get_primary_attr@Base 1:2.2.0 + purple_status_type_get_primitive@Base 1:2.2.0 + purple_status_type_is_available@Base 1:2.2.0 + purple_status_type_is_exclusive@Base 1:2.2.0 + purple_status_type_is_independent@Base 1:2.2.0 + purple_status_type_is_saveable@Base 1:2.2.0 + purple_status_type_is_user_settable@Base 1:2.2.0 + purple_status_type_new@Base 1:2.2.0 + purple_status_type_new_full@Base 1:2.2.0 + purple_status_type_set_primary_attr@Base 1:2.2.0 + purple_status_uninit@Base 1:2.2.0 + purple_str_add_cr@Base 1:2.2.0 + purple_str_binary_to_ascii@Base 1:2.2.0 + purple_str_has_prefix@Base 1:2.2.0 + purple_str_has_suffix@Base 1:2.2.0 + purple_str_seconds_to_string@Base 1:2.2.0 + purple_str_size_to_units@Base 1:2.2.0 + purple_strcasereplace@Base 1:2.2.0 + purple_strcasestr@Base 1:2.2.0 + purple_strdup_withhtml@Base 1:2.2.0 + purple_strreplace@Base 1:2.2.0 + purple_text_strip_mnemonic@Base 1:2.2.0 + purple_time_build@Base 1:2.2.0 + purple_unescape_filename@Base 1:2.2.0 + purple_unescape_html@Base 1:2.2.0 + purple_uri_list_extract_filenames@Base 1:2.2.0 + purple_uri_list_extract_uris@Base 1:2.2.0 + purple_url_decode@Base 1:2.2.0 + purple_url_encode@Base 1:2.2.0 + purple_user_dir@Base 1:2.2.0 + purple_utf8_has_word@Base 1:2.2.0 + purple_utf8_ncr_decode@Base 1:2.2.0 + purple_utf8_ncr_encode@Base 1:2.2.0 + purple_utf8_salvage@Base 1:2.2.0 + purple_utf8_strcasecmp@Base 1:2.2.0 + purple_utf8_try_convert@Base 1:2.2.0 + purple_util_fetch_url_cancel@Base 1:2.2.0 + purple_util_format_song_info@Base 1:2.4.0 + purple_util_init@Base 1:2.3.0 + purple_util_set_current_song@Base 1:2.4.0 + purple_util_set_user_dir@Base 1:2.2.0 + purple_util_uninit@Base 1:2.3.0 + purple_util_write_data_to_file@Base 1:2.2.0 + purple_util_write_data_to_file_absolute@Base 1:2.5.0 + purple_xfer_add@Base 1:2.2.0 + purple_xfer_cancel_local@Base 1:2.2.0 + purple_xfer_cancel_remote@Base 1:2.2.0 + purple_xfer_end@Base 1:2.2.0 + purple_xfer_error@Base 1:2.2.0 + purple_xfer_get_account@Base 1:2.2.0 + purple_xfer_get_bytes_remaining@Base 1:2.2.0 + purple_xfer_get_bytes_sent@Base 1:2.2.0 + purple_xfer_get_end_time@Base 1:2.4.0 + purple_xfer_get_filename@Base 1:2.2.0 + purple_xfer_get_local_filename@Base 1:2.2.0 + purple_xfer_get_remote_ip@Base 1:2.2.0 + purple_xfer_get_remote_user@Base 1:2.2.0 + purple_xfer_get_size@Base 1:2.2.0 + purple_xfer_get_start_time@Base 1:2.4.0 + purple_xfer_get_status@Base 1:2.2.0 + purple_xfer_get_type@Base 1:2.2.0 + purple_xfer_get_ui_ops@Base 1:2.2.0 + purple_xfer_is_canceled@Base 1:2.2.0 + purple_xfer_is_completed@Base 1:2.2.0 + purple_xfer_new@Base 1:2.2.0 + purple_xfer_ref@Base 1:2.2.0 + purple_xfer_request@Base 1:2.2.0 + purple_xfer_request_accepted@Base 1:2.2.0 + purple_xfer_request_denied@Base 1:2.2.0 + purple_xfer_set_bytes_sent@Base 1:2.2.0 + purple_xfer_set_completed@Base 1:2.2.0 + purple_xfer_set_filename@Base 1:2.2.0 + purple_xfer_set_local_filename@Base 1:2.2.0 + purple_xfer_set_message@Base 1:2.2.0 + purple_xfer_set_size@Base 1:2.2.0 + purple_xfer_start@Base 1:2.2.0 + purple_xfer_unref@Base 1:2.2.0 + purple_xfer_update_progress@Base 1:2.2.0 + purple_xfers_get_all@Base 1:2.2.0 + purple_xfers_get_ui_ops@Base 1:2.2.0 + purple_xfers_init@Base 1:2.2.0 + purple_xfers_set_ui_ops@Base 1:2.2.0 + purple_xfers_uninit@Base 1:2.2.0 + serv_add_deny@Base 1:2.2.0 + serv_add_permit@Base 1:2.2.0 + serv_alias_buddy@Base 1:2.2.0 + serv_chat_invite@Base 1:2.2.0 + serv_chat_leave@Base 1:2.2.0 + serv_chat_send@Base 1:2.2.0 + serv_chat_whisper@Base 1:2.2.0 + serv_get_info@Base 1:2.2.0 + serv_got_alias@Base 1:2.2.0 + serv_got_attention@Base 1:2.2.0 + serv_got_chat_in@Base 1:2.2.0 + serv_got_chat_invite@Base 1:2.2.0 + serv_got_chat_left@Base 1:2.2.0 + serv_got_im@Base 1:2.2.0 + serv_got_joined_chat@Base 1:2.2.0 + serv_got_typing@Base 1:2.2.0 + serv_got_typing_stopped@Base 1:2.2.0 + serv_join_chat@Base 1:2.2.0 + serv_move_buddy@Base 1:2.2.0 + serv_reject_chat@Base 1:2.2.0 + serv_rem_deny@Base 1:2.2.0 + serv_rem_permit@Base 1:2.2.0 + serv_send_attention@Base 1:2.2.0 + serv_send_file@Base 1:2.2.0 + serv_send_im@Base 1:2.2.0 + serv_set_info@Base 1:2.2.0 + serv_set_permit_deny@Base 1:2.2.0 + xmlnode_free@Base 1:2.2.0 + xmlnode_get_attrib@Base 1:2.2.0 + xmlnode_get_attrib_with_namespace@Base 1:2.2.0 + xmlnode_get_data@Base 1:2.2.0 + xmlnode_get_data_unescaped@Base 1:2.2.0 + xmlnode_get_namespace@Base 1:2.2.0 + xmlnode_get_prefix@Base 1:2.3.0 + xmlnode_insert_child@Base 1:2.2.0 + xmlnode_insert_data@Base 1:2.2.0 + xmlnode_remove_attrib@Base 1:2.2.0 + xmlnode_remove_attrib_with_namespace@Base 1:2.2.0 + xmlnode_set_attrib@Base 1:2.2.0 + xmlnode_set_attrib_with_namespace@Base 1:2.2.0 + xmlnode_set_attrib_with_prefix@Base 1:2.3.0 + xmlnode_set_namespace@Base 1:2.2.0 + xmlnode_set_prefix@Base 1:2.3.0 + xmlnode_to_formatted_str@Base 1:2.2.0 + xmlnode_to_str@Base 1:2.2.0 +libpurple.so.0 libpurple0 #MINVER# + PURPLE_DBUS_TYPE_PurpleAccount@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleAccountOption@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleAccountUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleAccountUserSplit@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleAttentionType@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleBlistNode@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleBlistUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleBuddy@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleBuddyIcon@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleBuddyIconSpec@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleBuddyList@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCertificate@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCertificatePool@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCertificateScheme@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCertificateVerificationRequest@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCertificateVerifier@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleChat@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCipher@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCipherContext@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCipherOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCircBuffer@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConnection@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConnectionErrorInfo@Base 1:2.3.0 + PURPLE_DBUS_TYPE_PurpleConnectionUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleContact@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConvChat@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConvChatBuddy@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConvIm@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConvMessage@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConversation@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleConversationUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCore@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleCoreUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleDebugUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleDesktopItem@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleDnsQueryData@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleDnsQueryUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleEventLoopUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleGroup@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleIdleUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleKeyValuePair@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleLog@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleLogCommonLoggerData@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleLogLogger@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleLogSet@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleMenuAction@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleMimeDocument@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleMimePart@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNetworkListenData@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNotifySearchButton@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNotifySearchColumn@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNotifySearchResults@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNotifyUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNotifyUserInfo@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleNotifyUserInfoEntry@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePlugin@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginAction@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginInfo@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginLoaderInfo@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginPref@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginPrefFrame@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginProtocolInfo@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePluginUiInfo@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePounce@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePresence@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurplePrivacyUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleProxyConnectData@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleProxyInfo@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRequestField@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRequestFieldGroup@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRequestFields@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRequestUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRoomlist@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRoomlistField@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRoomlistRoom@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleRoomlistUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSavedStatus@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSavedStatusSub@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSmiley@Base 1:2.5.0 + PURPLE_DBUS_TYPE_PurpleSmileyClass@Base 1:2.5.0 + PURPLE_DBUS_TYPE_PurpleSoundUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSrvQueryData@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSrvResponse@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSslConnection@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleSslOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleStatus@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleStatusAttr@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleStatusType@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleStoredImage@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleStringref@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleStunNatDiscovery@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleUtilFetchUrlData@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleValue@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleWhiteboard@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleWhiteboardPrplOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleWhiteboardUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleXfer@Base 1:2.2.0 + PURPLE_DBUS_TYPE_PurpleXferUiOps@Base 1:2.2.0 + PURPLE_DBUS_TYPE_UPnPMappingAddRemove@Base 1:2.2.0 + PURPLE_DBUS_TYPE_xmlnode@Base 1:2.2.0 + purple_GList_to_array@Base 1:2.2.0 + purple_GSList_to_array@Base 1:2.2.0 + purple_account_add_buddies@Base 1:2.2.0 + purple_account_add_buddy@Base 1:2.2.0 + purple_account_change_password@Base 1:2.2.0 + purple_account_clear_current_error@Base 1:2.3.0 + purple_account_clear_settings@Base 1:2.2.0 + purple_account_connect@Base 1:2.2.0 + purple_account_destroy@Base 1:2.2.0 + purple_account_destroy_log@Base 1:2.2.0 + purple_account_disconnect@Base 1:2.2.0 + purple_account_get_active_status@Base 1:2.2.0 + purple_account_get_alias@Base 1:2.2.0 + purple_account_get_bool@Base 1:2.2.0 + purple_account_get_buddy_icon_path@Base 1:2.2.0 + purple_account_get_check_mail@Base 1:2.2.0 + purple_account_get_connection@Base 1:2.2.0 + purple_account_get_current_error@Base 1:2.3.0 + purple_account_get_enabled@Base 1:2.2.0 + purple_account_get_int@Base 1:2.2.0 + purple_account_get_log@Base 1:2.2.0 + purple_account_get_password@Base 1:2.2.0 + purple_account_get_presence@Base 1:2.2.0 + purple_account_get_protocol_id@Base 1:2.2.0 + purple_account_get_protocol_name@Base 1:2.2.0 + purple_account_get_proxy_info@Base 1:2.2.0 + purple_account_get_remember_password@Base 1:2.2.0 + purple_account_get_status@Base 1:2.2.0 + purple_account_get_status_type@Base 1:2.2.0 + purple_account_get_status_type_with_primitive@Base 1:2.2.0 + purple_account_get_status_types@Base 1:2.2.0 + purple_account_get_string@Base 1:2.2.0 + purple_account_get_ui_bool@Base 1:2.2.0 + purple_account_get_ui_int@Base 1:2.2.0 + purple_account_get_ui_string@Base 1:2.2.0 + purple_account_get_user_info@Base 1:2.2.0 + purple_account_get_username@Base 1:2.2.0 + purple_account_is_connected@Base 1:2.2.0 + purple_account_is_connecting@Base 1:2.2.0 + purple_account_is_disconnected@Base 1:2.2.0 + purple_account_is_status_active@Base 1:2.2.0 + purple_account_new@Base 1:2.2.0 + purple_account_notify_added@Base 1:2.2.0 + purple_account_option_add_list_item@Base 1:2.2.0 + purple_account_option_bool_new@Base 1:2.2.0 + purple_account_option_destroy@Base 1:2.2.0 + purple_account_option_get_default_bool@Base 1:2.2.0 + purple_account_option_get_default_int@Base 1:2.2.0 + purple_account_option_get_default_list_value@Base 1:2.2.0 + purple_account_option_get_default_string@Base 1:2.2.0 + purple_account_option_get_list@Base 1:2.2.0 + purple_account_option_get_masked@Base 1:2.2.0 + purple_account_option_get_setting@Base 1:2.2.0 + purple_account_option_get_text@Base 1:2.2.0 + purple_account_option_get_type@Base 1:2.2.0 + purple_account_option_int_new@Base 1:2.2.0 + purple_account_option_list_new@Base 1:2.2.0 + purple_account_option_new@Base 1:2.2.0 + purple_account_option_set_default_bool@Base 1:2.2.0 + purple_account_option_set_default_int@Base 1:2.2.0 + purple_account_option_set_default_string@Base 1:2.2.0 + purple_account_option_set_list@Base 1:2.2.0 + purple_account_option_set_masked@Base 1:2.2.0 + purple_account_option_string_new@Base 1:2.2.0 + purple_account_register@Base 1:2.2.0 + purple_account_remove_buddies@Base 1:2.2.0 + purple_account_remove_buddy@Base 1:2.2.0 + purple_account_remove_group@Base 1:2.2.0 + purple_account_request_add@Base 1:2.2.0 + purple_account_request_authorization@Base 1:2.2.0 + purple_account_request_change_password@Base 1:2.2.0 + purple_account_request_change_user_info@Base 1:2.2.0 + purple_account_request_close@Base 1:2.2.0 + purple_account_request_close_with_account@Base 1:2.2.0 + purple_account_request_password@Base 1:2.2.0 + purple_account_set_alias@Base 1:2.2.0 + purple_account_set_bool@Base 1:2.2.0 + purple_account_set_buddy_icon_path@Base 1:2.2.0 + purple_account_set_check_mail@Base 1:2.2.0 + purple_account_set_connection@Base 1:2.2.0 + purple_account_set_enabled@Base 1:2.2.0 + purple_account_set_int@Base 1:2.2.0 + purple_account_set_password@Base 1:2.2.0 + purple_account_set_protocol_id@Base 1:2.2.0 + purple_account_set_proxy_info@Base 1:2.2.0 + purple_account_set_register_callback@Base 1:2.2.0 + purple_account_set_remember_password@Base 1:2.2.0 + purple_account_set_status@Base 1:2.2.0 + purple_account_set_status_list@Base 1:2.2.0 + purple_account_set_status_types@Base 1:2.2.0 + purple_account_set_string@Base 1:2.2.0 + purple_account_set_ui_bool@Base 1:2.2.0 + purple_account_set_ui_int@Base 1:2.2.0 + purple_account_set_ui_string@Base 1:2.2.0 + purple_account_set_user_info@Base 1:2.2.0 + purple_account_set_username@Base 1:2.2.0 + purple_account_supports_offline_message@Base 1:2.2.0 + purple_account_unregister@Base 1:2.2.0 + purple_account_user_split_destroy@Base 1:2.2.0 + purple_account_user_split_get_default_value@Base 1:2.2.0 + purple_account_user_split_get_reverse@Base 1:2.2.0 + purple_account_user_split_get_separator@Base 1:2.2.0 + purple_account_user_split_get_text@Base 1:2.2.0 + purple_account_user_split_new@Base 1:2.2.0 + purple_account_user_split_set_reverse@Base 1:2.2.0 + purple_accounts_add@Base 1:2.2.0 + purple_accounts_delete@Base 1:2.2.0 + purple_accounts_find@Base 1:2.2.0 + purple_accounts_find_any@Base 1:2.2.0 + purple_accounts_find_connected@Base 1:2.2.0 + purple_accounts_find_ext@Base 1:2.2.0 + purple_accounts_get_all@Base 1:2.2.0 + purple_accounts_get_all_active@Base 1:2.2.0 + purple_accounts_get_handle@Base 1:2.2.0 + purple_accounts_get_ui_ops@Base 1:2.2.0 + purple_accounts_init@Base 1:2.2.0 + purple_accounts_remove@Base 1:2.2.0 + purple_accounts_reorder@Base 1:2.2.0 + purple_accounts_restore_current_statuses@Base 1:2.2.0 + purple_accounts_set_ui_ops@Base 1:2.2.0 + purple_accounts_uninit@Base 1:2.2.0 + purple_attention_type_get_icon_name@Base 1:2.4.0 + purple_attention_type_get_incoming_desc@Base 1:2.4.0 + purple_attention_type_get_name@Base 1:2.4.0 + purple_attention_type_get_outgoing_desc@Base 1:2.4.0 + purple_attention_type_get_unlocalized_name@Base 1:2.4.0 + purple_attention_type_new@Base 1:2.4.0 + purple_attention_type_set_icon_name@Base 1:2.4.0 + purple_attention_type_set_incoming_desc@Base 1:2.4.0 + purple_attention_type_set_name@Base 1:2.4.0 + purple_attention_type_set_outgoing_desc@Base 1:2.4.0 + purple_attention_type_set_unlocalized_name@Base 1:2.4.0 + purple_base16_decode@Base 1:2.2.0 + purple_base16_encode@Base 1:2.2.0 + purple_base16_encode_chunked@Base 1:2.2.0 + purple_base64_decode@Base 1:2.2.0 + purple_base64_encode@Base 1:2.2.0 + purple_blist_add_account@Base 1:2.2.0 + purple_blist_add_buddy@Base 1:2.2.0 + purple_blist_add_chat@Base 1:2.2.0 + purple_blist_add_contact@Base 1:2.2.0 + purple_blist_add_group@Base 1:2.2.0 + purple_blist_alias_buddy@Base 1:2.2.0 + purple_blist_alias_chat@Base 1:2.2.0 + purple_blist_alias_contact@Base 1:2.2.0 + purple_blist_destroy@Base 1:2.2.0 + purple_blist_find_chat@Base 1:2.2.0 + purple_blist_get_group_online_count@Base 1:2.2.0 + purple_blist_get_group_size@Base 1:2.2.0 + purple_blist_get_handle@Base 1:2.2.0 + purple_blist_get_root@Base 1:2.2.0 + purple_blist_get_ui_ops@Base 1:2.2.0 + purple_blist_init@Base 1:2.2.0 + purple_blist_load@Base 1:2.2.0 + purple_blist_merge_contact@Base 1:2.2.0 + purple_blist_new@Base 1:2.2.0 + purple_blist_node_get_bool@Base 1:2.2.0 + purple_blist_node_get_extended_menu@Base 1:2.2.0 + purple_blist_node_get_first_child@Base 1:2.4.0 + purple_blist_node_get_flags@Base 1:2.2.0 + purple_blist_node_get_int@Base 1:2.2.0 + purple_blist_node_get_parent@Base 1:2.4.0 + purple_blist_node_get_sibling_next@Base 1:2.4.0 + purple_blist_node_get_sibling_prev@Base 1:2.4.0 + purple_blist_node_get_string@Base 1:2.2.0 + purple_blist_node_get_type@Base 1:2.2.0 + purple_blist_node_next@Base 1:2.2.0 + purple_blist_node_remove_setting@Base 1:2.2.0 + purple_blist_node_set_bool@Base 1:2.2.0 + purple_blist_node_set_flags@Base 1:2.2.0 + purple_blist_node_set_int@Base 1:2.2.0 + purple_blist_node_set_string@Base 1:2.2.0 + purple_blist_remove_account@Base 1:2.2.0 + purple_blist_remove_buddy@Base 1:2.2.0 + purple_blist_remove_chat@Base 1:2.2.0 + purple_blist_remove_contact@Base 1:2.2.0 + purple_blist_remove_group@Base 1:2.2.0 + purple_blist_rename_buddy@Base 1:2.2.0 + purple_blist_rename_group@Base 1:2.2.0 + purple_blist_request_add_buddy@Base 1:2.2.0 + purple_blist_request_add_chat@Base 1:2.2.0 + purple_blist_request_add_group@Base 1:2.2.0 + purple_blist_schedule_save@Base 1:2.2.0 + purple_blist_server_alias_buddy@Base 1:2.2.0 + purple_blist_set_ui_ops@Base 1:2.2.0 + purple_blist_set_visible@Base 1:2.2.0 + purple_blist_show@Base 1:2.2.0 + purple_blist_uninit@Base 1:2.2.0 + purple_blist_update_buddy_icon@Base 1:2.2.0 + purple_blist_update_buddy_status@Base 1:2.2.0 + purple_blist_update_node_icon@Base 1:2.5.0 + purple_buddy_get_account@Base 1:2.2.0 + purple_buddy_get_alias@Base 1:2.2.0 + purple_buddy_get_alias_only@Base 1:2.2.0 + purple_buddy_get_contact@Base 1:2.2.0 + purple_buddy_get_contact_alias@Base 1:2.2.0 + purple_buddy_get_group@Base 1:2.2.0 + purple_buddy_get_icon@Base 1:2.2.0 + purple_buddy_get_local_alias@Base 1:2.2.0 + purple_buddy_get_name@Base 1:2.2.0 + purple_buddy_get_presence@Base 1:2.2.0 + purple_buddy_get_server_alias@Base 1:2.2.0 + purple_buddy_icon_get_account@Base 1:2.2.0 + purple_buddy_icon_get_checksum@Base 1:2.2.0 + purple_buddy_icon_get_data@Base 1:2.2.0 + purple_buddy_icon_get_extension@Base 1:2.2.0 + purple_buddy_icon_get_full_path@Base 1:2.2.0 + purple_buddy_icon_get_scale_size@Base 1:2.2.0 + purple_buddy_icon_get_username@Base 1:2.2.0 + purple_buddy_icon_new@Base 1:2.2.0 + purple_buddy_icon_ref@Base 1:2.2.0 + purple_buddy_icon_set_data@Base 1:2.2.0 + purple_buddy_icon_unref@Base 1:2.2.0 + purple_buddy_icon_update@Base 1:2.2.0 + purple_buddy_icons_find@Base 1:2.2.0 + purple_buddy_icons_find_account_icon@Base 1:2.2.0 + purple_buddy_icons_find_custom_icon@Base 1:2.2.0 + purple_buddy_icons_get_account_icon_timestamp@Base 1:2.2.0 + purple_buddy_icons_get_cache_dir@Base 1:2.2.0 + purple_buddy_icons_get_checksum_for_user@Base 1:2.2.0 + purple_buddy_icons_get_handle@Base 1:2.2.0 + purple_buddy_icons_has_custom_icon@Base 1:2.2.0 + purple_buddy_icons_init@Base 1:2.2.0 + purple_buddy_icons_is_caching@Base 1:2.2.0 + purple_buddy_icons_node_find_custom_icon@Base 1:2.5.0 + purple_buddy_icons_node_has_custom_icon@Base 1:2.5.0 + purple_buddy_icons_node_set_custom_icon@Base 1:2.5.0 + purple_buddy_icons_node_set_custom_icon_from_file@Base 1:2.5.0 + purple_buddy_icons_set_account_icon@Base 1:2.2.0 + purple_buddy_icons_set_cache_dir@Base 1:2.2.0 + purple_buddy_icons_set_caching@Base 1:2.2.0 + purple_buddy_icons_set_custom_icon@Base 1:2.2.0 + purple_buddy_icons_set_for_user@Base 1:2.2.0 + purple_buddy_icons_uninit@Base 1:2.2.0 + purple_buddy_new@Base 1:2.2.0 + purple_buddy_set_icon@Base 1:2.2.0 + purple_build_dir@Base 1:2.2.0 + purple_certificate_add_ca_search_path@Base 1:2.4.0 + purple_certificate_check_signature_chain@Base 1:2.2.0 + purple_certificate_check_subject_name@Base 1:2.2.0 + purple_certificate_copy@Base 1:2.2.0 + purple_certificate_copy_list@Base 1:2.2.0 + purple_certificate_destroy@Base 1:2.2.0 + purple_certificate_destroy_list@Base 1:2.2.0 + purple_certificate_display_x509@Base 1:2.2.0 + purple_certificate_export@Base 1:2.2.0 + purple_certificate_find_pool@Base 1:2.2.0 + purple_certificate_find_scheme@Base 1:2.2.0 + purple_certificate_find_verifier@Base 1:2.2.0 + purple_certificate_get_fingerprint_sha1@Base 1:2.2.0 + purple_certificate_get_handle@Base 1:2.2.0 + purple_certificate_get_issuer_unique_id@Base 1:2.2.0 + purple_certificate_get_pools@Base 1:2.2.0 + purple_certificate_get_schemes@Base 1:2.2.0 + purple_certificate_get_subject_name@Base 1:2.2.0 + purple_certificate_get_times@Base 1:2.2.0 + purple_certificate_get_unique_id@Base 1:2.2.0 + purple_certificate_get_verifiers@Base 1:2.2.0 + purple_certificate_import@Base 1:2.2.0 + purple_certificate_init@Base 1:2.2.0 + purple_certificate_pool_contains@Base 1:2.2.0 + purple_certificate_pool_delete@Base 1:2.2.0 + purple_certificate_pool_destroy_idlist@Base 1:2.2.0 + purple_certificate_pool_get_idlist@Base 1:2.2.0 + purple_certificate_pool_get_scheme@Base 1:2.2.0 + purple_certificate_pool_mkpath@Base 1:2.2.0 + purple_certificate_pool_retrieve@Base 1:2.2.0 + purple_certificate_pool_store@Base 1:2.2.0 + purple_certificate_pool_usable@Base 1:2.2.0 + purple_certificate_register_pool@Base 1:2.2.0 + purple_certificate_register_scheme@Base 1:2.2.0 + purple_certificate_register_verifier@Base 1:2.2.0 + purple_certificate_signed_by@Base 1:2.2.0 + purple_certificate_uninit@Base 1:2.2.0 + purple_certificate_unregister_pool@Base 1:2.2.0 + purple_certificate_unregister_scheme@Base 1:2.2.0 + purple_certificate_unregister_verifier@Base 1:2.2.0 + purple_certificate_verify@Base 1:2.2.0 + purple_certificate_verify_complete@Base 1:2.2.0 + purple_chat_get_account@Base 1:2.4.0 + purple_chat_get_components@Base 1:2.4.0 + purple_chat_get_group@Base 1:2.2.0 + purple_chat_get_name@Base 1:2.2.0 + purple_chat_new@Base 1:2.2.0 + purple_cipher_context_append@Base 1:2.2.0 + purple_cipher_context_decrypt@Base 1:2.2.0 + purple_cipher_context_destroy@Base 1:2.2.0 + purple_cipher_context_digest@Base 1:2.2.0 + purple_cipher_context_digest_to_str@Base 1:2.2.0 + purple_cipher_context_encrypt@Base 1:2.2.0 + purple_cipher_context_get_batch_mode@Base 1:2.4.0 + purple_cipher_context_get_block_size@Base 1:2.4.0 + purple_cipher_context_get_data@Base 1:2.2.0 + purple_cipher_context_get_key_size@Base 1:2.2.0 + purple_cipher_context_get_option@Base 1:2.2.0 + purple_cipher_context_get_salt_size@Base 1:2.2.0 + purple_cipher_context_new@Base 1:2.2.0 + purple_cipher_context_new_by_name@Base 1:2.2.0 + purple_cipher_context_reset@Base 1:2.2.0 + purple_cipher_context_set_batch_mode@Base 1:2.4.0 + purple_cipher_context_set_data@Base 1:2.2.0 + purple_cipher_context_set_iv@Base 1:2.2.0 + purple_cipher_context_set_key@Base 1:2.2.0 + purple_cipher_context_set_key_with_len@Base 1:2.4.0 + purple_cipher_context_set_option@Base 1:2.2.0 + purple_cipher_context_set_salt@Base 1:2.2.0 + purple_cipher_digest_region@Base 1:2.2.0 + purple_cipher_get_capabilities@Base 1:2.2.0 + purple_cipher_get_name@Base 1:2.2.0 + purple_cipher_http_digest_calculate_response@Base 1:2.2.0 + purple_cipher_http_digest_calculate_session_key@Base 1:2.2.0 + purple_ciphers_find_cipher@Base 1:2.2.0 + purple_ciphers_get_ciphers@Base 1:2.2.0 + purple_ciphers_get_handle@Base 1:2.2.0 + purple_ciphers_init@Base 1:2.2.0 + purple_ciphers_register_cipher@Base 1:2.2.0 + purple_ciphers_uninit@Base 1:2.2.0 + purple_ciphers_unregister_cipher@Base 1:2.2.0 + purple_circ_buffer_append@Base 1:2.2.0 + purple_circ_buffer_destroy@Base 1:2.2.0 + purple_circ_buffer_get_max_read@Base 1:2.2.0 + purple_circ_buffer_mark_read@Base 1:2.2.0 + purple_circ_buffer_new@Base 1:2.2.0 + purple_cmd_do_command@Base 1:2.2.0 + purple_cmd_help@Base 1:2.2.0 + purple_cmd_list@Base 1:2.2.0 + purple_cmd_register@Base 1:2.2.0 + purple_cmd_unregister@Base 1:2.2.0 + purple_cmds_get_handle@Base 1:2.5.0 + purple_cmds_init@Base 1:2.5.0 + purple_cmds_uninit@Base 1:2.5.0 + purple_connection_destroy@Base 1:2.2.0 + purple_connection_error@Base 1:2.2.0 + purple_connection_error_is_fatal@Base 1:2.3.0 + purple_connection_error_reason@Base 1:2.3.0 + purple_connection_get_account@Base 1:2.2.0 + purple_connection_get_display_name@Base 1:2.2.0 + purple_connection_get_password@Base 1:2.2.0 + purple_connection_get_prpl@Base 1:2.4.0 + purple_connection_get_state@Base 1:2.2.0 + purple_connection_new@Base 1:2.2.0 + purple_connection_new_unregister@Base 1:2.2.0 + purple_connection_notice@Base 1:2.2.0 + purple_connection_set_account@Base 1:2.2.0 + purple_connection_set_display_name@Base 1:2.2.0 + purple_connection_set_state@Base 1:2.2.0 + purple_connection_ssl_error@Base 1:2.3.0 + purple_connection_update_progress@Base 1:2.2.0 + purple_connections_disconnect_all@Base 1:2.2.0 + purple_connections_get_all@Base 1:2.2.0 + purple_connections_get_connecting@Base 1:2.2.0 + purple_connections_get_handle@Base 1:2.2.0 + purple_connections_get_ui_ops@Base 1:2.2.0 + purple_connections_init@Base 1:2.2.0 + purple_connections_set_ui_ops@Base 1:2.2.0 + purple_connections_uninit@Base 1:2.2.0 + purple_contact_get_alias@Base 1:2.2.0 + purple_contact_get_priority_buddy@Base 1:2.2.0 + purple_contact_invalidate_priority_buddy@Base 1:2.2.0 + purple_contact_new@Base 1:2.2.0 + purple_contact_on_account@Base 1:2.2.0 + purple_contact_set_alias@Base 1:2.2.0 + purple_conv_chat_add_user@Base 1:2.2.0 + purple_conv_chat_add_users@Base 1:2.2.0 + purple_conv_chat_cb_destroy@Base 1:2.2.0 + purple_conv_chat_cb_find@Base 1:2.2.0 + purple_conv_chat_cb_get_name@Base 1:2.2.0 + purple_conv_chat_cb_new@Base 1:2.2.0 + purple_conv_chat_clear_users@Base 1:2.2.0 + purple_conv_chat_find_user@Base 1:2.2.0 + purple_conv_chat_get_conversation@Base 1:2.2.0 + purple_conv_chat_get_id@Base 1:2.2.0 + purple_conv_chat_get_ignored@Base 1:2.2.0 + purple_conv_chat_get_ignored_user@Base 1:2.2.0 + purple_conv_chat_get_nick@Base 1:2.2.0 + purple_conv_chat_get_topic@Base 1:2.2.0 + purple_conv_chat_get_users@Base 1:2.2.0 + purple_conv_chat_has_left@Base 1:2.2.0 + purple_conv_chat_ignore@Base 1:2.2.0 + purple_conv_chat_is_user_ignored@Base 1:2.2.0 + purple_conv_chat_left@Base 1:2.2.0 + purple_conv_chat_remove_user@Base 1:2.2.0 + purple_conv_chat_remove_users@Base 1:2.2.0 + purple_conv_chat_rename_user@Base 1:2.2.0 + purple_conv_chat_send@Base 1:2.2.0 + purple_conv_chat_send_with_flags@Base 1:2.2.0 + purple_conv_chat_set_id@Base 1:2.2.0 + purple_conv_chat_set_ignored@Base 1:2.2.0 + purple_conv_chat_set_nick@Base 1:2.2.0 + purple_conv_chat_set_topic@Base 1:2.2.0 + purple_conv_chat_set_users@Base 1:2.2.0 + purple_conv_chat_unignore@Base 1:2.2.0 + purple_conv_chat_user_get_flags@Base 1:2.2.0 + purple_conv_chat_user_set_flags@Base 1:2.2.0 + purple_conv_chat_write@Base 1:2.2.0 + purple_conv_custom_smiley_add@Base 1:2.2.0 + purple_conv_custom_smiley_close@Base 1:2.2.0 + purple_conv_custom_smiley_write@Base 1:2.2.0 + purple_conv_im_get_conversation@Base 1:2.2.0 + purple_conv_im_get_icon@Base 1:2.2.0 + purple_conv_im_get_send_typed_timeout@Base 1:2.2.0 + purple_conv_im_get_type_again@Base 1:2.2.0 + purple_conv_im_get_typing_state@Base 1:2.2.0 + purple_conv_im_get_typing_timeout@Base 1:2.2.0 + purple_conv_im_send@Base 1:2.2.0 + purple_conv_im_send_with_flags@Base 1:2.2.0 + purple_conv_im_set_icon@Base 1:2.2.0 + purple_conv_im_set_type_again@Base 1:2.2.0 + purple_conv_im_set_typing_state@Base 1:2.2.0 + purple_conv_im_start_send_typed_timeout@Base 1:2.2.0 + purple_conv_im_start_typing_timeout@Base 1:2.2.0 + purple_conv_im_stop_send_typed_timeout@Base 1:2.2.0 + purple_conv_im_stop_typing_timeout@Base 1:2.2.0 + purple_conv_im_update_typing@Base 1:2.2.0 + purple_conv_im_write@Base 1:2.2.0 + purple_conv_present_error@Base 1:2.2.0 + purple_conv_send_confirm@Base 1:2.2.0 + purple_conversation_autoset_title@Base 1:2.2.0 + purple_conversation_clear_message_history@Base 1:2.2.0 + purple_conversation_close_logs@Base 1:2.2.0 + purple_conversation_destroy@Base 1:2.2.0 + purple_conversation_do_command@Base 1:2.2.0 + purple_conversation_foreach@Base 1:2.2.0 + purple_conversation_get_account@Base 1:2.2.0 + purple_conversation_get_chat_data@Base 1:2.2.0 + purple_conversation_get_data@Base 1:2.2.0 + purple_conversation_get_extended_menu@Base 1:2.2.0 + purple_conversation_get_features@Base 1:2.2.0 + purple_conversation_get_gc@Base 1:2.2.0 + purple_conversation_get_im_data@Base 1:2.2.0 + purple_conversation_get_message_history@Base 1:2.2.0 + purple_conversation_get_name@Base 1:2.2.0 + purple_conversation_get_title@Base 1:2.2.0 + purple_conversation_get_type@Base 1:2.2.0 + purple_conversation_get_ui_ops@Base 1:2.2.0 + purple_conversation_has_focus@Base 1:2.2.0 + purple_conversation_is_logging@Base 1:2.2.0 + purple_conversation_message_get_flags@Base 1:2.2.0 + purple_conversation_message_get_message@Base 1:2.2.0 + purple_conversation_message_get_sender@Base 1:2.2.0 + purple_conversation_message_get_timestamp@Base 1:2.2.0 + purple_conversation_new@Base 1:2.2.0 + purple_conversation_present@Base 1:2.2.0 + purple_conversation_set_account@Base 1:2.2.0 + purple_conversation_set_data@Base 1:2.2.0 + purple_conversation_set_features@Base 1:2.2.0 + purple_conversation_set_logging@Base 1:2.2.0 + purple_conversation_set_name@Base 1:2.2.0 + purple_conversation_set_title@Base 1:2.2.0 + purple_conversation_set_ui_ops@Base 1:2.2.0 + purple_conversation_update@Base 1:2.2.0 + purple_conversation_write@Base 1:2.2.0 + purple_conversations_get_handle@Base 1:2.2.0 + purple_conversations_init@Base 1:2.2.0 + purple_conversations_set_ui_ops@Base 1:2.2.0 + purple_conversations_uninit@Base 1:2.2.0 + purple_core_ensure_single_instance@Base 1:2.2.0 + purple_core_get_ui@Base 1:2.2.0 + purple_core_get_ui_info@Base 1:2.2.0 + purple_core_get_ui_ops@Base 1:2.2.0 + purple_core_get_version@Base 1:2.2.0 + purple_core_init@Base 1:2.2.0 + purple_core_migrate@Base 1:2.2.0 + purple_core_quit@Base 1:2.2.0 + purple_core_quit_cb@Base 1:2.2.0 + purple_core_set_ui_ops@Base 1:2.2.0 + purple_date_format_full@Base 1:2.2.0 + purple_date_format_long@Base 1:2.2.0 + purple_date_format_short@Base 1:2.2.0 + purple_dbus_get_connection@Base 1:2.2.0 + purple_dbus_get_handle@Base 1:2.2.0 + purple_dbus_get_init_error@Base 1:2.2.0 + purple_dbus_id_to_pointer@Base 1:2.2.0 + purple_dbus_id_to_pointer_error@Base 1:2.2.0 + purple_dbus_init@Base 1:2.2.0 + purple_dbus_init_ids@Base 1:2.2.0 + purple_dbus_is_owner@Base 1:2.2.0 + purple_dbus_iter_hash_table@Base 1:2.2.0 + purple_dbus_message_get_args@Base 1:2.2.0 + purple_dbus_message_get_args_valist@Base 1:2.2.0 + purple_dbus_message_iter_get_args@Base 1:2.2.0 + purple_dbus_message_iter_get_args_valist@Base 1:2.2.0 + purple_dbus_pointer_to_id@Base 1:2.2.0 + purple_dbus_pointer_to_id_error@Base 1:2.2.0 + purple_dbus_register_bindings@Base 1:2.2.0 + purple_dbus_register_pointer@Base 1:2.2.0 + purple_dbus_signal_emit_purple@Base 1:2.2.0 + purple_dbus_uninit@Base 1:2.2.0 + purple_dbus_unregister_pointer@Base 1:2.2.0 + purple_dbusify_GList@Base 1:2.2.0 + purple_dbusify_GSList@Base 1:2.2.0 + purple_debug@Base 1:2.2.0 + purple_debug_error@Base 1:2.2.0 + purple_debug_fatal@Base 1:2.2.0 + purple_debug_get_ui_ops@Base 1:2.2.0 + purple_debug_info@Base 1:2.2.0 + purple_debug_init@Base 1:2.2.0 + purple_debug_is_enabled@Base 1:2.2.0 + purple_debug_misc@Base 1:2.2.0 + purple_debug_set_enabled@Base 1:2.2.0 + purple_debug_set_ui_ops@Base 1:2.2.0 + purple_debug_warning@Base 1:2.2.0 + purple_desktop_item_copy@Base 1:2.2.0 + purple_desktop_item_get_entry_type@Base 1:2.2.0 + purple_desktop_item_get_string@Base 1:2.2.0 + purple_desktop_item_get_type@Base 1:2.2.0 + purple_desktop_item_new_from_file@Base 1:2.2.0 + purple_desktop_item_unref@Base 1:2.2.0 + purple_dnsquery_a@Base 1:2.2.0 + purple_dnsquery_destroy@Base 1:2.2.0 + purple_dnsquery_get_host@Base 1:2.2.0 + purple_dnsquery_get_port@Base 1:2.2.0 + purple_dnsquery_get_ui_ops@Base 1:2.2.0 + purple_dnsquery_init@Base 1:2.2.0 + purple_dnsquery_set_ui_ops@Base 1:2.2.0 + purple_dnsquery_uninit@Base 1:2.2.0 + purple_email_is_valid@Base 1:2.2.0 + purple_escape_filename@Base 1:2.2.0 + purple_eventloop_get_ui_ops@Base 1:2.2.0 + purple_eventloop_set_ui_ops@Base 1:2.2.0 + purple_fd_get_ip@Base 1:2.2.0 + purple_find_buddies@Base 1:2.2.0 + purple_find_buddy@Base 1:2.2.0 + purple_find_buddy_in_group@Base 1:2.2.0 + purple_find_chat@Base 1:2.2.0 + purple_find_conversation_with_account@Base 1:2.2.0 + purple_find_group@Base 1:2.2.0 + purple_find_pounce@Base 1:2.2.0 + purple_find_prpl@Base 1:2.2.0 + purple_gai_strerror@Base 1:2.4.0 + purple_get_attention_type_from_code@Base 1:2.2.0 + purple_get_blist@Base 1:2.2.0 + purple_get_chats@Base 1:2.2.0 + purple_get_conversations@Base 1:2.2.0 + purple_get_core@Base 1:2.2.0 + purple_get_host_name@Base 1:2.5.0 + purple_get_ims@Base 1:2.2.0 + purple_get_tzoff_str@Base 1:2.2.0 + purple_global_proxy_get_info@Base 1:2.2.0 + purple_got_protocol_handler_uri@Base 1:2.2.0 + purple_group_get_accounts@Base 1:2.2.0 + purple_group_get_name@Base 1:2.2.0 + purple_group_new@Base 1:2.2.0 + purple_group_on_account@Base 1:2.2.0 + purple_home_dir@Base 1:2.2.0 + purple_idle_get_ui_ops@Base 1:2.2.0 + purple_idle_init@Base 1:2.2.0 + purple_idle_set@Base 1:2.2.0 + purple_idle_set_ui_ops@Base 1:2.2.0 + purple_idle_touch@Base 1:2.2.0 + purple_idle_uninit@Base 1:2.2.0 + purple_imgstore_add@Base 1:2.2.0 + purple_imgstore_add_with_id@Base 1:2.2.0 + purple_imgstore_find_by_id@Base 1:2.2.0 + purple_imgstore_get_data@Base 1:2.2.0 + purple_imgstore_get_extension@Base 1:2.2.0 + purple_imgstore_get_filename@Base 1:2.2.0 + purple_imgstore_get_handle@Base 1:2.2.0 + purple_imgstore_get_size@Base 1:2.2.0 + purple_imgstore_init@Base 1:2.2.0 + purple_imgstore_new_from_file@Base 1:2.5.0 + purple_imgstore_ref@Base 1:2.2.0 + purple_imgstore_ref_by_id@Base 1:2.2.0 + purple_imgstore_uninit@Base 1:2.2.0 + purple_imgstore_unref@Base 1:2.2.0 + purple_imgstore_unref_by_id@Base 1:2.2.0 + purple_input_add@Base 1:2.2.0 + purple_input_get_error@Base 1:2.2.0 + purple_input_remove@Base 1:2.2.0 + purple_ip_address_is_valid@Base 1:2.4.0 + purple_log_common_deleter@Base 1:2.2.0 + purple_log_common_is_deletable@Base 1:2.2.0 + purple_log_common_lister@Base 1:2.2.0 + purple_log_common_sizer@Base 1:2.2.0 + purple_log_common_total_sizer@Base 1:2.2.0 + purple_log_common_writer@Base 1:2.2.0 + purple_log_compare@Base 1:2.2.0 + purple_log_delete@Base 1:2.2.0 + purple_log_free@Base 1:2.2.0 + purple_log_get_handle@Base 1:2.2.0 + purple_log_get_log_dir@Base 1:2.2.0 + purple_log_get_log_sets@Base 1:2.2.0 + purple_log_get_logs@Base 1:2.2.0 + purple_log_get_size@Base 1:2.2.0 + purple_log_get_system_logs@Base 1:2.2.0 + purple_log_get_total_size@Base 1:2.2.0 + purple_log_init@Base 1:2.2.0 + purple_log_is_deletable@Base 1:2.2.0 + purple_log_logger_add@Base 1:2.2.0 + purple_log_logger_free@Base 1:2.2.0 + purple_log_logger_get@Base 1:2.2.0 + purple_log_logger_get_options@Base 1:2.2.0 + purple_log_logger_new@Base 1:2.2.0 + purple_log_logger_remove@Base 1:2.2.0 + purple_log_logger_set@Base 1:2.2.0 + purple_log_new@Base 1:2.2.0 + purple_log_read@Base 1:2.2.0 + purple_log_set_compare@Base 1:2.2.0 + purple_log_set_free@Base 1:2.2.0 + purple_log_uninit@Base 1:2.2.0 + purple_log_write@Base 1:2.2.0 + purple_major_version@Base 1:2.2.0 + purple_markup_extract_info_field@Base 1:2.2.0 + purple_markup_find_tag@Base 1:2.2.0 + purple_markup_get_css_property@Base 1:2.2.0 + purple_markup_get_tag_name@Base 1:2.2.0 + purple_markup_html_to_xhtml@Base 1:2.2.0 + purple_markup_linkify@Base 1:2.2.0 + purple_markup_slice@Base 1:2.2.0 + purple_markup_strip_html@Base 1:2.2.0 + purple_markup_unescape_entity@Base 1:2.2.0 + purple_marshal_BOOLEAN__INT_POINTER@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_POINTER_UINT@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER_POINTER_UINT@Base 1:2.2.0 + purple_marshal_BOOLEAN__POINTER_POINTER_UINT@Base 1:2.2.0 + purple_marshal_INT__INT@Base 1:2.2.0 + purple_marshal_INT__INT_INT@Base 1:2.2.0 + purple_marshal_INT__POINTER_POINTER@Base 1:2.3.0 + purple_marshal_INT__POINTER_POINTER_POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_POINTER__POINTER_INT64@Base 1:2.2.0 + purple_marshal_POINTER__POINTER_INT64_BOOLEAN@Base 1:2.2.0 + purple_marshal_POINTER__POINTER_INT@Base 1:2.2.0 + purple_marshal_POINTER__POINTER_INT_BOOLEAN@Base 1:2.2.0 + purple_marshal_POINTER__POINTER_POINTER@Base 1:2.2.0 + purple_marshal_VOID@Base 1:2.2.0 + purple_marshal_VOID__INT@Base 1:2.2.0 + purple_marshal_VOID__INT_INT@Base 1:2.2.0 + purple_marshal_VOID__POINTER@Base 1:2.2.0 + purple_marshal_VOID__POINTER_INT_INT@Base 1:2.2.0 + purple_marshal_VOID__POINTER_INT_POINTER@Base 1:2.3.0 + purple_marshal_VOID__POINTER_POINTER@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_POINTER@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_POINTER_POINTER_UINT@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_POINTER_UINT@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_UINT@Base 1:2.2.0 + purple_marshal_VOID__POINTER_POINTER_UINT_UINT@Base 1:2.2.0 + purple_marshal_VOID__POINTER_UINT@Base 1:2.2.0 + purple_menu_action_free@Base 1:2.2.0 + purple_menu_action_new@Base 1:2.2.0 + purple_message_meify@Base 1:2.2.0 + purple_micro_version@Base 1:2.2.0 + purple_mime_decode_field@Base 1:2.2.0 + purple_mime_document_free@Base 1:2.2.0 + purple_mime_document_get_field@Base 1:2.2.0 + purple_mime_document_get_fields@Base 1:2.2.0 + purple_mime_document_get_parts@Base 1:2.2.0 + purple_mime_document_new@Base 1:2.2.0 + purple_mime_document_parse@Base 1:2.2.0 + purple_mime_document_parsen@Base 1:2.2.0 + purple_mime_document_set_field@Base 1:2.2.0 + purple_mime_document_write@Base 1:2.2.0 + purple_mime_part_get_data@Base 1:2.2.0 + purple_mime_part_get_data_decoded@Base 1:2.2.0 + purple_mime_part_get_field@Base 1:2.2.0 + purple_mime_part_get_field_decoded@Base 1:2.2.0 + purple_mime_part_get_fields@Base 1:2.2.0 + purple_mime_part_get_length@Base 1:2.2.0 + purple_mime_part_new@Base 1:2.2.0 + purple_mime_part_set_data@Base 1:2.2.0 + purple_mime_part_set_field@Base 1:2.2.0 + purple_minor_version@Base 1:2.2.0 + purple_mkstemp@Base 1:2.2.0 + purple_network_get_handle@Base 1:2.2.0 + purple_network_get_local_system_ip@Base 1:2.2.0 + purple_network_get_my_ip@Base 1:2.2.0 + purple_network_get_port_from_fd@Base 1:2.2.0 + purple_network_get_public_ip@Base 1:2.2.0 + purple_network_init@Base 1:2.2.0 + purple_network_ip_atoi@Base 1:2.2.0 + purple_network_is_available@Base 1:2.2.0 + purple_network_listen@Base 1:2.2.0 + purple_network_listen_cancel@Base 1:2.2.0 + purple_network_listen_map_external@Base 1:2.3.0 + purple_network_listen_range@Base 1:2.2.0 + purple_network_set_public_ip@Base 1:2.2.0 + purple_network_uninit@Base 1:2.2.0 + purple_normalize@Base 1:2.2.0 + purple_normalize_nocase@Base 1:2.2.0 + purple_notify_close@Base 1:2.2.0 + purple_notify_close_with_handle@Base 1:2.2.0 + purple_notify_email@Base 1:2.2.0 + purple_notify_emails@Base 1:2.2.0 + purple_notify_formatted@Base 1:2.2.0 + purple_notify_get_handle@Base 1:2.2.0 + purple_notify_get_ui_ops@Base 1:2.2.0 + purple_notify_init@Base 1:2.2.0 + purple_notify_message@Base 1:2.2.0 + purple_notify_searchresults@Base 1:2.2.0 + purple_notify_searchresults_button_add@Base 1:2.2.0 + purple_notify_searchresults_button_add_labeled@Base 1:2.2.0 + purple_notify_searchresults_column_add@Base 1:2.2.0 + purple_notify_searchresults_column_get_title@Base 1:2.2.0 + purple_notify_searchresults_column_new@Base 1:2.2.0 + purple_notify_searchresults_free@Base 1:2.2.0 + purple_notify_searchresults_get_columns_count@Base 1:2.2.0 + purple_notify_searchresults_get_rows_count@Base 1:2.2.0 + purple_notify_searchresults_new@Base 1:2.2.0 + purple_notify_searchresults_new_rows@Base 1:2.2.0 + purple_notify_searchresults_row_add@Base 1:2.2.0 + purple_notify_searchresults_row_get@Base 1:2.2.0 + purple_notify_set_ui_ops@Base 1:2.2.0 + purple_notify_uninit@Base 1:2.2.0 + purple_notify_uri@Base 1:2.2.0 + purple_notify_user_info_add_pair@Base 1:2.2.0 + purple_notify_user_info_add_section_break@Base 1:2.2.0 + purple_notify_user_info_add_section_header@Base 1:2.2.0 + purple_notify_user_info_destroy@Base 1:2.2.0 + purple_notify_user_info_entry_get_label@Base 1:2.2.0 + purple_notify_user_info_entry_get_type@Base 1:2.2.0 + purple_notify_user_info_entry_get_value@Base 1:2.2.0 + purple_notify_user_info_entry_new@Base 1:2.2.0 + purple_notify_user_info_entry_set_label@Base 1:2.2.0 + purple_notify_user_info_entry_set_type@Base 1:2.2.0 + purple_notify_user_info_entry_set_value@Base 1:2.2.0 + purple_notify_user_info_get_entries@Base 1:2.2.0 + purple_notify_user_info_get_text_with_newline@Base 1:2.2.0 + purple_notify_user_info_new@Base 1:2.2.0 + purple_notify_user_info_prepend_pair@Base 1:2.2.0 + purple_notify_user_info_prepend_section_break@Base 1:2.5.0 + purple_notify_user_info_prepend_section_header@Base 1:2.5.0 + purple_notify_user_info_remove_entry@Base 1:2.2.0 + purple_notify_user_info_remove_last_item@Base 1:2.2.0 + purple_notify_userinfo@Base 1:2.2.0 + purple_ntlm_gen_type1@Base 1:2.2.0 + purple_ntlm_gen_type3@Base 1:2.2.0 + purple_ntlm_parse_type2@Base 1:2.2.0 + purple_plugin_action_free@Base 1:2.2.0 + purple_plugin_action_new@Base 1:2.2.0 + purple_plugin_destroy@Base 1:2.2.0 + purple_plugin_disable@Base 1:2.3.0 + purple_plugin_get_author@Base 1:2.2.0 + purple_plugin_get_description@Base 1:2.2.0 + purple_plugin_get_homepage@Base 1:2.2.0 + purple_plugin_get_id@Base 1:2.2.0 + purple_plugin_get_name@Base 1:2.2.0 + purple_plugin_get_summary@Base 1:2.2.0 + purple_plugin_get_version@Base 1:2.2.0 + purple_plugin_ipc_call@Base 1:2.2.0 + purple_plugin_ipc_get_params@Base 1:2.2.0 + purple_plugin_ipc_register@Base 1:2.2.0 + purple_plugin_ipc_unregister@Base 1:2.2.0 + purple_plugin_ipc_unregister_all@Base 1:2.2.0 + purple_plugin_is_loaded@Base 1:2.2.0 + purple_plugin_is_unloadable@Base 1:2.2.0 + purple_plugin_load@Base 1:2.2.0 + purple_plugin_new@Base 1:2.2.0 + purple_plugin_pref_add_choice@Base 1:2.2.0 + purple_plugin_pref_destroy@Base 1:2.2.0 + purple_plugin_pref_frame_add@Base 1:2.2.0 + purple_plugin_pref_frame_destroy@Base 1:2.2.0 + purple_plugin_pref_frame_get_prefs@Base 1:2.2.0 + purple_plugin_pref_frame_new@Base 1:2.2.0 + purple_plugin_pref_get_bounds@Base 1:2.2.0 + purple_plugin_pref_get_choices@Base 1:2.2.0 + purple_plugin_pref_get_format_type@Base 1:2.2.0 + purple_plugin_pref_get_label@Base 1:2.2.0 + purple_plugin_pref_get_masked@Base 1:2.2.0 + purple_plugin_pref_get_max_length@Base 1:2.2.0 + purple_plugin_pref_get_name@Base 1:2.2.0 + purple_plugin_pref_get_type@Base 1:2.2.0 + purple_plugin_pref_new@Base 1:2.2.0 + purple_plugin_pref_new_with_label@Base 1:2.2.0 + purple_plugin_pref_new_with_name@Base 1:2.2.0 + purple_plugin_pref_new_with_name_and_label@Base 1:2.2.0 + purple_plugin_pref_set_bounds@Base 1:2.2.0 + purple_plugin_pref_set_format_type@Base 1:2.2.0 + purple_plugin_pref_set_label@Base 1:2.2.0 + purple_plugin_pref_set_masked@Base 1:2.2.0 + purple_plugin_pref_set_max_length@Base 1:2.2.0 + purple_plugin_pref_set_name@Base 1:2.2.0 + purple_plugin_pref_set_type@Base 1:2.2.0 + purple_plugin_probe@Base 1:2.2.0 + purple_plugin_register@Base 1:2.2.0 + purple_plugin_reload@Base 1:2.2.0 + purple_plugin_unload@Base 1:2.2.0 + purple_plugins_add_search_path@Base 1:2.2.0 + purple_plugins_destroy_all@Base 1:2.2.0 + purple_plugins_enabled@Base 1:2.2.0 + purple_plugins_find_with_basename@Base 1:2.2.0 + purple_plugins_find_with_filename@Base 1:2.2.0 + purple_plugins_find_with_id@Base 1:2.2.0 + purple_plugins_find_with_name@Base 1:2.2.0 + purple_plugins_get_all@Base 1:2.2.0 + purple_plugins_get_handle@Base 1:2.2.0 + purple_plugins_get_loaded@Base 1:2.2.0 + purple_plugins_get_protocols@Base 1:2.2.0 + purple_plugins_init@Base 1:2.2.0 + purple_plugins_load_saved@Base 1:2.2.0 + purple_plugins_probe@Base 1:2.2.0 + purple_plugins_register_load_notify_cb@Base 1:2.2.0 + purple_plugins_register_probe_notify_cb@Base 1:2.2.0 + purple_plugins_register_unload_notify_cb@Base 1:2.2.0 + purple_plugins_save_loaded@Base 1:2.2.0 + purple_plugins_uninit@Base 1:2.2.0 + purple_plugins_unload_all@Base 1:2.2.0 + purple_plugins_unregister_load_notify_cb@Base 1:2.2.0 + purple_plugins_unregister_probe_notify_cb@Base 1:2.2.0 + purple_plugins_unregister_unload_notify_cb@Base 1:2.2.0 + purple_pmp_create_map@Base 1:2.2.0 + purple_pmp_destroy_map@Base 1:2.2.0 + purple_pmp_get_public_ip@Base 1:2.2.0 + purple_pmp_init@Base 1:2.2.0 + purple_pounce_action_get_attribute@Base 1:2.2.0 + purple_pounce_action_is_enabled@Base 1:2.2.0 + purple_pounce_action_register@Base 1:2.2.0 + purple_pounce_action_set_attribute@Base 1:2.2.0 + purple_pounce_action_set_enabled@Base 1:2.2.0 + purple_pounce_destroy@Base 1:2.2.0 + purple_pounce_destroy_all_by_account@Base 1:2.2.0 + purple_pounce_execute@Base 1:2.2.0 + purple_pounce_get_data@Base 1:2.2.0 + purple_pounce_get_events@Base 1:2.2.0 + purple_pounce_get_options@Base 1:2.2.0 + purple_pounce_get_pouncee@Base 1:2.2.0 + purple_pounce_get_pouncer@Base 1:2.2.0 + purple_pounce_get_save@Base 1:2.2.0 + purple_pounce_new@Base 1:2.2.0 + purple_pounce_set_data@Base 1:2.2.0 + purple_pounce_set_events@Base 1:2.2.0 + purple_pounce_set_options@Base 1:2.2.0 + purple_pounce_set_pouncee@Base 1:2.2.0 + purple_pounce_set_pouncer@Base 1:2.2.0 + purple_pounce_set_save@Base 1:2.2.0 + purple_pounces_get_all@Base 1:2.2.0 + purple_pounces_get_all_for_ui@Base 1:2.2.0 + purple_pounces_get_handle@Base 1:2.2.0 + purple_pounces_init@Base 1:2.2.0 + purple_pounces_load@Base 1:2.2.0 + purple_pounces_register_handler@Base 1:2.2.0 + purple_pounces_uninit@Base 1:2.2.0 + purple_pounces_unregister_handler@Base 1:2.2.0 + purple_prefs_add_bool@Base 1:2.2.0 + purple_prefs_add_int@Base 1:2.2.0 + purple_prefs_add_none@Base 1:2.2.0 + purple_prefs_add_path@Base 1:2.2.0 + purple_prefs_add_path_list@Base 1:2.2.0 + purple_prefs_add_string@Base 1:2.2.0 + purple_prefs_add_string_list@Base 1:2.2.0 + purple_prefs_connect_callback@Base 1:2.2.0 + purple_prefs_destroy@Base 1:2.2.0 + purple_prefs_disconnect_by_handle@Base 1:2.2.0 + purple_prefs_disconnect_callback@Base 1:2.2.0 + purple_prefs_exists@Base 1:2.2.0 + purple_prefs_get_bool@Base 1:2.2.0 + purple_prefs_get_children_names@Base 1:2.2.0 + purple_prefs_get_handle@Base 1:2.2.0 + purple_prefs_get_int@Base 1:2.2.0 + purple_prefs_get_path@Base 1:2.2.0 + purple_prefs_get_path_list@Base 1:2.2.0 + purple_prefs_get_string@Base 1:2.2.0 + purple_prefs_get_string_list@Base 1:2.2.0 + purple_prefs_get_type@Base 1:2.2.0 + purple_prefs_init@Base 1:2.2.0 + purple_prefs_load@Base 1:2.2.0 + purple_prefs_remove@Base 1:2.2.0 + purple_prefs_rename@Base 1:2.2.0 + purple_prefs_rename_boolean_toggle@Base 1:2.2.0 + purple_prefs_set_bool@Base 1:2.2.0 + purple_prefs_set_generic@Base 1:2.2.0 + purple_prefs_set_int@Base 1:2.2.0 + purple_prefs_set_path@Base 1:2.2.0 + purple_prefs_set_path_list@Base 1:2.2.0 + purple_prefs_set_string@Base 1:2.2.0 + purple_prefs_set_string_list@Base 1:2.2.0 + purple_prefs_trigger_callback@Base 1:2.2.0 + purple_prefs_uninit@Base 1:2.2.0 + purple_prefs_update_old@Base 1:2.2.0 + purple_presence_add_list@Base 1:2.2.0 + purple_presence_add_status@Base 1:2.2.0 + purple_presence_compare@Base 1:2.2.0 + purple_presence_destroy@Base 1:2.2.0 + purple_presence_get_account@Base 1:2.2.0 + purple_presence_get_active_status@Base 1:2.2.0 + purple_presence_get_buddy@Base 1:2.2.0 + purple_presence_get_chat_user@Base 1:2.2.0 + purple_presence_get_context@Base 1:2.2.0 + purple_presence_get_conversation@Base 1:2.2.0 + purple_presence_get_idle_time@Base 1:2.2.0 + purple_presence_get_login_time@Base 1:2.2.0 + purple_presence_get_status@Base 1:2.2.0 + purple_presence_get_statuses@Base 1:2.2.0 + purple_presence_is_available@Base 1:2.2.0 + purple_presence_is_idle@Base 1:2.2.0 + purple_presence_is_online@Base 1:2.2.0 + purple_presence_is_status_active@Base 1:2.2.0 + purple_presence_is_status_primitive_active@Base 1:2.2.0 + purple_presence_new@Base 1:2.2.0 + purple_presence_new_for_account@Base 1:2.2.0 + purple_presence_new_for_buddy@Base 1:2.2.0 + purple_presence_new_for_conv@Base 1:2.2.0 + purple_presence_set_idle@Base 1:2.2.0 + purple_presence_set_login_time@Base 1:2.2.0 + purple_presence_set_status_active@Base 1:2.2.0 + purple_presence_switch_status@Base 1:2.2.0 + purple_primitive_get_id_from_type@Base 1:2.2.0 + purple_primitive_get_name_from_type@Base 1:2.2.0 + purple_primitive_get_type_from_id@Base 1:2.2.0 + purple_print_utf8_to_console@Base 1:2.2.0 + purple_privacy_allow@Base 1:2.2.0 + purple_privacy_check@Base 1:2.2.0 + purple_privacy_deny@Base 1:2.2.0 + purple_privacy_deny_add@Base 1:2.2.0 + purple_privacy_deny_remove@Base 1:2.2.0 + purple_privacy_get_ui_ops@Base 1:2.2.0 + purple_privacy_init@Base 1:2.2.0 + purple_privacy_permit_add@Base 1:2.2.0 + purple_privacy_permit_remove@Base 1:2.2.0 + purple_privacy_set_ui_ops@Base 1:2.2.0 + purple_program_is_valid@Base 1:2.2.0 + purple_proxy_connect@Base 1:2.2.0 + purple_proxy_connect_cancel@Base 1:2.2.0 + purple_proxy_connect_cancel_with_handle@Base 1:2.2.0 + purple_proxy_connect_socks5@Base 1:2.2.0 + purple_proxy_get_handle@Base 1:2.2.0 + purple_proxy_get_setup@Base 1:2.2.0 + purple_proxy_info_destroy@Base 1:2.2.0 + purple_proxy_info_get_host@Base 1:2.2.0 + purple_proxy_info_get_password@Base 1:2.2.0 + purple_proxy_info_get_port@Base 1:2.2.0 + purple_proxy_info_get_type@Base 1:2.2.0 + purple_proxy_info_get_username@Base 1:2.2.0 + purple_proxy_info_new@Base 1:2.2.0 + purple_proxy_info_set_host@Base 1:2.2.0 + purple_proxy_info_set_password@Base 1:2.2.0 + purple_proxy_info_set_port@Base 1:2.2.0 + purple_proxy_info_set_type@Base 1:2.2.0 + purple_proxy_info_set_username@Base 1:2.2.0 + purple_proxy_init@Base 1:2.2.0 + purple_proxy_uninit@Base 1:2.2.0 + purple_prpl_change_account_status@Base 1:2.2.0 + purple_prpl_get_statuses@Base 1:2.2.0 + purple_prpl_got_account_idle@Base 1:2.2.0 + purple_prpl_got_account_login_time@Base 1:2.2.0 + purple_prpl_got_account_status@Base 1:2.2.0 + purple_prpl_got_attention@Base 1:2.5.0 + purple_prpl_got_attention_in_chat@Base 1:2.5.0 + purple_prpl_got_user_idle@Base 1:2.2.0 + purple_prpl_got_user_login_time@Base 1:2.2.0 + purple_prpl_got_user_status@Base 1:2.2.0 + purple_prpl_got_user_status_deactive@Base 1:2.2.0 + purple_prpl_send_attention@Base 1:2.5.0 + purple_quotedp_decode@Base 1:2.2.0 + purple_request_action@Base 1:2.2.0 + purple_request_action_varg@Base 1:2.2.0 + purple_request_choice@Base 1:2.2.0 + purple_request_choice_varg@Base 1:2.2.0 + purple_request_close@Base 1:2.2.0 + purple_request_close_with_handle@Base 1:2.2.0 + purple_request_field_account_get_default_value@Base 1:2.2.0 + purple_request_field_account_get_filter@Base 1:2.2.0 + purple_request_field_account_get_show_all@Base 1:2.2.0 + purple_request_field_account_get_value@Base 1:2.2.0 + purple_request_field_account_new@Base 1:2.2.0 + purple_request_field_account_set_default_value@Base 1:2.2.0 + purple_request_field_account_set_filter@Base 1:2.2.0 + purple_request_field_account_set_show_all@Base 1:2.2.0 + purple_request_field_account_set_value@Base 1:2.2.0 + purple_request_field_bool_get_default_value@Base 1:2.2.0 + purple_request_field_bool_get_value@Base 1:2.2.0 + purple_request_field_bool_new@Base 1:2.2.0 + purple_request_field_bool_set_default_value@Base 1:2.2.0 + purple_request_field_bool_set_value@Base 1:2.2.0 + purple_request_field_choice_add@Base 1:2.2.0 + purple_request_field_choice_get_default_value@Base 1:2.2.0 + purple_request_field_choice_get_labels@Base 1:2.2.0 + purple_request_field_choice_get_value@Base 1:2.2.0 + purple_request_field_choice_new@Base 1:2.2.0 + purple_request_field_choice_set_default_value@Base 1:2.2.0 + purple_request_field_choice_set_value@Base 1:2.2.0 + purple_request_field_destroy@Base 1:2.2.0 + purple_request_field_get_id@Base 1:2.2.0 + purple_request_field_get_label@Base 1:2.2.0 + purple_request_field_get_type@Base 1:2.2.0 + purple_request_field_get_type_hint@Base 1:2.2.0 + purple_request_field_group_add_field@Base 1:2.2.0 + purple_request_field_group_destroy@Base 1:2.2.0 + purple_request_field_group_get_fields@Base 1:2.2.0 + purple_request_field_group_get_title@Base 1:2.2.0 + purple_request_field_group_new@Base 1:2.2.0 + purple_request_field_image_get_buffer@Base 1:2.2.0 + purple_request_field_image_get_scale_x@Base 1:2.2.0 + purple_request_field_image_get_scale_y@Base 1:2.2.0 + purple_request_field_image_get_size@Base 1:2.2.0 + purple_request_field_image_new@Base 1:2.2.0 + purple_request_field_image_set_scale@Base 1:2.2.0 + purple_request_field_int_get_default_value@Base 1:2.2.0 + purple_request_field_int_get_value@Base 1:2.2.0 + purple_request_field_int_new@Base 1:2.2.0 + purple_request_field_int_set_default_value@Base 1:2.2.0 + purple_request_field_int_set_value@Base 1:2.2.0 + purple_request_field_is_required@Base 1:2.2.0 + purple_request_field_is_visible@Base 1:2.2.0 + purple_request_field_label_new@Base 1:2.2.0 + purple_request_field_list_add@Base 1:2.2.0 + purple_request_field_list_add_selected@Base 1:2.2.0 + purple_request_field_list_clear_selected@Base 1:2.2.0 + purple_request_field_list_get_data@Base 1:2.2.0 + purple_request_field_list_get_items@Base 1:2.2.0 + purple_request_field_list_get_multi_select@Base 1:2.2.0 + purple_request_field_list_get_selected@Base 1:2.2.0 + purple_request_field_list_is_selected@Base 1:2.2.0 + purple_request_field_list_new@Base 1:2.2.0 + purple_request_field_list_set_multi_select@Base 1:2.2.0 + purple_request_field_list_set_selected@Base 1:2.2.0 + purple_request_field_new@Base 1:2.2.0 + purple_request_field_set_label@Base 1:2.2.0 + purple_request_field_set_required@Base 1:2.2.0 + purple_request_field_set_type_hint@Base 1:2.2.0 + purple_request_field_set_visible@Base 1:2.2.0 + purple_request_field_string_get_default_value@Base 1:2.2.0 + purple_request_field_string_get_value@Base 1:2.2.0 + purple_request_field_string_is_editable@Base 1:2.2.0 + purple_request_field_string_is_masked@Base 1:2.2.0 + purple_request_field_string_is_multiline@Base 1:2.2.0 + purple_request_field_string_new@Base 1:2.2.0 + purple_request_field_string_set_default_value@Base 1:2.2.0 + purple_request_field_string_set_editable@Base 1:2.2.0 + purple_request_field_string_set_masked@Base 1:2.2.0 + purple_request_field_string_set_value@Base 1:2.2.0 + purple_request_fields@Base 1:2.2.0 + purple_request_fields_add_group@Base 1:2.2.0 + purple_request_fields_all_required_filled@Base 1:2.2.0 + purple_request_fields_destroy@Base 1:2.2.0 + purple_request_fields_exists@Base 1:2.2.0 + purple_request_fields_get_account@Base 1:2.2.0 + purple_request_fields_get_bool@Base 1:2.2.0 + purple_request_fields_get_choice@Base 1:2.2.0 + purple_request_fields_get_field@Base 1:2.2.0 + purple_request_fields_get_groups@Base 1:2.2.0 + purple_request_fields_get_integer@Base 1:2.2.0 + purple_request_fields_get_required@Base 1:2.2.0 + purple_request_fields_get_string@Base 1:2.2.0 + purple_request_fields_is_field_required@Base 1:2.2.0 + purple_request_fields_new@Base 1:2.2.0 + purple_request_file@Base 1:2.2.0 + purple_request_folder@Base 1:2.2.0 + purple_request_get_ui_ops@Base 1:2.2.0 + purple_request_input@Base 1:2.2.0 + purple_request_set_ui_ops@Base 1:2.2.0 + purple_restore_default_signal_handlers@Base 1:2.2.0 + purple_roomlist_cancel_get_list@Base 1:2.2.0 + purple_roomlist_expand_category@Base 1:2.2.0 + purple_roomlist_field_get_hidden@Base 1:2.4.0 + purple_roomlist_field_get_label@Base 1:2.4.0 + purple_roomlist_field_get_type@Base 1:2.4.0 + purple_roomlist_field_new@Base 1:2.2.0 + purple_roomlist_get_fields@Base 1:2.4.0 + purple_roomlist_get_in_progress@Base 1:2.2.0 + purple_roomlist_get_list@Base 1:2.2.0 + purple_roomlist_get_ui_ops@Base 1:2.2.0 + purple_roomlist_new@Base 1:2.2.0 + purple_roomlist_ref@Base 1:2.2.0 + purple_roomlist_room_add@Base 1:2.2.0 + purple_roomlist_room_add_field@Base 1:2.2.0 + purple_roomlist_room_get_fields@Base 1:2.4.0 + purple_roomlist_room_get_name@Base 1:2.4.0 + purple_roomlist_room_get_parent@Base 1:2.4.0 + purple_roomlist_room_get_type@Base 1:2.4.0 + purple_roomlist_room_join@Base 1:2.2.0 + purple_roomlist_room_new@Base 1:2.2.0 + purple_roomlist_set_fields@Base 1:2.2.0 + purple_roomlist_set_in_progress@Base 1:2.2.0 + purple_roomlist_set_ui_ops@Base 1:2.2.0 + purple_roomlist_show_with_account@Base 1:2.2.0 + purple_roomlist_unref@Base 1:2.2.0 + purple_running_gnome@Base 1:2.2.0 + purple_running_kde@Base 1:2.2.0 + purple_running_osx@Base 1:2.2.0 + purple_savedstatus_activate@Base 1:2.2.0 + purple_savedstatus_activate_for_account@Base 1:2.2.0 + purple_savedstatus_delete@Base 1:2.2.0 + purple_savedstatus_delete_by_status@Base 1:2.2.0 + purple_savedstatus_find@Base 1:2.2.0 + purple_savedstatus_find_by_creation_time@Base 1:2.2.0 + purple_savedstatus_find_transient_by_type_and_message@Base 1:2.2.0 + purple_savedstatus_get_creation_time@Base 1:2.2.0 + purple_savedstatus_get_current@Base 1:2.2.0 + purple_savedstatus_get_default@Base 1:2.2.0 + purple_savedstatus_get_idleaway@Base 1:2.2.0 + purple_savedstatus_get_message@Base 1:2.2.0 + purple_savedstatus_get_startup@Base 1:2.2.0 + purple_savedstatus_get_substatus@Base 1:2.2.0 + purple_savedstatus_get_title@Base 1:2.2.0 + purple_savedstatus_get_type@Base 1:2.2.0 + purple_savedstatus_has_substatuses@Base 1:2.2.0 + purple_savedstatus_is_idleaway@Base 1:2.2.0 + purple_savedstatus_is_transient@Base 1:2.2.0 + purple_savedstatus_new@Base 1:2.2.0 + purple_savedstatus_set_idleaway@Base 1:2.2.0 + purple_savedstatus_set_message@Base 1:2.2.0 + purple_savedstatus_set_substatus@Base 1:2.2.0 + purple_savedstatus_set_title@Base 1:2.2.0 + purple_savedstatus_set_type@Base 1:2.2.0 + purple_savedstatus_substatus_get_message@Base 1:2.2.0 + purple_savedstatus_substatus_get_type@Base 1:2.2.0 + purple_savedstatus_unset_substatus@Base 1:2.2.0 + purple_savedstatuses_get_all@Base 1:2.2.0 + purple_savedstatuses_get_handle@Base 1:2.2.0 + purple_savedstatuses_get_popular@Base 1:2.2.0 + purple_savedstatuses_init@Base 1:2.2.0 + purple_savedstatuses_uninit@Base 1:2.2.0 + purple_serv_got_join_chat_failed@Base 1:2.5.0 + purple_serv_got_private_alias@Base 1:2.4.0 + purple_set_blist@Base 1:2.2.0 + purple_signal_connect@Base 1:2.2.0 + purple_signal_connect_priority@Base 1:2.2.0 + purple_signal_connect_priority_vargs@Base 1:2.2.0 + purple_signal_connect_vargs@Base 1:2.2.0 + purple_signal_disconnect@Base 1:2.2.0 + purple_signal_emit@Base 1:2.2.0 + purple_signal_emit_return_1@Base 1:2.2.0 + purple_signal_emit_vargs@Base 1:2.2.0 + purple_signal_emit_vargs_return_1@Base 1:2.2.0 + purple_signal_get_values@Base 1:2.2.0 + purple_signal_register@Base 1:2.2.0 + purple_signal_unregister@Base 1:2.2.0 + purple_signals_disconnect_by_handle@Base 1:2.2.0 + purple_signals_init@Base 1:2.2.0 + purple_signals_uninit@Base 1:2.2.0 + purple_signals_unregister_by_instance@Base 1:2.2.0 + purple_smiley_delete@Base 1:2.5.0 + purple_smiley_get_checksum@Base 1:2.5.0 + purple_smiley_get_data@Base 1:2.5.0 + purple_smiley_get_extension@Base 1:2.5.0 + purple_smiley_get_full_path@Base 1:2.5.0 + purple_smiley_get_shortcut@Base 1:2.5.0 + purple_smiley_get_stored_image@Base 1:2.5.0 + purple_smiley_get_type@Base 1:2.5.0 + purple_smiley_new@Base 1:2.5.0 + purple_smiley_new_from_file@Base 1:2.5.0 + purple_smiley_set_data@Base 1:2.5.0 + purple_smiley_set_shortcut@Base 1:2.5.0 + purple_smileys_find_by_checksum@Base 1:2.5.0 + purple_smileys_find_by_shortcut@Base 1:2.5.0 + purple_smileys_get_all@Base 1:2.5.0 + purple_smileys_get_storing_dir@Base 1:2.5.0 + purple_smileys_init@Base 1:2.5.0 + purple_smileys_uninit@Base 1:2.5.0 + purple_sound_get_ui_ops@Base 1:2.2.0 + purple_sound_init@Base 1:2.2.0 + purple_sound_play_event@Base 1:2.2.0 + purple_sound_play_file@Base 1:2.2.0 + purple_sound_set_ui_ops@Base 1:2.2.0 + purple_sound_uninit@Base 1:2.2.0 + purple_sounds_get_handle@Base 1:2.2.0 + purple_srv_cancel@Base 1:2.2.0 + purple_srv_resolve@Base 1:2.2.0 + purple_ssl_close@Base 1:2.2.0 + purple_ssl_connect@Base 1:2.2.0 + purple_ssl_connect_fd@Base 1:2.2.0 + purple_ssl_connect_with_host_fd@Base 1:2.2.0 + purple_ssl_get_ops@Base 1:2.2.0 + purple_ssl_get_peer_certificates@Base 1:2.2.0 + purple_ssl_init@Base 1:2.2.0 + purple_ssl_input_add@Base 1:2.2.0 + purple_ssl_is_supported@Base 1:2.2.0 + purple_ssl_read@Base 1:2.2.0 + purple_ssl_set_ops@Base 1:2.2.0 + purple_ssl_strerror@Base 1:2.2.0 + purple_ssl_uninit@Base 1:2.2.0 + purple_ssl_write@Base 1:2.2.0 + purple_status_attr_destroy@Base 1:2.2.0 + purple_status_attr_get_id@Base 1:2.2.0 + purple_status_attr_get_name@Base 1:2.2.0 + purple_status_attr_get_value@Base 1:2.2.0 + purple_status_attr_new@Base 1:2.2.0 + purple_status_compare@Base 1:2.2.0 + purple_status_destroy@Base 1:2.2.0 + purple_status_get_attr_boolean@Base 1:2.2.0 + purple_status_get_attr_int@Base 1:2.2.0 + purple_status_get_attr_string@Base 1:2.2.0 + purple_status_get_attr_value@Base 1:2.2.0 + purple_status_get_handle@Base 1:2.2.0 + purple_status_get_id@Base 1:2.2.0 + purple_status_get_name@Base 1:2.2.0 + purple_status_get_presence@Base 1:2.2.0 + purple_status_get_type@Base 1:2.2.0 + purple_status_init@Base 1:2.2.0 + purple_status_is_active@Base 1:2.2.0 + purple_status_is_available@Base 1:2.2.0 + purple_status_is_exclusive@Base 1:2.2.0 + purple_status_is_independent@Base 1:2.2.0 + purple_status_is_online@Base 1:2.2.0 + purple_status_new@Base 1:2.2.0 + purple_status_set_active@Base 1:2.2.0 + purple_status_set_active_with_attrs@Base 1:2.2.0 + purple_status_set_active_with_attrs_list@Base 1:2.2.0 + purple_status_set_attr_boolean@Base 1:2.2.0 + purple_status_set_attr_int@Base 1:2.2.0 + purple_status_set_attr_string@Base 1:2.2.0 + purple_status_type_add_attr@Base 1:2.2.0 + purple_status_type_add_attrs@Base 1:2.2.0 + purple_status_type_add_attrs_vargs@Base 1:2.2.0 + purple_status_type_destroy@Base 1:2.2.0 + purple_status_type_find_with_id@Base 1:2.2.0 + purple_status_type_get_attr@Base 1:2.2.0 + purple_status_type_get_attrs@Base 1:2.2.0 + purple_status_type_get_id@Base 1:2.2.0 + purple_status_type_get_name@Base 1:2.2.0 + purple_status_type_get_primary_attr@Base 1:2.2.0 + purple_status_type_get_primitive@Base 1:2.2.0 + purple_status_type_is_available@Base 1:2.2.0 + purple_status_type_is_exclusive@Base 1:2.2.0 + purple_status_type_is_independent@Base 1:2.2.0 + purple_status_type_is_saveable@Base 1:2.2.0 + purple_status_type_is_user_settable@Base 1:2.2.0 + purple_status_type_new@Base 1:2.2.0 + purple_status_type_new_full@Base 1:2.2.0 + purple_status_type_new_with_attrs@Base 1:2.2.0 + purple_status_type_set_primary_attr@Base 1:2.2.0 + purple_status_uninit@Base 1:2.2.0 + purple_str_add_cr@Base 1:2.2.0 + purple_str_binary_to_ascii@Base 1:2.2.0 + purple_str_has_prefix@Base 1:2.2.0 + purple_str_has_suffix@Base 1:2.2.0 + purple_str_seconds_to_string@Base 1:2.2.0 + purple_str_size_to_units@Base 1:2.2.0 + purple_str_strip_char@Base 1:2.2.0 + purple_str_to_time@Base 1:2.2.0 + purple_strcasereplace@Base 1:2.2.0 + purple_strcasestr@Base 1:2.2.0 + purple_strdup_withhtml@Base 1:2.2.0 + purple_stringref_cmp@Base 1:2.2.0 + purple_stringref_len@Base 1:2.2.0 + purple_stringref_new@Base 1:2.2.0 + purple_stringref_new_noref@Base 1:2.2.0 + purple_stringref_printf@Base 1:2.2.0 + purple_stringref_ref@Base 1:2.2.0 + purple_stringref_unref@Base 1:2.2.0 + purple_stringref_value@Base 1:2.2.0 + purple_strreplace@Base 1:2.2.0 + purple_stun_discover@Base 1:2.2.0 + purple_stun_init@Base 1:2.2.0 + purple_text_strip_mnemonic@Base 1:2.2.0 + purple_time_build@Base 1:2.2.0 + purple_time_format@Base 1:2.2.0 + purple_timeout_add@Base 1:2.2.0 + purple_timeout_add_seconds@Base 1:2.2.0 + purple_timeout_remove@Base 1:2.2.0 + purple_unescape_filename@Base 1:2.2.0 + purple_unescape_html@Base 1:2.2.0 + purple_upnp_cancel_port_mapping@Base 1:2.2.0 + purple_upnp_discover@Base 1:2.2.0 + purple_upnp_get_public_ip@Base 1:2.2.0 + purple_upnp_init@Base 1:2.2.0 + purple_upnp_remove_port_mapping@Base 1:2.2.0 + purple_upnp_set_port_mapping@Base 1:2.2.0 + purple_uri_list_extract_filenames@Base 1:2.2.0 + purple_uri_list_extract_uris@Base 1:2.2.0 + purple_url_decode@Base 1:2.2.0 + purple_url_encode@Base 1:2.2.0 + purple_url_parse@Base 1:2.2.0 + purple_user_dir@Base 1:2.2.0 + purple_utf8_has_word@Base 1:2.2.0 + purple_utf8_ncr_decode@Base 1:2.2.0 + purple_utf8_ncr_encode@Base 1:2.2.0 + purple_utf8_salvage@Base 1:2.2.0 + purple_utf8_strcasecmp@Base 1:2.2.0 + purple_utf8_strftime@Base 1:2.2.0 + purple_utf8_try_convert@Base 1:2.2.0 + purple_util_chrreplace@Base 1:2.2.0 + purple_util_fetch_url_cancel@Base 1:2.2.0 + purple_util_fetch_url_request@Base 1:2.2.0 + purple_util_fetch_url_request_len@Base 1:2.5.0 + purple_util_format_song_info@Base 1:2.4.0 + purple_util_get_image_checksum@Base 1:2.5.0 + purple_util_get_image_extension@Base 1:2.2.0 + purple_util_get_image_filename@Base 1:2.2.0 + purple_util_init@Base 1:2.3.0 + purple_util_read_xml_from_file@Base 1:2.2.0 + purple_util_set_current_song@Base 1:2.4.0 + purple_util_set_user_dir@Base 1:2.2.0 + purple_util_uninit@Base 1:2.3.0 + purple_util_write_data_to_file@Base 1:2.2.0 + purple_util_write_data_to_file_absolute@Base 1:2.2.0 + purple_value_destroy@Base 1:2.2.0 + purple_value_dup@Base 1:2.2.0 + purple_value_get_boolean@Base 1:2.2.0 + purple_value_get_boxed@Base 1:2.2.0 + purple_value_get_char@Base 1:2.2.0 + purple_value_get_enum@Base 1:2.2.0 + purple_value_get_int64@Base 1:2.2.0 + purple_value_get_int@Base 1:2.2.0 + purple_value_get_long@Base 1:2.2.0 + purple_value_get_object@Base 1:2.2.0 + purple_value_get_pointer@Base 1:2.2.0 + purple_value_get_short@Base 1:2.2.0 + purple_value_get_specific_type@Base 1:2.2.0 + purple_value_get_string@Base 1:2.2.0 + purple_value_get_subtype@Base 1:2.2.0 + purple_value_get_type@Base 1:2.2.0 + purple_value_get_uchar@Base 1:2.2.0 + purple_value_get_uint64@Base 1:2.2.0 + purple_value_get_uint@Base 1:2.2.0 + purple_value_get_ulong@Base 1:2.2.0 + purple_value_get_ushort@Base 1:2.2.0 + purple_value_is_outgoing@Base 1:2.2.0 + purple_value_new@Base 1:2.2.0 + purple_value_new_outgoing@Base 1:2.2.0 + purple_value_set_boolean@Base 1:2.2.0 + purple_value_set_boxed@Base 1:2.2.0 + purple_value_set_char@Base 1:2.2.0 + purple_value_set_enum@Base 1:2.2.0 + purple_value_set_int64@Base 1:2.2.0 + purple_value_set_int@Base 1:2.2.0 + purple_value_set_long@Base 1:2.2.0 + purple_value_set_object@Base 1:2.2.0 + purple_value_set_pointer@Base 1:2.2.0 + purple_value_set_short@Base 1:2.2.0 + purple_value_set_string@Base 1:2.2.0 + purple_value_set_uchar@Base 1:2.2.0 + purple_value_set_uint64@Base 1:2.2.0 + purple_value_set_uint@Base 1:2.2.0 + purple_value_set_ulong@Base 1:2.2.0 + purple_value_set_ushort@Base 1:2.2.0 + purple_version_check@Base 1:2.2.0 + purple_whiteboard_clear@Base 1:2.2.0 + purple_whiteboard_create@Base 1:2.2.0 + purple_whiteboard_destroy@Base 1:2.2.0 + purple_whiteboard_draw_line@Base 1:2.2.0 + purple_whiteboard_draw_list_destroy@Base 1:2.2.0 + purple_whiteboard_draw_point@Base 1:2.2.0 + purple_whiteboard_get_brush@Base 1:2.2.0 + purple_whiteboard_get_dimensions@Base 1:2.2.0 + purple_whiteboard_get_session@Base 1:2.2.0 + purple_whiteboard_send_brush@Base 1:2.2.0 + purple_whiteboard_send_clear@Base 1:2.2.0 + purple_whiteboard_send_draw_list@Base 1:2.2.0 + purple_whiteboard_set_brush@Base 1:2.2.0 + purple_whiteboard_set_dimensions@Base 1:2.2.0 + purple_whiteboard_set_prpl_ops@Base 1:2.2.0 + purple_whiteboard_set_ui_ops@Base 1:2.2.0 + purple_whiteboard_start@Base 1:2.2.0 + purple_xfer_add@Base 1:2.2.0 + purple_xfer_cancel_local@Base 1:2.2.0 + purple_xfer_cancel_remote@Base 1:2.2.0 + purple_xfer_conversation_write@Base 1:2.2.0 + purple_xfer_end@Base 1:2.2.0 + purple_xfer_error@Base 1:2.2.0 + purple_xfer_get_account@Base 1:2.2.0 + purple_xfer_get_bytes_remaining@Base 1:2.2.0 + purple_xfer_get_bytes_sent@Base 1:2.2.0 + purple_xfer_get_end_time@Base 1:2.4.0 + purple_xfer_get_filename@Base 1:2.2.0 + purple_xfer_get_local_filename@Base 1:2.2.0 + purple_xfer_get_local_port@Base 1:2.2.0 + purple_xfer_get_progress@Base 1:2.2.0 + purple_xfer_get_remote_ip@Base 1:2.2.0 + purple_xfer_get_remote_port@Base 1:2.2.0 + purple_xfer_get_remote_user@Base 1:2.2.0 + purple_xfer_get_size@Base 1:2.2.0 + purple_xfer_get_start_time@Base 1:2.4.0 + purple_xfer_get_status@Base 1:2.2.0 + purple_xfer_get_type@Base 1:2.2.0 + purple_xfer_get_ui_ops@Base 1:2.2.0 + purple_xfer_is_canceled@Base 1:2.2.0 + purple_xfer_is_completed@Base 1:2.2.0 + purple_xfer_new@Base 1:2.2.0 + purple_xfer_read@Base 1:2.2.0 + purple_xfer_ref@Base 1:2.2.0 + purple_xfer_request@Base 1:2.2.0 + purple_xfer_request_accepted@Base 1:2.2.0 + purple_xfer_request_denied@Base 1:2.2.0 + purple_xfer_set_ack_fnc@Base 1:2.2.0 + purple_xfer_set_bytes_sent@Base 1:2.2.0 + purple_xfer_set_cancel_recv_fnc@Base 1:2.2.0 + purple_xfer_set_cancel_send_fnc@Base 1:2.2.0 + purple_xfer_set_completed@Base 1:2.2.0 + purple_xfer_set_end_fnc@Base 1:2.2.0 + purple_xfer_set_filename@Base 1:2.2.0 + purple_xfer_set_init_fnc@Base 1:2.2.0 + purple_xfer_set_local_filename@Base 1:2.2.0 + purple_xfer_set_message@Base 1:2.2.0 + purple_xfer_set_read_fnc@Base 1:2.2.0 + purple_xfer_set_request_denied_fnc@Base 1:2.2.0 + purple_xfer_set_size@Base 1:2.2.0 + purple_xfer_set_start_fnc@Base 1:2.2.0 + purple_xfer_set_write_fnc@Base 1:2.2.0 + purple_xfer_start@Base 1:2.2.0 + purple_xfer_unref@Base 1:2.2.0 + purple_xfer_update_progress@Base 1:2.2.0 + purple_xfer_write@Base 1:2.2.0 + purple_xfers_get_all@Base 1:2.2.0 + purple_xfers_get_handle@Base 1:2.2.0 + purple_xfers_get_ui_ops@Base 1:2.2.0 + purple_xfers_init@Base 1:2.2.0 + purple_xfers_set_ui_ops@Base 1:2.2.0 + purple_xfers_uninit@Base 1:2.2.0 --- pidgin-2.5.5.orig/debian/pidgin-dev.dirs +++ pidgin-2.5.5/debian/pidgin-dev.dirs @@ -0,0 +1,2 @@ +usr/share/doc/pidgin-data +usr/share/doc/pidgin-data/html --- pidgin-2.5.5.orig/debian/pidgin.install +++ pidgin-2.5.5/debian/pidgin.install @@ -0,0 +1,9 @@ +debian/tmp/etc/gconf +debian/tmp/usr/bin/pidgin +debian/tmp/usr/lib/perl5/Pidgin.pm +debian/tmp/usr/lib/perl5/auto/Pidgin +debian/tmp/usr/lib/pidgin +debian/tmp/usr/share/applications +debian/tmp/usr/share/man/*/pidgin.* +debian/tmp/usr/share/man/*/Pidgin.* +debian/lintian-override/pidgin usr/share/lintian/overrides --- pidgin-2.5.5.orig/debian/rules +++ pidgin-2.5.5/debian/rules @@ -0,0 +1,65 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/cdbs/1/rules/utils.mk + +# Build into a separate directory +DEB_BUILDDIR = $(DEB_SRCDIR)/build +DEB_CONFIGURE_SCRIPT = $(CURDIR)/configure +DEB_CONFIGURE_INVOKE = cd "$(DEB_BUILDDIR)"; $(DEB_CONFIGURE_SCRIPT_ENV) \ + ../configure $(DEB_CONFIGURE_NORMAL_ARGS) --enable-gevolution \ + --enable-cap --with-system-ssl-certs=/etc/ssl/certs \ + --enable-perl --with-zephyr=/usr --enable-dbus --enable-gnutls=no \ + --enable-nss=yes --enable-cyrus-sasl +LDFLAGS = -Wl,--as-needed + +DEB_DH_MAKESHLIBS_ARGS_pidgin := -V -X/usr/lib/pidgin +DEB_DH_SHLIBDEPS_ARGS_pidgin := -X/usr/lib/pidgin/gevolution.so -X/usr/lib/pidgin/cap.so -- -dSuggests debian/pidgin/usr/lib/pidgin/cap.so -dDepends + +# finch package +DEB_DH_MAKESHLIBS_ARGS_finch := -V -X/usr/lib/finch +DEB_DH_SHLIBDEPS_ARGS_finch := -X/usr/lib/finch/gntclipboard.so -X/usr/lib/finch/gntgf.so -- -dSuggests debian/finch/usr/lib/finch/gntclipboard.so debian/finch/usr/lib/finch/gntgf.so -dDepends + +# libpurple package +DEB_DH_MAKESHLIBS_ARGS_libpurple0 := -X/usr/lib/purple-2 +DEB_DH_SHLIBDEPS_ARGS_libpurple0 := -X/usr/lib/purple-2/tcl.so -- -dSuggests debian/libpurple0/usr/lib/purple-2/tcl.so -dDepends + +# for pidgin-dev, extra documentation is installed manually below +DEB_INSTALL_MANPAGES_pidgin-dev := debian/dh_pidgin.1 + +clean:: + rm -f debian/copyright + +common-install-impl:: + rm -f debian/tmp/usr/lib/pidgin/relnot.so # release notification plugin + rm -f debian/tmp/usr/bin/nullclient # examples + rm -f debian/tmp/usr/bin/purple-client-example # examples + find debian/tmp/usr/lib -name '*.la' -print0 | xargs -0 rm + # Include author lists in copyright file + sed -e '/@PIDGIN_COPYRIGHT@/r COPYRIGHT' \ + -e '/@PIDGIN_COPYRIGHT@/d' \ + -e '/@OSCAR_AUTHORS@/r libpurple/protocols/oscar/AUTHORS' \ + -e '/@OSCAR_AUTHORS@/d' \ + debian/copyright.in > debian/copyright + # Translation domain to desktop file + echo 'X-Ubuntu-Gettext-Domain=pidgin' >> debian/tmp/usr/share/applications/pidgin.desktop + # Call intltool-update to build the .pot + cd $(DEB_SRCDIR)/po; intltool-update -p + +cleanbuilddir/pidgin:: + rm -f doc/TracHeader.html doc/TracFooter.html + rm -rf $(DEB_SRCDIR)/build + +build/pidgin-dev:: + pod2man debian/dh_pidgin > debian/dh_pidgin.1 + touch doc/TracHeader.html doc/TracFooter.html + cd build; make docs + +binary-install/pidgin-dev:: + dh_installdocs -ppidgin-dev debian/README.Debian.dev + +cleanbuilddir/pidgin-dev:: + rm -f debian/dh_pidgin.1 --- pidgin-2.5.5.orig/debian/pidgin-dev.install +++ pidgin-2.5.5/debian/pidgin-dev.install @@ -0,0 +1,4 @@ +build/doc/html/*.{html,gif,png} usr/share/doc/pidgin-dev/html +debian/tmp/usr/include/pidgin +debian/tmp/usr/lib/pkgconfig/pidgin.pc +debian/dh_pidgin usr/bin --- pidgin-2.5.5.orig/debian/finch-dev.install +++ pidgin-2.5.5/debian/finch-dev.install @@ -0,0 +1,5 @@ +debian/tmp/usr/include/finch +debian/tmp/usr/include/gnt +debian/tmp/usr/lib/libgnt.so +debian/tmp/usr/lib/pkgconfig/gnt.pc +debian/tmp/usr/lib/pkgconfig/finch.pc --- pidgin-2.5.5.orig/debian/libpurple-bin.install +++ pidgin-2.5.5/debian/libpurple-bin.install @@ -0,0 +1,4 @@ +debian/tmp/usr/bin/purple-remote +debian/tmp/usr/bin/purple-send +debian/tmp/usr/bin/purple-send-async +debian/tmp/usr/bin/purple-url-handler --- pidgin-2.5.5.orig/debian/pidgin-data.docs +++ pidgin-2.5.5/debian/pidgin-data.docs @@ -0,0 +1 @@ +ChangeLog.API --- pidgin-2.5.5.orig/debian/changelog +++ pidgin-2.5.5/debian/changelog @@ -0,0 +1,2461 @@ +pidgin (1:2.5.5-1ubuntu1) jaunty; urgency=low + + * Merge from debian, remaining changes: (LP: #316636, #336647) + - debian/control: + + Add Build-Deps on liblaunchpad-integration-dev, intltool, + network-manager-dev + + Add epoch in dependencies + + Drop the libpurple0 dependency on libpurple-bin + - debian/libpurple0.symbols: add epoch to symbol + - debian/pidgin-dbg.preinst, debian/pidgin-dev.preinst, + debian/pidgin.preinst: add epoch + - Update debian/prefs.xml to set the notify plugin prefs + /plugins/gtk/X11/notify/*, set /pidgin/plugins/loaded to load + the notify plugin and enable the standard logging options by default + - debian/rules: + + remove --disable-nm as nm has been fixed in Ubuntu + + Add X-Ubuntu-Gettext-Domain to the desktop file and update the + translation templates in common-install-impl:: + - debian/patches: + + 02_lpi.patch for LP integration + + 04_let_crasher_for_apport.patch to stop catching the SIGSEGV signal + and let apport handle it + + 05_default_to_irc_ubuntu_com.patch to set the default IRC + server to irc.ubuntu.com + + 70_autoconf.patch + + 60_1024x600_gtk*.c.patch: Add scrolled bars into account dialog, + pounce windows and preference window when screen height is less than 600. + * Adapt debian/patches/02_lpi.patch + * Re-generate debian/patches/70_autoconf.patch + * Remove debian/patches/fix-icons-backport-from-2.5.5mtn.diff as taken + upstream + + -- Didier Roche Mon, 09 Mar 2009 23:25:48 +0100 + +pidgin (2.5.5-1) unstable; urgency=low + + * New upstream version + - Re-initialize preferences correctly in libpurple when called from + third-party app (Closes: #508857) + + -- Ari Pollak Thu, 05 Mar 2009 08:49:31 -0500 + +pidgin (2.5.4-2) unstable; urgency=low + + * Upload to unstable + + -- Ari Pollak Sun, 15 Feb 2009 05:16:09 -0500 + +pidgin (2.5.4-1) experimental; urgency=low + + * New upstream version + * Remove version-specific shlibdep generation, and add libgnt to + libpurple0.symbols + + -- Ari Pollak Fri, 23 Jan 2009 23:34:53 -0500 + +pidgin (2.5.3-1) experimental; urgency=low + + * New upstream release + - Tries to fix treating special characters as html entities + (Closes: #502802) + + -- Ari Pollak Mon, 22 Dec 2008 00:10:18 -0500 + +pidgin (2.5.2-1) experimental; urgency=low + + * New upstream version + - Should fix icon sizes (Closes: #497545) + + -- Ari Pollak Sun, 19 Oct 2008 14:01:06 -0400 + +pidgin (2.5.0-1) experimental; urgency=low + + * New upstream version (Closes: #496109) + - Upload to experimental so we don't mess up unstable->lenny transitions + - Fixes putting a BOM at the beginning of pasted text (Closes: #475146) + - Adds support for MSNP14, which allows viewing of queued messages + (Closes: #403006) + - Now emits a signal for blocked messages (Closes: #427919) + * Drop 00_debian-ca-certs.patch in favor of --with-system-ssl-certs, and + build-depend on ca-certificates + + -- Ari Pollak Sun, 24 Aug 2008 16:59:00 -0400 + +pidgin (2.4.3-4) unstable; urgency=low + + * debian/patches/28_upnp_dos.patch: + - Backport patch from upstream to fix a possible DoS in the UPnP code + (CVE-2008-2957, doesn't competely fix #488632) + + -- Ari Pollak Mon, 24 Nov 2008 19:33:51 -0500 + +pidgin (2.4.3-3) unstable; urgency=low + + * debian/patches/26_nss-ciphers.patch: + - Apply patch from upstream to add ciphers so we can connect to more + SSL servers (Closes: #495523, #444789) + * debian/patches/27_yahoo-ping.patch: + - Apply patch from upstream to fix frequent disconnection from Yahoo + (Closes: #499983) + + -- Ari Pollak Tue, 24 Sep 2008 20:48:03 -0400 + +pidgin (2.4.3-2) unstable; urgency=low + + * Apply patch from Miron Cuperman to fix path to CA certificates in + 00_debian-ca-certs.path + * debian/patches/25_ssl-nss.patch: + - Apply patch from upstream to add SSL certificate checking to the NSS + plugin, which we use (CVE-2008-3532) (Closes: #492434) + + -- Ari Pollak Thu, 21 Aug 2008 23:56:42 -0400 + +pidgin (2.4.3-1) unstable; urgency=high + + * New upstream release (Closes: #488930) + - Fixes ICQ sign-on problems (Closes: #488852) + - Fixes an MSN integer overflow security issue, CVE-2008-2927 + (Closes: #488632). The other issues referenced by that bug report + are questionably problematic, and they aren't that serious. + * Remove -fstack-protector since it just makes pidgin crash on arm(el). + (Closes: #469863) + * Remove bashism in debian/rules (Closes: #484429) + * Remove Network Manager support again since it's still buggy and doesn't + actually tell the user what's going on (Closes: #484750) + * debian/patches/16_yahoo_icon_crash.patch: + - Drop patch, integrated upstream + + -- Ari Pollak Wed, 02 Jul 2008 10:44:14 -0400 + +pidgin (2.4.2-2) unstable; urgency=low + + * Fix broken Build-Depends line that was causing a lack of SILC support + + -- Ari Pollak Mon, 19 May 2008 20:58:04 -0400 + +pidgin (2.4.2-1) unstable; urgency=low + + * New upstream release + * Enable NetworkManager support now that it doesn't add an extra dependency + * Remove 11_reread-resolvconf.patch since we have NM support and it didn't + apply cleanly anyway + * Fix spelling error in dh_pidgin man page (Closes: #474681) + * Apply modified patch from Adrien Cunin to move finch dependency on libx11-6 + to a suggests, and add an entry in the description about it + (Closes: #473997) + * Update libpurple0.symbols for 2.4.0 + + -- Ari Pollak Sun, 18 May 2008 01:02:08 -0400 + +pidgin (2.4.1-1) unstable; urgency=low + + * New upstream release + - Fixes crash in XMPP if network connection goes down after resume + (Closes: #472057) + + -- Ari Pollak Tue, 01 Apr 2008 19:27:47 -0400 + +pidgin (2.4.0-2) unstable; urgency=low + + * Add finch.pc to finch-dev + * debian/patches/22_zephyr-crash.patch: + - Add patch from upstream to prevent crash in Zephyr when reading + accounts.xml file (Closes: #470947) + * debian/patches/23_empty-edit.patch: + - Add patch from upstream to prevent an invisible edit box in + message windows (Closes: #471365) + * debian/patches/24_debian-gconf.patch: + - Fix an earlier screwup where we set /pidgin/browsers/command in + prefs.xml as a string when it should've been a path, so it was never + recognized properly and prevented people from using a custom browser if + they had run 2.3.1-1. (Closes: #472929) + + -- Ari Pollak Fri, 28 Mar 2008 20:39:43 -0400 + +pidgin (2.4.0-1) unstable; urgency=low + + * New upstream release + * Install manpages into their appropriate packages, not pidgin-data + (Closes: #459908) + + -- Ari Pollak Fri, 29 Feb 2008 21:52:50 -0500 + +pidgin (2.3.1-3) unstable; urgency=low + + * Seed libpurple0.symbols file + * Build with -fstack-protector + * Add ${perl:Depends} to libpurple0 and pidgin to get the proper perlapi + versioning (Closes: #463143) + * Fix syntax problem in pidgin manpage (Closes: #463021) + + -- Ari Pollak Sun, 24 Feb 2008 15:17:18 -0500 + +pidgin (2.3.1-2) unstable; urgency=low + + * Make libpurple0 shlibs slightly looser by making it + >= MAJOR.MINOR.0 instead of >= VERSION. + * Change browser command in /etc/purple/prefs.xml to be of type + 'path' instead of 'string', to match what is set by pidgin. + Thanks to Will Thompson for the fix. (Closes: #456441) + * Fix FTBFS when doing a "make docs" by adding an appropriate $(top_srcdir) + before the path to an included file. (Closes: #454549) + + -- Ari Pollak Sat, 15 Dec 2007 15:23:38 -0500 + +pidgin (2.3.1-1) unstable; urgency=low + + * New upstream release + - Fixes problems logging into MSN (Closes: #454592) + - Fixes MSN display name randomly changing (Closes: #454490) + + -- Ari Pollak Fri, 07 Dec 2007 20:33:46 -0500 + +pidgin (2.3.0-1) unstable; urgency=low + + * New upstream release + - Fixes Jabber crash in non-UTF-8 locale (Closes: #436236) + - Fixes problem entering password manually into Jabber (Closes: #446365) + * 21_zephyr-external.patch + - Apply patch from Klee Dienes to fix the Zephyr protocol when + compiled against the system library, as we do (Closes: #451165) + * Build the Contact Availability Prediction plugin, and make sqlite optional + (Closes: #448096) + * Remove 14_xulrunner_nss patch and bump build-depends for libnss3-dev + (Closes: #450402) + + -- Ari Pollak Mon, 03 Dec 2007 14:47:48 -0400 + +pidgin (2.2.2-1) unstable; urgency=high + + * New upstream version + - Fixes a possible crash when parsing invalid HTML (CVE-2007-4999) + * 00_debian-ca-certs.patch: + - Make the X.509 certificate authority code look in /etc/ssl/certs and + make libpurple0 Recommend: ca-certificates. As far as I know + this is not used in any protocols yet. + * Fix dpkg-shlibdeps warning when trying to resolve plugin dependencies + (by making an shlibs.local with empty libjabber and liboscar entries), + since this will be a failure in the experimental version of dpkg + + -- Ari Pollak Wed, 24 Oct 2007 15:12:52 -0400 + +pidgin (2.2.1-1) unstable; urgency=high + + * New upstream release + - Fixes remote DoS (crash) in the MSN protocol (CVE-2007-4996) + - Fixes wrong file transfer size shown on MSN (Closes: #443447) + * Remove circular dependencies on libpurple0/-bin (Closes: #444148) + + -- Ari Pollak Sat, 29 Sep 2007 19:23:43 -0400 + +pidgin (2.2.0-1) unstable; urgency=low + + * New upstream version + - Fixes tabbed window preference (Closes: #440260) + - Fixes crash in music messaging plugin when sending message to offline + buddy (Closes: #441852) + - Adds option to show protocol icons in buddy list (Closes: #432077) + + -- Ari Pollak Fri, 14 Sep 2007 10:43:21 -0400 + +pidgin (2.1.1-4) unstable; urgency=low + + * pidgin-dev and finch-dev should depend on libpurple-dev (Closes: #441191) + + -- Ari Pollak Fri, 07 Sep 2007 11:10:47 -0400 + +pidgin (2.1.1-3) unstable; urgency=low + + * Make finch conflict & replace old versions of gaim (closes: #440351) + + -- Ari Pollak Fri, 31 Aug 2007 15:15:07 -0400 + +pidgin (2.1.1-2) unstable; urgency=low + + [ Laurent Bigonville ] + * Bump Standards-Version + * Split finch out of the pidgin package (Closes: #428678) + * Split libpurple out of the pidgin package (Closes: #421282) + * Add override file to quiet lintian a bit + * Remove symlinks for /usr/share/doc/pidgin{,-dev,-dbg} and really install + them instead + + [ Ari Pollak ] + * Move gconf schema into pidgin, so only pidgin needs to depend on gconf + * Make dh_pidgin add a versioned misc:Conflict on the next major version + of pidgin, in preparation for getting rid of the pidgin (<< 3.0) + dependency, and adding dh_purple/dh_finch. + + -- Ari Pollak Fri, 24 Aug 2007 22:04:23 -0400 + +pidgin (2.1.1-1) unstable; urgency=low + + * New upstream version + * Update new SVN repository information in debian/control + * Install Finch's window managers correctly (Closes: #438536) + + -- Ari Pollak Mon, 20 Aug 2007 17:40:05 -0400 + +pidgin (2.1.0-1) unstable; urgency=low + + * New upstream version + - Fixes a spelling mistake in MSN (Closes: #427170) + - Fixes a tray icon scaling problem on vertical panels (Closes: #433909) + + -- Ari Pollak Mon, 30 Jul 2007 17:57:20 -0400 + +pidgin (2.0.2-2) unstable; urgency=low + + * Make package binNMU-safe (Closes: #430101) + * Add Depends: python + + -- Ari Pollak Fri, 13 Jul 2007 14:55:15 -0400 + +pidgin (2.0.2-1) unstable; urgency=low + + * New upstream version (Closes: #429222) + * Enable SILC support (Closes: #260420) + * 21_purple-remote_syntax.patch: + - Fix syntax error in purple-remote script (Closes: #429623) + + -- Ari Pollak Thu, 12 Jul 2007 10:37:09 -0400 + +pidgin (2.0.1-1) unstable; urgency=low + + * New upstream release + - Should fix some buddy list synchronization crashes (Closes: #424062) + * Fix gevolution dependency exclusion + * Add appropriate Conflicts in addition to Replaces + * Fix dh_pidgin warning due to current lack of package epoch + + -- Ari Pollak Mon, 21 May 2007 23:44:41 -0400 + +pidgin (2.0.0+dfsg.1-4) unstable; urgency=low + + * Remove bashism in debian/rules + * Make pidgin-dev Replaces: gaim-dev (Closes: #422724) + + -- Ari Pollak Fri, 11 May 2007 18:42:08 -0400 + +pidgin (2.0.0+dfsg.1-3) unstable; urgency=low + + * Make pidgin-dbg Replaces: gaim-dbg (Closes: #422845) + + -- Ari Pollak Tue, 08 May 2007 11:42:49 -0400 + +pidgin (2.0.0+dfsg.1-2) unstable; urgency=low + + * Change pidgin-dev depends from glib to gtk (Closes: #422738) + + -- Ari Pollak Mon, 07 May 2007 21:09:45 -0400 + +pidgin (2.0.0+dfsg.1-1) unstable; urgency=low + + * New upstream release + - The .orig.tar.gz source has been modified to remove the + libpurple/protocols/irc/PROTOCOL file, which is non-DFSG-free. + Pidgin 2.0.1 should have this file removed upstream. + * Change name of package to pidgin (Closes: #418215) + * 20_purple-remote_friendly.patch: + - Make error messages friendlier when python-dbus is not installed + or if someone calls purple-remote/purple-url-handler with --help or -h + (Closes: #413204) + * Update Debian menu icon + * Update watch file + * Update prefs.xml for new path to browsers + * Loosen the dependency on pidgin-data slightly (Closes: #403582) + * Add purple-remote manpage from Anibal Avelar (Closes: #412278) + + -- Ari Pollak Sat, 5 Apr 2007 18:13:41 -0400 + +gaim (1:2.0.0+beta6-2) experimental; urgency=low + + * 18_sametime-strip-html.patch: + - Patch from David Everly to properly strip HTML entities in Sametime + group chat (Closes: #410311) + * Make gaim-dev an Arch: all package + * Install gaim API docs into gaim-dev + * Remove some extraneous Recommends/Suggests + * Add rationale for the recommended/suggests packages in the gaim + description + * Conflict with gaim-librvp (<= 0.9.5-2) to prevent a crash when it's + installed (Closes: #408861) + * Conflict with gaim-encryption (<= 3.0~beta7-1) to prevent a crash + + -- Ari Pollak Mon, 29 Jan 2007 12:11:13 -0500 + +gaim (1:2.0.0+beta6-1) experimental; urgency=low + + * New upstream release + * Add a Recommends: python-dbus (Closes: #404623) + * Attempt to enable Cyrus SASL for Jabber again, since support should + have been improved upstream + * 17_statusbox_crash.patch: + - Fix a common crash after upgrading from beta5 when setting status + to Available + + -- Ari Pollak Sat, 27 Jan 2007 16:53:01 -0500 + +gaim (1:2.0.0+beta5-11) unstable; urgency=low + + * 20_sametime-strip-html.patch: + - Patch from David Everly to properly strip HTML entities in Sametime + group chat (Closes: #410311) + + -- Ari Pollak Fri, 9 Mar 2007 20:06:05 -0500 + +gaim (1:2.0.0+beta5-10) unstable; urgency=low + + * 18-jabber-roster-crash.patch: + - Fix possible crash when aliasing a user on Jabber + * 19_docklet_translation.patch: + - Backport some translations of "Blink on new message" from beta6 + (Closes: #409259) + * Add a Recommends: python-dbus (Closes: #404623) + + -- Ari Pollak Sat, 3 Feb 2007 20:12:32 -0500 + +gaim (1:2.0.0+beta5-9) unstable; urgency=low + + * 15_file_save_name.patch: + - Fill the default filename correctly when receiving a file + * 16_yahoo_icon_crash.patch: + - Try to fix a double-free when unable to receive a Yahoo user's + buddy icon (Closes: #402345) + * 17_upnp_crash.patch: + - Fix a crash when receiving an invalid UPnP response + + -- Ari Pollak Sun, 17 Dec 2006 20:06:44 -0500 + +gaim (1:2.0.0+beta5-8) unstable; urgency=low + + * Remove dependency on libsasl2-modules + * Turn off building with gnutls (Really Closes: #401567) + * 13_yahoo_webauth_disable.patch: + - When Yahoo auth fails, don't fall back to using the web interface + since it's broken and only causes more bugs + * 14_xulrunner_nss.patch: + - Build against xulrunner-nss instead of mozilla-nss + + -- Ari Pollak Mon, 11 Dec 2006 13:12:42 -0500 + +gaim (1:2.0.0+beta5-7) unstable; urgency=medium + + * Add gaim-data dependency on ${misc:Depends} (Closes: #401845) + * Use NSS instead of gnutls (Hopefully Closes: #401567) + * Remove build-dep on libaudiofile-dev + * 12_gstreamer-cleanup.patch: + - Add patch to try cleaning up gstreamer support and hopefully fix a crash + related to it. If this doesn't fix the crash, I blame gstreamer. + (Closes: #397788, #399771) + + -- Ari Pollak Thu, 7 Dec 2006 15:16:48 -0500 + +gaim (1:2.0.0+beta5-6) unstable; urgency=low + + * Brown paper bag release. + * Only install gconf schemas in gaim-data (Closes: #401642, #401628) + + -- Ari Pollak Mon, 4 Dec 2006 21:13:29 -0500 + +gaim (1:2.0.0+beta5-5) unstable; urgency=low + + * Er, really install /usr/bin/gaim-remote and gconf schemas + * Really don't build with cyrus-SASL (Really Closes: #400002, 401295) + + -- Ari Pollak Mon, 4 Dec 2006 10:35:31 -0500 + +gaim (1:2.0.0+beta5-4) unstable; urgency=medium + + * Install /usr/bin/gaim-remote script + * Install gconf schemas + * Add Recommends: python + * Don't build with Cyrus-SASL, support is too unstable + (Closes: #400002, 401295) + * 08_jabber-info-crash.patch: + - Add patch from upstream to fix Jabber crash when getting info + on someone with no resource name (Closes: #398399) + * 10_text-arrow-keys.patch: + - Add patch from upstream to fix arrow keys not working in gaim-text + (Closes: #400496) + * 11_reread-resolvconf.patch: + - Add patch to re-read resolv.conf when connecting to a server + (Closes: #394989) + + -- Ari Pollak Mon, 4 Dec 2006 00:09:32 -0500 + +gaim (1:2.0.0+beta5-3) unstable; urgency=low + + * Add libsasl2-modules to Depends; otherwise, connecting to some + Jabber servers won't work. + * Oops, forgot to apply part of the Buddy List memleak patch + (Really closes: #398133) + * 07_msn-custom-smiley-crash.patch: + - Apply patch from upstream to prevent a crash when reading a malformed + custom emoticon. + + -- Ari Pollak Tue, 21 Nov 2006 14:27:19 -0500 + +gaim (1:2.0.0+beta5-2) unstable; urgency=low + + * Build with LDFLAGS=-Wl,--as-needed + * Build Jabber protocol with Cyrus SASL support + * 04_blist-memleak.patch: + - Add upstream fixes for some potential slow memory leaks due to a bug in + GTK+ (Closes: #398133) + * 05_url-handler-xmpp.patch: + - Add upstream fix for crash on odd xmpp: URLs (Closes: #398969) + * 06_jabber-registration-srv.patch: + - Add patch from George-Cristian Bîrzan to query SRV record when + registering on Jabber servers (Closes: #399230) + + -- Ari Pollak Sun, 19 Nov 2006 22:43:40 -0500 + +gaim (1:2.0.0+beta5-1) unstable; urgency=medium + + * New upstream release + - Disables unused/obsolete GStreamer sinks (arts, and NAS) + and falls back to a proper GStreamer sink more gracefully + (Closes: #397160, #397321) + - Fix an uninitialized pointer causing GStreamer crashes (Closes: #397788) + - Normalizes improper UTF-8 before sending to DBus (Closes: #397593) + - Fixes DNS lookup failure after changing networks (Closes: #394989) + * Add Recommends: gstreamer0.10-plugins-base, gstreamer0.10-plugins-good, + gstreamer0.10-alsa | gstreamer0.10-esd + * Don't ship Release Notification plugin (Closes: #396998) + * 03_gconf-gstreamer.patch: + - Try getting gstreamer settings from gconf even if we're not running + gnome + + -- Ari Pollak Sun, 5 Nov 2006 17:36:26 -0500 + +gaim (1:2.0.0+beta4-4) unstable; urgency=medium + + * 06_irc-signal-crash.patch: + - Add patch to work around crash on receiving non-ASCII characters + in IRC by not emitting the new "irc-receiving-text" signal; the text + from the server needs to be normalized into proper UTF-8 before sending + it to dbus. + (Closes: #394555, #395520) + * 07_delete-account-crash.patch: + - Add patch to fix crashies when deleting an Enabled account and then + either exiting or setting the status to Available. + + -- Ari Pollak Sat, 4 Nov 2006 11:01:15 -0500 + +gaim (1:2.0.0+beta4-3) unstable; urgency=low + + * 05_gaimgtklogviewer.patch: + - Revert upstream privatization of GaimGtkLogViewer, which is needed + for attaching to the "log-displaying" signal. + + -- Ari Pollak Sun, 22 Oct 2006 18:34:50 -0400 + +gaim (1:2.0.0+beta4-2) unstable; urgency=low + + * Build against libgadu properly (Closes: #394303) + * Make libgadu a Suggests instead of a Depends + * 04_ansi-comments.patch: + - Fix C++-style comments in gtkgaim.h to allow compilation of plugins with + -ansi + + -- Ari Pollak Sun, 22 Oct 2006 12:34:05 -0400 + +gaim (1:2.0.0+beta4-1) unstable; urgency=low + + * New upstream release + - This includes a new gaim-text binary; it + libgaim will probably be + split out into a separate package soon, but for now I just wanted to get + beta4 out there. + - Large log files should now behave better in the log viewer + (Closes: #341607) + - The text replacement plugin should work properly when text is surrounded + by punctuation (Closes: #277147) + - Buddy pounce should now have an event for receiving a message + (Closes: #277727) + - Should fix aliases with strange encodings (Closes: #391798) + * Add debian/patches/02_gnthistory-in-gtk.patch: + - Don't load GntHistory plugin in gtk gaim + * Remove bashisms from postinst scripts + * Move libmeanwhile1 from Depends to Suggests + + -- Ari Pollak Wed, 18 Oct 2006 17:30:20 -0400 + +gaim (1:2.0.0+beta3.1-5) unstable; urgency=low + + * Update version on evolution-data-server Suggests + * Update version on Conflicts/Replaces: gaim-meanwhile + + -- Ari Pollak Sun, 8 Oct 2006 18:29:17 -0400 + +gaim (1:2.0.0+beta3.1-4) unstable; urgency=medium + + * debian/patches/06_varargs-fix2.patch + - Add second varargs patch to fix another FTBFS on alpha + + -- Ari Pollak Thu, 28 Sep 2006 16:31:34 -0400 + +gaim (1:2.0.0+beta3.1-3) unstable; urgency=medium + + * debian/patches/05_varargs-fix.patch: + - Add fix for alpha FTBFS + * Add Conflicts and Replaces: gaim-dev (<< 1:2.0.0+beta3.1-2) on + gaim-data, since we moved a file from gaim-dev to gaim-data. + + -- Ari Pollak Thu, 28 Sep 2006 11:26:02 -0400 + +gaim (1:2.0.0+beta3.1-2) unstable; urgency=low + + * First upload of 2.0 branch to unstable + * Move the example .py files to /usr/share/doc/gimp-data/examples/ + (Closes: #386632) + * Re-add link from /usr/share/doc/gaim-dbg to gaim-data + * Move ChangeLog.API from gaim-dev to gaim-data since it could be useful + for gaim scripts, not just C plugins + * debian/patches/02_oscar-sendfile.patch: + - Add upstream fix for a bug where the Send File option wasn't + enabled in an AIM/ICQ conversaion for someone that isn't in your + buddy list + * debian/patches/03_novell-fix-1.patch, + debian/patches/04_novell-fix-2.patch: + - Add patches from upstream post-beta3.1 to fix some connection problems + with Novell protocol + + -- Ari Pollak Mon, 25 Sep 2006 22:12:53 -0400 + +gaim (1:2.0.0+beta3.1-1) experimental; urgency=low + + * New upstream release + * Suggest dbus-1-utils instead of dbus + * Change build-depends on libgnutls11-dev to libgnutls-dev (Closes: #335764) + * Move gaim.desktop and the dbus entry to the gaim package instead of + gaim-data, and make gaim-data Recommends: gaim (Closes: #313222) + * Move /usr/share/aclocal/gaim.m4 to gaim-dev + * Remove link to /usr/share/doc/gaim-data from gaim-dbg since + gaim-data may not be installed + + -- Ari Pollak Sun, 20 Aug 2006 22:31:24 -0400 + +gaim (1:2.0.0+beta3-4) experimental; urgency=low + + * Somehow I forgot to add libavahi-compat-howl-dev to the build-depends, + so do that. + + -- Ari Pollak Thu, 6 Apr 2006 18:34:29 -0400 + +gaim (1:2.0.0+beta3-3) experimental; urgency=low + + * Add build-depends on libgadu-dev >= 1.6+20060215-1 since the gaim + plugin now builds from the system library (Closes: #360280) + * Add build-depends on libxml-parser-perl to fix FTBFS (Closes: #360955) + + -- Ari Pollak Wed, 5 Apr 2006 17:31:52 -0400 + +gaim (1:2.0.0+beta3-1) experimental; urgency=low + + * New upstream release + - There is no more Away window, so "Away box should be toplevel" + no longer applies (Closes: #226280) + - Auto-away should be fixed with multiple accounts (Closes: #302686) + - Contact lists should no longer be lost if you run out of disk space + (Closes: #303922) + - Only display the font names in the preferences font selector + dialog, without the font size (Closes: #270529) + - Active/Away status is now integrated into the Buddy List and + has multiple account status (Closes: #240300, #290590, #223839) + - Play sounds even when queueing new messages to the system tray + (Closes: #242516, #272332) + - Don't segfault when running "gaim -l" when no preferences file exists + (Closes: #326852) + - Queued messages should now be saved to the logs as soon as they are + received (Closes: #255117) + - You should now be able to set your browser manually even if you're + using GNOME (Closes: #281381) + - Reconnecting should no longer pop up a new dialog (Closes: #347451) + - Log viewer now aggregates logs from the same "person" (Closes: #213438) + - There is now an included Gtk RC plugin that allows you to change + font sizes via a GUI (Closes: #275640) + - Auto-reconnect is now in the core and should no longer cause + crashes (Closes: #355645) + * Move back to straight cdbs build system, not tarball-in-tarball. + * Build-Depend on cdbs >= 0.4.37 since it automatically handles -dbg package + * Make /usr/share/doc/gaim-dbg a link to gaim-data + * Add libmeanwhile-dev, libavahi-compat-howl-dev, libdbus-glib-1-dev, dbus, + and python2.4 (to generate dbus schemas) to Build-Depends + * Conflict & Replace old gaim-meanwhile package, since we now provide + the meanwhile/sametime plugin. + * Re-enable perl plugin support, since it's been mostly fixed upstream + (Closes: #288851) + * debian/patches/{irc-ssl, logging-compatibility, privacy-crash}.patch: + - Removed, obsoleted by new upstream version + + -- Ari Pollak Mon, 27 Mar 2006 14:25:21 -0500 + +gaim (1:1.5.0+1.5.1cvs20051015-6) unstable; urgency=low + + * debian/patches/07_msncrashfix.patch: + - Backport patch from upstream trunk to handle base16/64 encoding more + gracefully, which should hopefully fix an MSN crasher (Closes: #383731) + + -- Ari Pollak Thu, 24 Aug 2006 22:05:20 -0400 + +gaim (1:1.5.0+1.5.1cvs20051015-5) unstable; urgency=low + + * Change build-depends on libgnutls11-dev to libgnutls-dev (Closes: #335764) + + -- Ari Pollak Sun, 25 Jun 2006 11:18:54 -0400 + +gaim (1:1.5.0+1.5.1cvs20051015-4) unstable; urgency=low + + * Number patches so that they're in a reliable order + * Bump Standards-Version to 3.7.2; no changes necessary + * debian/patches/05_es.po-update.patch: + - Add updated Spanish translation from Javier Fernández-Sanguino Peña + * debian/patches/06_disable-icq-webaware.patch: + - Steal patch from Ubuntu/upstream to disable the webaware feature to + drastically reduce AIM & ICQ spam (Closes: #360063, #369234) + + -- Ari Pollak Sun, 28 May 2006 12:16:34 -0400 + +gaim (1:1.5.0+1.5.1cvs20051015-3) unstable; urgency=low + + * debian/patches/privacy-crash.patch: + - Add patch from upstream CVS to fix crash when removing a user from + the block list (Closes: #357285) + + -- Ari Pollak Fri, 17 Mar 2006 13:26:33 -0500 + +gaim (1:1.5.0+1.5.1cvs20051015-2) unstable; urgency=low + + * debian/patches/logging-compatibility.patch: + - Add patch from upstream to make the log browser forwards-compatible with + the new log filenames in gaim 2.0 + * debian/patches/irc-ssl.patch: + - Add patch to enable IRC over SSL (Closes: #343553) + * debian/README.Debian.dev: + - Correct typo in suggested plugin package name (Closes: #351760) + * debian/control: + - Upgrade debhelper to 5.0 + - Add gaim-dbg package + * debian/compat: + - Upgrade debhelper compat version to 5 + * debian/rules: + - Add gaim-dbg package + + -- Ari Pollak Thu, 9 Feb 2006 14:56:25 -0500 + +gaim (1:1.5.0+1.5.1cvs20051015-1) unstable; urgency=low + + * New upstream CVS snapshot of the oldstatus branch + - Should fix a yahoo login crash (Closes: #323499) + - Adds a fix for a recent OSCAR rate-limiting problem + - Adds support for OSCAR file transfers behind NAT through proxy servers + (Closes: #267180) + + -- Ari Pollak Sat, 15 Oct 2005 16:20:06 -0400 + +gaim (1:1.5.0-1) unstable; urgency=low + + * New upstream release + - IRC quit message is now configurable (Closes: #261317) + * Remove patches introduced in 1.4.0 revisions as they are now + in upstream. + + -- Ari Pollak Fri, 12 Aug 2005 08:04:38 -0400 + +gaim (1:1.4.0-5) unstable; urgency=high + + * This release fixes three remotely-exploitable security issues. + These will be fixed in 1.5.0, but I'm adding the patches now so + I don't have to rush to package 1.5.0 when it comes out. + + * debian/patches/away-message-CAN-2005-2103.patch: + - Added + - Fixes CAN-2005-2103: Away message buffer overflow (arbitrary + code execution) + * debian/patches/libgg-CAN-2005-2370.patch: + - Added + - Fixes CAN-2005-2370: Memory alignment bug in libgadu + * debian/patches/oscar-CAN-2005-2102.patch: + - Added + - Fixes CAN-2005-2102: OSCAR UTF-8 filename remote crash + + * debian/control: + - Remove version from libgtkspell-dev build-depends, since the aspell + C++ transition was reverted. + + -- Ari Pollak Wed, 10 Aug 2005 11:49:26 -0400 + +gaim (1:1.4.0-4) unstable; urgency=low + + * Apparently the second OSCAR patch from upstream wasn't getting applied + properly. Apply it properly, hopefully this should fix the remaining + OSCAR sign-on problem. (Closes: #321071, #321726) + + -- Ari Pollak Sun, 7 Aug 2005 15:03:22 -0400 + +gaim (1:1.4.0-3) unstable; urgency=low + + * Build-depend on libxss-dev so X idle time support will actually get built + * Remove build-depends on autotools-dev since it is no longer necessary + * Change Suggests: evolution-data-server1.2 to evolution-data-server + + -- Ari Pollak Thu, 21 Jul 2005 06:59:18 -0400 + +gaim (1:1.4.0-2) unstable; urgency=low + + * Apply patch from upstream CVS to fix a crash when connecting to certain + AIM/ICQ accounts + * Bump build-depends to gtkspell >= 2.0.10-3, which now depends on + libaspell15c2 for the C++ ABI transition + + -- Ari Pollak Sat, 9 Jul 2005 20:02:34 -0400 + +gaim (1:1.4.0-1) unstable; urgency=low + + * New upstream version. + + -- Ari Pollak Fri, 8 Jul 2005 09:10:21 -0400 + +gaim (1:1.3.1-2) unstable; urgency=low + + * Argh, this shouldn't be a native package. Correctly include .orig.tar.gz + and .diff.gz in upload. (Closes: #314321) + + -- Ari Pollak Wed, 15 Jun 2005 17:22:02 -0400 + +gaim (1:1.3.1-1) unstable; urgency=medium + + * New upstream version. Fixes two remote DoS/crash security bugs, + CAN-2005-1934 and CAN-2005-1269. + + -- Ari Pollak Fri, 10 Jun 2005 12:19:14 -0400 + +gaim (1:1.3.0-2) unstable; urgency=low + + * debian/control: + - Update build-dependencies and Suggests to evolution-data-server1.2 + (Closes: #311663) + + -- Ari Pollak Thu, 2 Jun 2005 15:11:36 -0400 + +gaim (1:1.3.0-1) unstable; urgency=high + + * New upstream version. Fixes two remote DoS/overflow security bugs, + CAN-2005-1262 and CAN-2005-1261. + + -- Ari Pollak Wed, 11 May 2005 09:44:03 -0400 + +gaim (1:1.2.1-1) unstable; urgency=medium + + * New upstream version. Fixes IRC escaping remote DOS problems, hence medium + priority. + + * debian/patches/icq-auth2.patch: + - removed, upstream backed the changes out themselves in this release + + -- Robert McQueen Mon, 4 Apr 2005 04:36:38 +0100 + +gaim (1:1.2.0-3) unstable; urgency=high + + * debian/patches/icq-auth.patch: + - removed, it doesn't actually fix the problem :( + + * debian/patches/icq-auth2.patch: + - new patch to revert to the (arguably less secure, but fully functional) + ICQ authentication code from 1.1.4, arguably an RC bug so upload with + urgency=high if sarge is about to freeze (really closes: #301072) + + -- Robert McQueen Fri, 1 Apr 2005 15:17:19 +0100 + +gaim (1:1.2.0-2) unstable; urgency=low + + * debian/patches/icq-auth.patch: + - Apply patch from upstream CVS which should fix ICQ authentication + problems with passwords greater than 8 characters. (Closes: #301072) + + -- Ari Pollak Thu, 24 Mar 2005 11:11:49 -0500 + +gaim (1:1.2.0-1) unstable; urgency=medium + + * New upstream version. + + * Put better symlink-creating logic in postinst (Closes: #298467) + - this is an RC bug, so upload with urgency=medium + + -- Ari Pollak Mon, 21 Mar 2005 15:57:35 -0500 + +gaim (1:1.1.4-2) unstable; urgency=low + + * New revision to fix incorrect build on x86 (and my bad attempt at + a binary NMU) + + -- Ari Pollak Tue, 1 Mar 2005 03:51:14 -0500 + +gaim (1:1.1.4-1) unstable; urgency=low + + * New upstream version. + - fixes embarrasingly similar HTML crash exploit (CAN-2005-0208) + - fixes g_stat crashes by enabling large file support in Gaim, to match + glib's compile-time settings + - fixes MSN crashes introduced in 1.1.3 + + * Added CVE numbers for exploits fixed in 1.1.3 (CAN-2005-0472 and + CAN-2005-0473) to changelog. + + * debian/patches/00g_stat_brokenness.patch: + - removed + + * debian/control: + - added dependencies on pkg-config and libglib2.0-dev to gaim-dev, but + not on libgtk2.0-dev (it's perfectly possible to build Gaim plugins + that either have no UI code, or interact with the user via Gaim's + interface for doing so) (actually closes: #292728) + + * debian/dh_gaim: + - apply patch to make resulting gaim dependencies less strict + (closes: #296512) + + -- Robert McQueen Fri, 25 Feb 2005 12:28:57 +0000 + +gaim (1:1.1.3-3) unstable; urgency=low + + * Well, I feel dumb. I didn't actually make any changes in -2. + Really do it this time. + + -- Ari Pollak Mon, 21 Feb 2005 22:22:15 -0500 + +gaim (1:1.1.3-2) unstable; urgency=medium + + * Move g_stat() calls back to stat() as a workaround for brokenness + due to large file support in glib but not Gaim (closes: #295904) + + -- Ari Pollak Mon, 21 Feb 2005 21:31:51 -0500 + +gaim (1:1.1.3-1) unstable; urgency=high + + * New upstream version. + - security: fixes DoS bug and HTML parsing problems, so urgency=high + (CAN-2005-0472 and CAN-2005-0473 respectively) + - adds update for pt_BR translation (closes: #292549) + - adds HTTP proxy support for MSN (closes: #215810) + + -- Ari Pollak Thu, 17 Feb 2005 22:41:07 -0500 + +gaim (1:1.1.2-3) unstable; urgency=low + + * debian/control: + - make gaim-dev depend on pkg-config and libglib2.0-dev + (closes: #292728) + + -- Ari Pollak Wed, 2 Feb 2005 19:56:36 -0500 + +gaim (1:1.1.2-2) unstable; urgency=low + + * debian/gaim.postinst: + - add script to rmdir /usr/share/doc/gaim if it isn't a symlink, and + replace it with the gaim -> gaim-data symlink, on the basis that + dpkg doesn't replace directories with symlinks or vice versa + (closes: #291827) + + -- Robert McQueen Sun, 23 Jan 2005 14:45:08 +0000 + +gaim (1:1.1.2-1) unstable; urgency=low + + * Upload the formerly experimental packages with gaim/gaim-data/gaim-dev to + unstable, given that 1.1.1 is in sarge + + * New upstream version. + - fixes failure to hide Jabber and Yahoo messages in the System + Tray Icon, when enabled (closes: #259790) + + * debian/control: + - the conflicts/replaces of gaim-data on gaim that Ari added went + missing between 1.1.1-3 and 1.1.1-4... I added the replaces but + conflicting with old gaim packages prevents upgrades (see policy + 7.3) due to never unpacking conflicting packages side-by-side + + -- Robert McQueen Fri, 21 Jan 2005 18:26:10 +0000 + +gaim (1:1.1.1-4) experimental; urgency=low + + * debian/control: + - put gaim-dev into section devel + + -- Ari Pollak Tue, 11 Jan 2005 10:54:27 -0500 + +gaim (1:1.1.1-3) experimental; urgency=low + + * debian/control: + - gaim-data conflicts/replaces earlier versions of gaim (closes: #289873) + + -- Ari Pollak Tue, 11 Jan 2005 10:32:56 -0500 + +gaim (1:1.1.1-2) experimental; urgency=low + + * New upstream version in this experimental branch. Contains the same + changes made between 1.1.0-1 and 1.1.1-1 in unstable, included below for + reference. Further thanks due here to Ari for doing all the legwork with + this split into gaim{,-data,-dev}, making packages smaller and allowing + plugin packages to be built, and to Tollef Fog Heen for his dh_gaim + script. + + * debian/TODO.Debian: + - rename to gaim-dev.TODO so dh_installdocs automatically includes it in + the right place + + * debian/control: + - replace suggests of evolution with evolution-data-server + - make gaim-dev depend on gaim-data because of /usr/share/doc symlink + - tweak descriptions + + * debian/rules: + - explicitly disabled silc support until #273871 progresses + - install changelogs and documentation in the gaim-data package only, and + make gaim and gaim-dev symlink to it (allowed by policy as they both + depend on gaim-data) + - instruct dh_installman to install dh_gaim's manpage + - run dh_installdocs manually for gaim-dev to install only the files we + need on top of those in gaim-data + - don't bother removing /usr/lib/gaim/*.la files - they are not installed + any more + + * debian/gaim.install: + - install only /usr/lib/gaim/*.so files + - don't try and install the perl5 directory any longer + + * debian/gaim.preinst: + - moved aside to gaim.preinst.old because we no longer need to remove + /usr/share/doc/gaim if it is a symlink - it is once more a symlink + + * debian/gaim-dev.install: + - don't install /usr/lib/gaim/*.la files + + * debian/gaim-dev.manpages: + - removed in favour of variable in debian/rules + + -- Robert McQueen Tue, 4 Jan 2005 18:59:50 +0000 + +gaim (1:1.1.1-1) unstable; urgency=low + + * New upstream version. Massive thanks to Ari for all his help with the + previous releases. + + * debian/patches/libtoolize.patch, debian/relibtoolize: + - removed, should no longer be necessary now Debian's architectures are + supported by upstream libtool + + * debian/rules: + - disable perl support for now, its bitrotted enough to be nearly + useless, and is slated for removal in 2.0 unless anyone fixes it + + * debian/control: + - remove build dependency on automake1.8 because we no longer touch any + of the generated files + - remove perl build dependencies and substvars entries + + -- Robert McQueen Mon, 3 Jan 2005 23:30:47 +0000 + +gaim (1:1.1.0-3) experimental; urgency=low + + * Whoops, don't include 1.0.3 tarball in the .orig.tar.gz. + * Upload to experimental for now + + * debian/control: + - Update gaim package description to be more current about GNOME + (closes: #265269) + + -- Ari Pollak Thu, 9 Dec 2004 22:44:08 -0500 + +gaim (1:1.1.0-2) experimental; urgency=low + + * debian/control: + - added libxml2-dev, libebook-dev, and libedata-book-dev to build-deps for + gevolution plugin + (closes: #274030) + - added evolution to Suggests field for people who want to use gevolution + - added new gaim-dev and gaim-data packages, which split out the + development headers & libraries and architecture-independent data. + (closes: #233350, #162653, #234853, #267682, #274023) + + * debian/gaim-dev.install: + - added development files + + * debian/gaim-dev.manpages: + - added debian/dh_gaim.1, generated in debian/rules + + * debian/gaim-data.install: + - added architecture-independent files + + * debian/gaim.install: + - move existing prefs.xml and gaim-menu.xpm into gaim-data.install + - added the rest of the files that weren't included in -dev or -data + + * debian/README.Debian.dev: + - added README for Debian developers to explain how gaim plugins + should be packaged. + + * debian/rules: + - added dependency excludes for /usr/lib/gaim/gevolution.so, since + we added Suggests for that manually. + - clean up binary-post-install override to not remove the development + files, since we put them in gaim-dev now. + - added build/gaim-dev override to generate man page for + dh_gaim, and added cleanbuilddir/gaim-dev override to clean it up. + + * debian/dh_gaim + - added, thanks to Tollef Fog Heen for writing this. + + -- Ari Pollak Thu, 9 Dec 2004 12:30:00 -0500 + +gaim (1:1.1.0-1) unstable; urgency=low + + * New upstream version. (closes: #284193) + - Fixes MSN switchboard errors (closes: #284406) + + -- Ari Pollak Mon, 6 Dec 2004 10:27:25 -0500 + +gaim (1:1.0.3-1) unstable; urgency=low + + * New upstream version. + - fixes Jabber authentication issues (closes: #266632, #218994) + - fixes crash when dragging a buddy onto a convo window + (closes: #277208) + + -- Ari Pollak Fri, 12 Nov 2004 11:05:39 -0500 + +gaim (1:1.0.2-1) unstable; urgency=high + + * New upstream version, fixes a security hole in MSN. + + * debian/control: + - Add bzip2 to build-deps since the included tarball is now in bz2 format + + -- Ari Pollak Wed, 20 Oct 2004 10:45:55 -0400 + +gaim (1:1.0.1-2) unstable; urgency=low + + * Oops, this shouldn't be a native Debian package. Properly split out + the original tarball and the debian directory. (closes: #276298) + + -- Ari Pollak Wed, 13 Oct 2004 10:10:09 -0400 + +gaim (1:1.0.1-1) unstable; urgency=low + + * New upstream version. + + * debian/rules: + - move to a tarball-within-a-tarball build system. + + * debian/control: + - add build-dep for automake1.8 + + * debian/gaim.docs: + - removed, replaced by cdbs variable in debian/rules + + -- Ari Pollak Tue, 12 Oct 2004 12:26:39 -0400 + +gaim (1:1.0.0-1) unstable; urgency=medium + + * New upstream version (in Robot101's absence) + - urgency medium because it fixes some regressions in 0.82.1 + - should fix encoding problems (closes: #269646, #270490) + + * debian/patches/libtoolize.patch: + - updated + + -- Ari Pollak Sat, 18 Sep 2004 01:20:32 -0400 + +gaim (1:0.82.1-1) unstable; urgency=high + + * New upstream version. Fixes known security issues CAN-2004-0754 and + CAN-2004-0785, and includes several important bug fixes. + (closes: #268783) + + * debian/patches/allow-blist-shrink.patch: + - removed, I'm trusting upstream on this one :) + + * debian/patches/libtoolize.patch: + - updated + + * debian/patches/msn-fixes-CAN-2004-0500.patch: + - removed, included upstream + + -- Robert McQueen Sun, 29 Aug 2004 22:19:07 +0100 + +gaim (1:0.81-3) unstable; urgency=high + + * debian/patches/cvs-msn-slp-overflow.patch: + - removed, because upstream only fixed half the problem... + + * debian/patches/msn-fixes-CAN-2004-0500.patch: + - patch from SUSE to fix CAN-2004-0500 + + * debian/patches/cvs-gtkblist-size-request.patch: + - removed, because despite upstream's insistence... + + * debian/patches/allow-blist-shrink.patch: + - this is the required change to stop the buddy list from appearing wider + than its saved width + + -- Robert McQueen Fri, 13 Aug 2004 10:54:10 +0100 + +gaim (1:0.81-2) unstable; urgency=medium + + * debian/control: + - raise libgnutls11 build-dep to >= 1.0.16-5 to ensure correct libtasn + version is installed (closes: #264455) + + * debian/patches/cvs-gtkblist-size-request.patch: + - fix from CVS to stop the buddy list making itself over 200 pixels + wide all the time + + * debian/patches/cvs-msn-slp-overflow.patch: + - fix potential overflow in MSN's slp code + + -- Robert McQueen Thu, 12 Aug 2004 01:00:28 +0100 + +gaim (1:0.81-1) unstable; urgency=low + + * New upstream version. (closes: #264180) + + * debian/control: + - switch to gnutls11 instead of deprecated 10 (closes: #263637) + + * debian/relibtoolize: + - include the script I'm using to generate the following patches - it + needs adjustment to be robust to aclocal.m4 changes + + * debian/patches/cvs-irc-ison-lessflood.patch: + - removed + + * debian/patches/libtoolize.patch: + - updated + + -- Robert McQueen Sun, 8 Aug 2004 15:04:06 +0100 + +gaim (1:0.80-3) unstable; urgency=low + + * debian/patches/libtoolize.patch: + - not only was the patch turned out by my script complete garbage even on + my system, it had the added bonus property that it only worked if you + were building gaim in /home/robot101/debian/0.80/gaim-0.80 - this patch + should apply with -p1 because the cdbs patch thing doesn't try -p5 for + some reason... :P (actually closes: #260070) + + -- Robert McQueen Sun, 18 Jul 2004 21:25:27 +0100 + +gaim (1:0.80-2) unstable; urgency=low + + * debian/patches/libtoolize.patch: + - replace spectacularly broken patch with one that actually applies - I + can't actually work out how this ever appeared to work on my system + in the first place (closes: #260070) + + -- Robert McQueen Sun, 18 Jul 2004 20:15:45 +0100 + +gaim (1:0.80-1) unstable; urgency=low + + * New upstream version. (closes: #259891) + + * debian/patches/cvs-buddyicon.patch: + - removed + + * debian/patches/cvs-irc-ison-lessflood.patch: + - patch from CVS to avoid flooding yourself off with large numbers of + ISON requests on IRC (closes: #259010) + + * debian/patches/libtoolize.patch: + - updated + + * debian/control: + - lintian fix - make build-depends into a single line + + * debian/gaim.menu: + - lintian fix - added quotes around X11 in needs field + + * debian/rules: + - until I make a gaim-dev package (shortly - I didn't want to hold up the + new upstream version by sending Gaim to queue/NEW) don't ship gaim.pc + because it's confusing if stuff configures but doesn't build + + -- Robert McQueen Sat, 17 Jul 2004 18:15:54 +0100 + +gaim (1:0.79-2) unstable; urgency=low + + * debian/control: + - update libgnutls7-dev build-depend to libgnutls10-dev to help kill + off libgnutls7 (closes: #256428) + + -- Robert McQueen Sun, 27 Jun 2004 12:29:06 +0100 + +gaim (1:0.79-1) unstable; urgency=low + + * New upstream version. Doubtlessly closes many bugs, including the + repeatedly reported fact that this new version (and the one before) exist. + Sorry, I was busy. I'll look through the bugs soon, but currently I think + people would just appreciate the package. :) + + * debian/patches/cvs-buddyicon.patch: + - patch from CVS to fix buddy icon snafu + + * debian/patches/libtoolize.patch: + - updated + + -- Robert McQueen Sat, 26 Jun 2004 19:05:01 +0100 + +gaim (1:0.77-1) unstable; urgency=low + + * New upstream version. (closes: #245446) + - finally repairs MSN error reporting (closes: #195475) + - optionally mute sounds when the conversation is focussed (thanks + to Stu Tomlinson for implementing this) (closes: #140289) + + * debian/patches/browser-default.patch: + - removed + + * debian/patches/libtoolize.patch: + - updated + + * debian/prefs.xml: + - ship new default prefs.xml to use sensible-browser and have the docklet + loaded initially + + * debian/gaim.install: + - install prefs.xml into /etc/gaim + + -- Robert McQueen Sat, 24 Apr 2004 16:18:33 +0100 + +gaim (1:0.76-1) unstable; urgency=low + + * New upstream version. (closes: #241968, #242431) + - this version builds the zephyr plugin against an external libzephyr, + allowing kerberos support and closing a long standing wishlist bug, + making zephyr actually useful (closes: #152034) + - adds a "Network" preferences pane to choose incoming port ranges + (closes: #133850) + - adds the choice of "Gnome Default" to the browser choices, I also made + Debian's /usr/bin/sensible-browser the default (see below) + (closes: #210744) + - fixes saving of modified account prefs (closes: #229511, #231249) + - Yahoo! works again (closes: #231440, #236744) + - shouldn't clobber existing prefs/blist files if disk is full + (closes: #234790) + - Perl plugin loading fixed (closes: #229457) + + * debian/patches/browser-default.patch: + - set the default browser to Debian's sensible-browser (only affects new + users) + + * debian/patches/buffer-overflows.patch: + - removed on the basis that all the problems are fixed in this release, + although I plan to audit the patch to confirm this + + * debian/patches/libtoolize.patch: + - regenerated for this version + + * debian/control: + - added libzephyr-dev to build-depends + + * debian/rules: + - build against external libzephyr + - make dh_shlibdeps consider libzephyr.so for suggests only + + -- Robert McQueen Wed, 7 Apr 2004 03:34:57 +0100 + +gaim (1:0.75-3) unstable; urgency=high + + * Minor tweak to the security patch to fix an infinite loop. High urgency + because I meant to fix this before 0.75-2 reached testing, but didn't. + I'm going on holiday for a week, so if 0.76 comes out, be patient. + + -- Robert McQueen Wed, 24 Mar 2004 02:56:48 +0000 + +gaim (1:0.75-2) unstable; urgency=medium + + * Security update to fix 12 possible buffer overflow attacks. Details are + at http://security.e-matters.de/advisories/012004.html. + + * debian/patches/buffer-overflows.patch: + - patch from RedHat's RHSA-2004:032-04 advisory to fix CAN-2004-0006/7/8, + thanks to RedHat for this patch, Jacques A. Vidrine for the initial + patch, and Stefan Esser for finding the original problems + (closes: #229843) + + -- Robert McQueen Tue, 27 Jan 2004 16:06:39 +0000 + +gaim (1:0.75-1) unstable; urgency=low + + * New upstream version: + - restores Ctrl+PgUp/PgDn tab switching (closes: #226674, #226795) + + * debian/patches/libtoolize.patch: + - regenerated because for some reason, make dist doesn't work for + upstream on sid at the moment + + * debian/control: + - add build depend on xutils because configure uses imake to find + the X include directory - this makes Gaim link to the X ScreenSaver + and session management libs reliably (thanks to Ryan Murray) + (closes: #226227) + + -- Robert McQueen Sat, 10 Jan 2004 12:02:40 +0000 + +gaim (1:0.74+0.75cvs20040104-1) unstable; urgency=low + + * CVS snapshot. 0.74 had problems with leaking and some other stuff that + annoyed me, so I put off packaging it as long as possible. Turns out + CVS was just made usable now in preparation for a release, so I'm just + packaging it instead: + - typo fix in README was fixed in CVS (closes: #220999) + - this can be taken to provide 0.74 (closes: #223931) + + * debian/patches/00-libtoolize.patch: + - deleted, not necessary because I ran "make dist" on a Debian box + * debian/patches/gtkspell-locale2.patch: + - deleted, in favour of... + * debian/patches/gtkspell-locale3.patch: + - now very small because I had "cleanups" merged to CVS ;) + + * debian/control: + - change tcl8.3-dev and tk8.3-dev build deps to 8.4, upstream works with + 8.4 now + - add tcl8.3-dev and tk8.3-dev build conflicts + * debian/copyright: + - update to point at new COPYRIGHT file + * debian/gaim.README.Debian: + - deleted, had nothing to say really + * debian/gaim.docs: + - add new upstream COPYRIGHT file + + -- Robert McQueen Mon, 5 Jan 2004 03:30:17 +0000 + +gaim (1:0.72-1) unstable; urgency=low + + * New upstream version. Sorry I missed 0.71, been busy. Some nice bug + fixes and tweaks in these two versions: + - now possible to override your username on IRC (closes: #196265) + - rewritten Jabber plugin with XMPP support, bugs in old code + evaporate (closes: #199345, #217326) + - various bugfixes to SSL code (closes: #214798) + - fixes ICQ signon crashes (closes: #217851, #217856, #218496) + + * debian/patches/00-libtoolize.patch: + - updated for new version (I should make a script for this...) + * debian/patches/cvs-yahoo-{endian,tweak}.patch: + - deleted, included in this release + * debian/patches/gtkspell-locale.patch: + - deleted, was broken ("C" is not a language and has no dictionary) + * debian/patches/gtkspell-locale2.patch: + - reworked version which should set the dictionary consistently and + only when the locale has actually been set + (closes: #213937, #215811) + + * debian/control: + - added build depend for libstartup-notification0-dev + - added ${shlibs:Suggests} to the suggests field + - removed conflicts/replaces for the short-lived (never officially + released) libgaim-remote packages + * debian/rules: + - gentle fudge to stop dh_makeshlibs from acting on the plugins, some + of which cause it to false-positives (see #205142) + - gentle shlibdeps fudge to downgrade tcl and tk to suggests + (closes: #213409) + + -- Robert McQueen Sat, 1 Nov 2003 19:01:25 +0000 + +gaim (1:0.70-2) unstable; urgency=low + + * debian/patches/cvs-yahoo-endian.patch: + - memcpy(&some_char[], &some_int, sizeof(int)) is not portable, mmkay? + here's my patch [from CVS] (thanks Matthew Wilcox) + + -- Robert McQueen Mon, 29 Sep 2003 13:31:37 +0100 + +gaim (1:0.70-1) unstable; urgency=low + + * New upstream version. Skipped 0.69 because it was shunned upstream due + to not actually fixing the Yahoo! problem, and installed Perl all wrong. + Since 0.68 we've added Contact support, Tcl plugins, SSL for Jabber + and the new MSN plugin, and fixed the Yahoo! connection problems. Also, + I'm experimenting with a new changelog format. + - pays attention to the challenge type that Yahoo! sends us, and + presents an error on unknown types (closes: #212941) + - supports the new Yahoo! challenge type (one of them, anyway) + (closes: #212749) + - supports the new MSN protocol (closes: #207745) + + * debian/patches/00-libtoolize.patch: + - reran libtoolize with the Debian version of libtool, so that Perl + support works on arm, m68k and friends (thanks Keybuk) + * debian/patches/cvs-yahoo-tweak.patch: + - tweak to Yahoo! authentication code [from CVS] + * debian/patches/gtkspell-locale.patch: + - sets the GtkSpell dictionary according to the current locale. Not + merged upstream because blah blah Windows aspell blah blah, but I + don't really care. Sigh. (closes: #202009) + + * debian/control: + - standards version 3.6.1 + - dropped build conflicts in light of --disable-nss working properly + now (I submitted a patch just before 0.69) + - added versioned build-depend on libperl-dev >= 5.8.1, because DESTDIR + just decided to start working in MakeMaker, and I don't see how to + consistently support builds both with and without that functionality + without grossly hacking the build system + - change Tcl build-depend to tcl8.3-dev, which is all it supports at + the moment, and add tk8.3-dev for Tk support + - added ${perl:Depends} to depends + * debian/gaim.docs: + - removed plugins/SIGNALS because it's gone upstream - all the API docs + are moving into Doxygen, and I'll consider shipping them whenever + upstream starts shipping header files + * debian/rules: + - add --disable-nss to ensure consistent SSL library choice + + -- Robert McQueen Mon, 29 Sep 2003 13:28:07 +0100 + +gaim (1:0.68+0.69cvs20030917-1) experimental; urgency=low + + * CVS snapshot. Contains SSL support for Jabber and the new MSN plugin, + contact support, a Tcl plugin loader, and the two patches that were + in 0.68-1. + * Added build depends for GNUTLS and Tcl, and conflicts for NAS and NSS + (because we don't build with this functionality). + + -- Robert McQueen Thu, 18 Sep 2003 00:03:42 +0100 + +gaim (1:0.68-1) unstable; urgency=low + + * New upstream version. (closes: #209021) + - new event system and perl API + - ignores MSN's upgrade spam (new MSN plugin will be in 0.69) + - fixes Jabber registration (closes: #208070) + - now includes code to retrieve, parse and display Yahoo and MSN + profiles (closes: #201498) + * Start using the simple patch system from cdbs: + - cvs-libgaim-remote-glib.diff: link libgaim-remote with glib + [from CVS] (closes: #210652) + - cvs-yahoo-version.diff: update Yahoo protocol version to avoid + warnings and/or allow signing in [from CVS] + + -- Robert McQueen Wed, 17 Sep 2003 02:20:20 +0100 + +gaim (1:0.67-3) unstable; urgency=low + + * Apply my patch from CVS to stop the ticker crashing when it's reloaded + (enterprising hack to make GType reuse the existing type instead of + trying to register it again). (closes: #203727) + * Apply fix from CVS to stop crashes if you don't have yourself on your + buddy list (the developers all do this because it's the best way + to track your own status at the moment). (closes: #206574) + + -- Robert McQueen Sat, 23 Aug 2003 04:54:11 +0100 + +gaim (1:0.67-2) unstable; urgency=low + + * Apparently libgaim-remote is too small to warrant a package of its own + until anything else wants to use it. + * Tweak description again to make less of an issue of license and widget + set. (closes: #205518) + + -- Robert McQueen Tue, 19 Aug 2003 19:41:48 +0100 + +gaim (1:0.67-1) unstable; urgency=medium + + * New upstream version with much core/UI splitting work and a cool new + key/value XML-based prefs engine, rewritten IRC plugin, status icons + in conversation tabs, a tab colour for unseen status messages, and + various dialog rewrites. (closes: #202666, #202742, #203471) + + * Merged all the patches from 0.64-3 and should fix a few other bugs: + - store proxy settings correctly (closes: #195035, #195304) + - wait for the remote buddy list to download (on AIM/ICQ) before + maniupulating buddies (closes: #195655, #196445) + - display remote aliases correctly (closes: #196664) + - new prefs system works now (closes: #200810) + - apparently this one is fixed in 0.66 too (closes: #205093) + + * Between 0.64 and 0.67, various fairly crucial MSN bugfixes were made, + preventing all manner of infinite loops, unclosable chat windows, + cloned buddies, and the like. (closes: #199421, #199515, #200655) + (closes: #203306, #203309, #203866, #204960) + + * Skipped 0.65 because it was a little broken, hence the hasty release of + 0.66. + * Skipped 0.66 because I decided to switch to cdbs while I was reworking + the packaging for the new libgaim-remote library, and it turned out + the build system was subtly broken and needed fixing. These fixes + are in this version. So it builds. Hurrah. + * By skipping two versions, I shielded you all from the harsh disappearance + of the Message Notification plugin in 0.65 and 0.66. Which was my plan + all along, of course. + + * Medium urgency because this is a pretty solid release with lots of bug + fixes, and 0.64-3 sucked. + * Split out library and -dev packages for the new libgaim-remote0 library. + * Switched to CDBS. Shrunk debian/rules somewhat. :D + * Made the description less AIM-centric. + * Updated standards version to 3.6.0. + + -- Robert McQueen Fri, 15 Aug 2003 06:06:37 +0100 + +gaim (1:0.64-3) unstable; urgency=medium + + * Medium urgency because MSN and Yahoo are fairly broke in the previous + release, which should *not* be immortalised in testing. + * Added patch from CVS to fix various MSN crashes and corruption of + your friendly name. (closes: #195603) + * Added patch from CVS to fix crash for buddy lists sorted by status. + (closes: #196338, #196515) + * Backported fix from CVS to fix Yahoo's new penchant for lower-case + user names. + * Backported fix so AOL mail is not checked if you disable the option. + (closes: #196733) + * Corrected spelling error in Oscar (also in CVS). (closes: #196840) + + -- Robert McQueen Sun, 29 Jun 2003 02:34:32 +0100 + +gaim (1:0.64-2) unstable; urgency=low + + * Updated to standards version 3.5.10. + * Replaced the Debian menu icon with a nice-looking one now that the menu + policy doesn't mandate a crappy pallete. + * So I spent a day cleaning the BTS for the Gaim package. Closed about 20 + bugs, reassigned 3 and fixed 7. This is the second batch of fixes. + * Adjust wording so iconaway plugin no longer claims to minimise the away + window, which is a dialog and shouldn't (or sometimes can't) be + minimised. It wasn't doing it anyway. (closes: #188821) + * Linkify text appended by the history plugin if the option is enabled + to do this for conversations. (closes: #189511) + * Validate UTF8 for incoming server-stored aliases because clients like + Trillian send us random encodings but call them UTF-8. Avoids nasty + crashing. (closes: #189662) + * Added a "Close" button to the file transfer dialog. (closes: #192366) + + -- Robert McQueen Sat, 31 May 2003 16:56:18 +0100 + +gaim (1:0.64-1) unstable; urgency=low + + * New upstream version. + - Fixes some MSN problems, spiffs the debug window some more, and more + core/ui splitting work from Chip the living legend. + - New user request API fixes age-old dangling callback problems with + prompt dialogs such as the IRC nick change dialog. (closes: #189946) + * Made the signon meter window not dialog hinted, so you can ignore it and + carry on using Gaim while your eleventy billion accounts sign in. Found + and fixed a leak in the process. (closes: #187996) + * Fixed a minor typo which caused "" to be appended even when the + font dialog was cancelled. (closes: #188048) + * Fixed "Copy link location" menu entry the right way. The correct clipboard + to copy to is... both of them. (closes: #191301) + + -- Robert McQueen Sat, 31 May 2003 05:28:51 +0100 + +gaim (1:0.63-1) unstable; urgency=low + + * New upstream version. The 'I am happy ChipX86' version. He hacked loads on + this release, giving us a new MSN plugin, a new plugin API, and brought + us far closer to a core/UI split than we've ever done before. Three + cheers for Chip! Also thanks to faceprint, you can put chats in your + buddy list once more. And there was much rejoycing. + + -- Robert McQueen Sun, 18 May 2003 04:40:19 +0100 + +gaim (1:0.62-1) unstable; urgency=low + + * New upstream version. + - fixes AIM/ICQ proxy connection problems (closes: #188530) + - includes updated Japanese translation, thanks Junichi Uekawa + (closes: #188819) + - buddy list keyboard accelerators fixed (closes: #189843) + + -- Robert McQueen Sun, 27 Apr 2003 19:59:42 +0100 + +gaim (1:0.61-1) unstable; urgency=low + + * New upstream version. Fixes buddy list drag and drop issues. Some + new icons and spacing to improve the look of the buddy list. New + more flexible buddy pounce code. + + -- Robert McQueen Fri, 11 Apr 2003 03:12:18 +0100 + +gaim (1:0.60.0-1) unstable; urgency=low + + * New upstream version. Actually 0.60, but 0.60.0 is higher than the + versions on my CVS debs. Skipped 0.59.9, oh well. (closes: #184493) + - it has been in development for almost a year, and a third of all the + code has been rewritten in porting to Gtk2! + - features new buddy list with optional large buddy list icons + (closes: #130436) + - group folding is persistent across signons and signoffs + (closes: #133238) + - i18n fixed and rewritten in all protocols + (closes: #155058, #185531) + - adds X11R6 session management support (closes: #151272) + - new sound system with libao has arts plugin (closes: #170960) + - adds "Display remote nick if no alias is set" option which can display + and update MSN friendly names automatically (closes: #176466) + - other cool stuff like XML-based buddy list, global groups, asynchronous + DNS lookups, draggable conversational tabs, tray icon plugin to + replace the GNOME applet, ICQ server-stored buddy lists, cute new + PNG icons, external sounds... + * Added long title to Debian menu entry. (closes: #175379) + * Disabled NAS support. Feel free to add it to libao. + * Dropped licq2gaim.pl, it doesn't work with XML buddy list format. + * Tweaked debian/rules with new build options and such. + * Updated build-deps with Gtk2 etc, updated standards version, suggest + gnome-panel, kicker or docker for the tray icon plugin, and detail the + new arrangement in the description. + * Updated README.Debian with triumphant post-release banter. + * Wrote a manpage for gaim-remote. Fancy that. + + -- Robert McQueen Sat, 5 Apr 2003 12:30:11 +0100 + +gaim (1:0.59.8-1) unstable; urgency=low + + * The 'roll on 0.60' release. + * New upstream version. I'd apologise for the delay, but I put the + interesting fixes in 0.59.7-1 so there was no hurry anyway. + * No longer build the GNOME applet variant. It only works with GNOME + 1.4 which isn't shipped in Debian sid any more. Furthermore, the + applet won't exist in the Gtk2 version of Gaim, it's already been + replaced with my Tray Icon plugin. (closes: #180640) + * Add a note in the description, and a longer one in README.Debian, + explaining why gaim-gnome is gone. It's not coming back either. + If I get any bugs about this I'm gonna be hella annoyed. Use the + CVS debs from here: + deb http://people.debian.org/~robot101/gaim unstable cvs + deb-src http://people.debian.org/~robot101/gaim unstable cvs + And no, I will not upload them to sid. It's still buggy as hell. + * Kill off gaim-common and gaim-gnome packages. Conflict and replace + because all files belong to the gaim package now, and provide in + the vain hope that apt/dpkg will choose gaim over old gaim-gnome + packages and that I won't have to make a stub package. + * Major crapectomy in debian/rules now that we're only building the + one time. Thank god. + * Add gaim.preinst to remove old /usr/share/doc/gaim symlink because + dpkg wisely avoids transitions between symlinks and directories + and vice versa. + * Updated build-depends to exclude GNOME and libpanel-applet, include + esd, have libaudio-dev instead of nas-dev, and no longer require + perl 5.8 (sid is 5.6 on all arches now). + * Update standard version to 3.6.8. + + -- Robert McQueen Tue, 18 Feb 2003 00:04:05 +0000 + +gaim (1:0.59.7-1) unstable; urgency=medium + + * New upstream version. Various bug fixes including a remote crash bug + with malicious AIM rendezvous packets. + * Includes patch from CVS to fix Yahoo login problems - sends protocol + version 0x0900 instead of 0x0600. + * Yahoo i18n patch was included in this release. (closes: #170542) + * Fixed a small error causing the "Insert Smiley" button to crash when + offline. (closes: #175442) + * Replaced invasive automatic config.{guess,sub} updating from + debian/rules and replaced with much saner symlinking method. + * Murdered pallet of gaim-menu.xpm (for the Debian menu entry) + according to the idotic menu policy, to shut lintian up. + * This release is from the upstream 'gtk1-stable' branch. If you like + Gtk2, or use GNOME 2 or KDE 3.1, please consider trying my Gaim CVS + snapshot debs. The Gtk2 port is being worked on in CVS, and as a + result this version is a little buggier and has some regressions, + including no working IM image support and no protocol specific + smileys, but it does have infinitely better i18n, looks a lot + prettier, has support for session management (ie start at login in + GNOME 2), and also features my Tray Icon plugin, which replaces the + applet, and is visible in system-tray-applet in GNOME 2, or the + normal Kicker system tray in KDE 3.1. Please mail me directly with + any bugs you find in these, rather than filing them in the BTS. The + apt lines are: + deb http://people.debian.org/~robot101/gaim unstable cvs + deb-src http://people.debian.org/~robot101/gaim unstable cvs + (closes: #148248, #165291, #171714) + + -- Robert McQueen Mon, 6 Jan 2003 06:11:33 +0000 + +gaim (1:0.59.6-1) unstable; urgency=low + + * New upstream version. Fixes gigantic timestamp font in Jabber group + chats. (closes: #167153) + * Include patch from CVS to fix Yahoo! i18n issues (hopefully) and + crashes due to protocol changes. (closes: #160347, #166505) + + -- Robert McQueen Sun, 24 Nov 2002 06:01:09 +0000 + +gaim (1:0.59.5-2) unstable; urgency=low + + * Added patch from upstream CVS to fix bugs when an invalid gtk style + is loaded. Sigh. Roll on 0.60 with Gtk2 goodness. (closes: #152274) + + -- Robert McQueen Sat, 26 Oct 2002 22:41:20 +0100 + +gaim (1:0.59.5-1) unstable; urgency=low + + * New upstream version, sorry about the delay. Considering 0.59.3-1 + contained most of the fixes that went into 0.59.4, I didn't bother + packaging it. The only changes to 0.59.5 are to fix a crash in the + Yahoo plugin due to a slight change in the protocol. + * Updated config.sub from 20020621 to 20020905 and config.guess from + 20020529 to 20020903. + + -- Robert McQueen Fri, 25 Oct 2002 02:42:12 +0100 + +gaim (1:0.59.3-1) unstable; urgency=low + + * New upstream version. + * Updated to standards version 3.5.7. + * Tighten perl build-dep to require 5.8 (thanks Ryan Murray). + * Applied fixes from upstream CVS: + - remove Ctrl+K binding for colour + - fix yahoo memleak + - make the edit tab in the blist scrollable horizontally + - apply patch from A Lee to do charset transitions character by + character to avoid iconv's truncation (closes: #162396) + + -- Robert McQueen Sun, 29 Sep 2002 18:03:49 +0100 + +gaim (1:0.59.2-1) unstable; urgency=low + + * New upstream version. + * Revert all patches here, everything's included. + * Except for a blooper upstream which removes spaces from MSN and Yahoo + screen names, and adds random NULs instead. Doh! Pulled fix from + CVS. + + -- Robert McQueen Fri, 13 Sep 2002 02:22:05 +0100 + +gaim (1:0.59.1-4) unstable; urgency=low + + * Update build-deps to libgnome-dev (>= 1.4.2-3) and + libpanel-applet-dev (>= 1.4.1-2) to ensure imlib1/png2 is used. + * Minor modification from Matt Wilson at RedHat to fix UTF8 font + selection in GtkImHtml (widget used in conversation/chat windows). + + -- Robert McQueen Tue, 3 Sep 2002 18:33:24 +0100 + +gaim (1:0.59.1-3) unstable; urgency=high + + * The 'getting sick of this now' release. Third time lucky and all... + * Ryan Murray (of gdk-pixbuf-dev fame) suggests dropping the new build + dependencies and gently hacking the Makefile to substitute them out + of linking the applet, because they're not actually necessary. This + will also fix libpng2/3 compatibility issues that were making the + applet fall back to the ugly xpm icon (until Christian Marillat + stops being an idiot and links GNOME 1.4 against libpng2 again). + * Thanks to Lukas Geyer (of JimButton fame) for pointing me at the + right make features I needed to accomplish this without too much + hacking. + * Include a patch from Chris Blizzard (of RedHat fame) to fix an + oversight in my fix for the browser security vunlerability. Access + to unallocated memory in the non-manual browser handlers could have + caused crashes in some situations. Cheers Chris. Sorry everyone. + * Also edit the default manual browser command to not contain quotes + any more. Debian should get a /usr/bin/sensible-browser or + something. + + -- Robert McQueen Wed, 28 Aug 2002 02:42:42 +0100 + +gaim (1:0.59.1-2) unstable; urgency=high + + * Well, that's the reason. gdk-imlib-dev dropped the dependencies for + lib{jpeg,png,tiff,gif}-dev because apparently they're not necessary. + libgnome-dev probably needs to add these. + * Added build-deps on libpng3-dev and libtiff3g-dev, so that Gaim can + finally build on the buildds without me NMUing libgnome-dev in a fit + of anger. + * Set urgency back to high to hammer the point home. If this doesn't + build I'm going to be mighty annoyed. + * Changed gaim-gnome depend to gnome-panel (<< 1.5). It doesn't work + with GNOME 2. I'm writing a docklet for that. + + -- Robert McQueen Mon, 26 Aug 2002 19:02:14 +0100 + +gaim (1:0.59.1-1) unstable; urgency=low + + * New upstream version from the gtk1-stable branch. Merges my browser.c + patch, works with perl 5.8 and gettext 0.11.x, and has a pretty + icon. + * Upstream merged patch for fixed i18n with libiconv. + (closes: #154473, #155058) + * Updated gaim-menu.xpm in light of new gaim.png icon, and fixed + gaim-common.files for the new icon name. + * Fixes idiotic handling of http_proxy environment variable. + (closes: #144244) + * Updated ja.po because upstream is ignoring me about this. + (closes: #154485) + * Added libjpeg-dev build-dep. GNOME 1.4 is messed up in a half-baked + libpng2 -> 3 transition, and this dep must've fallen out somewhere + else along with someone's brain. Should let the security fix build + and propogate to sarge. + + -- Robert McQueen Mon, 26 Aug 2002 04:59:50 +0100 + +gaim (1:0.59-2) unstable; urgency=high + + * Wrote patch to fix hideously insecure execution of unescaped + arbitrary strings through the shell for the Manual browser URL click + handler. Replaces any spaces in the URL with +, and runs the user's + browser command directly without the shell. Users will soon learn + not to quote the %s in their browser command. (closes: #157909) + * Added libungif4-dev to build-deps. Looks like someone's brain fell + out. Ho hum. + * Updated config.sub from 20020307 to 20020621, and config.guess from + 20020320 to 20020529. + + -- Robert McQueen Sat, 24 Aug 2002 02:14:49 +0100 + +gaim (1:0.59-1) unstable; urgency=low + + * New upstream version. Finally. Contains various new and updated + translations, and fixes for various bugs, crashes & memleaks. + * Should work around a Gtk+ bug that causes spinning when some text + widget is smaller than the text height. (closes: #117498) + * Fixes strange tabbing order in 'Add Buddy' dialog. (closes: #134502) + * Hopefully a final end to stupid MSN errors. (closes: #147141) + * Should display UTF8 MSN names in their full glory. (closes: #150354) + * Updated config.sub from 20010420 to 20020307, and config.guess from + 20010420 to 20020320. + + -- root Fri, 26 Jul 2002 23:19:27 +0100 + +gaim (1:0.58-2) unstable; urgency=low + + * Applied patch from Chris Blizzard (of Redhat fame =) to fix munged + GNOME applet icon at startup. Cheers! (closes: #147071) + * Enabled NAS audio in non-GNOME package. (closes: #147291) + * Returned globbing to debian/gaim-common.files now we don't need to + make an exception for iconaway.so. + + -- Robert McQueen Fri, 24 May 2002 23:24:16 +0100 + +gaim (1:0.58-1) unstable; urgency=high + + * The 'DOH!' release. + * New upstream version, lots of nice stuff. See the changelog. =) + * To avoid upsetting upgrades, gaim-common now replaces suitably old + gaim-gnome packages because iconaway.so moved. (closes: #144945) + * Another attempt by upstream to fix those annoying 'Already there' + MSN errors. (closes: #145722) + * Fixes GNOME applet transparency problems. (closes: #145915) + * In the previous version, the MSN plugin got secure logins to Hotmail + that used MD5 auth cookies in a file which was opened in the + browser, and would log you straight into your inbox. Ironically, + this improved security used blatantly insecure tempfiles, which + were also created with the 644 mode, leaving the way open for + symlink attacks, and anyone on your system reading your mail. This + is fixed in this release. (closes: #146750) + * Not to mention the overflow in the Jabber plugin that got fixed. + * Automatic update of config.sub from 20010907 to 20020307, and + config.guess from 20010904 to 20020320. + + -- Robert McQueen Tue, 14 May 2002 17:44:43 +0100 + +gaim (1:0.57-2) unstable; urgency=high + + * The 'Ahh... phew' release. One or two patches from CVS. + * Fixes segfault DOS in TOC protocol code. (closes: #144318) + * Returns iconaway.so to gaim-common, the gnome/non-gnome dependent + code has been moved to the binary itself. + * High priority to reach woody with these fixes, and the fix in 0.57 + for Yahoo's new authorisation method. + + -- Robert McQueen Sun, 28 Apr 2002 16:54:18 +0100 + +gaim (1:0.57-1) unstable; urgency=low + + * The 'You did WHAT with configure.ac?!?' release. + * New upstream version. Adds an evil autoconf hack upstream, support + for Yahoo's new authorisation method, new keyboard shortcuts, + hashed secure logins for Hotmail from your MSN account, and various + translations and Jabber improvements. + + -- Robert McQueen Fri, 26 Apr 2002 17:09:18 +0100 + +gaim (1:0.56-1) unstable; urgency=low + + * The 'Hola from Tenerife!' release. + * New upstream version. Signal patch merged. Various bugfixes, and the + much-awaited send history finally appears. + * Automatic update of config.sub from 20010420 to 20020307, and + config.guess from 20010420 to 20020320. + + -- Robert McQueen Sat, 13 Apr 2002 18:40:05 +0100 + +gaim (1:0.55-2) unstable; urgency=low + + * Wrote patch to unblock useful signals like SIGCHLD because gdm + helpfully blocks them. Helps avoid zombies from filling your + process space when you start the applet from the GNOME panel. + [debian/patches/unblock-handled-signals.diff] + * Applied patch from CVS to fix MSN problems such as being constantly + prompted to allow buddies who you actually wanted to block. + [debian/patches/various-msn-fixes.diff] + * Automatic update of config.sub from 20020222 to 20020307, and + config.guess from 20020219 to 20020320. + + -- Robert McQueen Wed, 3 Apr 2002 20:53:38 +0100 + +gaim (1:0.55-1) unstable; urgency=low + + * The 'and relax...' release. + * New upstream version (all patches have been merged). + * Updated Spanish translation. (closes: #138471) + * Fixes HTTP incompliance in proxy code. (closes: #140036) + * Fixes crashing when enabling/disabling animated buddy icons. + (closes: #140192) + + -- Robert McQueen Sat, 30 Mar 2002 16:49:43 +0000 + +gaim (1:0.54-6) unstable; urgency=low + + * Updated gaimrc.c to recognise the option for the new Command sound + method so it doesn't override it at loadup. (closes: #139253) + + -- Robert McQueen Thu, 21 Mar 2002 13:01:42 +0000 + +gaim (1:0.54-5) unstable; urgency=low + + * Added MSN embarrased icon. (closes: #139109) + * Updated MSN pixmaps from CVS to avoid evil crashing on some archs. + + -- Robert McQueen Wed, 20 Mar 2002 11:14:58 +0000 + +gaim (1:0.54-4) unstable; urgency=low + + * Fixed a compiler warning with the sound patch. + + -- Robert McQueen Sun, 17 Mar 2002 17:56:05 +0000 + +gaim (1:0.54-3) unstable; urgency=low + + * Fixed a few things with my sound patch, like the mysterious swapping + of the recieve and first recieve sound options versus events. Doh! + (closes: #138759) + + -- Robert McQueen Sun, 17 Mar 2002 17:26:50 +0000 + +gaim (1:0.54-2) unstable; urgency=low + + * Removed ICQ plugin. It really doesn't work very well at all any + more. (closes: #137058) + * Updated README.Debian to take account of this. + + -- Robert McQueen Sat, 16 Mar 2002 19:46:42 +0000 + +gaim (1:0.54-1) unstable; urgency=medium + + * New upstream version. Goodies like IM Image sending for Oscar, + protocol specific smileys, off-line message and improved + typing notification support for Yahoo, DCC chat and mIRC formatting + support for IRC, and lots of general bugfixes, especially + pertaining to never being asked to accept/decline MSN buddies who + add you when you're off-line. (closes: #138472) + * Medium urgency upload because 0.53 was buggy but I had to let 0.53-2 + go in to testing because of the nul vulnerability. + * The six (!) patches in 0.53-2 from CVS are all included in this + version. + * 'Oscar' protocol renamed to 'Oscar / ICQ' upstream. (closes: #137061) + * Applied patch from me, already accepted upstream, with various + cleanups to fix unusual sound behaviour: + - attempting to play an internal sound with a command now + generates an error instead of silently failing + - attempting to play a file with the native method now warns + before probably failing + - the 'Test' button in the sound preferences now temporarily + enables the sound under test, so it always tries to play it + - using a command to play sounds is now a seperate option that + must be explicitly enabled, avoiding problems with testing for + other options happening before testing if a command had been + specified (closes: #137010) + * Now building the non-GNOME version against ESD to make sound support + more useful. Native sound support can only be expected to work for + internal sounds. (closes: #137013) + * Remove the .h files from gaim-common. It turns out to be very hard + indeed to make Gaim plugins build outside the Gaim source tree. I + will probably make a gaim-plugins package with a few worthy plugins + like the russian charset conversion, xosd signon/signoff + notification, etc - I'm open to suggestions. Plugins must be + runtime configurable (unlike irc-extras), actually useful (unlike + the one to arbitrarily change your idle time), and build against + the latest Gaim. + * Include the licq2gaim.pl buddy list import script in the examples + dir in gaim-common. + + -- Robert McQueen Sat, 16 Mar 2002 18:47:07 +0000 + +gaim (1:0.53-2) unstable; urgency=low + + * The 'No, I don't use CVS' release. + * Applied patches from CVS so that: + - closing a conversation window when a buddy is typing doesn't + cause a crash [debian/patches/close-typing-buddy-crash.diff] + - server-side buddy lists are disabled for ICQ over Oscar to avoid + mysterious bugs with authentication-required buddies not + appearing on-line [debian/patches/no-ssi-for-icq.diff] + - Gaim doesn't fork and uses gdk_beep() for console beeps + [debian/patches/non-forked-gdk-beep.diff] (closes: #136165) + - Gaim doesn't gradually make the X server use all your RAM + [debian/patches/memleak.diff] + - typing notification doesn't crash Gaim if you don't use tabs + [debian/paches/no-tab-crash.diff] + - sending a nul or � doesn't crash Gaim + [debian/patches/nul-crash.diff] + + -- Robert McQueen Mon, 4 Mar 2002 19:23:38 +0000 + +gaim (1:0.53-1) unstable; urgency=low + + * New upstream version. Adds typing notification, new ICQ icons, IM + Images, screen-name formatting support and server-side buddy list + storage/retrieval for Oscar, and various other nice features and + cleanups. (closes: #136512) + * Includes documentation and MSN segfault fixes that were patched into + the previous release. + * Automatic update of config.{sub,guess} from 20010420 to 20020222. + + -- Robert McQueen Sun, 3 Mar 2002 19:06:52 +0000 + +gaim (1:0.52-1) unstable; urgency=medium + + * New upstream version. Fixes a variety of nasty problems. + * Fixes crashing on connection with some MSN buddy lists. + * Uses correct Yahoo! messenger server. (closes: #133343) + * Fixes DOSable erroneous handling of HTML comments. (closes: #133603) + * Applied patch from CVS to fix MSN segfaults. (closes: #115538) + * Moved iconaway.so plugin into gaim-gnome package because it's + useless without the applet. (closes: #133500) + * Fixed little typo in manpage (already fixed in CVS). + + -- Robert McQueen Sun, 17 Feb 2002 22:32:10 +0000 + +gaim (1:0.51-2) unstable; urgency=low + + * Fixed description of gaim-gnome to make it obvious that it is a + panel applet. + * Made gaim-gnome depend on gnome-panel. It's unreasonable to request + that libpanel-applet0 does so, but gaim-gnome is useless without + it. (closes: #131233) + + -- Robert McQueen Mon, 28 Jan 2002 20:25:04 +0000 + +gaim (1:0.51-1) unstable; urgency=low + + * The 'Hi anyone on gaim's PTS' release. + * New upstream version, mostly bug fixes. (closes: #130737) + * Upstream developer Eric Warmenhoven departs... thanks for all of + your help and effort - you'll be greatly missed by all. + * According to him, crashes were caused by a Gtk+ bug which has now + been worked around. (closes: #115538) + * He removed the help message a few weeks ago because I said it didn't + wrap properly... not sure how helpful that was though. + (closes: #125310) + * He also grappled with the GNOME panel to implement transparent + backgrounds as best he could. The Gaim applet icon will have the + same background image as the panel, but it will not line up with + the panel's because the panel doesn't provide enough imformation to + achieve that. (closes: #128449) + * Made gaim-common include a handful of .h files so that you can build + plugins without the Gaim source - this opens the way for packaging + plugins that don't come with Gaim. The reason is that I do not wish + to include unofficial plugins in Gaim and accept responsibility for + ensuring they work with the latest versions, or be forced to remove + them from the package at a later date, sorry. (closes: #129737) + * I can no longer reproduce this bug with this new version, but I am + also unable to determine if/when exactly it was fixed from the CVS + logs. If you can still make it happen, please reopen it and I'll + chase it up. (closes: #117498) + * Fixed a few minor errors in the manpage. (closes: #130435, #130443) + * Re-worked description to highlight mutli-protocol support. + (closes: #130437) + * Automatic update of config.{sub,guess} from 20010907 to 20020102. + + -- Robert McQueen Sun, 27 Jan 2002 05:45:05 +0000 + +gaim (1:0.50-1) unstable; urgency=low + + * The 'Hi everyone who reads d-d-c!' release. + * New upstream version, includes GnomeICU import and Galeon patches + from 0.49-2. (closes: #125897) + * Added a suitably scaled Debian menu icon for gaim. (closes: #122302) + * Re-ordered build to do the non-GNOME version first and install that + 'manually', so all the files from the GNOME applet get installed + with the 'make install' target. This means gaim-gnome now contains + the applet panel images. (closes: #122315) + * Fixed re-declaration of time() in jabber/xtream.c. (closes: #124390) + + -- Robert McQueen Thu, 20 Dec 2001 18:30:16 +0000 + +gaim (1:0.49-2) unstable; urgency=medium + + * The 'grr... dpkg' release. Fixes possibly troublesome package + relationship problems. + * Made gaim-gnome conflict and replace old gaim packages. + * Made gaim-common have a versioned depend on gaim or gaim-gnome, + because a dpkg bug seemed to let you install an old gaim-common + with a new gaim or gaim-gnome, even though they have a versioned + depend on gaim-common. + * Added patch from CVS to support GnomeICU buddy list importing. + * Added option to use Galeon as the browser. + + -- Robert McQueen Sat, 1 Dec 2001 22:41:04 +0000 + +gaim (1:0.49-1) unstable; urgency=low + + * New upstream version. + * Removed evil hack from debian/rules to rename plugins from + libfoo.so.0.0.0 to libfoo.so (fixed upstream). + * Updated description to include Gadu-gadu protocol. + * Removal of buddies from within the IM window is now confirmed. + (closes: #116442) + * Memory leak in buddy list fixed. (closes: #119639) + * Pgup/pgdown in IM windows now scrolls only one text box, not both. + (closes: #120027) + * Included a minor patch to remove ^M characters from Oscar messages. + (closes: #120595) + * Now suggests ispell. (closes: #121656) + + -- Robert McQueen Fri, 30 Nov 2001 01:43:01 +0000 + +gaim (1:0.48-1) unstable; urgency=low + + * New upstream version. (closes: #119748) + * Better support for ICQ2000 features via OSCAR protocol, like + server/offline messages. + * Doesn't temporarily grow small GNONE panels when the applet starts + up. + * GNU config automated update: config.sub (20011005 to 20011108), + config.guess (20011005 to 20011108) + + -- Robert McQueen Fri, 16 Nov 2001 19:46:48 +0000 + +gaim (1:0.47-1) unstable; urgency=low + + * New upstream version. + * Sound-playing children now time out after 30 seconds. + (closes: #116982) + + -- Robert McQueen Fri, 2 Nov 2001 00:53:18 +0000 + +gaim (1:0.46-1) unstable; urgency=low + + * New upstream version. (closes: #114950) + * Added documentation: plugins/PERL-HOWTO, plugins/SIGNALS, + doc/CREDITS, doc/FAQ. + + -- Robert McQueen Fri, 19 Oct 2001 00:37:19 +0100 + +gaim (1:0.45-1) unstable; urgency=low + + * New upstream version, includes fix to avoid infinite IM window + growth. (closes: #114950) + * Upgraded to DH_COMPAT=3 to make /etc/CORBA/servers/gaim_applet.gnorba + a conffile. Adjusted build deps to match. + + -- Robert McQueen Sun, 14 Oct 2001 19:45:20 +0100 + +gaim (1:0.44-2) unstable; urgency=medium + + * Applied patch from CVS to avoid IM windows sizing to 0 by default + and growing limitlessly. + + -- Robert McQueen Tue, 25 Sep 2001 01:28:14 +0100 + +gaim (1:0.44-1) unstable; urgency=low + + * New upstream version. + * Enabled perl support, upstream assures me it works now. + (closes: #112732) + + -- Robert McQueen Sun, 23 Sep 2001 18:37:20 +0100 + +gaim (1:0.43-1) unstable; urgency=medium + + * New upstream version including various bugfixes. + * Colour selection dialogs now remember the previous colours. + (closes: #101562) + * Autorecon plugin now has an exponential backoff to allow users to + correct non-transient errors. (closes: #102042) + * Changed 'buddy' prompt to 'contact' to make the Add Buddy dialog + less AIM-specific. (closes: #105460) + * Users can now edit their alias with the MSN plugin. (closes: #110966) + * Added postinst scripts for gaim and gaim-gnome to rmdir their dirs + from /usr/share/doc if they exist, and replace them with symlinks + to gaim-common. (closes: #111127) + * Seeing as we have to build twice, try and build as little as + possible the first time round (just the gaim_applet binary and its + dependencies) to make it more efficient. + * Updated config.{sub,guess} from latest autotools-dev. + + -- Robert McQueen Tue, 11 Sep 2001 22:42:51 +0100 + +gaim (1:0.11.0pre15-1) unstable; urgency=low + + * New maintainer. (closes: #100549) + * New upstream version. (closes: #54105, #96166) + * Repackaged with sane version number, pristine .orig.tar.gz, and + seperate .diff.gz. (closes: #106488) + * MSN and OSCAR protocols are functional at time of release. + (closes: #92045, #105841) + * Plugins, locales and docs are now in a shared gaim-common package. + * Therefore, gaim and gaim-gnome are concurrently installable. + (closes: #69794, #87873) + * These new shared plugins are not linked against GNOME. + (closes: #83427) + * The GNOME applet now has a CORBA file and correct Applet menu entry, + so it correctly integrates with the panel and saves settings. + (closes: #80587, #92950, #101560) + * Added code to debian/rules to update config.{guess,sub} from + autotools-dev when necessary. (closes: #104934) + + -- Robert McQueen Fri, 31 Aug 2001 03:38:54 +0100 + +gaim (1:0.11.0pre11) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Mon, 14 May 2001 17:40:05 -0400 + +gaim (1:0.11.0pre9-1) unstable; urgency=low + + * New upstream release. Closes: #91854 + + -- Robert S. Edmonds Tue, 27 Mar 2001 07:32:16 -0500 + +gaim (1:0.11.0pre8-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sun, 25 Mar 2001 15:26:59 -0500 + +gaim (1:0.11.0pre7-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sun, 18 Mar 2001 18:40:46 -0500 + +gaim (1:0.11.0pre4-2) unstable; urgency=low + + * Fixed gaim package, now contains a plain GTK-linked binary. + + -- Robert S. Edmonds Tue, 20 Feb 2001 18:12:45 -0500 + +gaim (1:0.11.0pre4-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sat, 23 Dec 2000 16:38:09 -0500 + +gaim (1:0.11.0pre2-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Wed, 13 Dec 2000 07:28:04 -0500 + +gaim (1:0.10.3-2) unstable; urgency=low + + * Patched to fix remote HTML exploit when using OSCAR protocol. Closes: #77539 + * New upstream release. + + -- Robert S. Edmonds Tue, 28 Nov 2000 19:48:33 -0500 + +gaim (1:0.10.1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sun, 17 Sep 2000 17:43:20 -0400 + +gaim (1:0.10.0-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Mon, 11 Sep 2000 17:56:10 -0400 + +gaim (1:0.9.20-1) unstable; urgency=low + + * Thanks to Decklin Foster + * New upstream release. + * removed au2h generated files from .diff.gz + * Build with and without Gnome support + + -- Robert S. Edmonds Wed, 26 Jul 2000 00:19:20 -0400 + +gaim (1:0.9.18-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sat, 3 Jun 2000 11:14:21 -0400 + +gaim (1:0.9.15-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sun, 21 May 2000 21:00:40 -0400 + +gaim (1:0.9.13-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Wed, 29 Mar 2000 21:16:47 -0500 + +gaim (1:0.9.10-2) unstable; urgency=low + + * Closes: #56340 + + -- Robert S. Edmonds Wed, 23 Feb 2000 19:01:54 -0500 + +gaim (1:0.9.10-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Tue, 23 Nov 1999 22:42:47 -0500 + +gaim (1:0.9.7-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sun, 15 Aug 1999 20:01:54 -0400 + +gaim (0.9.5-1) unstable; urgency=low + + * New upstream release. + + -- Robert S. Edmonds Sat, 31 Jul 1999 23:12:54 -0400 + +gaim (0.8.0-1) unstable; urgency=low + + * New upstream version. + + -- Robert S. Edmonds Mon, 17 May 1999 20:00:10 -0400 + +gaim (19990311-1) unstable; urgency=low + + * New upstream version. + + -- Robert S. Edmonds Thu, 11 Mar 1999 16:58:29 -0500 + +gaim (19990227-1) unstable; urgency=low + + * New upstream version. + + -- Robert S. Edmonds Sat, 27 Feb 1999 21:54:49 -0500 + +gaim (19981231-1) unstable; urgency=low + + * New upstream version. + + -- Robert S. Edmonds Thu, 31 Dec 1998 14:06:14 -0500 + +gaim (19981126-1) unstable; urgency=low + + * New upsteam version. + + -- Robert S. Edmonds Sat, 28 Nov 1998 17:46:25 -0500 + +gaim (19981117-1) unstable; urgency=low + + * Initial release. + + -- Robert S. Edmonds Wed, 18 Nov 1998 16:59:35 -0500 --- pidgin-2.5.5.orig/debian/pidgin.menu +++ pidgin-2.5.5/debian/pidgin.menu @@ -0,0 +1,4 @@ +?package(pidgin):needs="X11" section="Applications/Network/Communication" \ + title="Pidgin" command="/usr/bin/pidgin" \ + longtitle="Multi-protocol Instant Messaging Client" \ + icon="/usr/share/pixmaps/pidgin-menu.xpm" --- pidgin-2.5.5.orig/debian/libpurple-dev.install +++ pidgin-2.5.5/debian/libpurple-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/lib/libpurple*.so +debian/tmp/usr/include/libpurple +debian/tmp/usr/lib/pkgconfig/purple.pc +debian/tmp/usr/share/aclocal --- pidgin-2.5.5.orig/debian/finch.install +++ pidgin-2.5.5/debian/finch.install @@ -0,0 +1,6 @@ +debian/tmp/usr/bin/finch +debian/tmp/usr/lib/finch +debian/tmp/usr/lib/libgnt*.so.* +debian/tmp/usr/lib/gnt +debian/tmp/usr/share/man/*/finch.* +debian/lintian-override/finch usr/share/lintian/overrides --- pidgin-2.5.5.orig/debian/pidgin.preinst +++ pidgin-2.5.5/debian/pidgin.preinst @@ -0,0 +1,42 @@ +#!/bin/sh +# preinst script for pidgin +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install|upgrade) + if dpkg --compare-versions "$2" lt 1:2.1.1-2; then + if [ -h /usr/share/doc/pidgin ]; then + rm /usr/share/doc/pidgin + fi + fi + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + --- pidgin-2.5.5.orig/debian/purple-remote.1 +++ pidgin-2.5.5/debian/purple-remote.1 @@ -0,0 +1,65 @@ +.TH PURPLE-REMOTE 1 +.SH NAME +purple-remote \- Send remote commands to Pidgin/Finch +.SH SYNOPSIS +.TP 5 +\fBpurple-remote \fIcommand1\fR \fIcommand2\fR \fI...\fR +.RI +.br +.SH OPTIONS +Each command is of one of the three types: +.PP +[protocol:]commandname?param1=value1¶m2=value2&... +.br +FunctionName?param1=value1¶m2=value2&... +.br +FunctionName(value1,value2,...) +.PP +The second and third form are provided for completeness but their use +is not recommended; use purple-send or purple-send-async instead. The +second form uses introspection to find out the parameter names and +their types, therefore it is rather slow. + +.SH EXAMPLES +jabber:goim?screenname=testone@localhost&message=hi +.br +jabber:gochat?room=TestRoom&server=conference.localhost +.br +jabber:getinfo?screenname=testone@localhost +.br +jabber:addbuddy?screenname=my friend +.br +.PP +setstatus?status=away&message=don't disturb +.br +quit +.PP +PurpleAccountsFindConnected?name=&protocol=prpl-jabber +.br +PurpleAccountFindConnected(,prpl-jabber) + +.SH DESCRIPTION +.PP +Send remote commands to Purple. This program uses DBus to communicate with +Pidgin/Finch. + +.SH LICENSE +.PP +Copyright (c) 1998-2006 see: AUTHORS + +.PP +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License version 2, as +published by the Free Software Foundation +.SH AUTHORS +.PP +Sean Egan - Lead Developer +.PP +This manual page was written by Anibal Avelar . +Permission is granted to copy, distribute and/or modify this document +under the terms of the GNU General Public License, Version 2 any +later version published by the Free Software Foundation. + +.PP +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL. --- pidgin-2.5.5.orig/debian/compat +++ pidgin-2.5.5/debian/compat @@ -0,0 +1 @@ +5 --- pidgin-2.5.5.orig/debian/pidgin-menu.xpm +++ pidgin-2.5.5/debian/pidgin-menu.xpm @@ -0,0 +1,164 @@ +/* XPM */ +static char *pidgin-menu[] = { +/* columns rows colors chars-per-pixel */ +"32 32 126 2", +" c #2E3436", +". c #35243C", +"X c #3C1A42", +"o c #31234D", +"O c #401C46", +"+ c #431F4A", +"@ c #402046", +"# c #44234A", +"$ c #48284E", +"% c #4A2651", +"& c #4E2D53", +"* c #54345A", +"= c #503855", +"- c #58365F", +"; c #593D5E", +": c #5B3B61", +"> c #5E3868", +", c #6D4475", +"< c #6E4179", +"1 c #6B4B72", +"2 c #6F4D79", +"3 c #635666", +"4 c #6B5270", +"5 c #70457B", +"6 c #704F77", +"7 c #714A7C", +"8 c #715276", +"9 c #725079", +"0 c #78517F", +"q c #787878", +"w c #754680", +"e c #764C82", +"r c #784B82", +"t c #7E4E89", +"y c #755380", +"u c #7C5585", +"i c #7E5788", +"p c #7D5985", +"a c #7F5C88", +"s c #B6625C", +"d c #BC6C64", +"f c #BA797F", +"g c #D5693B", +"h c #F7741B", +"j c #F9751A", +"k c #E96F29", +"l c #EE7124", +"z c #F97E29", +"x c #C1634F", +"c c #814E8D", +"v c #81508D", +"b c #815E87", +"n c #815B8A", +"m c #8B5284", +"M c #845390", +"N c #865D91", +"B c #895596", +"V c #8A5D93", +"C c #915B9D", +"Z c #955EA1", +"A c #816587", +"S c #83638C", +"D c #816A85", +"F c #886A8F", +"G c #8B6195", +"H c #8A6B92", +"J c #8F6899", +"K c #8C7093", +"L c #916E99", +"P c #94729A", +"I c #98769F", +"U c #9561A1", +"Y c #9D65A8", +"T c #9773A0", +"R c #9A76A3", +"E c #9F71A9", +"W c #9C7AA4", +"Q c #A3708F", +"! c #B27A8D", +"~ c #A26BAE", +"^ c #A476B0", +"/ c #AA7CB3", +"( c #F9812F", +") c #FA924B", +"_ c #FA9651", +"` c #F3A06C", +"' c #F6AC79", +"] c #FBAB73", +"[ c #818181", +"{ c #8B8B8B", +"} c #938196", +"| c gray57", +" . c gray60", +".. c #A986B2", +"X. c #A798A9", +"o. c #A89BAB", +"O. c #B08CB9", +"+. c #B195B7", +"@. c #BDB3BF", +"#. c #BDA2C3", +"$. c #D2B2B5", +"%. c #DFBDB3", +"&. c #EFAE8A", +"*. c #E1A794", +"=. c #F8B486", +"-. c #C4A5CB", +";. c #C9B2CD", +":. c #D0B4D7", +">. c #D2B7D8", +",. c #D3B9D8", +"<. c #CBC4CC", +"1. c #D2D2D2", +"2. c #DBD6DB", +"3. c #DBC4E0", +"4. c #DFCFE3", +"5. c #E2DEE2", +"6. c #EBDFED", +"7. c #E5E4E5", +"8. c #E9E4EA", +"9. c #EEEEEE", +"0. c #EFE5F1", +"q. c #F2EBF3", +"w. c #F3F3F3", +"e. c #F9F6F9", +"r. c #FDFDFD", +"t. c None", +/* pixels */ +"t.t.t.t.t.t.t.t.t.t.t.q [ q q q q q q q q q q q q q q q [ q t.t.", +"t.t.t.t.t.t.t.t.t.t.q | w.r.r.r.r.r.r.r.r.r.r.r.r.r.r.r.9.| [ t.", +"t.t.t.t.t.t.t.t.t.q { r.r.r.e.r.e.r.r.r.e.r.e.r.r.r.e.r.r.r.{ q ", +"t.t.t.t.t.t.t.t.t.[ 7.r.r.e.r.e.r.r.e.e.r.e.r.e.e.r.r.e.r.r.7.[ ", +"t.t.t.t.t.t.t.t.t.q r.e.r.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.r.[ ", +"t.t.t.t.t.t.t.t.X @ } 9.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.r.q ", +"t.t.t.t.t.t.X X X 3 $ ; 7.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.e.r.q ", +"t.t.t.t.t.t.o X X @ o & 4 X.7.e.e.w.e.w.e.e.w.e.w.e.w.e.w.e.r.q ", +"t.t.t.t.t.X X - p H W P a 1 % @.w.e.w.e.e.w.e.w.e.w.w.e.w.e.r.q ", +"t.t.t.t.X + a W S y 6 y n L L * D w.w.w.w.w.w.e.w.w.e.w.w.w.r.q ", +"t.t.t.X + I G e 2 w 7 7 7 7 n W ; o.w.w.w.w.w.w.w.w.w.w.w.w.r.q ", +"t.t.X X S J e r e e e e e e r n I & 2.w.w.w.w.w.w.w.w.w.w.w.r.q ", +"t.t.X : W E 8.0.O.v t t t t c c J J S w.w.9.w.9.w.9.w.w.w.w.r.q ", +"t.t.X a U 3.r.r.r.^ v v v M c C -.q.+.9.w.9.9.w.9.w.9.9.9.9.r.q ", +"t.t.O P Y q.H H r.,.v v M M M Z F F q.8.w.9.9.9.9.w.w.9.9.9.e.[ ", +"t.t.X W ~ 0.H H r.4.v v c t c C A H e.<.9.9.9.9.9.9.9.9.9.w.w.[ ", +"t.t.@ W Y :.r.r.r...c c v v c B / 8.;.7.w.9.9.9.9.9.9.9.9.e.7.q ", +"t.t.O W B ~ >.q.#.M c M v v v M B U < r.r.r.r.e.9.e.r.r.r.e.{ q ", +"t.t.O W t M c c c v v %.=.' $.t V S = q q q [ r.r.1.q q q [ q t.", +"t.t.X R v v M c ! *.&.] _ ( j g d 6 X t.t.t.q e. .[ q q q t.t.t.", +"t.t.O I M M c M t ! ` ) ( j j l Q : X t.t.t.q q q t.t.t.t.t.t.t.", +"t.t.X R M t M t M c m s g l x m R $ X t.t.t.q q t.t.t.t.t.t.t.t.", +"t.X & R t M c c c c c c c c v c R + t.t.t.t.t.t.t.t.t.t.t.t.t.t.", +"t.X 1 G m c c c c c c c v v c c T & X t.t.t.t.t.t.t.t.t.t.t.t.t.", +"t.X F 7 c c c c c c c c c c c c a 8 X X t.t.t.t.t.t.t.t.t.t.t.t.", +"X & G t c c M c c M c c c v c c 5 S 8 @ X t.t.t.t.t.t.t.t.t.t.t.", +"X 9 u 5 c c c c c c c c c v v t 5 < u S : + X t.t.t.t.t.t.t.t.t.", +"O a 5 < t c c c c c c c c v t 5 < < < 5 i 6 % X t.t.t.t.t.t.t.t.", +"X i 5 < 5 t c c c c c c c c w < < 5 < < < e 6 O t.t.t.t.t.t.t.t.", +"O > 0 n n n V V G G G G G V N i i u i u i a 7 O t.t.t.t.t.t.t.t.", +". @ # # # O X X X X O O X X X X X X X X X X X X t.t.t.t.t.t.t.t.", +" t.t.t.t.t.t.t.t." +}; --- pidgin-2.5.5.orig/debian/shlibs.local +++ pidgin-2.5.5/debian/shlibs.local @@ -0,0 +1,2 @@ +liboscar 0 +libjabber 0 --- pidgin-2.5.5.orig/debian/patches/60_1024x600_gtkprefs.c.patch +++ pidgin-2.5.5/debian/patches/60_1024x600_gtkprefs.c.patch @@ -0,0 +1,25 @@ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.4/pidgin/gtkprefs.c pidgin-2.5.4.new/pidgin/gtkprefs.c +--- pidgin-2.5.4/pidgin/gtkprefs.c 2009-01-13 03:05:39.000000000 +0800 ++++ pidgin-2.5.4.new/pidgin/gtkprefs.c 2009-02-26 00:45:15.757275824 +0800 +@@ -1030,6 +1030,7 @@ + GtkWidget *fontpref; + GtkWidget *imhtml; + GtkWidget *frame; ++ GtkWidget *scrolledWindow1024x600; + + #if GTK_CHECK_VERSION(2,4,0) + GtkWidget *hbox; +@@ -1125,6 +1126,13 @@ + g_signal_connect_after(G_OBJECT(imhtml), "format_function_clear", + G_CALLBACK(formatting_clear_cb), NULL); + ++ if (gdk_screen_get_default() != NULL && gdk_screen_get_height(gdk_screen_get_default()) <= 600) { ++ scrolledWindow1024x600 = gtk_scrolled_window_new(NULL,NULL); ++ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledWindow1024x600),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); ++ gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolledWindow1024x600),ret); ++ gtk_widget_show(ret); ++ ret = scrolledWindow1024x600; ++ } + + gtk_widget_show(ret); + --- pidgin-2.5.5.orig/debian/patches/05_default_to_irc_ubuntu_com.patch +++ pidgin-2.5.5/debian/patches/05_default_to_irc_ubuntu_com.patch @@ -0,0 +1,12 @@ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.5/libpurple/protocols/irc/irc.h pidgin-2.5.5.new/libpurple/protocols/irc/irc.h +--- pidgin-2.5.5/libpurple/protocols/irc/irc.h 2008-10-31 01:55:26.000000000 +0100 ++++ pidgin-2.5.5.new/libpurple/protocols/irc/irc.h 2009-03-09 20:28:55.000000000 +0100 +@@ -30,7 +30,7 @@ + #include "roomlist.h" + #include "sslconn.h" + +-#define IRC_DEFAULT_SERVER "irc.freenode.net" ++#define IRC_DEFAULT_SERVER "irc.ubuntu.com" + #define IRC_DEFAULT_PORT 6667 + #define IRC_DEFAULT_SSL_PORT 994 + --- pidgin-2.5.5.orig/debian/patches/04_let_crasher_for_apport.patch +++ pidgin-2.5.5/debian/patches/04_let_crasher_for_apport.patch @@ -0,0 +1,10 @@ +--- pidgin-2.3.1/pidgin/gtkmain.c 2007-12-07 14:37:11.000000000 +0000 ++++ pidgin-2.3.1/pidgin/gtkmain.c.new 2007-12-21 03:14:32.000000000 +0000 +@@ -93,7 +93,6 @@ + * Each list terminated with -1 + */ + static const int catch_sig_list[] = { +- SIGSEGV, + SIGHUP, + SIGINT, + SIGTERM, --- pidgin-2.5.5.orig/debian/patches/02_lpi.patch +++ pidgin-2.5.5/debian/patches/02_lpi.patch @@ -0,0 +1,33 @@ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.5/configure.ac pidgin-2.5.5.new/configure.ac +--- pidgin-2.5.5/configure.ac 2009-03-02 03:29:19.000000000 +0100 ++++ pidgin-2.5.5.new/configure.ac 2009-03-09 20:27:33.000000000 +0100 +@@ -522,7 +522,7 @@ + dnl # Check for startup notification + dnl ####################################################################### + if test "x$enable_startup_notification" = "xyes"; then +- PKG_CHECK_MODULES(STARTUP_NOTIFICATION, [libstartup-notification-1.0 >= 0.5], , [ ++ PKG_CHECK_MODULES(STARTUP_NOTIFICATION, [libstartup-notification-1.0 >= 0.5 launchpad-integration], , [ + AC_MSG_RESULT(no) + if test "x$force_deps" = "xyes" ; then + AC_MSG_ERROR([ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.5/pidgin/gtkblist.c pidgin-2.5.5.new/pidgin/gtkblist.c +--- pidgin-2.5.5/pidgin/gtkblist.c 2009-03-01 20:37:13.000000000 +0100 ++++ pidgin-2.5.5.new/pidgin/gtkblist.c 2009-03-09 20:28:35.000000000 +0100 +@@ -66,6 +66,8 @@ + #include + #include + ++#include ++ + #define HEADLINE_CLOSE_SIZE 11 + + typedef struct +@@ -5322,6 +5324,8 @@ + NULL, NULL); + gtk_item_factory_create_items(gtkblist->ift, sizeof(blist_menu) / sizeof(*blist_menu), + blist_menu, NULL); ++ launchpad_integration_add_items (gtk_item_factory_get_widget(gtkblist->ift, N_("/Help")), -1, TRUE, TRUE); ++ + pidgin_load_accels(); + g_signal_connect(G_OBJECT(accel_group), "accel-changed", + G_CALLBACK(pidgin_save_accels_cb), NULL); --- pidgin-2.5.5.orig/debian/patches/60_1024x600_gtkpounce.c.patch +++ pidgin-2.5.5/debian/patches/60_1024x600_gtkpounce.c.patch @@ -0,0 +1,41 @@ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.4/pidgin/gtkpounce.c pidgin-2.5.4.new/pidgin/gtkpounce.c +--- pidgin-2.5.4/pidgin/gtkpounce.c 2009-01-13 03:05:39.000000000 +0800 ++++ pidgin-2.5.4.new/pidgin/gtkpounce.c 2009-02-26 00:38:15.445274448 +0800 +@@ -498,6 +498,7 @@ + GPtrArray *sound_widgets; + GPtrArray *exec_widgets; + GtkWidget *send_msg_imhtml; ++ GtkWidget *scrolledWindow1024x600 = NULL; + + g_return_if_fail((cur_pounce != NULL) || + (account != NULL) || +@@ -547,8 +548,14 @@ + + /* Create the vbox that will contain all the prefs stuff. */ + vbox2 = gtk_vbox_new(FALSE, PIDGIN_HIG_BOX_SPACE); +- gtk_box_pack_start(GTK_BOX(vbox1), vbox2, TRUE, TRUE, 0); +- ++ if (gdk_screen_get_default() != NULL && gdk_screen_get_height(gdk_screen_get_default()) <= 600) { ++ scrolledWindow1024x600 = gtk_scrolled_window_new(NULL,NULL); ++ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledWindow1024x600),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); ++ gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolledWindow1024x600),vbox2); ++ gtk_box_pack_start(GTK_BOX(vbox1), scrolledWindow1024x600, TRUE, TRUE, 0); ++ } else { ++ gtk_box_pack_start(GTK_BOX(vbox1), vbox2, TRUE, TRUE, 0); ++ } + /* Create the "Pounce on Whom" frame. */ + frame = pidgin_make_frame(vbox2, _("Pounce on Whom")); + +@@ -1015,6 +1022,12 @@ + } + + gtk_widget_show(vbox2); ++ if (gdk_screen_get_default() != NULL && gdk_screen_get_height(gdk_screen_get_default()) <= 600) { ++ gint oldw,oldh; ++ gtk_widget_show(scrolledWindow1024x600); ++ gtk_window_get_size(GTK_WINDOW(window),&oldw,&oldh); ++ gtk_window_resize(GTK_WINDOW (window),oldw,448); ++ } + gtk_widget_show(window); + } + --- pidgin-2.5.5.orig/debian/patches/70_autoconf.patch +++ pidgin-2.5.5/debian/patches/70_autoconf.patch @@ -0,0 +1,47 @@ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.5/configure pidgin-2.5.5.new/configure +--- pidgin-2.5.5/configure 2009-03-02 03:30:32.000000000 +0100 ++++ pidgin-2.5.5.new/configure 2009-03-09 23:15:49.000000000 +0100 +@@ -28935,12 +28935,12 @@ + pkg_cv_STARTUP_NOTIFICATION_CFLAGS="$STARTUP_NOTIFICATION_CFLAGS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libstartup-notification-1.0 >= 0.5\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libstartup-notification-1.0 >= 0.5") 2>&5 ++ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libstartup-notification-1.0 >= 0.5 launchpad-integration\"") >&5 ++ ($PKG_CONFIG --exists --print-errors "libstartup-notification-1.0 >= 0.5 launchpad-integration") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- pkg_cv_STARTUP_NOTIFICATION_CFLAGS=`$PKG_CONFIG --cflags "libstartup-notification-1.0 >= 0.5" 2>/dev/null` ++ pkg_cv_STARTUP_NOTIFICATION_CFLAGS=`$PKG_CONFIG --cflags "libstartup-notification-1.0 >= 0.5 launchpad-integration" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -28953,12 +28953,12 @@ + pkg_cv_STARTUP_NOTIFICATION_LIBS="$STARTUP_NOTIFICATION_LIBS" + else + if test -n "$PKG_CONFIG" && \ +- { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libstartup-notification-1.0 >= 0.5\"") >&5 +- ($PKG_CONFIG --exists --print-errors "libstartup-notification-1.0 >= 0.5") 2>&5 ++ { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libstartup-notification-1.0 >= 0.5 launchpad-integration\"") >&5 ++ ($PKG_CONFIG --exists --print-errors "libstartup-notification-1.0 >= 0.5 launchpad-integration") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- pkg_cv_STARTUP_NOTIFICATION_LIBS=`$PKG_CONFIG --libs "libstartup-notification-1.0 >= 0.5" 2>/dev/null` ++ pkg_cv_STARTUP_NOTIFICATION_LIBS=`$PKG_CONFIG --libs "libstartup-notification-1.0 >= 0.5 launchpad-integration" 2>/dev/null` + else + pkg_failed=yes + fi +@@ -28977,9 +28977,9 @@ + _pkg_short_errors_supported=no + fi + if test $_pkg_short_errors_supported = yes; then +- STARTUP_NOTIFICATION_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libstartup-notification-1.0 >= 0.5"` ++ STARTUP_NOTIFICATION_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "libstartup-notification-1.0 >= 0.5 launchpad-integration"` + else +- STARTUP_NOTIFICATION_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libstartup-notification-1.0 >= 0.5"` ++ STARTUP_NOTIFICATION_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "libstartup-notification-1.0 >= 0.5 launchpad-integration"` + fi + # Put the nasty error message in config.log where it belongs + echo "$STARTUP_NOTIFICATION_PKG_ERRORS" >&5 --- pidgin-2.5.5.orig/debian/patches/60_1024x600_gtkaccount.c.patch +++ pidgin-2.5.5/debian/patches/60_1024x600_gtkaccount.c.patch @@ -0,0 +1,37 @@ +diff -Nur -x '*.orig' -x '*~' pidgin-2.5.4/pidgin/gtkaccount.c pidgin-2.5.4.new/pidgin/gtkaccount.c +--- pidgin-2.5.4/pidgin/gtkaccount.c 2009-01-13 03:05:39.000000000 +0800 ++++ pidgin-2.5.4.new/pidgin/gtkaccount.c 2009-02-26 00:33:23.277274038 +0800 +@@ -1461,6 +1461,8 @@ + GtkWidget *dbox; + GtkWidget *notebook; + GtkWidget *button; ++ GtkWidget *scrolledWindow1024x600=NULL; ++ GtkWidget *vbox1024x600=NULL; + + if (accounts_window != NULL && account != NULL && + (dialog = g_hash_table_lookup(account_pref_wins, account)) != NULL) +@@ -1538,8 +1540,22 @@ + gtk_widget_show(dbox); + + /** Setup the bottom frames. */ +- add_protocol_options(dialog, dbox); +- add_proxy_options(dialog, dbox); ++ if (gdk_screen_get_default() != NULL && gdk_screen_get_height(gdk_screen_get_default()) <= 600) { ++ scrolledWindow1024x600 = gtk_scrolled_window_new(NULL,NULL); ++ gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolledWindow1024x600),GTK_POLICY_NEVER,GTK_POLICY_AUTOMATIC); ++ gtk_container_add(GTK_CONTAINER(dbox), scrolledWindow1024x600); ++ gtk_widget_show(scrolledWindow1024x600); ++ vbox1024x600 = gtk_vbox_new(FALSE, PIDGIN_HIG_BORDER); ++ gtk_container_set_border_width(GTK_CONTAINER(vbox1024x600), PIDGIN_HIG_BORDER); ++ gtk_widget_show(vbox1024x600); ++ gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrolledWindow1024x600), vbox1024x600); ++ add_protocol_options(dialog, vbox1024x600); ++ add_proxy_options(dialog, vbox1024x600); ++ dialog->bottom_vbox = vbox1024x600; ++ } else { ++ add_protocol_options(dialog, dbox); ++ add_proxy_options(dialog, dbox); ++ } + + /* Cancel button */ + pidgin_dialog_add_button(GTK_DIALOG(win), GTK_STOCK_CANCEL, G_CALLBACK(cancel_account_prefs_cb), dialog); --- pidgin-2.5.5.orig/debian/lintian-override/pidgin +++ pidgin-2.5.5/debian/lintian-override/pidgin @@ -0,0 +1,2 @@ +# installed by pidgin-data +pidgin: menu-icon-missing /usr/share/pixmaps/pidgin-menu.xpm --- pidgin-2.5.5.orig/debian/lintian-override/libpurple0 +++ pidgin-2.5.5/debian/lintian-override/libpurple0 @@ -0,0 +1,4 @@ +# Internal libraries +libpurple0: binary-or-shlib-defines-rpath ./usr/lib/purple-2/libaim.so /usr/lib/purple-2 +libpurple0: binary-or-shlib-defines-rpath ./usr/lib/purple-2/libicq.so /usr/lib/purple-2 +libpurple0: binary-or-shlib-defines-rpath ./usr/lib/purple-2/libxmpp.so /usr/lib/purple-2 --- pidgin-2.5.5.orig/debian/lintian-override/finch +++ pidgin-2.5.5/debian/lintian-override/finch @@ -0,0 +1 @@ +finch: package-name-doesnt-match-sonames libgnt0