[Python-modules-commits] r5108 - in packages/matplotlib/trunk/debian (3 files)

morph-guest at users.alioth.debian.org morph-guest at users.alioth.debian.org
Wed Apr 23 17:08:44 UTC 2008


    Date: Wednesday, April 23, 2008 @ 17:08:43
  Author: morph-guest
Revision: 5108

updated python memory api patch, me in uploaders

Modified:
  packages/matplotlib/trunk/debian/changelog
  packages/matplotlib/trunk/debian/control
  packages/matplotlib/trunk/debian/patches/bts-468977_memory_api_usage.patch

Modified: packages/matplotlib/trunk/debian/changelog
===================================================================
--- packages/matplotlib/trunk/debian/changelog	2008-04-23 12:58:46 UTC (rev 5107)
+++ packages/matplotlib/trunk/debian/changelog	2008-04-23 17:08:43 UTC (rev 5108)
@@ -23,10 +23,11 @@
       2.0)" to Depends (sync from Ubuntu)
     - merged Recommends into Depends
     - removed Depends on python-pypaint since that package is unavailable
+    - added myself to Uploaders
   * debian/patches/bts-468977_memory_api_usage.patch
     - fixes Python API memory usage (Closes: #468977)
 
- -- Sandro Tosi <matrixhasu at gmail.com>  Wed, 23 Apr 2008 07:44:18 +0200
+ -- Sandro Tosi <matrixhasu at gmail.com>  Wed, 23 Apr 2008 17:37:03 +0200
 
 matplotlib (0.90.1-4) unstable; urgency=low
 

Modified: packages/matplotlib/trunk/debian/control
===================================================================
--- packages/matplotlib/trunk/debian/control	2008-04-23 12:58:46 UTC (rev 5107)
+++ packages/matplotlib/trunk/debian/control	2008-04-23 17:08:43 UTC (rev 5108)
@@ -2,7 +2,7 @@
 Section: python
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Marco Presi (Zufus) <zufus at debian.org>, Alexandre Fayolle <afayolle at debian.org>, Vittorio Palmisano <redclay81 at gmail.com>, Ondrej Certik <ondrej at certik.cz>
+Uploaders: Marco Presi (Zufus) <zufus at debian.org>, Alexandre Fayolle <afayolle at debian.org>, Vittorio Palmisano <redclay81 at gmail.com>, Ondrej Certik <ondrej at certik.cz>, Sandro Tosi <matrixhasu at gmail.com>
 Build-Depends: debhelper (>= 5.0.38), python-dateutil, python-all-dev (>= 2.3.5-7), python-central (>= 0.5.6), quilt, python-gtk2-dev, python-numpy (>= 1:1.0.4-6), libgtk2.0-dev, libfreetype6-dev, zlib1g-dev, libpng-dev, tk8.4-dev, python-tk, tcl8.4-dev, python-epydoc, python-tz, xbase-clients [!s390], dvipng, python-configobj, python-enthought-traits (>= 2.0), python-qt-dev, python-qt4-dev, python-wxgtk2.6
 XS-Python-Version: all
 Standards-Version: 3.7.3

Modified: packages/matplotlib/trunk/debian/patches/bts-468977_memory_api_usage.patch
===================================================================
--- packages/matplotlib/trunk/debian/patches/bts-468977_memory_api_usage.patch	2008-04-23 12:58:46 UTC (rev 5107)
+++ packages/matplotlib/trunk/debian/patches/bts-468977_memory_api_usage.patch	2008-04-23 17:08:43 UTC (rev 5108)
@@ -1,13 +1,13 @@
 Index: matplotlib/src/_subprocess.c
 ===================================================================
 --- matplotlib.orig/src/_subprocess.c	2008-04-23 07:41:32.772888270 +0200
-+++ matplotlib/src/_subprocess.c	2008-04-23 07:42:07.034840747 +0200
-@@ -60,7 +60,7 @@
++++ matplotlib/src/_subprocess.c	2008-04-23 17:55:35.956461645 +0200
+@@ -104,7 +104,7 @@
  {
- 	sp_handle_object* self;
+ 	if (self->handle != INVALID_HANDLE_VALUE)
+ 		CloseHandle(self->handle);
+-	PyMem_DEL(self);
++	PyObject_DEL(self);
+ }
  
--	self = PyObject_NEW(sp_handle_object, &sp_handle_type);
-+	self = PyMem_NEW(sp_handle_object, &sp_handle_type);
- 	if (self == NULL)
- 		return NULL;
- 
+ static PyMethodDef sp_handle_methods[] = {




More information about the Python-modules-commits mailing list