[Python-modules-commits] r5576 - in packages/numpy/trunk/debian (3 files)

certik-guest at users.alioth.debian.org certik-guest at users.alioth.debian.org
Mon Jun 9 15:17:34 UTC 2008


    Date: Monday, June 9, 2008 @ 15:17:32
  Author: certik-guest
Revision: 5576

first try to package 1.1

Modified:
  packages/numpy/trunk/debian/changelog
  packages/numpy/trunk/debian/patches/series
Deleted:
  packages/numpy/trunk/debian/patches/03_histogram_fix.diff

Modified: packages/numpy/trunk/debian/changelog
===================================================================
--- packages/numpy/trunk/debian/changelog	2008-06-09 13:35:01 UTC (rev 5575)
+++ packages/numpy/trunk/debian/changelog	2008-06-09 15:17:32 UTC (rev 5576)
@@ -1,3 +1,38 @@
+python-numpy (1:1.1.0-1) UNRELEASED; urgency=low
+
+PLEASE DO NOT UPLOAD, "import numpy" is broken...
+
+  * New upstream release.
+  * debian/patches/03_histogram_fix.diff removed, as it is now applied upstream
+
+TODO, before upload:
+
+In [1]: import numpy
+---------------------------------------------------------------------------
+ImportError                               Traceback (most recent call last)
+
+/home/ondra/debian/packages/build-area/<ipython console> in <module>()
+
+/usr/lib/python2.5/site-packages/numpy/__init__.py in <module>()
+    105     import random
+    106     import ctypeslib
+--> 107     import ma
+        global ma = undefined
+    108 
+    109     # Make these accessible from numpy name-space
+
+ImportError: No module named ma
+
+  
+Lintian warnings:
+
+$ lintian python-numpy_1.1.0-1_i386.changes
+W: python-numpy source: out-of-date-standards-version 3.7.3 (current is 3.8.0)
+W: python-numpy: zero-byte-file-in-doc-directory usr/share/doc/python-numpy/newdtype_example/floatint/__init__.py
+
+
+ -- Ondrej Certik <ondrej at certik.cz>  Mon, 09 Jun 2008 17:02:31 +0200
+
 python-numpy (1:1.0.4-8) unstable; urgency=medium
 
   [ Kumar Appaiah ]

Deleted: packages/numpy/trunk/debian/patches/03_histogram_fix.diff
===================================================================
--- packages/numpy/trunk/debian/patches/03_histogram_fix.diff	2008-06-09 13:35:01 UTC (rev 5575)
+++ packages/numpy/trunk/debian/patches/03_histogram_fix.diff	2008-06-09 15:17:32 UTC (rev 5576)
@@ -1,13 +0,0 @@
-Index: b/numpy/lib/function_base.py
-===================================================================
---- a/numpy/lib/function_base.py
-+++ b/numpy/lib/function_base.py
-@@ -151,7 +151,7 @@
-             mx += 0.5
-         bins = linspace(mn, mx, bins, endpoint=False)
-     else:
--        if(any(bins[1:]-bins[:-1] < 0)):
-+        if(bins[1:]-bins[:-1] < 0).any():
-             raise AttributeError, 'bins must increase monotonically.'
- 
-     # best block size probably depends on processor cache size

Modified: packages/numpy/trunk/debian/patches/series
===================================================================
--- packages/numpy/trunk/debian/patches/series	2008-06-09 13:35:01 UTC (rev 5575)
+++ packages/numpy/trunk/debian/patches/series	2008-06-09 15:17:32 UTC (rev 5576)
@@ -1,3 +1,2 @@
 01_fix_man_hyphens.patch
 02_dontuse_lapack.diff
-03_histogram_fix.diff




More information about the Python-modules-commits mailing list