Your message dated Sun, 12 Oct 2008 19:38:05 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#501618: fixed in matplotlib 0.98.3-4
has caused the Debian Bug report #501618,
regarding matplotlib will FTBFS on alpha, hppa, mips, mipsel, sparc
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
501618: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501618
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: matplotlib
Version: 0.98.3-3
Severity: serious
Tags: patch

Matplotlib FTBFS due to a recent change in the platform identifier
for alpha, hppa, mips, mipsel and sparc. The attached patch is an
update to debian/patches/build_fix.patch which fixes the problem.


Thiemo
Index: matplotlib-0.98.3/setupext.py
===================================================================
--- matplotlib-0.98.3.orig/setupext.py	2008-10-08 23:30:35.000000000 +0000
+++ matplotlib-0.98.3/setupext.py	2008-10-08 23:31:19.000000000 +0000
@@ -47,8 +47,12 @@
 
 basedir = {
     'win32'  : ['win32_static',],
-    'linux2' : ['/usr/local', '/usr'],
-    'linux'  : ['/usr/local', '/usr',],
+    'linux2-alpha' : ['/usr'],
+    'linux2-hppa' : ['/usr'],
+    'linux2-mips' : ['/usr'],
+    'linux2-sparc' : ['/usr'],
+    'linux2' : ['/usr'],
+    'linux'  : ['/usr',],
     'cygwin' : ['/usr/local', '/usr',],
     'darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local',
                 '/usr', '/sw', '/usr/X11R6'],
@@ -56,8 +60,10 @@
     'freebsd5' : ['/usr/local', '/usr'],
     'freebsd6' : ['/usr/local', '/usr'],
     'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
-    'gnukfreebsd5' : ['/usr/local', '/usr'],
-    'gnukfreebsd6' : ['/usr/local', '/usr'],
+    'gnukfreebsd5' : ['/usr'],
+    'gnukfreebsd6' : ['/usr'],
+    'gnukfreebsd7' : ['/usr'],
+    'gnukfreebsd8' : ['/usr'],
     'aix5' : ['/usr/local'],
 }
 
@@ -977,6 +983,10 @@
         tk_inc = os.path.normpath(os.path.join(tk_lib_dir,
                                                        '../../include'))
 
+    if not os.path.exists(tk_inc):
+        tk_inc = os.path.normpath(os.path.join(tk_lib_dir,
+                                               '../../../include/tcl' + tk_ver))
+
     if not os.path.exists(os.path.join(tk_inc, 'tk.h')):
         tk_inc = tcl_inc
 
@@ -994,10 +1004,10 @@
     return tcl_lib, tcl_inc, tk_lib, tk_inc
 
 def hardcoded_tcl_config():
-    tcl_inc = "/usr/local/include"
-    tk_inc = "/usr/local/include"
-    tcl_lib = "/usr/local/lib"
-    tk_lib = "/usr/local/lib"
+    tcl_inc = "/usr/include/tcl8.4"
+    tk_inc = "/usr/include/tcl8.4"
+    tcl_lib = "/usr/lib"
+    tk_lib = "/usr/lib"
     return tcl_lib, tcl_inc, tk_lib, tk_inc
 
 def add_tk_flags(module):

--- End Message ---
--- Begin Message ---
Source: matplotlib
Source-Version: 0.98.3-4

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

matplotlib_0.98.3-4.diff.gz
  to pool/main/m/matplotlib/matplotlib_0.98.3-4.diff.gz
matplotlib_0.98.3-4.dsc
  to pool/main/m/matplotlib/matplotlib_0.98.3-4.dsc
python-matplotlib-data_0.98.3-4_all.deb
  to pool/main/m/matplotlib/python-matplotlib-data_0.98.3-4_all.deb
python-matplotlib-dbg_0.98.3-4_amd64.deb
  to pool/main/m/matplotlib/python-matplotlib-dbg_0.98.3-4_amd64.deb
python-matplotlib-doc_0.98.3-4_all.deb
  to pool/main/m/matplotlib/python-matplotlib-doc_0.98.3-4_all.deb
python-matplotlib_0.98.3-4_amd64.deb
  to pool/main/m/matplotlib/python-matplotlib_0.98.3-4_amd64.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.
Sandro Tosi <[EMAIL PROTECTED]> (supplier of updated matplotlib 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.8
Date: Mon, 25 Aug 2008 23:28:30 +0200
Source: matplotlib
Binary: python-matplotlib python-matplotlib-data python-matplotlib-doc 
python-matplotlib-dbg
Architecture: source all amd64
Version: 0.98.3-4
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team <[EMAIL PROTECTED]>
Changed-By: Sandro Tosi <[EMAIL PROTECTED]>
Description: 
 python-matplotlib - Python based plotting system in a style similar to Matlab
 python-matplotlib-data - Python based plotting system (data package)
 python-matplotlib-dbg - Python based plotting system (debug extension)
 python-matplotlib-doc - Python based plotting system (documentation package)
Closes: 490992 495287 501618
Changes: 
 matplotlib (0.98.3-4) unstable; urgency=low
 .
   [ Sandro Tosi ]
   * Release in collaboration with Benjamin Drung, from Ubuntu
   * debian/control
     - applied Benjamin Drung patch to split dep fields a package per line;
       thanks to him; Closes: #495287
     - replaced dep on python-dev with python; thanks to Benjamin Drung for the
       notice
     - depends reorganization: dvipng moved to recommends (optional tex
       depends), python-configobj and python-enthought-traits to suggests
       (experimental support); Closes: #490992
     - added python-matplotlib-dbg package and python-all-dbg, python-numpy-dbg
       to build-dep
     - removed python-gd depends since no more needed
   * debian/README.debian
     - removed outdated info, added notice for MATPLOTLIBDATA env variable
   * debian/python-matplotlib-data.install
     - added matplotlib.conf installation
   * debian/patches/matplotlibrc_fix.patch
     - refreshed to match new upstream code
   * debian/rules
     - added build, clean and install for -dbg package
 .
   [ Ondrej Certik ]
   * debian/patches/build_fix.patch updated thanks to Thiemo Seufer.
       Closes: #501618
Checksums-Sha1: 
 e69f670edecf724c6034b407d7c0e7f81e5513b1 2029 matplotlib_0.98.3-4.dsc
 89edb90208c7a98cc0a1ce0744296db9706f675c 17558 matplotlib_0.98.3-4.diff.gz
 438f6d3bb1f31758c46115edebc61b5adb028231 1121762 
python-matplotlib-data_0.98.3-4_all.deb
 af276f50a11508a49f3280adcfe12c1709c07d21 16859262 
python-matplotlib-doc_0.98.3-4_all.deb
 7fea0380e63cc2173fc749485864cc1ad274f04b 2316650 
python-matplotlib_0.98.3-4_amd64.deb
 995028061fff9ef43538a183ca7b3b03faf76ce3 10825400 
python-matplotlib-dbg_0.98.3-4_amd64.deb
Checksums-Sha256: 
 411175b118888c9df00c7d98bd2325698571bb59f6cf3053b22dd55f8af4a8a7 2029 
matplotlib_0.98.3-4.dsc
 f7dfe1fbd2f9f4eb1f09920b18f3845bea59c04ef268a80fd2fdeb3aa3e1e026 17558 
matplotlib_0.98.3-4.diff.gz
 f53955370b0cde7353f6b070f25fc57176a5ce24889aad6cd4f995c91bff8d9c 1121762 
python-matplotlib-data_0.98.3-4_all.deb
 1148c56934847bd3544a6da8d7335b5d405a1f442c89401282fd393303f5aac7 16859262 
python-matplotlib-doc_0.98.3-4_all.deb
 0b875b27972a48c49bb0e48f21103e28ce85cc5d20a232dbf7309fe17c1302df 2316650 
python-matplotlib_0.98.3-4_amd64.deb
 f628c33a5b26f3066699557f2e293b0fb9248757359612916b003e41bce2443e 10825400 
python-matplotlib-dbg_0.98.3-4_amd64.deb
Files: 
 1b56789839dbc03ed6a782456ef66aaf 2029 python optional matplotlib_0.98.3-4.dsc
 a53fee21d6aab023049f5536c5963c9f 17558 python optional 
matplotlib_0.98.3-4.diff.gz
 8aafc895270d7426b6fbc91d3214672b 1121762 python optional 
python-matplotlib-data_0.98.3-4_all.deb
 648bb946938c6213d4214b875a3b9c49 16859262 doc optional 
python-matplotlib-doc_0.98.3-4_all.deb
 f1b5012d990cf5367dd30f3cc5b59fbc 2316650 python optional 
python-matplotlib_0.98.3-4_amd64.deb
 70d73f1fb16d1c578628064c087fe299 10825400 python extra 
python-matplotlib-dbg_0.98.3-4_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkjw4h0ACgkQB01zfu119ZkaSwCbBfgArYbCZ0Y6+nfLxTFO3XuY
mGAAoNE4Xq/gWWAqE+a+fIzEd74hPSik
=89EX
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to