diff -u python-scientific-2.4.11/debian/changelog python-scientific-2.4.11/debian/changelog --- python-scientific-2.4.11/debian/changelog +++ python-scientific-2.4.11/debian/changelog @@ -1,16 +1,23 @@ +python-scientific (2.4.11-1ubuntu1) gutsy; urgency=low + + * NetCDF file causing invalid pointer error (LP: #113803) + * Changed maintainer to MOTU + * Added python-central (>= 0.5) to the build-depends field in debian/control + -- Edoardo Batini Sun, 13 May 2007 22:44:54 +0200 + python-scientific (2.4.11-1build1) feisty; urgency=low * Rebuild for python2.5 as the default python version. -- Matthias Klose Mon, 15 Jan 2007 17:54:27 +0000 -python-scientific (2.4.11-1) unstable; urgency=low + python-scientific (2.4.11-1) unstable; urgency=low * New upstream version. -- Matthias Klose Sun, 22 Oct 2006 02:09:13 +0000 -python-scientific (2.4.9-6) unstable; urgency=low + python-scientific (2.4.9-6) unstable; urgency=low * Fix python-scientific / python-netcdf dependency. Closes: #374801. diff -u python-scientific-2.4.11/debian/control python-scientific-2.4.11/debian/control --- python-scientific-2.4.11/debian/control +++ python-scientific-2.4.11/debian/control @@ -1,10 +1,11 @@ Source: python-scientific Section: python Priority: optional -Maintainer: Matthias Klose +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Matthias Klose Standards-Version: 3.7.2 XS-Python-Version: all -Build-Depends: debhelper (>= 5.0.37.1), python-all-dev (>= 2.3.5-9), netcdfg-dev, python-numeric-ext (> 24.2-3), libmpich1.0-dev, lam4-dev | lam-dev +Build-Depends: debhelper (>= 5.0.37.1), python-all-dev (>= 2.3.5-9), netcdfg-dev, python-numeric-ext (> 24.2-3), libmpich1.0-dev, lam4-dev | lam-dev, python-central (>= 0.5) Package: python-scientific Architecture: all only in patch2: unchanged: --- python-scientific-2.4.11.orig/Src/Scientific_netcdf.c +++ python-scientific-2.4.11/Src/Scientific_netcdf.c @@ -547,7 +547,7 @@ Py_XDECREF(self->attributes); Py_XDECREF(self->name); Py_XDECREF(self->mode); - PyMem_DEL(self); + PyObject_DEL(self); } /* Create file object */ @@ -1142,7 +1142,7 @@ free(self->name); Py_XDECREF(self->file); Py_XDECREF(self->attributes); - PyMem_DEL(self); + PyObject_DEL(self); } /* Create variable object */