Package: matplotlib Version: 0.99.1.2-2 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd
Hi, currently[1] matplotlib cannot be compiled on GNU/Hurd, because there is no platform entry for hurd in the 'basedir' dictionary in setupext.py. The attached patches adds the correct entry ('gnu0' is the 'sys.platform' on GNU/Hurd). [1] https://buildd.debian.org/fetch.cgi?pkg=matplotlib&arch=hurd-i386&ver=0.99.1.2-2&stamp=1265409444&file=log&as=raw Thanks, -- Pino
--- a/setupext.py +++ b/setupext.py @@ -72,6 +72,7 @@ 'gnukfreebsd7' : ['/usr'], 'gnukfreebsd8' : ['/usr'], 'aix5' : ['/usr/local'], + 'gnu0' : ['/usr'], } import sys, os, stat