From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57506) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKml4-0007I7-L9 for guix-patches@gnu.org; Thu, 08 Nov 2018 11:02:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKmkx-00038l-0O for guix-patches@gnu.org; Thu, 08 Nov 2018 11:02:14 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:37583) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gKmks-00036D-7z for guix-patches@gnu.org; Thu, 08 Nov 2018 11:02:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gKmks-0001CN-4K for guix-patches@gnu.org; Thu, 08 Nov 2018 11:02:02 -0500 Subject: [bug#33318] [PATCH] doc: Add cindex & command to show versions of dependencies Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57240) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gKmk2-0007Ca-4n for guix-patches@gnu.org; Thu, 08 Nov 2018 11:01:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gKmjw-0002ZM-IV for guix-patches@gnu.org; Thu, 08 Nov 2018 11:01:08 -0500 Received: from mx1.riseup.net ([198.252.153.129]:36747) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gKmjt-0001uj-8H for guix-patches@gnu.org; Thu, 08 Nov 2018 11:01:01 -0500 Received: from cotinga.riseup.net (cotinga-pn.riseup.net [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 11C121A05C9 for ; Thu, 8 Nov 2018 08:00:40 -0800 (PST) Received: from [127.0.0.1] (localhost [127.0.0.1]) by cotinga.riseup.net with ESMTPSA id 47066101F41 for ; Thu, 8 Nov 2018 08:00:38 -0800 (PST) From: swedebugia Message-ID: <3daf961d-eab0-305f-b6e3-76f38b0643da@riseup.net> Date: Thu, 8 Nov 2018 17:00:35 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------1E255B7F43317C1BCC764878" Content-Language: en-US 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: 33318@debbugs.gnu.org This is a multi-part message in MIME format. --------------1E255B7F43317C1BCC764878 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Hi Here is my first patch! -- Cheers Swedebugia --------------1E255B7F43317C1BCC764878 Content-Type: text/x-patch; name="0001-doc-Add-cindex-command-to-show-versions-of-dependenc.patch" Content-Disposition: attachment; filename*0="0001-doc-Add-cindex-command-to-show-versions-of-dependenc.pa"; filename*1="tch" Content-Transfer-Encoding: quoted-printable >From 331dfcdcdf75f943f2395fe829703726200cbb5b Mon Sep 17 00:00:00 2001 From: swedebugia Date: Thu, 8 Nov 2018 16:14:06 +0100 Subject: [PATCH] doc: Add cindex & command to show versions of dependenci= es * doc/guix.texi: Add 2 cindex in 2 sections * doc/guix.texi (Running the Test Suite): Add command to show versions of= dependencies --- doc/guix.texi | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/guix.texi b/doc/guix.texi index 441b65bca..0b906edc1 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -52,6 +52,7 @@ Copyright @copyright{} 2018 Pierre-Antoine Rouby@* Copyright @copyright{} 2018 G=C3=A1bor Boskovits@* Copyright @copyright{} 2018 Florian Pelz@* Copyright @copyright{} 2018 Laura Lazzati@* +Copyright @copyright{} 2018 swedebugia@* =20 Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or @@ -602,6 +603,7 @@ would find yourself badly handicapped by the lack of = the @command{guix} command. In other words, do not remove @code{guix} by running @code{guix package -r guix}. =20 +@cindex producing the binary guix tarball The binary installation tarball can be (re)produced and verified simply by running the following command in the Guix source tree: =20 @@ -743,8 +745,15 @@ make check TESTS=3D"tests/base64.scm" SCM_LOG_DRIVER= _FLAGS=3D"--brief=3Dno" Upon failure, please email @email{bug-guix@@gnu.org} and attach the @file{test-suite.log} file. Please specify the Guix version being used as well as version numbers of the dependencies (@pxref{Requirements}) in -your message. +your message, e.g. by running this command: =20 +@example +guile --version | head -1 && guix --version | head -1 && \ +gcc --version | head -1 && echo -n ``libgcrypt `` && \ +libgcrypt-config --version && make --version | head -1 +@end example + +@cindex whole-system test suite Guix also comes with a whole-system test suite that tests complete GuixSD operating system instances. It can only run on systems where Guix is already installed, using: --=20 2.18.0 --------------1E255B7F43317C1BCC764878--