From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f1Cl9-0001mW-W0 for guix-patches@gnu.org; Wed, 28 Mar 2018 11:13:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f1Cl5-0004LQ-0H for guix-patches@gnu.org; Wed, 28 Mar 2018 11:13:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49609) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f1Cl4-0004Ki-SY for guix-patches@gnu.org; Wed, 28 Mar 2018 11:13:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1f1Cl4-0006M3-Fi for guix-patches@gnu.org; Wed, 28 Mar 2018 11:13:02 -0400 Subject: bug#30967: [PATCH] gnu: Add tcalc. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <1522197735-23101-1-git-send-email-voronovank@gmail.com> Date: Wed, 28 Mar 2018 17:12:35 +0200 In-Reply-To: <1522197735-23101-1-git-send-email-voronovank@gmail.com> (Nadya Voronova's message of "Wed, 28 Mar 2018 03:42:15 +0300") Message-ID: <87a7ustesc.fsf@gnu.org> 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: Nadya Voronova Cc: 30967-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, Nadya Voronova skribis: > * gnu/packages/maths.scm (tcalc): New variables. Applied with the minor changes below. Thank you! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 10114a35f..eca45d05f 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -24,6 +24,7 @@ ;;; Copyright =C2=A9 2017 Dave Love ;;; Copyright =C2=A9 2018 Jan Nieuwenhuizen ;;; Copyright =C2=A9 2018 Joshua Sierles, Nextjournal +;;; Copyright =C2=A9 2018 Nadya Voronova ;;; ;;; This file is part of GNU Guix. ;;; @@ -3856,8 +3857,8 @@ differencing.") (build-system gnu-build-system) (synopsis "The terminal calculator") (description - "The terminal calculator is a small and helpful program to help users - of the GNU/Linux terminal do calculations simply and quickly. - The formula to be calculated can be fed to tcalc through the command = line.") + "The terminal calculator is a small program to help users of the GNU/L= inux +terminal do calculations simply and quickly. The formula to be calculated= can +be fed to @command{tcalc} through the command line.") (home-page "https://sites.google.com/site/mohammedisam2000/tcalc") - (license gpl3+))) + (license license:gpl3+))) --=-=-=--