From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 25 18:32:30 2020 Received: (at 42048) by debbugs.gnu.org; 25 Jun 2020 22:32:30 +0000 Received: from localhost ([127.0.0.1]:41456 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1joaQ1-0006dS-ON for submit@debbugs.gnu.org; Thu, 25 Jun 2020 18:32:29 -0400 Received: from pb-smtp20.pobox.com ([173.228.157.52]:59787) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1joaPy-0006dJ-Pu for 42048@debbugs.gnu.org; Thu, 25 Jun 2020 18:32:28 -0400 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id E9E67E39FE; Thu, 25 Jun 2020 18:32:25 -0400 (EDT) (envelope-from kyle@kyleam.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:in-reply-to:references:date:message-id:mime-version :content-type:content-transfer-encoding; s=sasl; bh=asaGpIyrk2po 9A/vjKNqYwCKY5w=; b=V2TfX+0s40zZELnEhZXLx8ZQ2VjY2QcTuf6GDCvHdFuA bT8lAttQhtzEpwIUmkUyIV/mtP6kFpTnM58GkS5Yn/HJCViFkCOstmvMk0pqo6gq wQ9JrfEWx4xp+1Ann7lGXaBYwBZ6SSzAtkM+dQBLr6e12FHECSYPhtJkFRPx1Zc= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id E23B4E39FD; Thu, 25 Jun 2020 18:32:25 -0400 (EDT) (envelope-from kyle@kyleam.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=kyleam.com; h=from:to:cc:subject:in-reply-to:references:date:message-id:mime-version:content-type:content-transfer-encoding; s=mesmtp; bh=zvlSKKkskViO4WWMnBpv2jP6WYtx3c/1Rf4OjvCoc8U=; b=2uF0u11JsT77kzWpo5AK4pRG7E1DiqKacAE+7yLz8ZcyJLaUaHSx1Lnn1JCXgCjSDd4iwb+oQzijIkQL+wCiC1hxZr/FpIUh4/XjVfhVljIfQUQuTNmQFY2DuJQ6T1tC+/+/kD/s0W+ZZMrTfmWDoAMRwtBmIM4Bt1Szrqrvbdg= Received: from localhost (unknown [45.33.91.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 37844E39FA; Thu, 25 Jun 2020 18:32:23 -0400 (EDT) (envelope-from kyle@kyleam.com) From: Kyle Meyer To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#42048] [PATCH 2/6] channels: Make channel introductions public. In-Reply-To: <20200625211605.29316-2-ludo@gnu.org> References: <20200625211605.29316-1-ludo@gnu.org> <20200625211605.29316-2-ludo@gnu.org> Date: Thu, 25 Jun 2020 22:32:20 +0000 Message-ID: <87h7uy7p57.fsf@kyleam.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Pobox-Relay-ID: BD1FD292-B733-11EA-B264-B0405B776F7B-24757444!pb-smtp20.pobox.com X-Spam-Score: -0.7 (/) 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: -1.7 (-) 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?