Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/matplotlib/files: matplotlib-0.98.5.2-literal.patch
Date: Wed, 25 Feb 2009 20:33:43
Message-Id: E1LcQRp-00032F-OA@stork.gentoo.org
1 bicatali 09/02/25 20:33:41
2
3 Added: matplotlib-0.98.5.2-literal.patch
4 Log:
5 Re-added pyparsing (hopefully temporarily) for proper outputs and stix-fonts for ttf, but added media-fonts/texcm-ttf. More information on bundled packages, see bug #260025, thanks Michael Droettboom for explanations. Also now builds documentation from source (html and pdf), and added a src_test for regression. Finally added a small patch on string literal from Mandriva.
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-python/matplotlib/files/matplotlib-0.98.5.2-literal.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/files/matplotlib-0.98.5.2-literal.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-python/matplotlib/files/matplotlib-0.98.5.2-literal.patch?rev=1.1&content-type=text/plain
13
14 Index: matplotlib-0.98.5.2-literal.patch
15 ===================================================================
16 --- src/swig_runtime.h.old 2008-12-15 06:34:58.000000000 -0800
17 +++ src/swig_runtime.h 2008-12-30 23:38:49.000000000 -0800
18 @@ -856,7 +856,7 @@
19 Py_DECREF(old_str);
20 Py_DECREF(value);
21 } else {
22 - PyErr_Format(PyExc_RuntimeError, mesg);
23 + PyErr_Format(PyExc_RuntimeError, "%s", mesg);
24 }
25 }