Keeps you up longer! Levitra

2005-03-20 Thread Kaitlyn X. Yankovic
Levitra is the new drug for impotence! Faster acting and lasts longer!

http://|||.ti4.net/p/www/5/||


4U05Ma7BWa9MHF0VTg3One day something happened which in a roundabout way was 
enlightening.I was sub-divisional police officer of the town, and in an 
aimless, petty kind of way anti-European feeling was very bitter.Let's just 
walk upside down backwards.262626350


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: newspost: tags 300669 patch

2005-03-20 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> package newspost
Ignoring bugs not assigned to: newspost

> tags 300669 patch
Bug#300669: newspost: unexpected server response
There were no tags set.
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]



get any downloadble goods from us

2005-03-20 Thread Preston Wayne
Download anything you want from our site!

http://Calopogon.begitodreamof.com/?a=409

Was Michael enjoying running early last month?
About the necessity of compromise 
orange pair green watermellon
Doesn't Kate's granddaughter miss shaving for a few months?


get any downloadble goods from us

2005-03-20 Thread Irving X. Diehl
Download anything you want from our site!

http://bradyseismic.begitodreamof.com/?a=409

Is the manager missing walking?
All my life I've wanted to be someone; I guess I should have been more specific.	Jane Wagner/Lily Tomlin (1939- )	
green peach blue apple
Don't you regret eating about once a week?


Bug#300669: newspost: unexpected server response

2005-03-20 Thread Anibal Monsalve Salazar
Package: newspost
Owner: Tong Sun <[EMAIL PROTECTED]>

On Sun, Mar 20, 2005 at 04:38:32PM -0800, Tong Sun wrote:
>--- Tong Sun <[EMAIL PROTECTED]> wrote:
>>First of all, thanks for this wonderful piece of tool.  I've tried
>
>Hi again Jim,
>
>Over a month ago, I reported a posting problem with newspost and
>teranews. The problem comes so often that I decided to look into it.
>The result, I have now a fix for a more robust newspost that will
>survive some insane news server status.
>
>The symptom was:
>
>-
>| WARNING: unexpected server response: 240 Article Posted
>| Retrying
>| WARNING: unexpected server response: 240 Article Posted
>| Retrying
>| Socket error: Broken pipe
>`-
>
>The "Broken pipe" error, causes the whole posting to a stop. 
>
>The reason is that, the unexpected server response, "240 Article
>Posted" was not after the article posted, but right after issuing the
>POST command. 
>
>I modified the base/nntp.c to reveal the error:
>
>- - - - >8 - - - -
>   if (strncmp(response, NNTP_PROCEED_WITH_POST, 3) != 0) {
>   /* this shouldn't really happen */
>   fprintf(stderr, "\ncase1 %02x %02x %02x, %s",
>   response[0], response[1], response[2], response);
>   ui_nntp_unknown_response(response);
>   return NORMAL;
>   return POSTING_FAILED;
>   }
>- - - - >8 - - - -
>
>- - - - >8 - - - -
>Posting part 67 of 78: done.
> case1 32 34 30, WARNING: unexpected server response: 240 Article
>Posted
>Posting part 68 of 78: done.
> case1 32 34 30, WARNING: unexpected server response: 240 Article
>Posted
>Posting part 69 of 78: done.
>[..]
>Posting part 71 of 78: done.
> case1 32 34 30, WARNING: unexpected server response: 240 Article
>Posted
>Posting part 72 of 78: done.
>
>Socket error: Broken pipe
>- - - - >8 - - - -
>
>The "case2" is before the other place that calls the "unexpected server
>response" procedure, which was never hit.
>
>You can see once the news server gets into this insane status, waiting
>and retrying won't help. So I change the program to reconnect if this
>"shouldn't really happen" happens.
>
>I kept the modification to the minimum, which is attached in the email.
>
>The minimum modification have proven to be very effective. I've noticed
>that it can resume posting successfully as many times as it requires
>during my post:
>
>Posting part 24 of 45: done.
>Posting part 25 of 45: done.
>
> 32 34 30, WARNING: unexpected server response: 240 Article Posted
>Retrying
>Connecting to free.teranews.com... done.
>Logging on to free.teranews.com... done.
>Posting part 26 of 45: done.
>
>Posting part 31 of 45: done.
>
> 32 34 30, WARNING: unexpected server response: 240 Article Posted
>Retrying
>Connecting to free.teranews.com... done.
>Logging on to free.teranews.com... done.
>Posting part 32 of 45: done.
>
>Posting part 82 of 86: done.
>
> 32 34 30, WARNING: unexpected server response: 240 Article Posted
>Retrying
>Connecting to free.teranews.com... done.
>Logging on to free.teranews.com... done.
>Posting part 83 of 86: done.
>
>I hope you can incorporate my modification in future version of
>newspost, so others can benefit from the modification also. 
>
>Debian QA Group, I didn't get any feed back from Jim last time, could
>you help me correspond with me, or at least incorporate my modification
>in Debian please, since the last version was several years old, so it
>is safe to do so.
>
>thanks
>
>tong
>
>Content-Description: newspost-2.1.1-base-nntp.c.diff
>--- newspost-2.1.1/base/nntp.c 2003-04-23 11:33:23.0 -0400
>+++ ../newspost-2.1.1/base/nntp.c  2005-03-08 11:07:01.0 -0500
>@@ -80,2 +80,31 @@
> boolean no_ui_updates) {
>+  int retval = _nntp_post(subject, data, buffer, length, no_ui_updates);
>+
>+  if (retval == POSTING_FAILED-64) {
>+  /* try log out then back in */
>+  ui_nntp_posting_retry();
>+  nntp_logoff();
>+  socket_close();
>+  sleep(5);
>+
>+  /* create the socket */
>+  ui_socket_connect_start(data->address->data);
>+  retval = socket_create(data->address->data, data->port);
>+  if (retval < 0)
>+  return retval;
>+  ui_socket_connect_done();
>+
>+  ui_nntp_logon_start(data->address->data);
>+  if (nntp_logon(data) == FALSE)
>+  return POSTING_FAILED;
>+  ui_nntp_logon_done();
>+
>+  retval = _nntp_post(subject, data, buffer, length, 
>no_ui_updates);
>+  }
>+  return retval;
>+}
>+
>+int _nntp_post(const char *subject, newspost_data *data, 
>+const char *buffer, long length,
>

Re: newspost unexpected response

2005-03-20 Thread Tong Sun
--- Tong Sun <[EMAIL PROTECTED]> wrote:
> First of all, thanks for this wonderful piece of tool.  I've tried

Hi again Jim,

Over a month ago, I reported a posting problem with newspost and
teranews. The problem comes so often that I decided to look into it.
The result, I have now a fix for a more robust newspost that will
survive some insane news server status.

The symptom was:

-
| WARNING: unexpected server response: 240 Article Posted
| Retrying
| WARNING: unexpected server response: 240 Article Posted
| Retrying
| Socket error: Broken pipe
`-

The "Broken pipe" error, causes the whole posting to a stop. 

The reason is that, the unexpected server response, "240 Article
Posted" was not after the article posted, but right after issuing the
POST command. 

I modified the base/nntp.c to reveal the error:

- - - - >8 - - - -
if (strncmp(response, NNTP_PROCEED_WITH_POST, 3) != 0) {
/* this shouldn't really happen */
fprintf(stderr, "\ncase1 %02x %02x %02x, %s",
response[0], response[1], response[2], response);
ui_nntp_unknown_response(response);
return NORMAL;
return POSTING_FAILED;
}
- - - - >8 - - - -

- - - - >8 - - - -
Posting part 67 of 78: done.
 case1 32 34 30, WARNING: unexpected server response: 240 Article
Posted
Posting part 68 of 78: done.
 case1 32 34 30, WARNING: unexpected server response: 240 Article
Posted
Posting part 69 of 78: done.
[..]
Posting part 71 of 78: done.
 case1 32 34 30, WARNING: unexpected server response: 240 Article
Posted
Posting part 72 of 78: done.

Socket error: Broken pipe
- - - - >8 - - - -

The "case2" is before the other place that calls the "unexpected server
response" procedure, which was never hit.

You can see once the news server gets into this insane status, waiting
and retrying won't help. So I change the program to reconnect if this
"shouldn't really happen" happens.

I kept the modification to the minimum, which is attached in the email.

The minimum modification have proven to be very effective. I've noticed
that it can resume posting successfully as many times as it requires
during my post:

Posting part 24 of 45: done.
Posting part 25 of 45: done.

 32 34 30, WARNING: unexpected server response: 240 Article Posted
Retrying
Connecting to free.teranews.com... done.
Logging on to free.teranews.com... done.
Posting part 26 of 45: done.

Posting part 31 of 45: done.

 32 34 30, WARNING: unexpected server response: 240 Article Posted
Retrying
Connecting to free.teranews.com... done.
Logging on to free.teranews.com... done.
Posting part 32 of 45: done.

Posting part 82 of 86: done.

 32 34 30, WARNING: unexpected server response: 240 Article Posted
Retrying
Connecting to free.teranews.com... done.
Logging on to free.teranews.com... done.
Posting part 83 of 86: done.

I hope you can incorporate my modification in future version of
newspost, so others can benefit from the modification also. 

Debian QA Group, I didn't get any feed back from Jim last time, could
you help me correspond with me, or at least incorporate my modification
in Debian please, since the last version was several years old, so it
is safe to do so.

thanks

tong




__ 
Do you Yahoo!? 
Yahoo! Mail - Easier than ever with enhanced search. Learn more. 
http://info.mail.yahoo.com/mail_250--- newspost-2.1.1/base/nntp.c	2003-04-23 11:33:23.0 -0400
+++ ../newspost-2.1.1/base/nntp.c	2005-03-08 11:07:01.0 -0500
@@ -80,2 +80,31 @@
 	  boolean no_ui_updates) {
+	int retval = _nntp_post(subject, data, buffer, length, no_ui_updates);
+
+	if (retval == POSTING_FAILED-64) {
+		/* try log out then back in */
+		ui_nntp_posting_retry();
+		nntp_logoff();
+		socket_close();
+		sleep(5);
+
+		/* create the socket */
+		ui_socket_connect_start(data->address->data);
+		retval = socket_create(data->address->data, data->port);
+		if (retval < 0)
+			return retval;
+		ui_socket_connect_done();
+
+		ui_nntp_logon_start(data->address->data);
+		if (nntp_logon(data) == FALSE)
+			return POSTING_FAILED;
+		ui_nntp_logon_done();
+
+		retval = _nntp_post(subject, data, buffer, length, no_ui_updates);
+		}
+	return retval;
+}
+
+int _nntp_post(const char *subject, newspost_data *data, 
+	  const char *buffer, long length,
+	  boolean no_ui_updates) {
 	char response[STRING_BUFSIZE];
@@ -97,3 +126,3 @@
 		ui_nntp_unknown_response(response);
-		return POSTING_FAILED;
+		return POSTING_FAILED-64;
 	}


Processed: Bug #279702 ITA: lingoteach packages

2005-03-20 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> Package: lingoteach-ui,lingoteach-lesson,lingoteach-sound
Unknown command or malformed arguments to command.

> retitle 279702 ITA: lingoteach-ui,lingoteach-lesson,lingoteach-sound
Bug#279702: dummy bug to keep the lingoteach packages out of sarge
Changed Bug title.

> owner 279702 [EMAIL PROTECTED]
Bug#279702: ITA: lingoteach-ui,lingoteach-lesson,lingoteach-sound
Owner recorded as [EMAIL PROTECTED]

> 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]



bwbasic_2.20pl2-6_i386.changes ACCEPTED

2005-03-20 Thread Debian Installer

Accepted:
bwbasic_2.20pl2-6.diff.gz
  to pool/main/b/bwbasic/bwbasic_2.20pl2-6.diff.gz
bwbasic_2.20pl2-6.dsc
  to pool/main/b/bwbasic/bwbasic_2.20pl2-6.dsc
bwbasic_2.20pl2-6_i386.deb
  to pool/main/b/bwbasic/bwbasic_2.20pl2-6_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 260977 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of bwbasic_2.20pl2-6_i386.changes

2005-03-20 Thread Archive Administrator
bwbasic_2.20pl2-6_i386.changes uploaded successfully to localhost
along with the files:
  bwbasic_2.20pl2-6.dsc
  bwbasic_2.20pl2-6.diff.gz
  bwbasic_2.20pl2-6_i386.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#293680: marked as done (python-simpy update)

2005-03-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Mar 2005 13:27:40 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#293680: fixed in python-simpy 1.5.1-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; 4 Feb 2005 23:54:17 +
>From [EMAIL PROTECTED] Fri Feb 04 15:54:15 2005
Return-path: <[EMAIL PROTECTED]>
Received: from bm-3a.paradise.net.nz (linda-3.paradise.net.nz) [202.0.58.22] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CxDHC-0004SJ-00; Fri, 04 Feb 2005 15:54:14 -0800
Received: from smtp-2.paradise.net.nz (smtp-2b.paradise.net.nz [202.0.32.211])
 by linda-3.paradise.net.nz (Paradise.net.nz)
 with ESMTP id <[EMAIL PROTECTED]> for
 [EMAIL PROTECTED]; Sat, 05 Feb 2005 12:54:13 +1300 (NZDT)
Received: from [203.79.72.140]
 (203-79-72-140.cable.paradise.net.nz [203.79.72.140])
by smtp-2.paradise.net.nz (Postfix) with ESMTP id 9138D9E988for
 <[EMAIL PROTECTED]>; Sat, 05 Feb 2005 12:53:07 +1300 (NZDT)
Date: Sat, 05 Feb 2005 12:53:07 +1300
From: Tony Vignaux <[EMAIL PROTECTED]>
Subject: python-simpy update
To: [EMAIL PROTECTED]
Message-id: <[EMAIL PROTECTED]>
MIME-version: 1.0
Content-type: text/plain; format=flowed; charset=ISO-8859-1
Content-transfer-encoding: 7bit
X-Accept-Language: en-us, en
User-Agent: Mozilla Thunderbird 1.0 (X11/20041206)
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: python-simpy
Version: 1.5.1
Severity: wishlist

A new sub-release of SimPy, the Python simulation package, is now
available at http://sourceforge.net/projects/simpy/.
The unix version is in SimPy-1.5.1.tar.gz. It can be installed using 
setup.py

MAJOR LICENSE CHANGE:

- Starting with this version 1.5.1, SimPy is being released under the 
GNU Lesser General Public License (LGPL), instead of the GNU GPL. This 
change has been made to encourage commercial/for profit use of SimPy.

- Minor re-release otherwise

- No additional/changed functionality

- Includes unit test file 'MonitorTest.py' which had been  accidentally 
omitted from 1.5

- Provides updated version of 'Bank.html' tutorial.

- Provides an additional tutorial ('Bank2.html') which shows
 how to use the new synchronization constructs introduced in
 SimPy 1.5.
- More logical, cleaner version numbering in files.

- Improved source code/API documentation (produced by  Epydoc).


---
Received: (at 293680-close) by bugs.debian.org; 20 Mar 2005 18:41:03 +
>From [EMAIL PROTECTED] Sun Mar 20 10:41:03 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DD5MF-9U-00; Sun, 20 Mar 2005 10:41:03 -0800
Received: from jeroen by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DD59I-RE-00; Sun, 20 Mar 2005 13:27:40 -0500
From: [EMAIL PROTECTED] (Antal A. Buss)
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#293680: fixed in python-simpy 1.5.1-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Jeroen van Wolffelaar <[EMAIL PROTECTED]>
Date: Sun, 20 Mar 2005 13:27:40 -0500
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-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-Spam-Level: 
X-CrossAssassin-Score: 2

Source: python-simpy
Source-Version: 1.5.1-1

We believe that the bug you reported is fixed in the latest version of
python-simpy, which is due to be installed in the Debian FTP archive:

python-simpy-doc_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python-simpy-doc_1.5.1-1_all.deb
python-simpy_1.5.1-1.diff.gz
  to pool/main/p/python-simpy/python-simpy_1.5.1-1.diff.gz
python-simpy_1.5.1-1.dsc
  to pool/main/p/python-simpy/python-simpy_1.5.1-1.dsc
python-simpy_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python-simpy_1.5.1-1_all.deb
python-simpy_1.5.1.orig.tar.gz
  to pool/main/p/python-simpy/python-simpy_1.5.1.orig.tar.gz
python2.3-simpy-gui_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python2.3-simpy-gui_1.5.1-1_all.deb
python2.3-simpy_1.5.1-1_all.deb
  to pool/main/p/python-

Bug#285003: marked as done (python-simpy new release)

2005-03-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Mar 2005 13:27:40 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#285003: fixed in python-simpy 1.5.1-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; 10 Dec 2004 01:37:01 +
>From [EMAIL PROTECTED] Thu Dec 09 17:37:01 2004
Return-path: <[EMAIL PROTECTED]>
Received: from bm-1a.paradise.net.nz (linda-1.paradise.net.nz) [202.0.58.20] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CcZiP-0003Hz-00; Thu, 09 Dec 2004 17:37:01 -0800
Received: from smtp-3.paradise.net.nz (smtp-3b.paradise.net.nz [202.0.32.212])
 by linda-1.paradise.net.nz (Paradise.net.nz)
 with ESMTP id <[EMAIL PROTECTED]> for
 [EMAIL PROTECTED]; Fri, 10 Dec 2004 14:36:59 +1300 (NZDT)
Received: from [203.79.72.140]
 (203-79-72-140.cable.paradise.net.nz [203.79.72.140])
by smtp-3.paradise.net.nz (Postfix) with ESMTP id 86D3BAE555for
 <[EMAIL PROTECTED]>; Fri, 10 Dec 2004 14:36:59 +1300 (NZDT)
Date: Fri, 10 Dec 2004 14:36:59 +1300
From: Tony Vignaux <[EMAIL PROTECTED]>
Subject: python-simpy new release
To: [EMAIL PROTECTED]
Message-id: <[EMAIL PROTECTED]>
MIME-version: 1.0
Content-type: text/plain; format=flowed; charset=ISO-8859-1
Content-transfer-encoding: 7bit
X-Accept-Language: en-us, en
User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040803)
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: python-simpy
Version: 1.5
Severity: wishlist

A new release of SimPy, the Python simulation package, is now
available at http://sourceforge.net/projects/simpy/. 
The unix version is in SimPy-1.5.tar.gz. It can be installed using setup.py

This release adds two new process interaction capabilities as described 
in the
release notes.

Tony Vignaux


---
Received: (at 285003-close) by bugs.debian.org; 20 Mar 2005 18:41:04 +
>From [EMAIL PROTECTED] Sun Mar 20 10:41:04 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DD5MF-9c-00; Sun, 20 Mar 2005 10:41:03 -0800
Received: from jeroen by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DD59I-RC-00; Sun, 20 Mar 2005 13:27:40 -0500
From: [EMAIL PROTECTED] (Antal A. Buss)
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#285003: fixed in python-simpy 1.5.1-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Jeroen van Wolffelaar <[EMAIL PROTECTED]>
Date: Sun, 20 Mar 2005 13:27:40 -0500
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-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-Spam-Level: 

Source: python-simpy
Source-Version: 1.5.1-1

We believe that the bug you reported is fixed in the latest version of
python-simpy, which is due to be installed in the Debian FTP archive:

python-simpy-doc_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python-simpy-doc_1.5.1-1_all.deb
python-simpy_1.5.1-1.diff.gz
  to pool/main/p/python-simpy/python-simpy_1.5.1-1.diff.gz
python-simpy_1.5.1-1.dsc
  to pool/main/p/python-simpy/python-simpy_1.5.1-1.dsc
python-simpy_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python-simpy_1.5.1-1_all.deb
python-simpy_1.5.1.orig.tar.gz
  to pool/main/p/python-simpy/python-simpy_1.5.1.orig.tar.gz
python2.3-simpy-gui_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python2.3-simpy-gui_1.5.1-1_all.deb
python2.3-simpy_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python2.3-simpy_1.5.1-1_all.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.
Antal A. Buss <[EMAIL PROTECTED]> (supplier of updated python-simpy 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])

Bug#287968: marked as done (python-simpy: A new mainstream version has been released)

2005-03-20 Thread Debian Bug Tracking System
Your message dated Sun, 20 Mar 2005 13:27:40 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#285003: fixed in python-simpy 1.5.1-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; 31 Dec 2004 10:39:13 +
>From [EMAIL PROTECTED] Fri Dec 31 02:39:12 2004
Return-path: <[EMAIL PROTECTED]>
Received: from smtp6.wanadoo.fr [193.252.22.25] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CkKBc-0002DQ-00; Fri, 31 Dec 2004 02:39:12 -0800
Received: from me-wanadoo.net (localhost [127.0.0.1])
by mwinf0608.wanadoo.fr (SMTP Server) with SMTP id 975C91C00250;
Fri, 31 Dec 2004 11:38:38 +0100 (CET)
Received: from [127.0.0.1] (Mix-Clermont-F-105-4-49.w193-248.abo.wanadoo.fr 
[193.248.66.49])
by mwinf0608.wanadoo.fr (SMTP Server) with ESMTP id 99FB81C00253;
Fri, 31 Dec 2004 11:38:36 +0100 (CET)
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Franck Routier <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: python-simpy: A new mainstream version has been released
X-Mailer: reportbug 3.5
Date: Fri, 31 Dec 2004 11:37:39 +0100
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: python-simpy
Severity: wishlist

Simpy 1.5 has been released, with new great features !

It would be cool to have it in debian.

Thanks for your efforts.
Franck

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8
Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=ISO-8859-1)


---
Received: (at 285003-close) by bugs.debian.org; 20 Mar 2005 18:41:04 +
>From [EMAIL PROTECTED] Sun Mar 20 10:41:04 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DD5MF-9c-00; Sun, 20 Mar 2005 10:41:03 -0800
Received: from jeroen by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DD59I-RC-00; Sun, 20 Mar 2005 13:27:40 -0500
From: [EMAIL PROTECTED] (Antal A. Buss)
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#285003: fixed in python-simpy 1.5.1-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Jeroen van Wolffelaar <[EMAIL PROTECTED]>
Date: Sun, 20 Mar 2005 13:27:40 -0500
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-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-Spam-Level: 

Source: python-simpy
Source-Version: 1.5.1-1

We believe that the bug you reported is fixed in the latest version of
python-simpy, which is due to be installed in the Debian FTP archive:

python-simpy-doc_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python-simpy-doc_1.5.1-1_all.deb
python-simpy_1.5.1-1.diff.gz
  to pool/main/p/python-simpy/python-simpy_1.5.1-1.diff.gz
python-simpy_1.5.1-1.dsc
  to pool/main/p/python-simpy/python-simpy_1.5.1-1.dsc
python-simpy_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python-simpy_1.5.1-1_all.deb
python-simpy_1.5.1.orig.tar.gz
  to pool/main/p/python-simpy/python-simpy_1.5.1.orig.tar.gz
python2.3-simpy-gui_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python2.3-simpy-gui_1.5.1-1_all.deb
python2.3-simpy_1.5.1-1_all.deb
  to pool/main/p/python-simpy/python2.3-simpy_1.5.1-1_all.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.
Antal A. Buss <[EMAIL PROTECTED]> (supplier of updated python-simpy 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: Sat,  5 Feb 2005

luxman_0.41-20_i386.changes ACCEPTED

2005-03-20 Thread Debian Installer

Accepted:
luxman_0.41-20.diff.gz
  to pool/main/l/luxman/luxman_0.41-20.diff.gz
luxman_0.41-20.dsc
  to pool/main/l/luxman/luxman_0.41-20.dsc
luxman_0.41-20_i386.deb
  to pool/main/l/luxman/luxman_0.41-20_i386.deb
Announcing to debian-devel-changes@lists.debian.org
Closing bugs: 192189 243197 263618 299857 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of luxman_0.41-20_i386.changes

2005-03-20 Thread Archive Administrator
luxman_0.41-20_i386.changes uploaded successfully to localhost
along with the files:
  luxman_0.41-20.dsc
  luxman_0.41-20.diff.gz
  luxman_0.41-20_i386.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



new download site

2005-03-20 Thread Rolland A. Edwardsd
Download anything you want from our site!

http://asbestiform.begitodreamof.com/?a=409

Do you practice driving in London?
A cynic is a man who knows the price of everything, and the value of nothing.	Oscar Wilde	
purple peach yellow peach
Haven't the photographers already disliked praying?


Bug#300511: ITA: vcg O: vcg -- A Visualization Tool for compiler graphs. I would like to take over maintainence of this package

2005-03-20 Thread Anibal Monsalve Salazar
reassign 300511 wnpp
owner 300511 James Michael DuPont <[EMAIL PROTECTED]>
retitle 300511 ITP: vcg -- A Visualization Tool for compiler graphs
owner 288379 James Michael DuPont <[EMAIL PROTECTED]>
retitle 288379 ITP: vcg -- A Visualization Tool for compiler graphs
merge 288379 300511
thanks

On Sun, Mar 20, 2005 at 09:56:44AM +0100, James Michael DuPont wrote:
>Package: vcg
>Version: 1.30debian-1
>Severity: normal
>
>This is related to the orphaning of vcg Bug#288379
>
>I am working on a new release of the source on
>https://savannah.nongnu.org/projects/vcgdotgnu
>
>It turns out that the source that we recieved from sander that made it
>into debian was not supposed to have been released by him. Therefore I
>am working on unuglifing the source code. I have one file, step2.c done
>and preparing it for release. Me and the other project member ML are
>working on this project now. I would like to take over the debian
>maintence.
>
>thanks
>mike
>
>-- System Information:
>Debian Release: 3.1
>  APT prefers testing
>  APT policy: (990, 'testing'), (300, 'unstable')
>Architecture: i386 (i686)
>Kernel: Linux 2.4.21-xfs
>Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
>
>Versions of packages vcg depends on:
>ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
>ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu

Anibal Monsalve Salazar
--
 .''`. Debian GNU/Linux
: :' : Free Operating System
`. `'  http://debian.org/
  `-   http://v7w.com/anibal


signature.asc
Description: Digital signature


Processed: Re: Bug#300511: ITA: vcg O: vcg -- A Visualization Tool for compiler graphs. I would like to take over maintainence of this package

2005-03-20 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 300511 wnpp
Bug#300511: ITA: vcg O: vcg -- A Visualization Tool for compiler graphs. I 
would like to take over maintainence of this package
Bug reassigned from package `vcg' to `wnpp'.

> owner 300511 James Michael DuPont <[EMAIL PROTECTED]>
Bug#300511: ITA: vcg O: vcg -- A Visualization Tool for compiler graphs. I 
would like to take over maintainence of this package
Owner recorded as James Michael DuPont <[EMAIL PROTECTED]>.

> retitle 300511 ITP: vcg -- A Visualization Tool for compiler graphs
Bug#300511: ITA: vcg O: vcg -- A Visualization Tool for compiler graphs. I 
would like to take over maintainence of this package
Changed Bug title.

> owner 288379 James Michael DuPont <[EMAIL PROTECTED]>
Bug#288379: O: vcg -- A Visualization Tool for compiler graphs
Owner recorded as James Michael DuPont <[EMAIL PROTECTED]>.

> retitle 288379 ITP: vcg -- A Visualization Tool for compiler graphs
Bug#288379: O: vcg -- A Visualization Tool for compiler graphs
Changed Bug title.

> merge 288379 300511
Bug#288379: ITP: vcg -- A Visualization Tool for compiler graphs
Bug#300511: ITP: vcg -- A Visualization Tool for compiler graphs
Merged 288379 300511.

> 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#300511: ITA: vcg O: vcg -- A Visualization Tool for compiler graphs. I would like to take over maintainence of this package

2005-03-20 Thread James Michael DuPont
Package: vcg
Version: 1.30debian-1
Severity: normal

This is related to the orphaning of vcg Bug#288379

I am working on a new release of the source on
https://savannah.nongnu.org/projects/vcgdotgnu

It turns out that the source that we recieved from sander that made it
into debian was not supposed to have been released by him. Therefore I
am working on unuglifing the source code. I have one file, step2.c done
and preparing it for release. Me and the other project member ML are
working on this project now. I would like to take over the debian
maintence.

thanks
mike

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (300, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.21-xfs
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages vcg depends on:
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]