From debbugs-submit-bounces@debbugs.gnu.org Wed Apr 01 17:22:57 2020 Received: (at 40246) by debbugs.gnu.org; 1 Apr 2020 21:22:57 +0000 Received: from localhost ([127.0.0.1]:38782 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJkp7-0003Ub-5U for submit@debbugs.gnu.org; Wed, 01 Apr 2020 17:22:57 -0400 Received: from eggs.gnu.org ([209.51.188.92]:46194) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jJkp5-0003U4-KI for 40246@debbugs.gnu.org; Wed, 01 Apr 2020 17:22:55 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:41312) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jJkp0-0004H1-G5; Wed, 01 Apr 2020 17:22:50 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=53824 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jJkoy-0001OM-Tt; Wed, 01 Apr 2020 17:22:49 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Vincent Legoll Subject: Re: [bug#40246] [PATCH] gnu: Add cramfs-tools. References: Date: Wed, 01 Apr 2020 23:22:46 +0200 In-Reply-To: (Vincent Legoll's message of "Thu, 26 Mar 2020 23:34:03 +0100") Message-ID: <87sghmsxy1.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-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 40246 Cc: 40246@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 (-) Hi Vincent, Vincent Legoll skribis: > From ff79a4b2d798bba222ac502a7aa1f7ef0a97e249 Mon Sep 17 00:00:00 2001 > From: Vincent Legoll > Date: Thu, 26 Mar 2020 23:12:53 +0100 > Subject: [PATCH] gnu: Add cramfs-tools. > > * gnu/packages/linux.scm (cramfs-tools): New variable. [...] > + (name "cramfs-tools") > + (version "2.1") > + (source (origin > + (method url-fetch) > + (uri (string-append > + "https://github.com/npitre/cramfs-tools/archive/v" As reported by =E2=80=98guix lint=E2=80=99, please don=E2=80=99t refer to a= generated tarball. Instead you can use a hosted =E2=80=9Chand-crafted=E2=80=9D tarball if ther= e=E2=80=99s one or, more likely, =E2=80=98git-fetch=E2=80=99. > + (synopsis "Tools to manage Cramfs filesystems") > + (description "Cramfs is a Linux filesystem designed to be simple, sm= all, > +and to compress things well. It is used on a number of embedded systems= and > +small devices. This version has additional features such as uncompressed > +blocks and random block placement.") Could you write =E2=80=9Cfile systems=E2=80=9D (two words)? This is by con= vention in GNU and Guix. Thanks in advance! Ludo=E2=80=99.