From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:48909) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j5HkB-0005jB-UG for guix-patches@gnu.org; Fri, 21 Feb 2020 18:30:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j5HkA-0006vj-Lo for guix-patches@gnu.org; Fri, 21 Feb 2020 18:30:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42454) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j5HkA-0006vb-Iy for guix-patches@gnu.org; Fri, 21 Feb 2020 18:30:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j5HkA-0000mV-Ft for guix-patches@gnu.org; Fri, 21 Feb 2020 18:30:02 -0500 Subject: [bug#39730] [PATCH 1/2] gnu: Add cl-clss. References: <87pne7eeam.fsf@bendersteed.tech> In-Reply-To: <87pne7eeam.fsf@bendersteed.tech> Resent-Message-ID: From: Dimakis Dimakakos Date: Sat, 22 Feb 2020 01:28:40 +0200 Message-Id: <20200221232840.32730-1-me@bendersteed.tech> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 39730@debbugs.gnu.org Cc: Dimakakos Dimos From: Dimakakos Dimos * gnu/packages/lisp-xyz.scm (cl-clss, sbcl-clss, ecl-clss): 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 0ed074b766..c6f64ae278 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2019, 2020 Guillaume Le Vaillant ;;; Copyright © 2019 Brett Gilio ;;; Copyright © 2020 Konrad Hinsen +;;; Copyright © 2020 Dimakis Dimakakos ;;; ;;; This file is part of GNU Guix. ;;; @@ -10645,3 +10646,36 @@ lightweight messaging kernel.") (define-public ecl-pzmq (sbcl-package->ecl-package sbcl-pzmq)) + +(define-public sbcl-clss + (let ((revision "1") + (commit "2a8e8615ab55870d4ca01928f3ed3bbeb4e75c8d")) + (package + (name "sbcl-clss") + (version (string-append "0.3.1-" revision "." (string-take commit 7))) + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/Shinmera/clss.git") + (commit commit))) + (sha256 + (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91")) + (file-name + (string-append "clss" version "-checkout")))) + (inputs + `(("array-utils" ,sbcl-array-utils) + ("plump" ,sbcl-plump))) + (build-system asdf-build-system/sbcl) + (synopsis "A DOM tree searching engine based on CSS selectors") + (description "CLSS is a DOM traversal engine based on CSS +selectors. It makes use of the Plump-DOM and is used by lQuery.") + (home-page "https://github.com/Shinmera/clss") + (license license:zlib)))) + +(define-public cl-clss + (sbcl-package->cl-source-package sbcl-clss)) + +(define-public ecl-clss + (sbcl-package->ecl-package sbcl-clss)) -- 2.25.0