From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55519) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iEJgF-0000yH-8u for guix-patches@gnu.org; Sat, 28 Sep 2019 16:51:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iEJgE-0006bu-32 for guix-patches@gnu.org; Sat, 28 Sep 2019 16:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:42548) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iEJgD-0006bq-Vr for guix-patches@gnu.org; Sat, 28 Sep 2019 16:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iEJgD-0001Wg-SZ for guix-patches@gnu.org; Sat, 28 Sep 2019 16:51:01 -0400 Subject: [bug#37493] [bug#37519] [PATCH v2 1/2] gnu: Add ell. Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20190926142340.29343-1-brice@waegenei.re> <20190926214431.3515-1-brice@waegenei.re> Date: Sat, 28 Sep 2019 22:49:56 +0200 In-Reply-To: <20190926214431.3515-1-brice@waegenei.re> (Brice Waegeneire's message of "Thu, 26 Sep 2019 23:44:30 +0200") Message-ID: <877e5sno23.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Brice Waegeneire Cc: 37519@debbugs.gnu.org, 37493@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi, Brice Waegeneire skribis: > * gnu/packages/linux.scm (ell): New variable. Applied with the changes below to address =E2=80=98guix lint=E2=80=99 warni= ngs. Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index ddbc5cd305..876eb005af 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -5980,6 +5980,7 @@ types and interfaces and translates so that the X server can use them.") (uri (git-reference (url "https://git.kernel.org/pub/scm/libs/ell/ell.git") (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 "1qhlcwhn0gj877yss2ymx1aczghlddzb5v9mm1dgp2zliii3jy10")))) @@ -6004,8 +6005,8 @@ types and interfaces and translates so that the X server can use them.") (home-page "https://01.org/ell") (synopsis "Embedded Linux Library") (description "The Embedded Linux* Library (ELL) provides core, low-level -functionality for system daemons. It typically has no dependencies other than -the Linux kernel, C standard library, and libdl (for dynamic linking). While +functionality for system daemons. It typically has no dependencies other than +the Linux kernel, C standard library, and libdl (for dynamic linking). While ELL is designed to be efficient and compact enough for use on embedded Linux platforms, it is not limited to resource-constrained systems.") (license license:lgpl2.1+))) --=-=-=--