From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 27 13:07:26 2020 Received: (at 42048) by debbugs.gnu.org; 27 Jun 2020 17:07:26 +0000 Received: from localhost ([127.0.0.1]:44510 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jpEIY-00084x-DE for submit@debbugs.gnu.org; Sat, 27 Jun 2020 13:07:26 -0400 Received: from eggs.gnu.org ([209.51.188.92]:47948) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jpEIW-00084k-7P for 42048@debbugs.gnu.org; Sat, 27 Jun 2020 13:07:24 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:59196) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jpEIQ-0006eb-UM; Sat, 27 Jun 2020 13:07:18 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=37606 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jpEIQ-0000fP-Ek; Sat, 27 Jun 2020 13:07:18 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Kyle Meyer Subject: Re: [bug#42048] [PATCH 2/6] channels: Make channel introductions public. References: <20200625211605.29316-1-ludo@gnu.org> <20200625211605.29316-2-ludo@gnu.org> <87h7uy7p57.fsf@kyleam.com> Date: Sat, 27 Jun 2020 19:07:16 +0200 In-Reply-To: <87h7uy7p57.fsf@kyleam.com> (Kyle Meyer's message of "Thu, 25 Jun 2020 22:32:20 +0000") Message-ID: <87v9jcl9ob.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 42048 Cc: 42048@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Kyle Meyer skribis: > Ludovic Court=C3=A8s writes: > >> diff --git a/doc/guix.texi b/doc/guix.texi > [...] >> +As a user, you must be @dfn{introduced} to a channel so you can start >> +pulling from it and authenticate its code. The @dfn{channel >> +introduction} tells Guix how to authenticate the first commit of that >> +channel: > > Given the colon, it looks like something is missing here. Based on what > comes next... > >> + >> +As a user, you must provide a @dfn{channel introduction} in your >> +channels file so that Guix knows how to authenticate its first commit. >> +A channel specification, including its introduction, looks something >> +along these lines: >> + >> +@lisp >> +(channel >> + (name 'my-channel) >> + (url "https://example.org/my-channel.git") >> + (introduction >> + (make-channel-introduction >> + "6f0d8cc0d88abb59c324b2990bfee2876016bb86" >> + (openpgp-fingerprint >> + "CABB A931 C0FF EEC6 900D 0CFB 090B 1199 3D9A EBB5")))) >> +@end lisp > > ... perhaps the second "As a user" paragraph was supposed to replace the > first? Yes, you were right. I=E2=80=99ve changed it locally (not resending the wh= ole series). Thanks! Ludo=E2=80=99.