From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54899) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dRl3K-00058q-F0 for guix-patches@gnu.org; Sun, 02 Jul 2017 16:01:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dRl3G-00031K-IG for guix-patches@gnu.org; Sun, 02 Jul 2017 16:01:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46389) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dRl3G-000310-Du for guix-patches@gnu.org; Sun, 02 Jul 2017 16:01:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dRl3G-0005M6-6G for guix-patches@gnu.org; Sun, 02 Jul 2017 16:01:02 -0400 Subject: bug#27540: [PATCH v2] gnu: Add toxic. Resent-To: guix-patches@gnu.org Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87wp7q7ucp.fsf@gnu.org> <20170702182416.27509-1-theodoros.for@openmailbox.org> Date: Sun, 02 Jul 2017 21:59:50 +0200 In-Reply-To: <20170702182416.27509-1-theodoros.for@openmailbox.org> (Theodoros Foradis's message of "Sun, 2 Jul 2017 21:24:16 +0300") Message-ID: <8760fa624p.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: Theodoros Foradis Cc: 27540-done@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Thanks, applied with the minor changes below (the first one reported by =E2=80=98guix lint=E2=80=99, and the removal of @code because =E2=80=9CToxi= c=E2=80=9D and =E2=80=9Cncurses=E2=80=9D are a proper names.) Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm index 2c9724366..aefd24b84 100644 --- a/gnu/packages/messaging.scm +++ b/gnu/packages/messaging.scm @@ -1407,7 +1407,8 @@ building the IRC clients and bots.") version ".tar.gz")) (sha256 (base32 - "0166lqb47f4kj34mhi57aqmnk9mh4hsicmbdsj6ag54sy1zicy20")))) + "0166lqb47f4kj34mhi57aqmnk9mh4hsicmbdsj6ag54sy1zicy20")) + (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no tests @@ -1441,9 +1442,9 @@ building the IRC clients and bots.") `(("pkg-config" ,pkg-config))) (home-page "https://github.com/JFreegman/toxic") (synopsis "Tox chat client using ncurses") - (description "@code{toxic} is a console-based instant messaging client, -using @code{c-toxcore} and @code{ncurses}. It provides audio calls, sound and -desktop notifications, and python scripting support.") + (description "Toxic is a console-based instant messaging client, using +c-toxcore and ncurses. It provides audio calls, sound and desktop +notifications, and Python scripting support.") (license license:gpl3+))) ;;; messaging.scm ends here --=-=-=--