Package: pidgin
Version: 2.0.1-1
Severity: normal
Tags: patch
$ purple-remote --help
File "/usr/bin/purple-remote", line 102
if protocol == "xmpp"
^
SyntaxError: invalid syntax
$ python -V
Python 2.4.4
Changing line 102 to include the colon at the end seems to cause
purple-remote to execute correctly. Under the assumption that
/usr/bin/purple-remote is copied straight from
libpurple/purple-remote, a patch to the Pidgin tree is attached to
change that line.
---> Drake Wilson
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.20.1 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Versions of packages pidgin depends on:
ii libavahi-compat-howl0 0.6.19-2 Avahi Howl compatibility library
ii libc6 2.5-11 GNU C Library: Shared libraries
ii libcairo2 1.4.6-1.1 The Cairo 2D vector graphics libra
ii libdbus-1-3 1.1.0-1 simple interprocess messaging syst
ii libdbus-glib-1-2 0.73-2 simple interprocess messaging syst
ii libfontconfig1 2.4.2-1.2 generic font configuration library
ii libglib2.0-0 2.12.12-1 The GLib library of C routines
ii libgstreamer0.10-0 0.10.13-2 Core GStreamer libraries and eleme
ii libgtk2.0-0 2.10.13-1 The GTK+ graphical user interface
ii libgtkspell0 2.0.10-3+b1 a spell-checking addon for GTK's T
ii libice6 1:1.0.3-2 X11 Inter-Client Exchange library
ii libncursesw5 5.6-3 Shared libraries for terminal hand
ii libnspr4-0d 4.6.6-3 NetScape Portable Runtime Library
ii libnss3-0d 3.11.5-3+b1 Network Security Service libraries
ii libpango1.0-0 1.16.4-1 Layout and rendering of internatio
ii libperl5.8 5.8.8-7 Shared Perl library
ii libsasl2-2 2.1.22.dfsg1-12 Authentication abstraction library
ii libsasl2-modules 2.1.22.dfsg1-12 Pluggable Authentication Modules f
ii libsm6 2:1.0.3-1 X11 Session Management library
ii libstartup-notification0 0.9-1 library for program launch feedbac
ii libx11-6 2:1.0.3-7 X11 client-side library
ii libxcursor1 1:1.1.8-2 X cursor management library
ii libxext6 1:1.0.3-2 X11 miscellaneous extension librar
ii libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii libxi6 1:1.0.1-4 X11 Input extension library
ii libxinerama1 1:1.0.2-1 X11 Xinerama extension library
ii libxml2 2.6.29.dfsg-1 GNOME XML library
ii libxrandr2 2:1.2.1-1 X11 RandR extension library
ii libxrender1 1:0.9.2-1 X Rendering Extension client libra
ii libxss1 1:1.1.2-1 X11 Screen Saver extension library
ii pidgin-data 2.0.1-1 multi-protocol instant messaging c
Versions of packages pidgin recommends:
ii gstreamer0.10-plugins-base 0.10.13-2 GStreamer plugins from the "base"
ii gstreamer0.10-plugins-good 0.10.5-7 GStreamer plugins from the "good"
ii python-dbus 0.81.1-1 simple interprocess messaging syst
-- no debconf information
--- libpurple/purple-remote.old 2007-06-19 02:50:57.000000000 -0500
+++ libpurple/purple-remote 2007-06-19 02:51:05.000000000 -0500
@@ -94,7 +94,7 @@
def execute(uri):
match = re.match(urlregexp, uri)
protocol = match.group(2)
- if protocol == "xmpp"
+ if protocol == "xmpp":
protocol = "jabber"
if protocol == "aim" or protocol == "icq":
protocol = "oscar"