--- centerim-4.22.5.orig/debian/patches/00list +++ centerim-4.22.5/debian/patches/00list @@ -0,0 +1,2 @@ +disable_ncursesw + --- centerim-4.22.5.orig/debian/patches/disable_ncursesw.dpatch +++ centerim-4.22.5/debian/patches/disable_ncursesw.dpatch @@ -0,0 +1,61 @@ +#! /bin/sh -e +## disable_ncursesw.dpatch by Anibal Avelar +## +## DP: apply patch to disable the link with ncursesw instead ncurses + +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts +patch_opts="${patch_opts:--f --no-backup-if-mismatch}" + +if [ $# -ne 1 ]; then + echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" + exit 1 +fi +case "$1" in + -patch) patch $patch_opts -p1 < $0;; + -unpatch) patch $patch_opts -p1 -R < $0;; + *) + echo >&2 "`basename $0`: script expects -patch|-unpatch as argum +ent" + exit 1;; +esac + +exit 0 +diff -bBdNrw -U5 centerim-4.22.1-101-g6a27/configure.ac centerim-4.22.1-101-g6a27.modif/configure.ac +--- centerim-4.22.1-101-g6a27/configure.ac 2007-12-04 16:21:35.000000000 -0600 ++++ centerim-4.22.1-101-g6a27.modif/configure.ac 2007-12-05 01:00:43.860047674 -0600 +@@ -79,10 +79,15 @@ + AS_HELP_STRING([--enable-locales-fix], [enables workaround for + broken locales. use this option if some of + characters in your texts in Chinese or Japanese + diappear]) + ) ++AC_ARG_ENABLE(ncursesw, ++ AS_HELP_STRING([--disable-ncursesw], [disable link with ncursesw]), ++ link_ncursesw="$enableval", ++ link_ncursesw="yes" ++ ) + + AC_ARG_WITH(fribidi, + AS_HELP_STRING([--with-fribidi=[DIR]], [enable Hebrew and Arabic + support using fribidi library in DIR]), + [with_fribidi=$withval], +@@ -272,13 +277,19 @@ + AM_ICONV_LINK + LIBS="$LIBS $LIBICONV" + + AC_CHECK_LIB(socket, socket) + AC_CHECK_LIB(nsl, gethostbyname) ++ ++if test "x$link_ncursesw" = "xyes"; then + AC_CHECK_LIB(ncursesw, get_wch,, [AC_CHECK_LIB(ncurses, initscr,, + [AC_CHECK_LIB(curses, initscr,, + AC_MSG_ERROR(The ncurses terminal library is required in order to build the program))])]) ++else ++AC_CHECK_LIB(ncurses, initscr,, ++ [AC_CHECK_LIB(curses, initscr,, AC_MSG_ERROR(The ncurses terminal library is required in order to build the program))]) ++fi + + AC_TRY_COMPILE([ + #include + #include + ],[ socklen_t foo; ], ac_cv_c_socklen_t=yes, ac_cv_c_socklen_t=no) --- centerim-4.22.5.orig/debian/cimconv.1 +++ centerim-4.22.5/debian/cimconv.1 @@ -0,0 +1,28 @@ +.TH cimconv 1 "August 19, 2003" + +.SH NAME +cimconv \- tool to convert contact lists and history from other IM clients + +.SH SYNOPSIS +.B "cimconv " +[ +.B client +] ... + +.SH DESCRIPTION +This manual page documents briefly the +.B cimconv +command. +.PP +\fBcimconv\fP is a tool for the centerim instant messaging client. It +can be used to convert contact lists and history from other IM clients. +So far the +.B client +parameter can be one of these: licq, kxicq2, gnomeicu, micq, trillian. + +.SH AUTHOR +centerim as well as the cimconv tool were written by Konstantin Klyagin +. + +.SH WEB +http://www.centerim.org/ --- centerim-4.22.5.orig/debian/rules +++ centerim-4.22.5/debian/rules @@ -0,0 +1,140 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# debian/rules file for the Debian/GNU Linux centerim package +# Copyright 2002-2007 by Julien Lemoine +# 2007 Modified by Anibal Avelar + +include /usr/share/dpatch/dpatch.make + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CXXFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CXXFLAGS += -O0 +else + CXXFLAGS += -O1 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +source := $(shell head -1 debian/changelog | \ + perl -nle 'm/^([a-z]+)/ and print $$1') +package := $(shell head -1 debian/changelog | \ + perl -nle 'm/^(\S+)\s+/ and print $$1') +version := $(shell head -1 debian/changelog | \ + perl -nle 'm/\S+\s+\((\S+)-\S+\)/ and print $$1') +major := $(shell head -1 debian/changelog | perl -nle \ + 'm/\S+\s+\((\d\.\d)\.\d+-\S+\)/ and print $$1') +pcommon=$(package)-common +pfribidi=$(package)-fribidi +putf8=$(package)-utf8 + +config.status: configure + autoconf -v + dh_testdir + cp centerim.1 centerim-fribidi.1 + cp centerim.1 centerim-utf8.1 + CFLAGS="$(CXXFLAGS)" CXXFLAGS="$(CXXFLAGS)" ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --with-included-gettext --with-ssl --with-openssl=no \ + --with-gpgme --disable-ncursesw + +build: patch config.status build-stamp + +build-stamp: + dh_testdir + $(MAKE) + mv src/centerim src/centerim-normal + cd kkconsui; $(MAKE) clean + perl -pi -e "s:::" \ + kkconsui/include/conscommon.h + $(MAKE) distclean + CFLAGS="$(CXXFLAGS)" CXXFLAGS="$(CXXFLAGS)" ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/usr --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info \ + --with-included-gettext --with-ssl --with-openssl=no \ + --with-gpgme + $(MAKE) + cd .. + mv src/centerim src/centerim-utf8 + cd kkconsui; $(MAKE) clean + perl -pi -e "s:::" \ + kkconsui/include/conscommon.h + cd .. + $(MAKE) distclean + CFLAGS="$(CXXFLAGS)" CXXFLAGS="$(CXXFLAGS)" ./configure \ + --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) \ + --mandir=\$${prefix}/share/man --prefix=/usr \ + --infodir=\$${prefix}/share/info \ + --with-included-gettext --with-fribidi=/usr \ + --with-ssl --with-openssl=no + --with-gpgme --disable-ncursesw + perl -p -i -e "s:^LIBS = (.*)$$:LIBS = \1 -lfribidi:" src/Makefile + $(MAKE) + mv src/centerim src/centerim-fribidi + touch build-stamp + +clean: unpatch + dh_testdir + dh_testroot + [ ! -f Makefile ] || $(MAKE) distclean + rm -f build-stamp intl/libintl.h src/centerim-normal \ + src/centerim-fribidi centerim-fribidi.1 \ + src/centerim-utf8 centerim-utf8.1 +# po/centerim.pot po/cat-id-tbl.c po/*.gmo + find ./ -name config.status -print | xargs rm || true + find ./ -name config.log -print | xargs rm || true +# find ./ -name config.sub -print | xargs rm || true +# find ./ -name config.guess -print | xargs rm || true + find ./ -name config.cache -print | xargs rm || true + find ./ -name config.h -print | xargs rm || true + find ./ -name Makefile -print | xargs rm || true + find ./ -name stamp-h -print | xargs rm || true + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + $(MAKE) install-data prefix=$(CURDIR)/debian/$(pcommon)/usr + mv src/centerim-normal src/centerim + install -m 755 src/centerim $(CURDIR)/debian/$(package)/usr/bin/ + install -m 755 src/centerim-fribidi $(CURDIR)/debian/$(pfribidi)/usr/bin + install -m 755 src/centerim-utf8 $(CURDIR)/debian/$(putf8)/usr/bin + rm -rf $(CURDIR)/debian/$(pcommon)/usr/share/man/man1/ + rm -rf $(CURDIR)/debian/$(pcommon)/usr/include + install -m 755 misc/cimconv $(CURDIR)/debian/$(pcommon)/usr/bin + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman -p$(pcommon) debian/cimconv.1 + dh_installman -p$(package) centerim.1 + dh_installman -p$(pfribidi) centerim-fribidi.1 + dh_installman -p$(putf8) centerim-utf8.1 + dh_installchangelogs ChangeLog + dh_installexamples debian/external.example + dh_link -a + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- centerim-4.22.5.orig/debian/external.example +++ centerim-4.22.5/debian/external.example @@ -0,0 +1,162 @@ +# File /$HOME/.centericq/external +# +# External actions +# ---------------- +# +# Every section starts with a line containing the "%action ", +# "%pre-send ", "%pre-receive " or "%manual " text. +# Please note that the of any kind is necessary. It musn't be +# empty. Inside it the following parameters can be used: +# +# event +# ----- +# Can be "msg", "sms", "url", "online", "auth", "contacts" or "notification". +# The latter means centericq's own notifications, such as birthday reminders, +# away messages, and other stuff. Specifying several event types is +# also allowed. "all" stands for all the event types. +# +# proto +# ----- +# Can be "icq", "yahoo", "msn", "aim", "irc" or "jabber". Or combination +# of these words. "all" can be used as a synonim for all of them. +# +# status +# ------ +# Can be "online", "away", "dnd", "na", "occupied", "ffc" or "invisible". +# Specifying several ones is possible. "all" stands for all of possible +# status modes. +# +# options +# ------- +# Possible options for an action are: +# +# stdin The incoming message text is to be passed to +# stdin of the script to be executed. +# +# stdout The script output is to be sent as a reply +# message (if not empty). +# +# nowait Don't wait for the script to finish. Obviously, the +# stdout option won't make sense if this one is used. +# +# Then, the section named "%exec" should follow. It contains a piece of +# script to be executed being copied to a file first. +# +# +#Also, the script from the %exec section when executed has the following +#environment variables imported by centericq: +# +#EVENT_TYPE +# +# The type of the received event. Can be "msg", "sms", "url", +# "online", "auth", "contacts" or "notification". +# +#EVENT_NETWORK +# +# The IM network name through which the event was received. Can be +# "icq", "msn", "yahoo", "aim", "irc" or "jabber". +# +#CONTACT_UIN +# +# If an event is received through ICQ equals to the other party's UIN. +# Otherwise empty. +# +#CONTACT_NICK +# +# Set to other party's real nickname. Real means that even if you +# renamed the user in your contact list, this parameter will be equal +# to the original one, and not to what you set. +# +#CONTACT_INFODIR +# +# The most intresting parameter. Using it, you can access further +# information about the user. Every time an external action is +# executed it is set to the user's information directory under your +# ~/.centericq/ directory. It makes it easier to access "about" and +# "info" files under it. Fetching lines from certain positions of the +# latter allows to get details. It's enough to take a look at an +# "info" file of any user to find out what lines mean. Here I'll +# describe the most useful ones: +# +# - the 2nd and 3rd lines contain user's first and last names +# respectively; +# - the 4th one contains user's e-mail address; +# - the 7th has the home city; +# - the 8th is used for the home state name; +# - the 9th is used for the home phone number; +# - the user's home country resides in the 14th line; +# - etc; +# +#To read a certain line from the info file I recommend to use the +#following shell command: "head -n $CONTACT_INFODIR/info | tail -n 1", +#where N is the line number. Below the real examples go. +# +# fname=`head -n 2 $CONTACT_INFODIR/info | tail -n 1` +# # to fetch contact's first name +# +# lname=`head -n 3 $CONTACT_INFODIR/info | tail -n 1` +# # to fetch contact's last name + +%manual Host Lookup +proto icq +# Only ICQ shows up IP addresses +%exec +#!/bin/sh +ip=`head -n 45 $CONTACT_INFODIR/info | tail -n 1` +for i in $ip; do ip=$i; break; done +host $ip + +%action eLiza ChatBot +event msg +proto all +status occupied na dnd +options stdin stdout +%exec +elizatalk + +#%action Simple auto-responder +#event msg +## Reacts only on events of message type .. +#proto icq yahoo +## .. only for icq and yahoo protocols +#status away na +## .. when we are in away or n/a status +#options stdin stdout +## .. the external commands text (below) reads the message from +## stdin, then its stdout output is sent as a response to a +## remote user. +#%exec +#msg=`cat` +#echo "hello. this is auto-responder. your message was: $msg" + +#%action Answering machine +#event msg +#proto all +#status away na +#options stdout +#%exec +##!/bin/sh +#fname=`head -n 2 $CONTACT_INFODIR/info | tail -n 1` +#lname=`head -n 3 $CONTACT_INFODIR/info | tail -n 1` +#cat < libgnutls26 transistion. + + -- Steve Kowalik Sat, 11 Oct 2008 01:28:52 +1100 + +centerim (4.22.5-1ubuntu1) intrepid; urgency=low + + * Merge from Debian unstable (LP #228731), Ubuntu remaining changes: + - debian/control: + + Use firefox-3.0 in Recommends + + Updated maintainer field + * debian/patches/CVE-2008-1467.dpatch: Removed, merged upstream + + -- Pedro Fragoso Thu, 01 May 2008 03:10:58 +0100 + +centerim (4.22.5-1) unstable; urgency=low + + * New upstream version release: + + Ready for Yahoo protocol changed since April 2, 2008. + (Closes: #469835, #474223) + + Removed the debian/patches/CVE-2008-1467.dpatch patch because the + new upstream version fixed it directly. + + Fixed the Bug 49: icq contacts all show as offline. + (Closes: #453189) + + Fixed the Bug 69: incorrect user name when using~/.centerim/external + (Closes: #459927) + + Fixed the Bug 39: icq contacts all show as offline + (Closes: #453189) + + Fixed the problem when CIM was unable to do file xfers, + tested in ICQ and Y! (Closes: #209195) + * Fixed a little problem in the debian/watch file. + Thank you Dmitry E. Oboukhov (Closes: #472309) + * Removed the OTR (Off-the-Record Messaging) support + because it resulted some buggy. + * Removed the dependencies with the libotr2-dev package in the + debian/control file due to the same reasons described above. + * Removed the transitional packages: centericq, centericq-utf8 and + centericq-fribidi because all are obsolete now. Its function was + fulfilled. + * Removed the fields Replaces and Provides from the binary packages + sections in debian/control due to the sames reasons described above. + + -- Anibal Avelar Tue, 08 Apr 2008 22:01:20 +0200 + +centerim (4.22.3-1) unstable; urgency=high + + * New upstream version. + * Added GPG (GNU privacy guard) support. + * Added OTR (Off-the-Record Messaging) support. + * Added the new dependencies with libotr2-dev and libgpgme11-dev + in the debian/control file. + * Fixed centerim: CVE-2008-1467 remote command execution via crafted URL + (Closes: #472649) + * Added a debian/watch file. Thank you Dmitry E. Oboukhov + (Closes: #472309) + * Removed the Vcs-* fields in debian/control file should point to + repository where debian package is maintained, not to upstream + repository. (Closes: #465040) + * Fixed centerim-common: package should be arch: all. + (Closes: #466180) + * Fixed the bug for Anti-spam feature. + (Closes: #420491,#271307) + * Fixed centericq: takes 100% of the CPU but still works. + (Closes: #218929) + * Fixed centericq: offline-messages get an incorrect timestamp. + (Closes: #221592) + * Fixed centericq: Incorrect handling of /nick, /msg and /mode in IRC. + The new firetalk version fixed it. (Closes: #234672) + * Fixed the request for feature for IRC server password support. + (Closes: #167611) + * Changed the mantainer name with a more short format. + + -- Anibal Avelar Thu, 27 Mar 2008 00:42:20 +0200 + +centerim (4.22.2-1ubuntu2) hardy; urgency=low + + * SECURITY UPDATE: user-assisted arbitrary code execution via crafted URL. + (LP: #212088) + - debian/patches/CVE-2008-1467.dpatch: Ensure that the URL is properly + quoted before launching the browser. Patch from upstream. + - References: + + CVE-2008-1467 + + -- William Grant Sat, 05 Apr 2008 16:56:52 +1100 + +centerim (4.22.2-1ubuntu1) hardy; urgency=low + + * Merge from Debian unstable, remaining changes: + - debian/control: + + Use firefox-3.0 in Recommends. + + Update maintainer field. + + -- Michele Angrisano Wed, 06 Feb 2008 16:34:25 +0100 + +centerim (4.22.2-1) unstable; urgency=low + + * New upstream version release + * This release doesn't fix the bug #453189 completely but at least lets to + change the severity from grave to important. + * Fixed centericq crazily consumes characters created before backspace + button bashed (Closes: #349132) + * Fixed Segmentation fault in centericq (Closes: #269848) + * Fixed Segfaults instead of connecting to Yahoo (Closes: #447535) + * Fixed autoaway/na status lost when server connection is lost + (Closes: #198473) + * Fixed to unable to see messages after winding back clock + (Closes: #304954) + * Fixed FTBFS with GCC 4.3: missing #includes (Closes: #455620) + * Added the field Homepage inside Source stanza in debian/control file. + * Added the fields Vcs-Browser and Vcs-Git in the debian/control file. + * Fixed Russian language is bugged (Closes: #429825). + * Fixed centericq: the bug of input the text in non-English coding + (Closes: #435845) + * Removed the dependencie with libotr2-dev package in debian/control. + * Fixed inside debian/rules file to link to ncurses5-dev for centerim + and ncurses5w-dev to centerim-utf8. + * Updated with Standards-Version 3.7.3 + * Added a patch on configure.ac for libncurses5-dev and libncurses5w-dev + works separately. + * Added the dependencie with libtool for the patch applied to configure.ac + works. + + -- Anibal Avelar (Fixxxer) Sat, 08 Dec 2007 23:22:20 +0200 + +centerim (4.22.1.20071022-1ubuntu1) hardy; urgency=low + + * use firefox-3.0 in Recommends + - update debian/control + * update maintainer field according to ubuntu/motu policy + - update debian/control + + -- Alexander Sack Tue, 05 Feb 2008 16:54:09 +0100 + +centerim (4.22.1.20071022-1) unstable; urgency=low + + * Updated with the master branch development from 2007-10-22 + * Fixed the bug when the connection to MSN server starts (Closes: #447419) + * Fixed the bug of input the text in non-English coding + (Closes: #435845, #435833) + * Fixed centerim in Russian language (Closes: #429825) + * Fixed centerim problems with german umlauts and utf-8 on amd64 + (Closes: #309984) + * Fixed Segmetation fault in centericq (Closes: #269848) + * Fixed transports and conferences cannot be deleted from roster with + centericq (Closes: #305222) + + -- Anibal Avelar (Fixxxer) Tue, 23 Oct 2007 22:37:20 +0200 + +centerim (4.22.1.20071003-1) unstable; urgency=low + + * Updated with the master branch development from 2007-10-03 + * Removed the patch to build the package; it was built with the + centerim-20071003.tar.gz file, the latest mob branch snapshot. + * Updated with NMU security patch for CVE-2007-3713 report + * Fixed the FTBFS bug with GCC 4.3: missing some 'includes' (Closes: #417132) + * Fixed the FTBFS if build twice in a row (Closes: #442523, #424153, #442525) + * Fixed centericq segfault on some circustance (Closes: #363272) + * Fixed centericq failed with CPP error message (Closes: #295808) + * Fixed centericq: Cannot connect to AIM (Closes: #325456) + * Fixed centericq clumsily concocts creations where word wrap + wantonly works wrongly (Closes: #349133) + * Fixed centericq: users with blank names corrupt contact list + (Closes: #239263) + * Fixed centericq: CenterICQ fiendishly devours apostrophes sent from + users of Trillian (Closes: #266214) + * Fixed centericq: Yahoo contacts not deleted on the server side i + (Closes: #303071) + * Fixed centericq: AIM shows some characters as HTML entities + (Closes: #263383) + * Fixed centericq: SSL support on Jabber (Closes: #223537) + + -- Anibal Avelar (Fixxxer) Sun, 30 Sep 2007 20:15:20 +0200 + +centerim (4.22.1-2.1) unstable; urgency=high + + * Non-maintainer upload by testing security team. + * Included fedora-security-patch (Thanks to Tristan Seligmann) + to fix CVE-2007-3713 (Closes: #438511). + + -- Nico Golde Sun, 26 Aug 2007 13:15:20 +0200 + +centerim (4.22.1-2) unstable; urgency=low + + * Synchronize with centerim's git repository taken from Jul 29, 2007 + Was generated a patch to avoid the original source code 4.22.1 be modified + * Fixed centerim-utf8 undeclared overlap with centerim (Closes: #435586) + * Fixed centericq: realloc() implicitly converted to pointer (Closes: #431612) + * Fixed problems with special characters receiving messages in utf-8 mode + (Closes: #315380) + * Fixed centerim: Some IRC messages conversion error (Closes: #429518) + * Fixed centerim: Russian language is bugged (Closes: #429825) + * Fixed centericq: Too long dialog start-up (Closes: #429508) + * Fixed centericq: Some IRC messages conversion error (Closes: #432882) + * Fixed centericq: message pane is not refreshed when a contact goes offline + (Closes: #391882) + * Fixed fails to clean up the contact window (Closes: #435192) + * Fixed jabber doesn't work in centerim (Closes: #429943) + * Fixed sort out liblzo situation (Closes: #435585) + * Fixed centericq-utf8: Segfault on yahoo login for 4.20.0-7 (Closes: #318357) + * Fixed centericq: ability to type in chat mode when chat is full screen + (Closes: #391679) + * Fixed centericq-utf8: MSN users not using groups cannot add users to + their contact list (Closes: #267100) + * Fixed centericq: Yahoo contacts show up as offline no matter what + (Closes: #295164) + * Fixed other minor didn't report bugs. + + -- Anibal Avelar (Fixxxer) Thu, 02 Aug 2007 00:20:00 +0100 + +centerim (4.22.1-1) unstable; urgency=low + + * New upstream version (Closes: #416205) + * Changed the package name + * Were remove all references to openssl (Closes: #424654) + + -- Anibal Avelar (Fixxxer) Sat, 24 Jul 2007 14:45:00 +0100 + +centericq (4.21.0-20) unstable; urgency=low + + * New mantainer, Closes: #416958 + * Changed to libcurl4-gnutls instead libcurl4-openssl due to non-compatible + license, Closes: #424654 + * Was proved that the libmsn update (3.1.1 to 3.2) contained in new-msn.dpatch + fixed some open bugs, Closes: #393522 + * The SSL support for jabber and gadu-gadu don't work for now due to them were + removed to avoid the *openssl dependencies. It will be fixed in the new + package centerim. + + -- Anibal Avelar (Fixxxer) Sun, 08 Jun 2007 13:24:47 -0500 + +centericq (4.21.0-19) unstable; urgency=low + + * Orphan package + + -- Julien Lemoine Sat, 31 Mar 2007 19:37:56 +0200 + +centericq (4.21.0-18) unstable; urgency=high + + * Fixed potential segmentation fault in jabber + (output of strstr was not checked) + Closes: #406982 + + -- Julien Lemoine Tue, 16 Jan 2007 08:01:03 +0100 + +centericq (4.21.0-17) unstable; urgency=high + + * Fixed buffer overflow found in liverjournal support. + http://lists.grok.org.uk/pipermail/full-disclosure/2007-January/051663.html + + -- Julien Lemoine Mon, 8 Jan 2007 18:46:40 +0100 + +centericq (4.21.0-16) unstable; urgency=low + + * Applied patch from Charles Plessy to fix connection to some jabber servers. + (Closes: #347846) + * Applied patch from Sebastien Delafond to add user setting to display + timestamps up to the second. + + -- Julien Lemoine Wed, 4 Oct 2006 23:42:06 +0200 + +centericq (4.21.0-15) unstable; urgency=low + + * Applied libmsn patch from centericq.de (centericq-cvs-20060722-msn.patch) + Fixed MSN login problem and segmentation fault + (Closes: #364765, #311295) + Fixed synchronization problems + (Closes: #231799, #296879, #302239, #303068, #312695) + + -- Julien Lemoine Thu, 24 Aug 2006 22:46:27 +0200 + +centericq (4.21.0-14) unstable; urgency=low + + * Added build depend on automake1.4 to fix build failure + + -- Julien Lemoine Thu, 24 Aug 2006 11:01:29 +0200 + +centericq (4.21.0-13) unstable; urgency=low + + * Fixed build failure (Closes: #384292) + + -- Julien Lemoine Wed, 23 Aug 2006 23:17:02 +0200 + +centericq (4.21.0-12) unstable; urgency=low + + * updated to follow the last version of Debian Policy + * updated depends to add alternative to www-browser + + -- Julien Lemoine Tue, 22 Aug 2006 12:45:50 +0200 + +centericq (4.21.0-11) unstable; urgency=low + + * Added a note about aplay command in README.Debian (Closes: #351261) + + -- Julien Lemoine Sun, 19 Feb 2006 17:13:25 +0100 + +centericq (4.21.0-10) unstable; urgency=low + + * Applied patch from to fix segv in libjabber when + registering new account (Closes: #344301) + + -- Julien Lemoine Thu, 22 Dec 2005 16:16:05 +0100 + +centericq (4.21.0-9) unstable; urgency=low + + * Removed build depends on libkrb5-dev (was a workaround for a broken + curl upload) (Closes: #342257) + * Removed multi lines Build Dep on control file + + -- Julien Lemoine Sun, 18 Dec 2005 18:58:58 +0100 + +centericq (4.21.0-8) unstable; urgency=low + + * Update libmsn to last version : 3.2. + This update can fix msn connection problem for some users. + + -- Julien Lemoine Sat, 17 Dec 2005 11:00:01 +0100 + +centericq (4.21.0-7) unstable; urgency=low + + * Added build depend on libkrb5-dev + + -- Julien Lemoine Wed, 30 Nov 2005 16:32:58 +0100 + +centericq (4.21.0-6) unstable; urgency=high + + * Fixed compilation error (assume that libc is used to avoid static + redefinition of stpcpy, memcpy, ...) + (Closes: 340790) + * SECURITY: Fixed buffer overflow in embedded ktools library by replacing + vsprintf by vsnprintf (Waiting for a better patch from upstream) + CVE-2005-3863 + (Closes: #340959) + + -- Julien Lemoine Wed, 30 Nov 2005 08:43:49 +0100 + +centericq (4.21.0-5) unstable; urgency=low + + * Fixed compilation error (redefinition of stpcpy) + (Closes: #340790) + + -- Julien Lemoine Sat, 26 Nov 2005 15:52:12 +0100 + +centericq (4.21.0-4) unstable; urgency=high + + * Applied two patchs from Steve Langasek : + * Fix for ICQ direct client handler, which fails to handle undersized + requests from remote hosts, leading to a segfault (closes: #334089). + * Miscellaneous other memory handling clean-ups + + -- Julien Lemoine Sun, 20 Nov 2005 12:02:52 +0100 + +centericq (4.21.0-3) unstable; urgency=low + + * Applied patch from Guillaume Libersat + to fix build failure on hurd (Closes: #330699) + + -- Julien Lemoine Thu, 29 Sep 2005 21:47:32 +0200 + +centericq (4.21.0-2) unstable; urgency=low + + * Updated config.guess and config.sub to fix build failure on GNU/K*BSD + (Closes: #326539)x + + -- Julien Lemoine Sun, 4 Sep 2005 12:41:41 +0200 + +centericq (4.21.0-1) unstable; urgency=low + + * New upstream release (aim connection fixed, Closes: #312034) + * Upgraded ssl support with libgnutls12 instead of libgnutls11 + * updated to follow the last version of Debian Policy + + -- Julien Lemoine Sat, 3 Sep 2005 11:28:36 +0200 + +centericq (4.20.0-10) unstable; urgency=low + + * Applied patch from Ian Johannesen to fix connection + problem to google talk. (This makes sure that CenterICQ honours the + server setting despite a username in the form user@domain is used) + * backported CVS patch in firetalk library to fix aim problem + + -- Julien Lemoine Fri, 26 Aug 2005 21:05:09 +0200 + +centericq (4.20.0-9) unstable; urgency=high + + * Fix endianess errors (may allow remote attackers to cause a denial of + service), CAN-2005-2448 + * Fix memory alignment errors (may allows remote attackers to cause a + denial of service (bus error) on + certain architectures such as SPARC via an incoming message, CAN-2005-2370 + * Fix Multiple integer signedness errors (may allow remote attackers to + cause a denial of service or execute arbitrary code.), CAN-2005-2369 + (Closes: #323185) + + -- Julien Lemoine Tue, 23 Aug 2005 16:40:55 +0200 + +centericq (4.20.0-8) unstable; urgency=low + + * Fixed segv in msn module (array overflow) + (Closes: #316559) + * Replaced -O2 by -O1 because -O2 optims produces segfault + with gcc 4.0 on amd64 architecture + (Closes : #318357) + * Added a brief explanation in desription field on + the reason of 'sox' in recommands field + (Closes: #312050) + + -- Julien Lemoine Mon, 18 Jul 2005 08:55:37 +0200 + +centericq (4.20.0-7) unstable; urgency=high + + * Applied patch from Joey Schulze to fix + insecure temporary file vulnerability (CAN-2005-1914) + + -- Julien Lemoine Wed, 6 Jul 2005 22:04:29 +0200 + +centericq (4.20.0-6) unstable; urgency=low + + * Applied patch from aniel Parthey to fix + decryption problem with messages containing several x tags + (Closes: #309923) + + -- Julien Lemoine Wed, 1 Jun 2005 08:09:06 +0200 + +centericq (4.20.0-5) unstable; urgency=low + + * Applied patch found at + http://article.gmane.org/gmane.network.centericq/3173 to fix + segmentation fault when doing search/add on amd64 + (Closes: #309750, #309535) + + -- Julien Lemoine Thu, 19 May 2005 22:25:25 +0200 + +centericq (4.20.0-4) unstable; urgency=low + + * Fix jabber login problem on amd64 (Applied patch from Daniel Parthey) + (Closes: #208670) + + -- Julien Lemoine Mon, 16 May 2005 07:14:33 +0200 + +centericq (4.20.0-3) unstable; urgency=low + + * Applied patch from Andreas Jochens to fix amd64 buid + problems (g++ 4.0 compilation errors) (Closes: #303937) + + -- Julien Lemoine Wed, 20 Apr 2005 21:34:12 +0200 + +centericq (4.20.0-2) unstable; urgency=low + + * Cvs backport to fix Jabber/PGP decrypt problem when + receiving multiple tags (Closes: 295469) + + -- Julien Lemoine Thu, 17 Feb 2005 22:09:12 +0100 + +centericq (4.20.0-1) unstable; urgency=low + + * New upstream release, added gpg support for jabber (added build + depend on gpgme) + + -- Julien Lemoine Fri, 4 Feb 2005 08:45:23 +0100 + +centericq (4.14.0-1) unstable; urgency=low + + * New upstream release (includes cvs backport of 4.13.0-2) + * Use sox instead of esound to play wave file (Closes: #290965) + + -- Julien Lemoine Thu, 20 Jan 2005 08:46:44 +0100 + +centericq (4.13.0-2) unstable; urgency=low + + * Backport cvs patch to fixes the 'u' disappearing issue + (Closes: #288226) + * Backport cvs patch to fixed memory leak problem + (Closes: #261055) + + -- Julien Lemoine Sun, 2 Jan 2005 21:42:16 +0100 + +centericq (4.13.0-1) unstable; urgency=low + + * New upstream release + + -- Julien Lemoine Mon, 20 Dec 2004 21:24:00 +0100 + +centericq (4.12.0-3) unstable; urgency=low + + * Fixed compilation error with gcc 3.4 (applied patch from gentoo.org) + (Closes: #274181) + + -- Julien Lemoine Mon, 18 Oct 2004 22:57:45 +0200 + +centericq (4.12.0-2) unstable; urgency=low + + * Changed build-dep from fribidi-dev to fribidi-dev (>= 0.10.4-4) + + -- Julien Lemoine Wed, 13 Oct 2004 00:02:36 +0200 + +centericq (4.12.0-1) unstable; urgency=low + + * New upstream release + + -- Julien Lemoine Tue, 28 Sep 2004 22:46:23 +0200 + +centericq (4.11.0-1) unstable; urgency=low + + * New upstream release + + -- Julien Lemoine Thu, 5 Aug 2004 23:29:43 +0200 + +centericq (4.10.0-3) unstable; urgency=low + + * Rebuild centericq with libgnutls11 + (Closes: #263664) + + -- Julien Lemoine Thu, 5 Aug 2004 19:58:47 +0200 + +centericq (4.10.0-2) unstable; urgency=low + + * Applied patch from Paul Hampson to fix + MSN server disconnection (Closes: #257899) + * Added a message for double escape (Closes: #258036) + + -- Julien Lemoine Mon, 19 Jul 2004 20:50:20 +0200 + +centericq (4.10.0-1) unstable; urgency=low + + * New upstream release + problem with non us characters fixed (Closes: #232014, #253170) + + -- Julien Lemoine Thu, 1 Jul 2004 07:10:56 +0200 + +centericq (4.9.12-5) unstable; urgency=low + + * Replaced recommand on mozilla by www-browser + (Closes: #256058, #254646) + + -- Julien Lemoine Sat, 26 Jun 2004 14:45:09 +0200 + +centericq (4.9.12-4) unstable; urgency=low + + * recompile with --enable-locales-fix + + -- Julien Lemoine Tue, 8 Jun 2004 22:02:53 +0200 + +centericq (4.9.12-3) unstable; urgency=low + + * Recompilation with libgcc1 3.3.1 (4.9.12-2 was compiled with libgcc1 3.4.0) + Thanks to David B. Harris. + + -- Julien Lemoine Sun, 9 May 2004 23:43:35 +0200 + +centericq (4.9.12-2) unstable; urgency=low + + * Fixed error in --help command (wrong list of protocol) + (Closes: #244630) + + -- Julien Lemoine Sun, 9 May 2004 03:40:38 +0200 + +centericq (4.9.12-1) unstable; urgency=low + + * New upstream release + * [Upstream] Fixed segv in MSN module (Closes: #235148, #235741, #236262) + + -- Julien Lemoine Tue, 13 Apr 2004 23:32:19 +0200 + +centericq (4.9.11-2) unstable; urgency=low + + * Remove libicq2000 headers file from centericq-common + + -- Julien Lemoine Tue, 23 Mar 2004 22:50:41 +0100 + +centericq (4.9.11-1) unstable; urgency=low + + * New upstream release + * Now use libgnutls10 (patched libgadu to allow use of libgnutls) + * [Upstream] Configurable key bindings patch by Daniel Kraus was applied + (Closes: #152915) + * [Upstream] Reply button reappears + (Closes: #232622) + * [Upstream] Centericq can scroll a message in the full-screen + (Closes: #235625) + * [Upstream] Fixed timestamp problem + (Closes: #221592) + * [Upstream] Fixed lj integration bug + (Closes: #224386) + * [Upstream] Fixed contact deletion synchronisation bug + (Closes: #231801, #225125, #238886) + * [Upstream] Fixed utf8 bug + (Closes: #232014) + + -- Julien Lemoine Mon, 22 Mar 2004 22:53:51 +0100 + +centericq (4.9.10-3) unstable; urgency=low + + * Unofficial version with a test to fix multiple segv in msn part... + + -- Julien Lemoine Wed, 17 Mar 2004 21:59:30 +0100 + +centericq (4.9.10-2) unstable; urgency=low + + * Fix segfault when connecting to Msn messager and jabber with ssl + (Closes: #229129, #234382) + * Fix segv when pressing 'c' key on 'Online' or 'Offline' tree item + + -- Julien Lemoine Tue, 24 Feb 2004 20:05:53 +0100 + +centericq (4.9.10-1) unstable; urgency=low + + * New upstream release (Closes: #229660) + * Fix yahoo connection problem (Closes: #227489) + + -- Julien Lemoine Fri, 6 Feb 2004 22:26:38 +0100 + +centericq (4.9.9-3) unstable; urgency=low + + * Allow user to select HTTP browser in configuration dialog + (Closes: #225699) + + -- Julien Lemoine Mon, 5 Jan 2004 14:50:12 +0100 + +centericq (4.9.9-2) unstable; urgency=low + + * Fixed a bug in MSN support (added a missing memset in connection string) + (Closes: #223577) + + -- Julien Lemoine Mon, 15 Dec 2003 00:26:16 +0100 + +centericq (4.9.9-1) unstable; urgency=low + + * New upstream release + + -- Julien Lemoine Tue, 25 Nov 2003 14:48:12 +0100 + +centericq (4.9.8-3) unstable; urgency=low + + * Re-apply MSN patch + * Fixed FTBFS when automake wasn't installed + * Changed build dep on libgnutls7-dev (>= 0.8.12-2) + + -- Julien Lemoine Thu, 30 Oct 2003 18:40:50 +0100 + +centericq (4.9.8-2) unstable; urgency=low + + * Do not apply msn patch because it does not work and it cause build + failure on m68k (Closes: #217882) + * Removed MSN from description + + -- Julien Lemoine Sat, 25 Oct 2003 19:23:53 +0200 + +centericq (4.9.8-1) unstable; urgency=low + + * New upstream release + * Applied centericq 4.9.7 msn patch (Closes: #209076( + + -- Julien Lemoine Sat, 25 Oct 2003 14:40:58 +0200 + +centericq (4.9.7-2) unstable; urgency=low + + * Applied patch from "Wim Cools" to support new MSN + protocol (Closes: #207728, #209076) + + -- Julien Lemoine Thu, 23 Oct 2003 13:36:23 +0200 + +centericq (4.9.7-1) unstable; urgency=low + + * New upstream release + * [Upstream] fixed Yahoo! IM support (Closes: #213261) + + -- Julien Lemoine Fri, 3 Oct 2003 00:41:06 +0200 + +centericq (4.9.6-4) unstable; urgency=low + + * Fixed segmentation fault in Alt-F (Closes: #210718) + * Added example of ~/.centericq/external file + + -- Julien Lemoine Sun, 14 Sep 2003 02:05:47 +0200 + +centericq (4.9.6-3) unstable; urgency=low + + * Fixed typo in description (Closes: #208973) + + -- Julien Lemoine Sat, 6 Sep 2003 23:32:31 +0200 + +centericq (4.9.6-2) unstable; urgency=low + + * Added a centericq-utf8 package linked with libncursesw5 instead of + libncurses5 (Closes: #207373) + * Updated to Standards-Version 3.6.1 + + -- Julien Lemoine Wed, 27 Aug 2003 14:21:02 +0200 + +centericq (4.9.6-1) unstable; urgency=low + + * New upstream release + * Removed patches/namespace.dpatch and patches/configure.dpatch, they are + now included in upstream tarball + * Removed patches/appearence.dpatch + + -- Julien Lemoine Fri, 22 Aug 2003 13:26:23 +0200 + +centericq (4.9.5-3) unstable; urgency=low + + * Removed build-dep on automake/autoconf (was to prevent an autoconf bug + in upstream releases) (Closes: #205982) + + -- Julien Lemoine Thu, 21 Aug 2003 12:38:36 +0200 + +centericq (4.9.5-2) unstable; urgency=low + + * Use libgnutls7 instead of libgnutls5 + * Recompile only kkconsui for centericq-fribidi + * Updated to Standards-Version 3.6.0 + + -- Julien Lemoine Fri, 18 Jul 2003 12:38:18 +0200 + +centericq (4.9.5-1) unstable; urgency=low + + * New upstream release + * Updated to Standards-Version 3.5.10 + + -- Julien Lemoine Wed, 16 Jul 2003 09:19:17 +0200 + +centericq (4.9.4-2) unstable; urgency=low + + * Clean up debian/ directory (removed unused file) + * Removed NEWS.gz since it is useless (Closes: #200590) + + -- Julien Lemoine Wed, 9 Jul 2003 13:44:29 +0200 + +centericq (4.9.4-1) unstable; urgency=low + + * New upstream release (bug fix release) + * Fixed typo in icqface.cc (Closes: #192722) + + -- Julien Lemoine Mon, 12 May 2003 20:45:08 +0200 + +centericq (4.9.3-2) unstable; urgency=low + + * Re-enabled ssl support with gnutls5 (was a configuration problem) + + -- Julien Lemoine Fri, 9 May 2003 18:20:10 +0200 + +centericq (4.9.3-1) unstable; urgency=low + + * New upstream release + * Removed flush-log, man, yahoohook, emacs patches (now shipped upstream). + * Removed libglib1.2-dev from build-depends + (Glib is not needed to build the program anymore). + * Disabled ssl support for the moment, when enabled centericq freeze, + this is probably a gnutls problem. + + -- Julien Lemoine Thu, 8 May 2003 03:56:16 +0200 + +centericq (4.9.2-5) unstable; urgency=low + + * Apply new patch from Romain FRANCOISE to add + more emacs bindings : + o M-< : go to the beginning of the buffer + o M-> : go to the end of the buffer + o M-b : move one word backwards + o M-f : move one word forwards + o M-d : delete one word + o C-t : transpose two characters + + -- Julien Lemoine Wed, 23 Apr 2003 01:24:05 +0200 + +centericq (4.9.2-4) unstable; urgency=low + + * Apply patch from Romain FRANCOISE to add + c-u and c-k emacs-bindings (Closes: #189597) + * Fixed cicqsync manpage (was manpage of cicqconv) + * Change http://centericq.net to http://konst.org.ua/centericq/ + since centericq.net site is not accessible + + -- Julien Lemoine Sat, 19 Apr 2003 12:46:46 +0200 + +centericq (4.9.2-3) unstable; urgency=low + + * Added an option in centericq configuration to Enable/Disable + Emacs-binding (sent patch to upstream) + * clean-up package (now use dpatch) + * Updated to Standards-Version 3.5.9 + + -- Julien Lemoine Wed, 16 Apr 2003 18:55:23 +0200 + +centericq (4.9.2-2) unstable; urgency=low + + * Fixed typos in man pages + * Fixed segv with yahoo contacts actives (Closes: #180381) + + -- Julien Lemoine Sat, 15 Feb 2003 23:29:10 +0100 + +centericq (4.9.2-1) unstable; urgency=low + + * New upstream release + * [upstream] Jabber treats correctly all the data encoded in UTF-8 + (Closes: #174718) + + -- Julien Lemoine Tue, 21 Jan 2003 07:17:06 +0100 + +centericq (4.9.1-4) unstable; urgency=low + + * Added emacs binding in texteditor + (support for c-d c-a c-e c-p c-n c-b c-f and c-k) + (Closes: #155707) + + -- Julien Lemoine Fri, 10 Jan 2003 15:26:01 +0100 + +centericq (4.9.1-3) unstable; urgency=low + + * Fixed problem with Recommends section + + -- Julien Lemoine Sun, 29 Dec 2002 03:32:33 +0100 + +centericq (4.9.1-2) unstable; urgency=low + + * Fixed compilation problem with g++ >= 3.0 + (std namespace problem) + + -- Julien Lemoine Sun, 29 Dec 2002 00:29:29 +0100 + +centericq (4.9.1-1) unstable; urgency=low + + * New upstream release + * [Upstream] splits offline messages into pieces 450 bytes each + (Closes: #169205) + + -- Julien Lemoine Sat, 28 Dec 2002 14:10:42 +0100 + +centericq (4.9.0-2) unstable; urgency=low + + * Changed description + (Closes: #172830) + + -- Julien Lemoine Thu, 12 Dec 2002 23:25:33 +0100 + +centericq (4.9.0-1) unstable; urgency=low + + * New upstream release + * compile with libgnutls (enable ssl support for jabber protocole) + (Closes: #170842) + + -- Julien Lemoine Thu, 12 Dec 2002 20:59:36 +0100 + +centericq (4.8.9-1) unstable; urgency=low + + * New upstream release + * Updated description + * Removed build-depend on libsigc++ (see upstream ChangeLog for details) + + -- Julien Lemoine Mon, 2 Dec 2002 21:25:39 +0100 + +centericq (4.8.8-1) unstable; urgency=low + + * New upstream release + * [Upstream] Support for the 6th protocol - Jabber, was added + (Closes: #132991) + * updated to follow the last version of Debian Policy + + -- Julien Lemoine Mon, 25 Nov 2002 22:28:19 +0100 + +centericq (4.8.7-4) unstable; urgency=low + + * Applied 2 patchs from http://centericq.de/archive/contrib/patches/ + fetch-by-one-touch and status-all-on-top + (Closes: #170046) + + -- Julien Lemoine Fri, 22 Nov 2002 11:57:42 +0100 + +centericq (4.8.7-3) unstable; urgency=low + + * Added fr.po from Emmanuel le Chevoir + + -- Julien Lemoine Fri, 15 Nov 2002 09:44:02 +0100 + +centericq (4.8.7-2) unstable; urgency=low + + * Applied patch from David Murn to fix + mail check problem (Closes: #168197) + + -- Julien Lemoine Thu, 7 Nov 2002 23:50:55 +0100 + +centericq (4.8.7-1) unstable; urgency=low + + * New upstream release + * [UPSTREAM] added IRC server password support + (Closes: #167611) + + -- Julien Lemoine Mon, 4 Nov 2002 09:39:46 +0100 + +centericq (4.8.6-5) unstable; urgency=low + + * Added -lstdc++ on final ld + + -- Julien Lemoine Thu, 24 Oct 2002 20:01:36 +0200 + +centericq (4.8.6-4) unstable; urgency=low + + * Added -lstdc++ in configure tests + This should fix compilation problem on hppa + * Added -lstdc++ in final link + This should fix compilation problem on S/390 + + -- Julien Lemoine Thu, 24 Oct 2002 16:59:09 +0200 + +centericq (4.8.6-3) unstable; urgency=low + + * Added more output on compilation problem with hppa + (seem to be a libsgic++ problem) + + -- Julien Lemoine Thu, 24 Oct 2002 14:28:01 +0200 + +centericq (4.8.6-2) unstable; urgency=low + + * Added build dep on libncurses (will fix compilation pb on hppa) + + -- Julien Lemoine Thu, 24 Oct 2002 09:38:52 +0200 + +centericq (4.8.6-1) unstable; urgency=low + + * New upstream release + * [Upstream] Fixed the segfault problem in the Yahoo module. + (Closes: #161309) + + -- Julien Lemoine Fri, 18 Oct 2002 20:10:38 +0200 + +centericq (4.8.5-1) unstable; urgency=low + + * New upstream release + + -- Julien Lemoine Tue, 8 Oct 2002 22:44:14 +0200 + +centericq (4.8.4-2) unstable; urgency=low + + * Add flush on log to save logfile immediately + (Closes: #161305) + * Added documentation in centericq and centericq-fribidi + (Closes: #161466) + + -- Julien Lemoine Fri, 20 Sep 2002 14:42:29 +0200 + +centericq (4.8.4-1) unstable; urgency=low + + * New upstream release + * updated to follow the last version of Debian Policy (4.5.7.0) + + -- Julien Lemoine Tue, 10 Sep 2002 21:28:57 +0200 + +centericq (4.8.3-2) unstable; urgency=low + + * Changed second default navigator from netscape to galeon + * Changed default sound player from play to esdplay + * Added recommends on mozilla | galeon, + + -- Julien Lemoine Tue, 3 Sep 2002 16:20:25 +0200 + +centericq (4.8.3-1) unstable; urgency=low + + * New upstream release + + -- Julien Lemoine Thu, 29 Aug 2002 12:42:39 +0200 + +centericq (4.8.2-4) unstable; urgency=low + + * recompiled to fix 'undefined symbol: _ZTIN4SigC6ObjectE' + + -- Julien Lemoine Sat, 24 Aug 2002 12:49:05 +0200 + +centericq (4.8.2-3) unstable; urgency=low + + * fixed compilation problem with g++-3.1 and g++-3.2 + (patch sent to upstream) + + -- Julien Lemoine Fri, 23 Aug 2002 12:30:44 +0200 + +centericq (4.8.2-2) unstable; urgency=low + + * updated to follow the last version of Debian Policy + + -- Julien Lemoine Wed, 21 Aug 2002 15:46:20 +0200 + +centericq (4.8.2-1) unstable; urgency=low + + * New upstream version + * Improve clean rule + + -- Julien Lemoine Tue, 20 Aug 2002 15:10:53 +0200 + +centericq (4.8.0-1) unstable; urgency=low + + * New upstream version + + -- Julien Lemoine Fri, 9 Aug 2002 20:44:43 +0200 + +centericq (4.7.8-3) unstable; urgency=low + + * Applied patch from David Murn + + -- Julien Lemoine Wed, 17 Jul 2002 03:28:37 +0200 + +centericq (4.7.8-2) unstable; urgency=low + + * Fixed bug in libmsn (Closes: #149096) + + -- Julien Lemoine Tue, 16 Jul 2002 16:45:03 +0200 + +centericq (4.7.8-1) unstable; urgency=low + + * New upstream version + * Fixed cosmetic bugs (Closes: #152914) + + -- Julien Lemoine Tue, 16 Jul 2002 14:56:57 +0200 + +centericq (4.7.7-1) unstable; urgency=low + + * New upstream version + * Fixed bug in yahoo engine (Closes: #149096) + + -- Julien Lemoine Mon, 8 Jul 2002 22:37:45 +0200 + +centericq (4.7.5-1) unstable; urgency=low + + * New upstream version + + -- Julien Lemoine Tue, 18 Jun 2002 23:32:19 +0200 + +centericq (4.7.2-1) unstable; urgency=low + + * New upstream version + * Fixed crash when adding empty users in search (Closes: #148006) + + -- Julien Lemoine Fri, 24 May 2002 15:25:41 +0200 + +centericq (4.7.1-4) unstable; urgency=low + + * improved clean rule + + -- Julien Lemoine Tue, 14 May 2002 12:00:35 +0200 + +centericq (4.7.1-3) unstable; urgency=low + + * fixed iostream problem with g++-3.0 (Closes: #146535) + + -- Julien Lemoine Sat, 11 May 2002 09:41:55 +0200 + +centericq (4.7.1-2) unstable; urgency=low + + * fixed template problem with g++-3.0 (Closes: #146535) + + -- Julien Lemoine Fri, 10 May 2002 23:53:02 +0200 + +centericq (4.7.1-1) unstable; urgency=low + + * New upstream version (Closes: #146220) + * Add fribi-check in configure (Closes: #145967) + + -- Julien Lemoine Wed, 8 May 2002 16:58:00 +0200 + +centericq (4.6.9-5) unstable; urgency=low + + * split centericq in 3 packages : + - centericq-common for data and tools + - centericq + - centericq-fribidi : centericq with fribidi support + + -- Julien Lemoine Wed, 8 May 2002 15:01:41 +0200 + +centericq (4.6.9-4) unstable; urgency=low + + * changed build-depends automake to automake1.5 + + -- Julien Lemoine Fri, 26 Apr 2002 06:26:29 +0200 + +centericq (4.6.9-3) unstable; urgency=low + + * added build-depend on automake to fix problem on m68k + + -- Julien Lemoine Fri, 26 Apr 2002 04:29:06 +0200 + +centericq (4.6.9-2) unstable; urgency=low + + * fixed build depends (Closes: #144372) + + -- Julien Lemoine Wed, 24 Apr 2002 21:00:12 +0200 + +centericq (4.6.9-1) unstable; urgency=low + + * New Maintainer + * made french translation. + Thanks to Emmanuel le Chevoir + * fixed output of usage message (Closes: #135258) + * fixed mail problem (Closes: #107003) + * fixed cycling problem (Closes: #107004) + * activated gettext support + * activated fribidi support (Closes: #132964) + * fixed build failure with g++ 3.0 (Closes: #126837) + (to build centericq with g++ 3.0, libsigc++-dev and lisgigc++0 must + be compiled with g++ 3.0) + + -- Julien Lemoine Sun, 21 Apr 2002 00:52:15 +0200 + +centericq (4.5.1-1.1) unstable; urgency=low + + * NMU to fix RC bug(s). + * (Re-)Applied patch from Lamont to fix build failure when compiled with + gcc-3.0 (as is done on hppa, where gcc-3.0 is the default). Only the parts + that applied to libmsn and libyahoo were applied. The newer libicq in this + package does not have the problems of the old one. Did a test build on + sparc using CC=gcc-3.0 CXX=g++-3.0, and all built fine. Closes: #126837 + + NOTE: Maintainer, please do not overlook NMU's in the future. + + -- Ben Collins Sun, 10 Feb 2002 18:54:03 -0500 + +centericq (4.5.1-1) unstable; urgency=low + + * New upstream version (Closes: #124041) + * Upstream includes new ICQ2000 protocol (Closes: #125985, #128915) + * Fixed spelling in long description (Closes: #124492) + + -- Wouter de Vries Mon, 4 Feb 2002 09:50:02 +0100 + +centericq (4.2.1-1) unstable; urgency=low + + * New upstream version (Closes: #116753) + * Object files removed (Closes: #111447) + + -- Wouter de Vries Thu, 14 Dec 2001 13:36:35 +0100 + +centericq (3.35.22-2) unstable; urgency=low + + * Oops... fixed sound config for real now. + + -- Wouter de Vries Wed, 5 Sep 2001 14:56:49 +0200 + +centericq (3.35.22-1) unstable; urgency=low + + * New upstream version. + * Source-dependency on libncurses5-dev added (Closes: #97987) + * Menu hint added (Closes: #98774) + * Description field updated (Closes: #97827) + * Sound config fixed (Closes: #97827, #97837, #97838) + * Email checking now configurable (Closes: #106980) + * New version packaged (Closes: #107005) + + -- Wouter de Vries Wed, 5 Sep 2001 14:14:25 +0200 + +centericq (3.29.12-1) unstable; urgency=low + + * New upstream version. + + -- Wouter de Vries Thu, 17 May 2001 11:14:18 +0200 + +centericq (3.22.9s-1) unstable; urgency=low + + * Initial release. + + -- Wouter de Vries Tue, 24 Apr 2001 11:16:13 +0200 + --- centerim-4.22.5.orig/debian/centerim-common.dirs +++ centerim-4.22.5/debian/centerim-common.dirs @@ -0,0 +1 @@ +usr/bin --- centerim-4.22.5.orig/debian/copyright +++ centerim-4.22.5/debian/copyright @@ -0,0 +1,34 @@ +This package was debianized by (C) 2007 Anibal Avelar (Fixxxer) + based on centericq packaging on Tue, 24 Jul 2007 +15:00:26 +0100. + +Upstream Original Author: Konstantin Klyagin, + +It was downloaded from http://www.centerim.org/ + +Copyright: + +Copyright (c) 2000-2006 Konstantin Klyagin +Copyright (c) 2007 Stéphane Bisinger, David Riebenbauer, Mark Pustjens, Thomas Graf and more + +All rights reserved. + +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. + +You should have received a copy of the GNU General Public License with the +Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; if not, +write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, +Boston, MA 02110-1301, USA. + +Debian files for this package are (C) 2000-2002 Wouter de Vries +, (C) 2002-2007 Julien Lemoine , and (C) +2007 Anibal Avelar (Fixxxer) and are licensed under the +GPL2 license. --- centerim-4.22.5.orig/debian/centerim.dirs +++ centerim-4.22.5/debian/centerim.dirs @@ -0,0 +1 @@ +usr/bin --- centerim-4.22.5.orig/debian/control +++ centerim-4.22.5/debian/control @@ -0,0 +1,57 @@ +Source: centerim +Section: net +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Anibal Avelar +Build-Depends: debhelper (>= 4.0), libncurses5-dev, gettext (>= 0.10), dpatch, libfribidi-dev (>= 0.10.4-4), autotools-dev, libgnutls-dev, perl, libncursesw5-dev, libcurl4-gnutls-dev, libgpgme11-dev (>= 1.0.1), automake1.4, liblzo2-dev, libtool +Build-Conflicts: libglib1.2-dev, libcurl4-openssl-dev, libcurl3-openssl-dev +Homepage: http://www.centerim.org/ +Standards-Version: 3.7.3 + +Package: centerim-common +Replaces: centericq (<< 4.6.9-5), centericq-common +Architecture: all +Depends: ${shlibs:Depends} +Description: A text-mode multi-protocol instant messenger client (data files) + Centerim is a fork of the centericq instant messaging client + . + Centerim is a text mode menu- and window-driven IM client program that + supports the ICQ2000, Yahoo!, AIM, MSN, IRC and Jabber protocols. + . + This package provides the common files for centerim and centerim-fribidi + binary packages (manpages, locales and documentation). + +Package: centerim +Recommends: firefox-3.0 | www-browser, sox +Architecture: any +Depends: ${shlibs:Depends}, centerim-common +Description: A text-mode multi-protocol instant messenger client + Centerim is a fork of the centericq instant messaging client + . + Centerim is a text mode menu- and window-driven IM client program that + supports the ICQ2000, Yahoo!, AIM, MSN, IRC and Jabber protocols. + +Package: centerim-utf8 +Recommends: firefox-3.0 | www-browser, sox +Architecture: any +Depends: ${shlibs:Depends}, centerim-common +Description: A text-mode multi-protocol instant messenger client + Centerim is a fork of the centericq instant messaging client + . + Centerim is a text mode menu- and window-driven IM client program that + supports the ICQ2000, Yahoo!, AIM, MSN, IRC and Jabber protocols. + . + This is a version of centerim linked with libncursesw5. It may be buggy. + +Package: centerim-fribidi +Recommends: firefox-3.0 | www-browser, sox +Architecture: any +Depends: ${shlibs:Depends}, centerim-common +Description: A text-mode multi-protocol instant messenger client (Hebrew) + Centerim is a fork of the centericq instant messaging client + . + Centerim is a text mode menu- and window-driven IM client program that + supports the ICQ2000, Yahoo!, AIM, MSN, IRC and Jabber protocols. + . + Binary in this package is compiled with fribidi support. Add support for + displaying Hebrew and Arabic texts. --- centerim-4.22.5.orig/debian/README.Debian +++ centerim-4.22.5/debian/README.Debian @@ -0,0 +1,15 @@ +centerim for Debian +--------------- + + * 'play' used by centerim in ~/.centericq/sounds can't mix audio + notifications with already played sounds. 'aplay' from alsa-utils could be + used to overcome this issue. You can edit file ~/.centericq/sounds and + replace play by aplay. + + * Warning : When your are using libnss with a ldap server, you can not put + ldap before dns in file nsswitch.conf for hosts, that cause centericq + freeze, here is a correct line for hosts: + hosts: file dns ldap + + -- Julien Lemoine , Sun, 19 Feb 2006 17:17:09 +0100 +