From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:49406) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEIUy-0007NC-VH for guix-patches@gnu.org; Wed, 10 Apr 2019 15:03:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEIUx-0001Cb-99 for guix-patches@gnu.org; Wed, 10 Apr 2019 15:03:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39993) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hEIUw-0001CL-P5 for guix-patches@gnu.org; Wed, 10 Apr 2019 15:03:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hEIUw-0008Nc-HK for guix-patches@gnu.org; Wed, 10 Apr 2019 15:03:02 -0400 Subject: [bug#35221] [PATCH 2/2] Re: Add log4cl packages Resent-Message-ID: Date: Wed, 10 Apr 2019 19:02:09 +0000 From: JesseJohnGildersleve Message-ID: In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: JesseJohnGildersleve Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: "35221@debbugs.gnu.org" <35221@debbugs.gnu.org> Sorry for the mistake, that was an older version of the patch before I lint= ed it and cleaned it up, here is the final version: >From 2ac9d70a78cc48dc4f1011aed09968d5538d8f42 Mon Sep 17 00:00:00 2001 From: frozenpigs Date: Wed, 10 Apr 2019 20:01:21 +0100 Subject: [PATCH] gnu: Add sbcl-log4cl, cl-log4cl and ecl-log4cl --- gnu/packages/lisp.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index e0f3e0ae40..94ddda3bde 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -5239,3 +5239,36 @@ Python's WSGI and Ruby's Rack.") (define-public cl-clack (sbcl-package->cl-source-package sbcl-clack)) + +(define-public sbcl-log4cl + (let ((commit "611e094458504b938d49de904eab141285328c7c") + (revision "1")) + (package + (name "sbcl-log4cl") + (build-system asdf-build-system/sbcl) + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sharplispers/log4cl") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "08jly0s0g26b56hhpfizxsb4j0yvbh946sd205gr42dkzv8l7dsc")))) + ;; FIXME: tests require stefil, sbcl-hu.dwim.stefil wont work + (arguments + `(#:tests? #f)) + (inputs `(("bordeaux-threads" ,sbcl-bordeaux-threads))) + (synopsis "Common Lisp logging framework, modeled after Log4J") + (home-page "https://github.com/7max/log4cl") + (description "This is a common lisp logging framework that can log a= t +various levels and mix text with expressions.") + (license license:asl2.0)))) + +(define-public cl-log4cl + (sbcl-package->cl-source-package sbcl-log4cl)) + +(define-public ecl-log4cl + (sbcl-package->ecl-package sbcl-log4cl)) -- 2.21.0 =E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90 Original Me= ssage =E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90 On Wednesday, April 10, 2019 7:30 PM, JesseJohnGildersleve wrote: > Was meant to be [PATCH 2/2] > > Sent with ProtonMail Secure Email. > > =E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90 Original = Message =E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90=E2=80=90 > On Wednesday, April 10, 2019 7:29 PM, JesseJohnGildersleve JesseJohnGilde= rsleve@protonmail.com wrote: > > > From 5ea316ec3873737bd1a99591d4127dc48d8b471a Mon Sep 17 00:00:00 2001 > > From: frozenpigs purpjuice@protonmail.com > > Date: Wed, 10 Apr 2019 19:25:50 +0100 > > Subject: [PATCH] gnu: Add sbcl-log4cl, cl-log4cl and ecl-log4cl > > > > gnu/packages/lisp.scm | 28 ++++++++++++++++++++++++++++ > > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm > > index e0f3e0ae40..2a51a98240 100644 > > --- a/gnu/packages/lisp.scm > > +++ b/gnu/packages/lisp.scm > > @@ -5239,3 +5239,31 @@ Python's WSGI and Ruby's Rack.") > > (define-public cl-clack > > (sbcl-package->cl-source-package sbcl-clack)) > > > > - > > > > +(define-public sbcl-log4cl > > > > - (package > > > > - (name "sbcl-log4cl") > > > > - (build-system asdf-build-system/sbcl) > > > > - (source > > > > - (origin > > > > > > - (method git-fetch) > > > > > > - (uri (git-reference > > > > > > - (url "https://github.com/sharplispers/log4cl= ") > > > > > > - (commit "611e094458504b938d49de904eab1412853= 28c7c"))) > > > > > > - (sha256 > > > > > > - (base32 > > > > > > - "08jly0s0g26b56hhpfizxsb4j0yvbh946sd205gr42dkzv8l7dsc")))= ) > > > > > > - (arguments > > > > - `(#:tests? #f)) > > > > > > - (inputs `(("bordeaux-threads" ,sbcl-bordeaux-threads))) > > > > - (version "1.1.2") > > > > - (synopsis "Common Lisp logging framework, modeled after Log4J") > > > > - (home-page "https://github.com/7max/log4cl") > > > > - (description "Common Lisp logging framework, modeled after Log4J") > > > > - (license license:expat))) > > > > - > > > > +(define-public cl-log4cl > > > > - (sbcl-package->cl-source-package sbcl-log4cl)) > > > > - > > > > +(define-public ecl-log4cl > > > > - (sbcl-package->ecl-package sbcl-log4cl)) > > > > -- > > 2.21.0