Your message dated Sun, 16 Jan 2005 04:32:15 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#287433: fixed in python-numarray 1.1.1-3
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; 27 Dec 2004 17:47:08 +0000
>From [EMAIL PROTECTED] Mon Dec 27 09:47:08 2004
Return-path: <[EMAIL PROTECTED]>
Received: from njord.oit.pdx.edu [131.252.122.32]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CiyxY-0003Gn-00; Mon, 27 Dec 2004 09:47:08 -0800
Received: from cathcart.sysc.pdx.edu (cathcart.sysc.pdx.edu [131.252.116.20])
by njord.oit.pdx.edu (8.13.1+/8.13.1) with ESMTP id iBRHl6jc004153;
Mon, 27 Dec 2004 09:47:08 -0800
Received: from karlheg by cathcart.sysc.pdx.edu with local (Exim 4.34)
id 1CiyxW-0002IG-PQ; Mon, 27 Dec 2004 09:47:06 -0800
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Karl Hegbloom <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: python-numarray: Patch from CVS
X-Mailer: reportbug 3.5
Date: Mon, 27 Dec 2004 09:47:06 -0800
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-numarray
Version: 1.1.1-1
Severity: normal
A patch has been applied to CVS that should be part of the Debian
packages of python-numarray. For more information, please contact
Ralf Juengling <[EMAIL PROTECTED]>, as I am filing this bug on his
behalf.
--- Src/functions.ch.orig 2003-04-24 07:21:21.000000000 -0700
+++ Src/functions.ch 2004-12-27 09:38:37.873740033 -0800
@@ -5,10 +5,15 @@
return 1.0/numarray_zero;
}
+static double raiseNegDivByZero(void)
+{
+ return -1.0/numarray_zero;
+}
+
static double num_log(double x)
{
if (x == 0.0)
- return raiseDivByZero();
+ return raiseNegDivByZero();
else
return log(x);
}
@@ -16,7 +21,7 @@
static double num_log10(double x)
{
if (x == 0.0)
- return raiseDivByZero();
+ return raiseNegDivByZero();
else
return log10(x);
}
--- Src/libnumarraymodule.c.orig 2004-11-16 14:30:22.000000000 -0800
+++ Src/libnumarraymodule.c 2004-12-27 09:38:37.965750571 -0800
@@ -3539,10 +3539,15 @@
return 1.0/numarray_zero;
}
+static double raiseNegDivByZero(void)
+{
+ return -1.0/numarray_zero;
+}
+
static double num_log(double x)
{
if (x == 0.0)
- return raiseDivByZero();
+ return raiseNegDivByZero();
else
return log(x);
}
@@ -3550,7 +3555,7 @@
static double num_log10(double x)
{
if (x == 0.0)
- return raiseDivByZero();
+ return raiseNegDivByZero();
else
return log10(x);
}
-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.9-9-amd64-k8-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages python-numarray depends on:
ii python 2.3.4-5 An interactive high-level object-o
ii python2.3-numarray 1.1.1-1 An array processing package modell
-- no debconf information
---------------------------------------
Received: (at 287433-close) by bugs.debian.org; 16 Jan 2005 09:35:42 +0000
>From [EMAIL PROTECTED] Sun Jan 16 01:35:42 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 1Cq6ov-00014V-00; Sun, 16 Jan 2005 01:35:41 -0800
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Cq6lb-0002sq-00; Sun, 16 Jan 2005 04:32:15 -0500
From: Matthias Klose <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#287433: fixed in python-numarray 1.1.1-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sun, 16 Jan 2005 04:32:15 -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-numarray
Source-Version: 1.1.1-3
We believe that the bug you reported is fixed in the latest version of
python-numarray, which is due to be installed in the Debian FTP archive:
python-numarray-doc_1.1.1-3_all.deb
to pool/main/p/python-numarray/python-numarray-doc_1.1.1-3_all.deb
python-numarray-ext_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python-numarray-ext_1.1.1-3_i386.deb
python-numarray_1.1.1-3.diff.gz
to pool/main/p/python-numarray/python-numarray_1.1.1-3.diff.gz
python-numarray_1.1.1-3.dsc
to pool/main/p/python-numarray/python-numarray_1.1.1-3.dsc
python-numarray_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python-numarray_1.1.1-3_i386.deb
python2.2-numarray-ext_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python2.2-numarray-ext_1.1.1-3_i386.deb
python2.2-numarray_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python2.2-numarray_1.1.1-3_i386.deb
python2.3-numarray-ext_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python2.3-numarray-ext_1.1.1-3_i386.deb
python2.3-numarray_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python2.3-numarray_1.1.1-3_i386.deb
python2.4-numarray-ext_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python2.4-numarray-ext_1.1.1-3_i386.deb
python2.4-numarray_1.1.1-3_i386.deb
to pool/main/p/python-numarray/python2.4-numarray_1.1.1-3_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.
Matthias Klose <[EMAIL PROTECTED]> (supplier of updated python-numarray 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, 16 Jan 2005 10:10:19 +0100
Source: python-numarray
Binary: python-numarray python2.2-numarray python2.3-numarray-ext
python2.3-numarray python2.4-numarray python-numarray-doc
python2.2-numarray-ext python-numarray-ext python2.4-numarray-ext
Architecture: source i386 all
Version: 1.1.1-3
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose <[EMAIL PROTECTED]>
Changed-By: Matthias Klose <[EMAIL PROTECTED]>
Description:
python-numarray - An array processing package modelled after Python-Numeric
python-numarray-doc - An array processing package for Python (documentation)
python-numarray-ext - Extension modules for Python array processing
python2.2-numarray - An array processing package modelled after Python-Numeric
python2.2-numarray-ext - Extension modules for Python array processing
python2.3-numarray - An array processing package modelled after Python-Numeric
python2.3-numarray-ext - Extension modules for Python array processing
python2.4-numarray - An array processing package modelled after Python-Numeric
python2.4-numarray-ext - Extension modules for Python array processing
Closes: 287433
Changes:
python-numarray (1.1.1-3) unstable; urgency=low
.
* Src/functions.ch: Apply upstream fix (closes: #287433).
Files:
3038092bec86cf7922ba3956687f7131 937 python optional
python-numarray_1.1.1-3.dsc
97da39bd34c540e5ad9c60fdc9aaab3a 6434 python optional
python-numarray_1.1.1-3.diff.gz
bca92e679970bd4d6a819f8d02f98406 1012 python optional
python-numarray_1.1.1-3_i386.deb
f0d2ddfd99b1987c3c97bdb538c08f7d 848 python optional
python-numarray-ext_1.1.1-3_i386.deb
387bec09d23f2b2e527d3b9b763de848 468490 python optional
python2.2-numarray_1.1.1-3_i386.deb
4d34c88caf832d4edc44ad86275cb484 197546 python optional
python2.2-numarray-ext_1.1.1-3_i386.deb
3b4f931f9213717aa600184ce335b4e2 443398 python optional
python2.3-numarray_1.1.1-3_i386.deb
0264c2ef652753f812e53c268a2d1184 197626 python optional
python2.3-numarray-ext_1.1.1-3_i386.deb
3643b7cfbfc5ff21f76873965e20aad8 443284 python optional
python2.4-numarray_1.1.1-3_i386.deb
1d1dfe9991dec7f985ce743d125e779b 197622 python optional
python2.4-numarray-ext_1.1.1-3_i386.deb
61bd1505a5b6a55fae07a4a857884194 240906 doc optional
python-numarray-doc_1.1.1-3_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQFB6jFzStlRaw+TLJwRAt5wAKDJVrL2y7cMAELMUUk/IaLcYiaFRgCglcLY
8fjEGqSia6NazsvXTZpOYw8=
=tLDq
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]