From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41742) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDiqE-0008SJ-Eq for guix-patches@gnu.org; Tue, 01 May 2018 23:54:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDiqA-0002CR-Dg for guix-patches@gnu.org; Tue, 01 May 2018 23:54:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38365) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDiqA-0002CH-7m for guix-patches@gnu.org; Tue, 01 May 2018 23:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fDiq9-0001mz-MF for guix-patches@gnu.org; Tue, 01 May 2018 23:54:01 -0400 Subject: [bug#31340] [PATCH] gnu: gnuplot: Update to 2.2.2 Resent-Message-ID: From: Adam Massmann References: <87efiurar2.fsf@gmail.com> Date: Tue, 01 May 2018 23:53:49 -0400 In-Reply-To: <87efiurar2.fsf@gmail.com> (Adam Massmann's message of "Tue, 01 May 2018 23:34:41 -0400") Message-ID: <876046r9v6.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31340@debbugs.gnu.org, massmannak@gmail.com --=-=-= Content-Type: text/plain Apologies, A typo in the commit of the previous patch propagated into the email. This is an update to the stable branch *5.2.2*, not 2.2.2. Sorry for the confusion. A corrected patch with the correct commit message is below. Best, Adam --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-gnuplot-Update-to-5.2.2.patch Content-Transfer-Encoding: quoted-printable >From ee1052631f2cdde60a2abc005c3de39b1f826cf3 Mon Sep 17 00:00:00 2001 From: Adam Massmann Date: Tue, 1 May 2018 23:49:40 -0400 Subject: [PATCH] gnu: gnuplot: Update to 5.2.2 --- gnu/packages/maths.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 00f35659e..d80dd2fd7 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -25,6 +25,7 @@ ;;; Copyright =C2=A9 2018 Jan Nieuwenhuizen ;;; Copyright =C2=A9 2018 Joshua Sierles, Nextjournal ;;; Copyright =C2=A9 2018 Nadya Voronova +;;; Copyright =C2=A9 2018 Adam Massmann ;;; ;;; This file is part of GNU Guix. ;;; @@ -562,7 +563,7 @@ singular value problems.") (define-public gnuplot (package (name "gnuplot") - (version "5.0.6") + (version "5.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/gnuplot/gnuplot/" @@ -570,7 +571,7 @@ singular value problems.") version ".tar.gz")) (sha256 (base32 - "0q5lr6nala3ln6f3yp6g17ziymb9r9gx9zylnw1y3hjmwl9lggjv")))) + "18diyy7aib9mn098x07g25c7jij1x7wbfpicz0z8gwxx08px45m4")))) (build-system gnu-build-system) (inputs `(("readline" ,readline) ("cairo" ,cairo) @@ -580,6 +581,9 @@ singular value problems.") (native-inputs `(("pkg-config" ,pkg-config) ("texlive" ,texlive-tiny))) + (arguments `(#:configure-flags (list (string-append + "--with-texdir=3D" %output + "/texmf-local/tex/latex/gnuplot"= )))) (home-page "http://www.gnuplot.info") (synopsis "Command-line driven graphing utility") (description "Gnuplot is a portable command-line driven graphing --=20 2.11.0 --=-=-=--