From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52744) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1defWz-0003jG-QI for guix-patches@gnu.org; Mon, 07 Aug 2017 06:45:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1defWw-0008SM-Ow for guix-patches@gnu.org; Mon, 07 Aug 2017 06:45:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:42608) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1defWw-0008Re-Kz for guix-patches@gnu.org; Mon, 07 Aug 2017 06:45:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1defWw-0001zF-A6 for guix-patches@gnu.org; Mon, 07 Aug 2017 06:45:02 -0400 Subject: [bug#28000] [PATCH] gnu: octave: Build with texinfo. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52122) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1defVz-0003X1-OS for guix-patches@gnu.org; Mon, 07 Aug 2017 06:44:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1defVw-0006E2-Mg for guix-patches@gnu.org; Mon, 07 Aug 2017 06:44:03 -0400 Received: from o166.p8.mailjet.com ([87.253.233.166]:41441) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1defVw-00068Q-D5 for guix-patches@gnu.org; Mon, 07 Aug 2017 06:44:00 -0400 Message-Id: From: Arun Isaac Date: Mon, 7 Aug 2017 16:13:17 +0530 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 28000@debbugs.gnu.org texinfo is required for the built-in documentation. * gnu/packages/maths.scm (octave)[inputs]: Add texinfo. [native-inputs]: Remove texinfo. --- gnu/packages/maths.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index e19c8edc8..44de8a4e6 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -1026,7 +1026,7 @@ can solve two kinds of problems: (license license:bsd-3))) =20 ;; For a fully featured Octave, users are strongly recommended also to in= stall -;; the following packages: texinfo, less, ghostscript, gnuplot. +;; the following packages: less, ghostscript, gnuplot. (define-public octave (package (name "octave") @@ -1058,6 +1058,7 @@ can solve two kinds of problems: ("glu" ,glu) ("zlib" ,zlib) ("curl" ,curl) + ("texinfo" ,texinfo) ("graphicsmagick" ,graphicsmagick))) (native-inputs `(("lzip" ,lzip) @@ -1072,7 +1073,6 @@ can solve two kinds of problems: ;; will still run without them, albeit without the features they ;; provide. ("less" ,less) - ("texinfo" ,texinfo) ("ghostscript" ,ghostscript) ("gnuplot" ,gnuplot))) (arguments --=20 2.13.4 =