From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:42155) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioNk3-0001Vp-0H for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioNk1-0003dj-P7 for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:38992) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ioNk1-0003df-MK for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ioNk1-00032k-Jx for guix-patches@gnu.org; Mon, 06 Jan 2020 03:28:01 -0500 Subject: [bug#38965] [PATCH 04/12] gnu: coq: Reword several comments. References: <874kx9xa9u.fsf@gnu.org> In-Reply-To: <874kx9xa9u.fsf@gnu.org> Resent-Message-ID: From: Brett Gilio Date: Mon, 06 Jan 2020 02:27:00 -0600 Message-ID: <87sgktvvl7.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0004-gnu-coq-Reword-several-comments.patch Content-Description: [PATCH 04/12] gnu: coq: Reword several comments. 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: 38965@debbugs.gnu.org >From 0a7b050f58b9f9a014e6512e0b12a0ed1e0f813b Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Mon, 6 Jan 2020 01:34:23 -0600 Subject: [PATCH 04/12] gnu: coq: Reword several comments. To: guix-patches@gnu.org * gnu/packages/coq.scm (coq): Reword several comments to improve readability. --- gnu/packages/coq.scm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnu/packages/coq.scm b/gnu/packages/coq.scm index ce65ed82c8..f0869b0d90 100644 --- a/gnu/packages/coq.scm +++ b/gnu/packages/coq.scm @@ -95,8 +95,8 @@ (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin"))) - ;; These are exact copies of the version without the .opt suffix. - ;; Remove them to save 35 MiB in the result + ;; These files are exact copies without `.opt` extension. + ;; Removing these saves 35 MiB in the resulting package. (delete-file (string-append bin "/coqtop.opt")) (delete-file (string-append bin "/coqidetop.opt"))) #t)) @@ -112,9 +112,9 @@ (lambda _ (with-directory-excursion "test-suite" ;; These two tests fail. - ;; This one fails because the output is not formatted as expected. + ;; Fails because the output is not formatted as expected. (delete-file-recursively "coq-makefile/timing") - ;; This one fails because we didn't build coqtop.byte. + ;; Fails because we didn't build coqtop.byte. (delete-file-recursively "coq-makefile/findlib-package") (invoke "make"))))))) (home-page "https://coq.inria.fr") @@ -123,7 +123,7 @@ "Coq is a proof assistant for higher-order logic, which allows the development of computer programs consistent with their formal specification. It is developed using Objective Caml and Camlp5.") - ;; The code is distributed under lgpl2.1. + ;; The source code is distributed under lgpl2.1. ;; Some of the documentation is distributed under opl1.0+. (license (list license:lgpl2.1 license:opl1.0+)))) -- 2.24.1