all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Sharlatan Hellseher <sharlatanus@gmail.com>
To: 66977@debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus@gmail.com>,
	Guillaume Le Vaillant <glv@posteo.net>,
	Katherine Cox-Buday <cox.katherine.e+guix@gmail.com>,
	Munyoki Kilyungi <me@bonfacemunyoki.com>,
	jgart <jgart@dismail.de>
Subject: [bug#66977] [PATCH 04/16] gnu: cl-markdown: Enable tests.
Date: Tue,  7 Nov 2023 00:57:48 +0000	[thread overview]
Message-ID: <9363b156829b9aca52b21ca95084334e9f38d691.1699318202.git.sharlatanus@gmail.com> (raw)
In-Reply-To: <cover.1699318202.git.sharlatanus@gmail.com>

* gnu/packages/lisp-xyz.scm (sbcl-cl-markdown): Enable tests.
[source]: Update URL as maintainer and owner of repository was changed.
[native-inputs]: Add sbcl-lift and sbcl-trivial-shell.
(ecl-cl-markdown): Keep tests disabled.

Change-Id: Ib27a650ca25d1e90c407411f61b3413443db1f15
---
 gnu/packages/lisp-xyz.scm | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 9b47553b14..78f9240f4d 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -17740,12 +17740,14 @@ (define-public sbcl-cl-markdown
        (origin
          (method git-fetch)
          (uri (git-reference
-               (url "https://github.com/gwkkwg/cl-markdown")
+               (url "https://github.com/hraban/cl-markdown")
                (commit commit)))
          (file-name (git-file-name "cl-markdown" version))
          (sha256
           (base32 "1algqwmafipyf194cx9wfhg0pdx1ppx6s444p1pm8yaycbsyla1v"))))
       (build-system asdf-build-system/sbcl)
+      (native-inputs
+       (list sbcl-lift sbcl-trivial-shell))
       (inputs
        `(("anaphora" ,sbcl-anaphora)
          ("cl-containers" ,sbcl-cl-containers)
@@ -17753,10 +17755,6 @@ (define-public sbcl-cl-markdown
          ("dynamic-classes" ,sbcl-dynamic-classes)
          ("metabang-bind" ,sbcl-metabang-bind)
          ("metatilities-base" ,sbcl-metatilities-base)))
-      (arguments
-       ;; NOTE: (Sharlatan-20210107213629+0000) Tests depend on too many not
-       ;; available systems, which  themself are abandoned.
-       `(#:tests? #f))
       (home-page "https://common-lisp.net/project/cl-markdown/")
       (synopsis "Common Lisp rewrite of Markdown")
       (description
@@ -17764,7 +17762,14 @@ (define-public sbcl-cl-markdown
       (license license:expat))))
 
 (define-public ecl-cl-markdown
-  (sbcl-package->ecl-package sbcl-cl-markdown))
+  (let ((pkg (sbcl-package->ecl-package sbcl-cl-markdown)))
+    (package
+      (inherit pkg)
+      (arguments
+       ;; XXX: Tests fail with "The function LIFT::GET-BACKTRACE-AS-STRING is
+       ;; undefined" on ECL.
+       ;; See https://github.com/hraban/cl-markdown/issues/11
+       '(#:tests? #f)))))
 
 (define-public cl-markdown
   (sbcl-package->cl-source-package sbcl-cl-markdown))
-- 
2.41.0





  parent reply	other threads:[~2023-11-06 22:00 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-07  0:56 [bug#66977] [PATCH 00/16] lisp: Update packages and source URL Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 01/16] gnu: cl-trivial-shell: Patch shell path Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 02/16] gnu: cl-lift: Update to 1.7.1-3.a794184 Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 03/16] gnu: cl-markdown: Update to 0.10.6-0.3788802 Sharlatan Hellseher
2023-11-07  0:57 ` Sharlatan Hellseher [this message]
2023-11-07  0:57 ` [bug#66977] [PATCH 05/16] gnu: cl-markdown: Remove package labels Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 06/16] gnu: cl-metacopy: Update to 0.2.0-2.df7856f Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 07/16] gnu: cl-metacopy: Add ECL build Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 08/16] gnu: cl-trivial-timeout: Update to 0.1.5-2.e70d9b4 Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 09/16] gnu: cl-trivial-timeout: Enable tests Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 10/16] gnu: cl-mathstats: Update source URL Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 11/16] gnu: cl-dynamic-classes: Update to 1.0.2-0.ebd7405 Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 12/16] gnu: cl-containers: Update to 0.12.1-4.781ebfe Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 13/16] gnu: cl-metatilities-base: Update to 0.6.6-2.ef04337 Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 14/16] gnu: cl-metabang-bind: Update to 0.8.0-2.0819642 Sharlatan Hellseher
2023-11-07  0:57 ` [bug#66977] [PATCH 15/16] gnu: cl-trivial-backtrace: Update to 1.1.0-2.7f90b4a Sharlatan Hellseher
2023-11-07  0:58 ` [bug#66977] [PATCH 16/16] gnu: cl-graph: Update to 0.10.2-2.c617de3 Sharlatan Hellseher
2023-11-09 14:39 ` bug#66977: [PATCH 00/16] lisp: Update packages and source URL Guillaume Le Vaillant

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9363b156829b9aca52b21ca95084334e9f38d691.1699318202.git.sharlatanus@gmail.com \
    --to=sharlatanus@gmail.com \
    --cc=66977@debbugs.gnu.org \
    --cc=cox.katherine.e+guix@gmail.com \
    --cc=glv@posteo.net \
    --cc=jgart@dismail.de \
    --cc=me@bonfacemunyoki.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.