--- xchat-gnome-0.18.orig/debian/patches/02_lpi.patch +++ xchat-gnome-0.18/debian/patches/02_lpi.patch @@ -0,0 +1,44 @@ +diff -Nur xchat-gnome-0.16/configure.ac xchat-gnome-0.16.new/configure.ac +--- xchat-gnome-0.16/configure.ac 2007-01-10 00:21:25.000000000 +0100 ++++ xchat-gnome-0.16.new/configure.ac 2007-01-10 15:59:01.000000000 +0100 +@@ -59,6 +59,7 @@ + PKG_CHECK_MODULES([DEPENDENCIES], [\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +diff -Nur xchat-gnome-0.16/data/xchat-gnome-ui.xml xchat-gnome-0.16.new/data/xchat-gnome-ui.xml +--- xchat-gnome-0.16/data/xchat-gnome-ui.xml 2006-12-10 09:10:18.000000000 +0100 ++++ xchat-gnome-0.16.new/data/xchat-gnome-ui.xml 2007-01-10 16:06:19.000000000 +0100 +@@ -48,6 +48,9 @@ + + + ++ ++ ++ + + + +diff -Nur xchat-gnome-0.16/src/fe-gnome/main-window.c xchat-gnome-0.16.new/src/fe-gnome/main-window.c +--- xchat-gnome-0.16/src/fe-gnome/main-window.c 2007-01-01 09:48:05.000000000 +0100 ++++ xchat-gnome-0.16.new/src/fe-gnome/main-window.c 2007-01-10 15:59:01.000000000 +0100 +@@ -29,6 +29,7 @@ + #include + #include + #include ++#include + + #include "about.h" + #include "channel-list-window.h" +@@ -162,6 +163,8 @@ + /* hook up accelerators */ + gtk_window_add_accel_group (GTK_WINDOW (gui.main_window), gtk_ui_manager_get_accel_group (gui.manager)); + ++ launchpad_integration_add_ui (gui.manager, "/ui/menubar/HelpMenu/LaunchpadItems"); ++ + close = glade_xml_get_widget (gui.xml, "close discussion"); + action = gtk_action_group_get_action (gui.action_group, "DiscussionClose"); + gtk_action_connect_proxy (action, close); --- xchat-gnome-0.18.orig/debian/patches/04_autojoin_ubuntu_chan.patch +++ xchat-gnome-0.18/debian/patches/04_autojoin_ubuntu_chan.patch @@ -0,0 +1,22 @@ +Index: src/common/servlist.c +=================================================================== +--- src/common/servlist.c (révision 10790) ++++ src/common/servlist.c (copie de travail) +@@ -862,6 +862,17 @@ + int i = 0, j = 0; + ircnet *net = NULL; + ++ /* Add the Ubuntu IRC Network */ ++ net = servlist_net_add ("Ubuntu Server", NULL, FALSE); ++ servlist_server_add (net, "irc.ubuntu.com"); ++ /* translators: replace #ubuntu by the channel of your LoCo ++ team so users can have support in their native langage. ++ You can find a list of LoCo teams channels on: ++ https://wiki.ubuntu.com/UbuntuLiveChatSupport ++ If there is no such channel, just let #ubuntu */ ++ net->autojoin = strdup (_("#ubuntu")); ++ net->flags |= FLAG_AUTO_CONNECT; ++ + while (1) + { + if (def[i].network) --- xchat-gnome-0.18.orig/debian/patches/81_no_translation_informations_in_query.patch +++ xchat-gnome-0.18/debian/patches/81_no_translation_informations_in_query.patch @@ -0,0 +1,31 @@ +Index: src/common/text.c +=================================================================== +--- src/common/text.c (révision 2576) ++++ src/common/text.c (copie de travail) +@@ -1368,7 +1368,7 @@ + free (pntevts_text[i]); + + /* make-te.c sets this 128 flag (DON'T call gettext() flag) */ +- if (te[i].num_args & 128) ++ if (te[i].num_args & 128 || !strcmp (te[i].def, "")) + pntevts_text[i] = strdup (te[i].def); + else + pntevts_text[i] = strdup (_(te[i].def)); +@@ -1392,7 +1392,7 @@ + fe_message (out, FE_MSG_WARN); + free (pntevts_text[i]); + /* make-te.c sets this 128 flag (DON'T call gettext() flag) */ +- if (te[i].num_args & 128) ++ if (te[i].num_args & 128 || !strcmp (te[i].def, "")) + pntevts_text[i] = strdup (te[i].def); + else + pntevts_text[i] = strdup (_(te[i].def)); +@@ -1572,7 +1572,7 @@ + snprintf(out, sizeof(out), "The data for event %s failed to load. Reverting to defaults.\nThis may be because a new version of XChat is loading an old config file.\n\nCheck all print event texts are correct", evtnames[i]); + gtkutil_simpledialog(out); */ + /* make-te.c sets this 128 flag (DON'T call gettext() flag) */ +- if (te[i].num_args & 128) ++ if (te[i].num_args & 128 || !strcmp (te[i].def, "")) + pntevts_text[i] = strdup (te[i].def); + else + pntevts_text[i] = strdup (_(te[i].def)); --- xchat-gnome-0.18.orig/debian/patches/98_autoconf.patch +++ xchat-gnome-0.18/debian/patches/98_autoconf.patch @@ -0,0 +1,83 @@ +diff -Nur xchat-gnome-0.16/configure xchat-gnome-0.16.new/configure +--- xchat-gnome-0.16/configure 2007-01-10 01:36:13.000000000 +0100 ++++ xchat-gnome-0.16.new/configure 2007-01-10 16:17:16.000000000 +0100 +@@ -21281,6 +21281,7 @@ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\\ + glib-2.0 >= \$GLIB_REQUIRED \\ + gtk+-2.0 >= \$GTK_REQUIRED \\ ++ launchpad-integration \\ + libglade-2.0 >= \$LIBGLADE_REQUIRED \\ + gnome-vfs-2.0 >= \$LIBGNOMEVFS_REQUIRED \\ + libgnome-2.0 >= \$LIBGNOME_REQUIRED \\ +@@ -21290,6 +21291,7 @@ + ($PKG_CONFIG --exists --print-errors "\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21302,6 +21304,7 @@ + pkg_cv_DEPENDENCIES_CFLAGS=`$PKG_CONFIG --cflags "\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21323,6 +21326,7 @@ + { (echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"\\ + glib-2.0 >= \$GLIB_REQUIRED \\ + gtk+-2.0 >= \$GTK_REQUIRED \\ ++ launchpad-integration \\ + libglade-2.0 >= \$LIBGLADE_REQUIRED \\ + gnome-vfs-2.0 >= \$LIBGNOMEVFS_REQUIRED \\ + libgnome-2.0 >= \$LIBGNOME_REQUIRED \\ +@@ -21332,6 +21336,7 @@ + ($PKG_CONFIG --exists --print-errors "\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21344,6 +21349,7 @@ + pkg_cv_DEPENDENCIES_LIBS=`$PKG_CONFIG --libs "\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21371,6 +21377,7 @@ + DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21381,6 +21388,7 @@ + DEPENDENCIES_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21394,6 +21402,7 @@ + { { echo "$as_me:$LINENO: error: Package requirements (\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ +@@ -21413,6 +21422,7 @@ + echo "$as_me: error: Package requirements (\ + glib-2.0 >= $GLIB_REQUIRED \ + gtk+-2.0 >= $GTK_REQUIRED \ ++ launchpad-integration \ + libglade-2.0 >= $LIBGLADE_REQUIRED \ + gnome-vfs-2.0 >= $LIBGNOMEVFS_REQUIRED \ + libgnome-2.0 >= $LIBGNOME_REQUIRED \ --- xchat-gnome-0.18.orig/debian/patches/90_from_svn_fix_away_back_command.patch +++ xchat-gnome-0.18/debian/patches/90_from_svn_fix_away_back_command.patch @@ -0,0 +1,27 @@ +--- trunk/src/fe-gnome/main-window.c 2007/09/09 22:34:50 2560 ++++ trunk/src/fe-gnome/main-window.c 2007/09/09 22:56:32 2561 +@@ -532,11 +532,20 @@ + g_free (buf); + + /* Away */ +- if (current_sess->server->is_away != gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (away))) { +- if (all) { +- handle_command (current_sess, "allserv away", FALSE); ++ gboolean away = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (away)); ++ if (current_sess->server->is_away != away) { ++ if (away) { ++ if (all) { ++ handle_command (current_sess, "allserv away", FALSE); ++ } else { ++ handle_command (current_sess, "away", FALSE); ++ } + } else { +- handle_command (current_sess, "away", FALSE); ++ if (all) { ++ handle_command (current_sess, "allserv back", FALSE); ++ } else { ++ handle_command (current_sess, "back", FALSE); ++ } + } + } + } --- xchat-gnome-0.18.orig/debian/patches/80_fix_languages_selection.patch +++ xchat-gnome-0.18/debian/patches/80_fix_languages_selection.patch @@ -0,0 +1,13 @@ +Index: src/fe-gnome/preferences-page-spellcheck.c +=================================================================== +--- src/fe-gnome/preferences-page-spellcheck.c (révision 2576) ++++ src/fe-gnome/preferences-page-spellcheck.c (copie de travail) +@@ -153,7 +153,7 @@ + COL_LANG_CODE, &lang, -1); + active = sexy_spell_entry_language_is_active (SEXY_SPELL_ENTRY (gui.text_entry), lang); + +- gtk_list_store_set (store, &iter, COL_LANG_ACTIVATED, !active, -1); ++ gtk_list_store_set (store, &iter, COL_LANG_ACTIVATED, active, -1); + } while (gtk_tree_model_iter_next (GTK_TREE_MODEL (store), &iter)); + } + } --- xchat-gnome-0.18.orig/debian/patches/65_implicit-pointer-conversion-gettext.patch +++ xchat-gnome-0.18/debian/patches/65_implicit-pointer-conversion-gettext.patch @@ -0,0 +1,13 @@ +Debian #428459; GNOME #447453 + +diff -Nur xchat-gnome-0.17/plugins/tcl/tclplugin.c xchat-gnome-0.17.new/plugins/tcl/tclplugin.c +--- xchat-gnome-0.17/plugins/tcl/tclplugin.c 2007-03-06 23:47:26.000000000 +0100 ++++ xchat-gnome-0.17.new/plugins/tcl/tclplugin.c 2007-06-14 11:20:31.000000000 +0200 +@@ -18,6 +18,7 @@ + static char RCSID[] = "$Id: tclplugin.c,v 1.59 2005/08/11 02:37:55 mooooooo Exp $"; + + #include ++#include + #include + #include + #include --- xchat-gnome-0.18.orig/debian/rules +++ xchat-gnome-0.18/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f + +GNOME_DOWNLOAD_URL = http://releases.navi.cx/xchat-gnome/$(GNOME_TARBALL) + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/rules/simple-patchsys.mk +include /usr/share/cdbs/1/rules/utils.mk +include /usr/share/cdbs/1/class/gnome.mk +include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk +-include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk + +DEB_CONFIGURE_EXTRA_FLAGS += --disable-scrollkeeper +LDFLAGS += -Wl,--as-needed + +binary-install/xchat-gnome:: + find debian/ -name "*.la" -exec rm -f {} \; + find debian/ -name "*.a" -exec rm -f {} \; + +binary-install/xchat-gnome-common:: + find debian/ -name "xchat-gnome.1" -exec rm -f {} \; + --- xchat-gnome-0.18.orig/debian/control.in +++ xchat-gnome-0.18/debian/control.in @@ -0,0 +1,56 @@ +Source: xchat-gnome +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Marco Cabizza +Uploaders: @GNOME_TEAM@ +Build-Depends: debhelper (>= 5.0.0), + gnome-pkg-tools, + autotools-dev, + cdbs (>= 0.4.41), + libgtk2.0-dev (>= 2.10.0), + libgnomeui-dev (>= 2.16.0), + libglade2-dev (>= 2.3.0), + libgnomevfs2-dev (>= 2.9.2), + libgconf2-dev (>= 2.8.0), + libxft-dev, + libperl-dev, + python-dev, + tcl8.4-dev, + libxml-parser-perl, + libdbus-glib-1-dev (>= 0.60), + libtool, + scrollkeeper, + libgnutls-dev, + libnotify-dev (>= 0.3.2), + libsexy-dev (>= 0.1.11), + gnome-doc-utils, + libssl-dev (>= 0.9.8b-1), + dpkg-dev (>= 1.13.19), + libglib2.0-dev (>= 2.12.0), + libgnome2-dev (>= 2.16.0), + liblaunchpad-integration-dev +Standards-Version: 3.7.2 + +Package: xchat-gnome +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + xchat-gnome-common (= ${source:Version}) +Description: a new frontend to the popular X-Chat IRC client + GNOME's philosophy in terms of user interfaces has been progressing towards + presenting the user with few options, yet sane defaults. While many of the + normal X-Chat options will be preserved inside GConf, only the most common + settings will be included in the main user interface. + +Package: xchat-gnome-common +Architecture: all +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: a new frontend to the popular X-Chat IRC client + GNOME's philosophy in terms of user interfaces has been progressing towards + presenting the user with few options, yet sane defaults. While many of the + normal X-Chat options will be preserved inside GConf, only the most common + settings will be included in the main user interface. + . + This package contains the arch-independent files. --- xchat-gnome-0.18.orig/debian/xchat-gnome.menu +++ xchat-gnome-0.18/debian/xchat-gnome.menu @@ -0,0 +1,3 @@ +?package(xchat-gnome):needs="X11" section="Apps/Net/" \ + hints="Gnome" title="X-Chat GNOME" \ + command="/usr/bin/xchat-gnome" --- xchat-gnome-0.18.orig/debian/xchat-gnome-common.install +++ xchat-gnome-0.18/debian/xchat-gnome-common.install @@ -0,0 +1,2 @@ +debian/tmp/etc +debian/tmp/usr/share --- xchat-gnome-0.18.orig/debian/copyright +++ xchat-gnome-0.18/debian/copyright @@ -0,0 +1,27 @@ +This package was debianized by Sebastien Bacher on +Sun, 24 Jul 2005 14:17:00 +0200. +This package was re-debianized by Marco Cabizza on +Sun, 3 Apr 2006 18:07:47 +0200. + +It was downloaded from: + + +Copyright Holder: Peter Zelezny + +License: + + This package 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, with the additional exemption that + compiling, linking, and/or using OpenSSL is allowed. You may provide + binary packages linked to the OpenSSL libraries, provided that all other + requirements of the GPL are met. + + This package 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'. + --- xchat-gnome-0.18.orig/debian/control +++ xchat-gnome-0.18/debian/control @@ -0,0 +1,56 @@ +Source: xchat-gnome +Section: gnome +Priority: optional +Maintainer: Ubuntu Desktop Team +XSBC-Original-Maintainer: Marco Cabizza +Uploaders: Debian GNOME Maintainers , Loic Minier , Marco Cabizza , Norbert Tretkowski +Build-Depends: debhelper (>= 5.0.0), + gnome-pkg-tools, + autotools-dev, + cdbs (>= 0.4.41), + libgtk2.0-dev (>= 2.10.0), + libgnomeui-dev (>= 2.16.0), + libglade2-dev (>= 2.3.0), + libgnomevfs2-dev (>= 2.9.2), + libgconf2-dev (>= 2.8.0), + libxft-dev, + libperl-dev, + python-dev, + tcl8.4-dev, + libxml-parser-perl, + libdbus-glib-1-dev (>= 0.60), + libtool, + scrollkeeper, + libgnutls-dev, + libnotify-dev (>= 0.3.2), + libsexy-dev (>= 0.1.11), + gnome-doc-utils, + libssl-dev (>= 0.9.8b-1), + dpkg-dev (>= 1.13.19), + libglib2.0-dev (>= 2.12.0), + libgnome2-dev (>= 2.16.0), + liblaunchpad-integration-dev +Standards-Version: 3.7.2 + +Package: xchat-gnome +Architecture: any +Depends: ${shlibs:Depends}, + ${misc:Depends}, + xchat-gnome-common (= ${source:Version}) +Description: a new frontend to the popular X-Chat IRC client + GNOME's philosophy in terms of user interfaces has been progressing towards + presenting the user with few options, yet sane defaults. While many of the + normal X-Chat options will be preserved inside GConf, only the most common + settings will be included in the main user interface. + +Package: xchat-gnome-common +Architecture: all +Depends: ${shlibs:Depends}, + ${misc:Depends} +Description: a new frontend to the popular X-Chat IRC client + GNOME's philosophy in terms of user interfaces has been progressing towards + presenting the user with few options, yet sane defaults. While many of the + normal X-Chat options will be preserved inside GConf, only the most common + settings will be included in the main user interface. + . + This package contains the arch-independent files. --- xchat-gnome-0.18.orig/debian/watch +++ xchat-gnome-0.18/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://releases.navi.cx/xchat-gnome/xchat-gnome-(.*)\.tar\.gz --- xchat-gnome-0.18.orig/debian/xchat-gnome-remote.1 +++ xchat-gnome-0.18/debian/xchat-gnome-remote.1 @@ -0,0 +1,33 @@ +.TH XCHAT-GNOME "1" "April 2006" "xchat-gnome 0.10" "User Commands" +.SH NAME +xchat-gnome-remote \- tells a running xchat-gnome to perform tasks via dbus +.SH DESCRIPTION +.PP +This is a manual page written for Debian because the original package doesn't have one. For further reference, check the \fBSEE ALSO\fR section. +.SS "Usage:" +.IP +xchat\-gnome\-remote [OPTION...] +.SS "Options:" +\fB\-u\fR, \fB\-\-url\fR=\fIirc\fR://server:port/channel +Open an irc:// url +.TP +\fB\-c\fR, \fB\-\-command\fR=\fcommand\fR +Execute a xchat command +.TP +\fB\-p\fR, \fB\-\-print\fR=\ftext\fR +Prints some text to the current tab/window +.TP +\fB\-s\fR, \fB\-\-channel\fR=\fchannel\fR +Change the context to the channel +.TP +\fB\-s\fR, \fB\-\-server\fR=\fserver\fR +Change the context to the server +.TP +\fB\-i\fR, \fB\-\-info\fR=\fid\fR +Get some informations from xchat +.TP +\fB\-r\fR, \fB\-\-prefs\fR=\fname\fR +Get settings from xchat +.TP +.SH "SEE ALSO" +.BR xchat-gnome (1) --- xchat-gnome-0.18.orig/debian/xchat-gnome.install +++ xchat-gnome-0.18/debian/xchat-gnome.install @@ -0,0 +1,3 @@ +debian/tmp/usr/bin +debian/tmp/usr/lib +debian/tmp/usr/share/man --- xchat-gnome-0.18.orig/debian/compat +++ xchat-gnome-0.18/debian/compat @@ -0,0 +1 @@ +5 --- xchat-gnome-0.18.orig/debian/changelog +++ xchat-gnome-0.18/debian/changelog @@ -0,0 +1,343 @@ +xchat-gnome (1:0.18-2ubuntu1) hardy; urgency=low + + * Sync with Debian + * debian/control.in: + - Build-Depends on liblaunchpad-integration-dev + - updated maintainer information + * debian/patches/02_lpi.patch + - launchpad integration + * debian/patches/04_autojoin_ubuntu_chan.patch + - join ubuntu support chan at start + * debian/patches/98_autoconf.patch + - launchpad integration + + -- Sebastien Bacher Mon, 10 Dec 2007 10:45:50 +0100 + +xchat-gnome (1:0.18-2) unstable; urgency=low + + * All patches in this release were taken from the Ubuntu package. + * debian/patches/80_fix_languages_selection.patch: + - correctly update the languages list when selecting one + * debian/patches/81_no_translation_informations_in_query.patch: + - don't display translation informations when a query tab is opened + * debian/patches/90_from_svn_fix_away_back_command.patch: + - patch from SVN, returning from away should use the back command + + -- Norbert Tretkowski Wed, 05 Dec 2007 00:48:49 +0100 + +xchat-gnome (1:0.18-1) unstable; urgency=low + + * New upstream release. + * Patches: + - 60_fix-xml-override: dropped + - 65_implicit-pointer-conversion-gettext: updated + + -- Norbert Tretkowski Tue, 25 Sep 2007 17:50:49 +0200 + +xchat-gnome (1:0.17-2) unstable; urgency=low + + * Remove duplicate libglib2.0-dev build-dep. + * New patch, 65_implicit-pointer-conversion-gettext, fixes a couple of + implicit pointer conversion for the _() gettext function; thanks + Dann Frazier for the report; note: a different fix thant the proposed + patch was used; GNOME #447453; closes: #428459. + + -- Loic Minier Thu, 14 Jun 2007 11:52:40 +0200 + +xchat-gnome (1:0.17-1) unstable; urgency=low + + [ Sven Arvidsson ] + * Update xchat-gnome-common to include etc, makes sure the gconf schemas + are included (Closes: #412035) + + [ Loic Minier ] + * Add missing build-deps on libglib2.0-dev (>= 2.12.0), libgnome2-dev + (>= 2.16.0). + * Bump up build-deps to libglade2-dev >= 2.3.0, libgconf2-dev >= 2.8.0. + * Update URL in copyright. + * Wrap build-deps and deps. + * Pass --as-needed via LDFLAGS instead of CFLAGS; build-dep on cdbs >= + 0.4.41. + * Cleanups. + * New upstream release. + - Bump up libsexy-dev build-dep to 0.1.11. + * Don't build out of tree as if fails with the current gnome-doc-utils + upstream uses; closes: #420322. + * Include CDBS' utils. + * New patch, 60_fix-xml-override, fixes local override of Glade xml var; no + idea how this could work without this fix; GNOME #446287. + + -- Loic Minier Mon, 11 Jun 2007 11:49:13 +0200 + +xchat-gnome (1:0.16-1) experimental; urgency=low + + [ Marco Cabizza ] + * New upstream release: + - remove debian/xchat-gnome.1 as it's merged upstream, and fix + some things [debian/rules] + + [ Loic Minier ] + * Add a get-orig-source target to retrieve the upstream tarball. + + -- Marco Cabizza Mon, 15 Jan 2007 22:25:45 +0100 + +xchat-gnome (1:0.15-1) experimental; urgency=low + + * New upstream release (Closes: #396009, #396010): + - updated dependencies (target experimental) [control, control.in] + - fixes many bugs, including the conflict with the main clipboard + (Closes: #404736) + + -- Marco Cabizza Wed, 1 Nov 2006 14:30:37 +0100 + +xchat-gnome (1:0.13-1) unstable; urgency=low + + * New upstream release: + - fixes the command completion crash (Closes: #377133) + - fixes the keyed channels autojoining issue + * Added a Debian menu entry (Closes: #382823) + * Build-depend on libssl-dev + + -- Marco Cabizza Thu, 10 Aug 2006 17:58:49 +0200 + +xchat-gnome (1:0.12-2) unstable; urgency=low + + * Add exemption to debian/copyright from COPYING to allow SSL support + + -- Marco Cabizza Fri, 30 Jun 2006 18:43:28 +0200 + +xchat-gnome (1:0.12-1) unstable; urgency=low + + * New upstream release: forking off Ubuntu, first Debian release + (Closes: #258268) + * Fixed libsexy dependency to 0.1.7 according to configure.ac + * 02_lpi.patch, 03_autoconf.patch: dropped, Debian doesn't include LPI + * Added two manpages [xchat-gnome.1, xchat-gnome-remote.1] + * Standards-Version is 3.7.2, debhelper compat is 5 + * Created xchat-gnome-common package for the arch-indep files + + -- Marco Cabizza Wed, 7 Jun 2006 15:09:01 +0200 + +xchat-gnome (0.10-0ubuntu2) dapper; urgency=low + + * debian/rules: Add -Wl,--as-needed to CFLAGS to get rid of a lot of useless + dependencies (amongst them libgnutls11). + + -- Martin Pitt Thu, 2 Mar 2006 16:42:38 +0100 + +xchat-gnome (0.10-0ubuntu1) dapper; urgency=low + + * New upstream version: + - Add a sound notification plugin + - Session management improvements + - Minor UI polish + - A huge slew of bug-fixes + - fix the crash with discussion,find menu item (Ubuntu: #31510) + - fix the help menu item (Ubuntu: #32137) + - make change to away clear (Ubuntu: #31470) + - fix the icon used on highlight (Ubuntu: #30644) + - use window list task animation (Ubuntu: #28391) + - right click has a copy menu item (Ubuntu: #29587) + * debian/control: + - Build-Depends on gnome-doc-utils according to configure requirement + * debian/patches/01_chans_autoconnect.patch: + - fixed with the new version + * debian/patches/03_autoconf.patch: + - updated + * debian/patches/04_libnotify_api_update.patch: + - fixed with the new version + * debian/patches/05_notify_osd_escape_text.patch: + - fixed with the new version + * debian/rules: + - don't build,ship scrollkeeper autogenerated files with the package + + -- Sebastien Bacher Fri, 24 Feb 2006 14:51:47 +0100 + +xchat-gnome (0.9-0ubuntu5) dapper; urgency=low + + * debian/patches/05_notify_osd_escape_text.patch: + - escape the message before sending it via libnotify (gnome: #328445) + + -- Michael Vogt Tue, 24 Jan 2006 17:41:15 +0100 + +xchat-gnome (0.9-0ubuntu4) dapper; urgency=low + + * debian/patches/04_libnotify_api_update.patch: + - updated for the new libnotify API + * debian/control: + * build with the new libnotify package + + -- Sebastien Bacher Tue, 24 Jan 2006 16:15:30 +0100 + +xchat-gnome (0.9-0ubuntu3) dapper; urgency=low + + * debian/control: + - Build-Depends on liblaunchpad-integration-dev + + -- Sebastien Bacher Mon, 23 Jan 2006 10:38:23 +0100 + +xchat-gnome (0.9-0ubuntu2) dapper; urgency=low + + * debian/patches/01_chans_autoconnect.patch: + - patch from the CVS, fix the chans autoconnection (Ubuntu: #29288) + * debian/patches/02_lpi.patch, + debian/patches/03_autoconf.patch: + - changes for launchpad integration + + -- Sebastien Bacher Mon, 23 Jan 2006 00:12:23 +0100 + +xchat-gnome (0.9-0ubuntu1) dapper; urgency=low + + * New upstream version: + - Implement channel list filtering + - Update notify-osd plugin for libnotify >=0.3 + - Add UI for setting nickserv auto-identify password + - Cooler plugins preferences + - Lots and lots of bug-fixes and minor improvements + * debian/control.in: + - Build-Depends on libssl-dev, upstream updated the copyright for that + * debian/patches/notify.patch: + - fixed with the new version + * debian/patches/ssl_build_fix.patch: + - fixed with the new version + + -- Sebastien Bacher Fri, 20 Jan 2006 21:25:55 +0100 + +xchat-gnome (0.8-0ubuntu4) dapper; urgency=low + + * debian/control: + - build with the new libnotify + * debian/patches/notify.patch: + - patch from bugzilla, update for the new libnotify API + + -- Sebastien Bacher Tue, 10 Jan 2006 11:46:13 +0100 + +xchat-gnome (0.8-0ubuntu3) dapper; urgency=low + + * debian/control: + - remove the useless Build-Depends on libzvt2.0-dev + + -- Sebastien Bacher Sat, 7 Jan 2006 16:00:46 +0100 + +xchat-gnome (0.8-0ubuntu2) dapper; urgency=low + + * debian/patches/ssl_build_fix.patch: + - make the ssl build option work correctly + + -- Sebastien Bacher Wed, 21 Dec 2005 11:11:19 +0100 + +xchat-gnome (0.8-0ubuntu1) dapper; urgency=low + + * New upstream version: + - New pop-up userlist + - New, relatively sane build-system + - Translation support + - Translations + - various and sundry bugfixes + * debian/control.in: + - don't Build-Depends on dbus-1-utils + - build with dbus 0.60 + * debian/patches/fix-for-new-gtk.patch: + - fixed with the new version + * debian/rules: + - cleanup of the package and the configure options for the new build system + + -- Sebastien Bacher Wed, 21 Dec 2005 00:46:31 +0100 + +xchat-gnome (0.7-0ubuntu4) dapper; urgency=low + + * debian/patches/fix-for-new-gtk.patch: + - fixes a crasher with the new GTK + + -- Sebastien Bacher Tue, 13 Dec 2005 01:29:54 +0100 + +xchat-gnome (0.7-0ubuntu3) dapper; urgency=low + + * debian/control: + - Build-Depends on libnotify-dev libsexy-dev + + -- Sebastien Bacher Mon, 12 Dec 2005 14:14:10 +0100 + +xchat-gnome (0.7-0ubuntu2) dapper; urgency=low + + * debian/control: + - Build-Depends on scrollkeeper to fix the current FTBFS. + + -- Sebastien Bacher Fri, 25 Nov 2005 14:46:06 +0100 + +xchat-gnome (0.7-0ubuntu1) dapper; urgency=low + + * New upstream version: + - Added a help document + - Add background preferences + - Add a plugin which intelligently disconnects/reconnects based on + network connection status via NetworkManager + - Add an "OSD" plugin, which pops up important messages with libnotify + - Implement "Save Transcript" + - Add a plugin which sets away status based on screensaver state + - various and sundry bugfixes + + -- Sebastien Bacher Thu, 24 Nov 2005 18:57:57 +0100 + +xchat-gnome (0.6-0ubuntu2) dapper; urgency=low + + * debian/control: + - Build-Depends on libtool, dbus-1-utils.. + + -- Sebastien Bacher Fri, 4 Nov 2005 12:03:32 -0500 + +xchat-gnome (0.6-0ubuntu1) dapper; urgency=low + + * New upstream version. + - Set up a gnome url handler for irc:// links + - Add "ignore" to the user context menu + - Add autoconnect and autojoin options in context menus + - Add nickname change dialog when clicking on the nick on the left of + the input bar + - Add text and files drag and drop support + - Beginnings of command completion + * debian/control.in: + - Build-Depends on the libdbus-glib-1-dev package. + + -- Sebastien Bacher Tue, 1 Nov 2005 17:26:16 -0500 + +xchat-gnome (0.5-0ubuntu2) breezy; urgency=low + + * debian/rules: removed xchat.desktop and xchat.png cause it points to real + xchat from main. (Closes: Malone #2167) + + -- Stephan Hermann Sat, 17 Sep 2005 11:37:32 +0200 + +xchat-gnome (0.5-0ubuntu1) breezy; urgency=low + + * New upstream version. + * debian/control: + - updated the Build-Depends. + + -- Sebastien Bacher Wed, 14 Sep 2005 12:34:42 +0200 + +xchat-gnome (0.4-0ubuntu4) breezy; urgency=low + + * Rebuild again to rid us of the unwanted libglitz dependency. + + -- Adam Conrad Tue, 30 Aug 2005 06:09:08 +1000 + +xchat-gnome (0.4-0ubuntu3) breezy; urgency=low + + * Rebuild with the new cairo version + + -- Sebastien Bacher Thu, 18 Aug 2005 17:23:36 +0000 + +xchat-gnome (0.4-0ubuntu2) breezy; urgency=low + + * debian/control: + - fixed the Build-Depends. + + -- Sebastien Bacher Fri, 12 Aug 2005 14:55:12 +0200 + +xchat-gnome (0.4-0ubuntu1) breezy; urgency=low + + * Initial package. + + -- Sebastien Bacher Sun, 24 Jul 2005 14:17:00 +0200 + --- xchat-gnome-0.18.orig/debian/xchat-gnome.manpages +++ xchat-gnome-0.18/debian/xchat-gnome.manpages @@ -0,0 +1,2 @@ +debian/xchat-gnome-remote.1 +data/xchat-gnome.1