From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46738) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1ExW-0003dt-8x for guix-patches@gnu.org; Mon, 10 Feb 2020 14:43:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1ExU-0004ZM-5i for guix-patches@gnu.org; Mon, 10 Feb 2020 14:43:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:49492) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j1ExU-0004Ys-2Z for guix-patches@gnu.org; Mon, 10 Feb 2020 14:43:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j1ExT-0001zi-0Q for guix-patches@gnu.org; Mon, 10 Feb 2020 14:43:03 -0500 Subject: [bug#39552] [PATCH] gnu: Add cl-float-features. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:45848) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j1Ewi-0003Yk-QL for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j1Ewh-0003pn-M0 for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:16 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:42531) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j1Ewh-0003p0-F8 for guix-patches@gnu.org; Mon, 10 Feb 2020 14:42:15 -0500 From: Konrad Hinsen Date: Mon, 10 Feb 2020 17:32:37 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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: 39552@debbugs.gnu.org * gnu/packages/lisp-xyz.scm (sbcl-float-features, cl-float-features, ecl-float-features): New variables. --- gnu/packages/lisp-xyz.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index be1f43c0bc..c75acbc9d4 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -10304,3 +10304,37 @@ of a Common Lisp library.") (define-public ecl-documentation-utils (sbcl-package->ecl-package sbcl-documentation-utils)) + +(define-public sbcl-float-features + (package + (name "sbcl-float-features") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Shinmera/float-features.git") + (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr")))) + (build-system asdf-build-system/sbcl) + (synopsis "Common Lisp IEEE float portability library") + (description + "Portability library for IEEE float features that are not +covered by the Common Lisp standard.") + (home-page "https://github.com/Shinmera/float-features") + (license license:zlib) + (inputs + `(("documentation-utils" ,sbcl-documentation-utils))) + (arguments + `(#:asd-system-name "float-features" + #:asd-file "float-features.asd" + #:tests? #f)))) + +(define-public cl-float-features + (sbcl-package->cl-source-package sbcl-float-features)) + +(define-public ecl-float-features + (sbcl-package->ecl-package sbcl-float-features)) -- 2.25.0