Bug#337021: dctc: FTBFS on GNU/kFreeBSD
Package: dctc Severity: important Tags: patch Hi, the current version of dctc fails to build on GNU/kFreeBSD. In src/gdl.c on line 751 it returns ENODATA, this error code is not defined on GNU/kFreeBSD. Please replace with ENOBUFS, or better, cope with partially sucessfull reads. It would be nice if it could be fixed in the next upload. Thanks in advance, Petr -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of xconq_7.4.1-3_i386.changes
xconq_7.4.1-3_i386.changes uploaded successfully to localhost along with the files: xconq_7.4.1-3.dsc xconq_7.4.1-3.diff.gz xconq-doc_7.4.1-3_all.deb xconq-common_7.4.1-3_all.deb xconq_7.4.1-3_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xconq_7.4.1-3_i386.changes ACCEPTED
Accepted: xconq-common_7.4.1-3_all.deb to pool/main/x/xconq/xconq-common_7.4.1-3_all.deb xconq-doc_7.4.1-3_all.deb to pool/main/x/xconq/xconq-doc_7.4.1-3_all.deb xconq_7.4.1-3.diff.gz to pool/main/x/xconq/xconq_7.4.1-3.diff.gz xconq_7.4.1-3.dsc to pool/main/x/xconq/xconq_7.4.1-3.dsc xconq_7.4.1-3_i386.deb to pool/main/x/xconq/xconq_7.4.1-3_i386.deb Announcing to debian-devel-changes@lists.debian.org Closing bugs: 145340 169869 317485 332990 Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#316465: sound-recorder: Cannot handle large files
tag 316465 upstream thanks Michael Leibowitz <[EMAIL PROTECTED]> writes: > Package: sound-recorder > Version: 0.06-6.1 > Severity: normal > > Bails on the recording after 2.0G This is not mentioned in documentation Note that this is an inherent limitation of the WAV format; other formats should be fine. You're right about the documentation of course. Thanks, Matej -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: Re: sound-recorder: Cannot handle large files
Processing commands for [EMAIL PROTECTED]: > tag 316465 upstream Bug#316465: sound-recorder: Cannot handle large files There were no tags set. Tags added: upstream > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#232124: marked as done (sound-recorder: Compile fixes for g++ 3.3)
Your message dated Wed, 02 Nov 2005 13:42:59 +0100 with message-id <[EMAIL PROTECTED]> and subject line Bug#232124: fixed in sound-recorder 0.06-6.1 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -- Received: (at submit) by bugs.debian.org; 11 Feb 2004 01:25:02 + >From [EMAIL PROTECTED] Tue Feb 10 17:25:02 2004 Return-path: <[EMAIL PROTECTED]> Received: from roura.ac.upc.es [147.83.33.10] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Aqj7e-0006oa-00; Tue, 10 Feb 2004 17:25:02 -0800 Received: from localhost (dync-34-225.ac.upc.es [147.83.34.225]) by roura.ac.upc.es (8.12.8/8.12.8) with ESMTP id i1B1NwAX015874; Wed, 11 Feb 2004 02:23:58 +0100 (MET) Received: from jtv by localhost with local (Exim 3.36 #1 (Debian)) id 1Aqj6W-0007v6-00; Wed, 11 Feb 2004 02:23:52 +0100 Content-Type: multipart/mixed; boundary="===1158832234==" MIME-Version: 1.0 From: "Jeroen T. Vermeulen" <[EMAIL PROTECTED]> To: Debian Bug Tracking System <[EMAIL PROTECTED]> Subject: sound-recorder: Compile fixes for g++ 3.3 X-Mailer: reportbug 2.43 Date: Wed, 11 Feb 2004 02:23:52 +0100 Message-Id: <[EMAIL PROTECTED]> Sender: "Jeroen T. Vermeulen" <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_02_10 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-5.0 required=4.0 tests=HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_02_10 X-Spam-Level: This is a multi-part MIME message sent by reportbug. --===1158832234== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline Package: sound-recorder Version: 0.06 Severity: serious Tags: patch Justification: no longer builds from source Here's a patch that gets sound-recorder to compile on g++ 3.3. I've had to make one change though, which was to remove the "nocreate" flag from the fstream that's being opened in rcfile.cc. This is annoying, but I get the impression that its effects won't be too serious. Perhaps there's a workaround, but I have no idea what it would be. Otherwise, I'm _guessing_ (not that I've tested this) that it'll work as before. diff -r sound-recorder-0.06/src/cd-player.cc sound-recorder-0.06-patch/src/cd-player.cc 6a7,8 > using namespace std; > diff -r sound-recorder-0.06/src/cd-player.h sound-recorder-0.06-patch/src/cd-player.h 13,16c13,16 < #include < #include < #include < #include --- > #include > #include > #include > #include 34c34 < friend CDplayer; --- > friend class CDplayer; diff -r sound-recorder-0.06/src/codec.h sound-recorder-0.06-patch/src/codec.h 8,9c8,9 < #include < #include --- > #include > #include diff -r sound-recorder-0.06/src/codec_imaadpcm.cc sound-recorder-0.06-patch/src/codec_imaadpcm.cc 6a7,8 > using namespace std; > diff -r sound-recorder-0.06/src/codec_imaadpcm.h sound-recorder-0.06-patch/src/codec_imaadpcm.h 9c9 < #include --- > #include 11c11 < #include --- > #include diff -r sound-recorder-0.06/src/codec_msadpcm.cc sound-recorder-0.06-patch/src/codec_msadpcm.cc 6a7,8 > using namespace std; > diff -r sound-recorder-0.06/src/codec_msadpcm.h sound-recorder-0.06-patch/src/codec_msadpcm.h 9c9 < #include --- > #include 11c11 < #include --- > #include diff -r sound-recorder-0.06/src/codec_pcm.cc sound-recorder-0.06-patch/src/codec_pcm.cc 6a7,8 > using namespace std; > diff -r sound-recorder-0.06/src/codec_pcm.h sound-recorder-0.06-patch/src/codec_pcm.h 9c9 < #include --- > #include diff -r sound-recorder-0.06/src/dsp.cc sound-recorder-0.06-patch/src/dsp.cc 6a7 > using namespace std; diff -r sound-recorder-0.06/src/dsp.h sound-recorder-0.06-patch/src/dsp.h 8,9c8,9 < #include < #include --- > #include > #include diff -r sound-recorder-0.06/src/dspsetting.h sound-recorder-0.06-patch/src/dspsetting.h 8c8 < #include --- > #include diff -r sound-recorder-0.06/src/mixer.cc sound-recorder-0.06-patch/src/mixer.cc 6a7,8 > using namespace std; > diff -r sound-recorder-0.06/src/mixer.h sound-recorder-0.06-patch/src/mixer.h 11c11 < #include --- > #include 25,26c25,26 < const string & readCurrentSetting(); < voidstoreCurrentSetting(const string & setting); --- > const std::string & readCurrentSetting(); > voidstoreCurrentSetting(const std::string & > se
Bug#324335: gnusound: FTBFS (amd64)
tags 324335 +patch thanks With the attached patch 'gnusound' can be compiled on amd64. The patch prevents the compilation and use of 'cpudetect' and other x86 specific functions with x86 assembler instructions. Regards Andreas Jochens diff -urN ../tmp-orig/gnusound-0.7.4/configure ./configure --- ../tmp-orig/gnusound-0.7.4/configure2005-07-06 09:57:07.0 + +++ ./configure 2005-11-02 12:09:59.0 + @@ -1769,7 +1769,7 @@ case $host_cpu in -i686|x86|x86_64|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) +i686|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) cat >>confdefs.h <<\_ACEOF #define HAVE_ARCH_X86 diff -urN ../tmp-orig/gnusound-0.7.4/configure.ac ./configure.ac --- ../tmp-orig/gnusound-0.7.4/configure.ac 2005-07-06 09:56:47.0 + +++ ./configure.ac 2005-11-02 12:09:59.0 + @@ -36,7 +36,7 @@ dnl System type AC_CANONICAL_HOST case $host_cpu in -i686|x86|x86_64|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) +i686|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*) AC_DEFINE(HAVE_ARCH_X86,,[Whether this computer has an x86 CPU]) ;; esac -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: gnusound: FTBFS (amd64)
Processing commands for [EMAIL PROTECTED]: > tags 324335 +patch Bug#324335: INTL:vi Vietnamese translation for zope-ldap Tags were: l10n patch Tags added: patch > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#328652: DOSEMU 1.2.2
Edward, Have you tried Debian?
Bug#146365: marked as done (sirc: n0thing.pl shouldn't default to autorejoin)
Your message dated Wed, 02 Nov 2005 14:32:39 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#146365: fixed in sirc 2.211-8 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -- Received: (at submit) by bugs.debian.org; 9 May 2002 10:38:04 + >From [EMAIL PROTECTED] Thu May 09 05:38:04 2002 Return-path: <[EMAIL PROTECTED]> Received: from castor.mediacompany.com (mail.mediacompany.com) [195.247.9.20] (postfix) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 175lJC-0001rn-00; Thu, 09 May 2002 05:38:02 -0500 Received: from yoda.does-not-exist.org (unknown [62.144.245.71]) by mail.mediacompany.com (Postfix) with ESMTP id 3E96C4802 for <[EMAIL PROTECTED]>; Thu, 9 May 2002 12:37:50 +0200 (CEST) Received: by yoda.does-not-exist.org (Postfix, from userid 1000) id 98EC42ED13; Thu, 9 May 2002 12:35:37 +0200 (CEST) From: Thomas Roessler <[EMAIL PROTECTED]> Subject: sirc: n0thing.pl shouldn't default to autorejoin To: [EMAIL PROTECTED] X-Mailer: bug 3.3.10.1 Message-Id: <[EMAIL PROTECTED]> Date: Thu, 9 May 2002 12:35:37 +0200 (CEST) Delivered-To: [EMAIL PROTECTED] Package: sirc Version: 2.211-5 Severity: grave n0thing.pl does, by default, turn on autorejoin. This is considered antisocial behaviour and can get you banned from IRC channels (including the Debian-specific ones). The default should be fixed. -- System Information Debian Release: 3.0 Kernel Version: Linux yoda 2.4.17 #28 Wed May 1 13:15:42 CEST 2002 i686 unknown Versions of the packages sirc depends on: ii libc62.2.5-4 GNU C Library: Shared libraries and Timezone dat ii libncurses5 5.2.20020112a-7 Shared libraries for terminal handling ii perl 5.6.1-7 Larry Wall's Practical Extraction and Report Lan ^^^ (Provides virtual package perl5) --- Received: (at 146365-close) by bugs.debian.org; 2 Nov 2005 22:36:37 + >From [EMAIL PROTECTED] Wed Nov 02 14:36:37 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EXR9r-0005m9-00; Wed, 02 Nov 2005 14:32:39 -0800 From: Rudolf Weeber <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#146365: fixed in sirc 2.211-8 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 02 Nov 2005 14:32:39 -0800 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Source: sirc Source-Version: 2.211-8 We believe that the bug you reported is fixed in the latest version of sirc, which is due to be installed in the Debian FTP archive: sirc_2.211-8.diff.gz to pool/main/s/sirc/sirc_2.211-8.diff.gz sirc_2.211-8.dsc to pool/main/s/sirc/sirc_2.211-8.dsc sirc_2.211-8_i386.deb to pool/main/s/sirc/sirc_2.211-8_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Rudolf Weeber <[EMAIL PROTECTED]> (supplier of updated sirc package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sun, 23 Oct 2005 19:47:45 +1000 Source: sirc Binary: sirc Architecture: source i386 Version: 2.211-8 Distribution: unstable Urgency: low Maintainer: Rudolf Weeber <[EMAIL PROTECTED]> Changed-By: Rudolf Weeber <[EMAIL PROTECTED]> Description: sirc - The full-featured Perl IRC client Closes: 99416 99449 146365 183014 253955 Changes: sirc (2.211-8) unstable; urgency=low . * New maintainer (closes: #253955) * Applied patch, that makes the cursor return to the prompt, after a line was printed (thanks to upstream!) (closes: #99449) * Added more example scripts (closes: #99416) * Turned off auto_rejoin by default in n0thing.pl (closes: 146365) * Now adds itself to the irc-alternative (closes: #183014) * added update-menus to postin
Bug#183014: marked as done (Could use the irc alternative)
Your message dated Wed, 02 Nov 2005 14:32:39 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#183014: fixed in sirc 2.211-8 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -- Received: (at maintonly) by bugs.debian.org; 1 Mar 2003 18:03:45 + >From [EMAIL PROTECTED] Sat Mar 01 12:03:45 2003 Return-path: <[EMAIL PROTECTED]> Received: from (heimdall) [62.231.71.38] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 18pBKr-0007mW-00; Sat, 01 Mar 2003 12:03:45 -0600 Received: from ymir by heimdall with local (Exim 3.36 #1 (Debian)) id 18pBKp-00063z-00 for <[EMAIL PROTECTED]>; Sat, 01 Mar 2003 20:03:43 +0200 Date: Sat, 1 Mar 2003 20:03:43 +0200 To: [EMAIL PROTECTED] Subject: Could use the irc alternative Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.3i From: Birzan George Cristian <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Status: No, hits=-1.9 required=4.0 tests=HAS_PACKAGE,SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_MUTT version=2.44 X-Spam-Level: Package: sirc Severity: wishlist After asking on debian-devel and not receiving that much feedback, I decided to go ahead and file a wishlist bug against all console IRC clients, suggesting that they use the irc alternative. Reasoning: they provide the same functionality, which, according to the Policy, means the packages _can_ use that alternative. The only exception is epic, which _should_ use that alternative, since epic4 and ircII are using it, and they're all quite similar. I'll file minor bug report against epic. --- Received: (at 183014-close) by bugs.debian.org; 2 Nov 2005 22:38:58 + >From [EMAIL PROTECTED] Wed Nov 02 14:38:58 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EXR9r-0005mB-00; Wed, 02 Nov 2005 14:32:39 -0800 From: Rudolf Weeber <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#183014: fixed in sirc 2.211-8 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 02 Nov 2005 14:32:39 -0800 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 3 Source: sirc Source-Version: 2.211-8 We believe that the bug you reported is fixed in the latest version of sirc, which is due to be installed in the Debian FTP archive: sirc_2.211-8.diff.gz to pool/main/s/sirc/sirc_2.211-8.diff.gz sirc_2.211-8.dsc to pool/main/s/sirc/sirc_2.211-8.dsc sirc_2.211-8_i386.deb to pool/main/s/sirc/sirc_2.211-8_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Rudolf Weeber <[EMAIL PROTECTED]> (supplier of updated sirc package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sun, 23 Oct 2005 19:47:45 +1000 Source: sirc Binary: sirc Architecture: source i386 Version: 2.211-8 Distribution: unstable Urgency: low Maintainer: Rudolf Weeber <[EMAIL PROTECTED]> Changed-By: Rudolf Weeber <[EMAIL PROTECTED]> Description: sirc - The full-featured Perl IRC client Closes: 99416 99449 146365 183014 253955 Changes: sirc (2.211-8) unstable; urgency=low . * New maintainer (closes: #253955) * Applied patch, that makes the cursor return to the prompt, after a line was printed (thanks to upstream!) (closes: #99449) * Added more example scripts (closes: #99416) * Turned off auto_rejoin by default in n0thing.pl (closes: 146365) * Now adds itself to the irc-alternative (closes: #183014) * added update-menus to postinst Files: cb2f572146c95002fbf01614f309f8a6 575 net optional sirc_2.211-8.dsc c524b67a6f78c6768daccbb5204946c0 38273 net optional sirc_2.211-8.dif
Bug#99416: marked as done (sirc: missing scripts)
Your message dated Wed, 02 Nov 2005 14:32:39 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#99416: fixed in sirc 2.211-8 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -- Received: (at submit) by bugs.debian.org; 31 May 2001 19:50:00 + >From [EMAIL PROTECTED] Thu May 31 14:50:00 2001 Return-path: <[EMAIL PROTECTED]> Received: from 64-214-247-150.dsl1.roc.gblx.net (phoenix.overdue.net) [64.214.247.150] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 155YSA-0007iR-00; Thu, 31 May 2001 14:49:54 -0500 Received: by phoenix.overdue.net (Postfix, from userid 1002) id DA9333085D; Thu, 31 May 2001 19:27:45 + (UTC) From: Lazarus Long <[EMAIL PROTECTED]> Subject: sirc: missing scripts To: [EMAIL PROTECTED] X-Mailer: bug 3.3.9 Message-Id: <[EMAIL PROTECTED]> Date: Thu, 31 May 2001 19:27:45 + (UTC) Delivered-To: [EMAIL PROTECTED] Package: sirc Version: 2.211-4 Severity: wishlist In perusing the author's site, I found a number of scripts which are not included in the package. Of greatest interest to me is the following: http://www.iagora.com/~espel/sirc/scripts/nocolor.pl strips those lame mIRC color codes These scripts are also available: http://www.iagora.com/~espel/sirc/scripts/finger.pl fingers accounts in the background - example of how to use fork within a sirc script without breaking it all http://www.iagora.com/~espel/sirc/scripts/ftp.pl an ftp client inside sirc http://www.iagora.com/~espel/sirc/scripts/howl.pl HOWL! adds server menu system, includes improved WWW support and does many little more or less interesting things. http://www.iagora.com/~espel/sirc/scripts/hotmail.pl a script to check your new mail at Hotmail (by JGentry). http://www.iagora.com/~espel/sirc/scripts/quiet.pl filters down a lot of join/part/mode noise http://www.iagora.com/~espel/sirc/scripts/quit.pl lets you /quit with a random message, read from a file http://www.iagora.com/~espel/sirc/scripts/thx.pl adds a message handler, keyword highlighting, better bans and a few more random features http://www.iagora.com/~espel/sirc/scripts/winnuke.pl lets you "winnuke" people (i.e, send TCP out of band data, which is perfectly legal with the protocols, but makes windows crash). I can see omitting the last, but some of the others may be instructional for the users. (If they don't work currently, consider putting them under the doc directory.) -- System Information Debian Release: post-2.2 Kernel Version: Linux phoenix 2.4.5 #1 Sun May 27 00:48:35 UTC 2001 i586 unknown Versions of the packages sirc depends on: ii libc6 2.2.3-1GNU C Library: Shared libraries and Timezone ii libncurses55.2.20010318-1 Shared libraries for terminal handling ii perl 5.6.0-21 Larry Wall's Practical Extracting and Report ^^^ (Provides virtual package perl5) --- Received: (at 99416-close) by bugs.debian.org; 2 Nov 2005 22:38:59 + >From [EMAIL PROTECTED] Wed Nov 02 14:38:59 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EXR9r-0005mF-00; Wed, 02 Nov 2005 14:32:39 -0800 From: Rudolf Weeber <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#99416: fixed in sirc 2.211-8 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 02 Nov 2005 14:32:39 -0800 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 5 Source: sirc Source-Version: 2.211-8 We believe that the bug you reported is fixed in the latest version of sirc, which is due to be installed in the Debian FTP archive: sirc_2.211-8.diff.gz to pool/main/s/sirc/sirc_2.211-8.diff.gz sirc_2.211-8.dsc to pool/main/s/sirc/sirc_2.211-8.dsc sirc_2.211-8_i386.deb to pool/main/s/sirc/sirc_2.211-8_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [
Bug#99449: marked as done (sirc: ssfe's cursor doesn't return to the input line)
Your message dated Wed, 02 Nov 2005 14:32:39 -0800 with message-id <[EMAIL PROTECTED]> and subject line Bug#99449: fixed in sirc 2.211-8 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -- Received: (at submit) by bugs.debian.org; 1 Jun 2001 02:46:40 + >From [EMAIL PROTECTED] Thu May 31 21:46:40 2001 Return-path: <[EMAIL PROTECTED]> Received: from 64-214-247-150.dsl1.roc.gblx.net (phoenix.overdue.net) [64.214.247.150] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 155exO-0006UY-00; Thu, 31 May 2001 21:46:35 -0500 Received: by phoenix.overdue.net (Postfix, from userid 1002) id 24FB13085A; Thu, 31 May 2001 19:07:05 + (UTC) From: Lazarus Long <[EMAIL PROTECTED]> Subject: sirc: ssfe's cursor doesn't return to the input line To: [EMAIL PROTECTED] X-Mailer: bug 3.3.9 Message-Id: <[EMAIL PROTECTED]> Date: Thu, 31 May 2001 19:07:05 + (UTC) Delivered-To: [EMAIL PROTECTED] Package: sirc Version: 2.211-4 Severity: normal Please apply the upstream author's patch, located at http://www.iagora.com/~espel/sirc/scripts/ssfe.diff. -- System Information Debian Release: post-2.2 Kernel Version: Linux phoenix 2.4.5 #1 Sun May 27 00:48:35 UTC 2001 i586 unknown Versions of the packages sirc depends on: ii libc6 2.2.3-1GNU C Library: Shared libraries and Timezone ii libncurses55.2.20010318-1 Shared libraries for terminal handling ii perl 5.6.0-21 Larry Wall's Practical Extracting and Report ^^^ (Provides virtual package perl5) --- Received: (at 99449-close) by bugs.debian.org; 2 Nov 2005 22:39:00 + >From [EMAIL PROTECTED] Wed Nov 02 14:39:00 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EXR9r-0005mH-00; Wed, 02 Nov 2005 14:32:39 -0800 From: Rudolf Weeber <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#99449: fixed in sirc 2.211-8 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Wed, 02 Nov 2005 14:32:39 -0800 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-CrossAssassin-Score: 2 Source: sirc Source-Version: 2.211-8 We believe that the bug you reported is fixed in the latest version of sirc, which is due to be installed in the Debian FTP archive: sirc_2.211-8.diff.gz to pool/main/s/sirc/sirc_2.211-8.diff.gz sirc_2.211-8.dsc to pool/main/s/sirc/sirc_2.211-8.dsc sirc_2.211-8_i386.deb to pool/main/s/sirc/sirc_2.211-8_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Rudolf Weeber <[EMAIL PROTECTED]> (supplier of updated sirc package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sun, 23 Oct 2005 19:47:45 +1000 Source: sirc Binary: sirc Architecture: source i386 Version: 2.211-8 Distribution: unstable Urgency: low Maintainer: Rudolf Weeber <[EMAIL PROTECTED]> Changed-By: Rudolf Weeber <[EMAIL PROTECTED]> Description: sirc - The full-featured Perl IRC client Closes: 99416 99449 146365 183014 253955 Changes: sirc (2.211-8) unstable; urgency=low . * New maintainer (closes: #253955) * Applied patch, that makes the cursor return to the prompt, after a line was printed (thanks to upstream!) (closes: #99449) * Added more example scripts (closes: #99416) * Turned off auto_rejoin by default in n0thing.pl (closes: 146365) * Now adds itself to the irc-alternative (closes: #183014) * added update-menus to postinst Files: cb2f572146c95002fbf01614f309f8a6 575 net optional sirc_2.211-8.dsc c524b67a6f78c6768daccbb5204946c0 38273 net optional sirc_2.211-8.diff.gz b2afde58a632b02b6f959adf80b2eac7 106502 net optional sirc_2.211-8_i386.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.2 (GNU/Linux) iD8