From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH 1/1] gnu: python-matplotlib: Fix documentation reST markup error. Date: Wed, 4 Jan 2017 22:22:20 +0100 Message-ID: <20170104212220.20969-2-dannym@scratchpost.org> References: <20170104212220.20969-1-dannym@scratchpost.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39901) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cOt0y-0000oT-Dk for guix-devel@gnu.org; Wed, 04 Jan 2017 16:22:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cOt0x-0007w1-IW for guix-devel@gnu.org; Wed, 04 Jan 2017 16:22:32 -0500 Received: from dd1012.kasserver.com ([85.13.128.8]:37202) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cOt0x-0007vq-CU for guix-devel@gnu.org; Wed, 04 Jan 2017 16:22:31 -0500 In-Reply-To: <20170104212220.20969-1-dannym@scratchpost.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-matplotlib): Fix documentation reST markup error. --- gnu/packages/python.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 4e1a6b4a8..bc9058ba3 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3629,6 +3629,11 @@ transcendental functions).") (sha256 (base32 "1dn05cvd0g984lzhh72wa0z93psgwshbbg93fkab6slx5m3l95av")) + (modules '((guix build utils))) + (snippet + '(substitute* "doc/users/intro.rst" + ;; Fix reST markup error (see ) + (("[[][*][]]") "[#]"))) (patches (search-patches "matplotlib-setupext-tk.patch")))) (build-system python-build-system) (outputs '("out" "doc"))