GNU bug report logs - #59025
[PATCH 0/1] gnu: cl-xmls: Update to 3.2.0

Previous Next

Package: guix-patches;

Reported by: Sharlatan Hellseher <sharlatanus <at> gmail.com>

Date: Fri, 4 Nov 2022 20:36:01 UTC

Severity: normal

Tags: patch

Done: Guillaume Le Vaillant <glv <at> posteo.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 59025 in the body.
You can then email your comments to 59025 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#59025; Package guix-patches. (Fri, 04 Nov 2022 20:36:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Fri, 04 Nov 2022 20:36:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Subject: [PATCH 0/1] gnu: cl-xmls: Update to 3.2.0
Date: Fri,  4 Nov 2022 20:34:58 +0000
Hi Guix team,

This patch includes updated version of Common Lisp xmls package. I uses the
latest tag and enables ECL tests.

> ./pre-inst-env guix build sbcl-xmls ecl-xmls cl-xmls --rounds=2
> /gnu/store/wi91acqhkghfissc3q28s53s9mijznad-cl-xmls-3.2.0
> /gnu/store/9s8fn4hb0g5aq7xa94h4iknlmj33gf72-ecl-xmls-3.2.0
> /gnu/store/gvg43p3ia80d8vq19yydw1i8812lg8fc-sbcl-xmls-3.2.0

Sharlatan Hellseher (1):
  gnu: cl-xmls: Update to 3.2.0

 gnu/packages/lisp-xyz.scm | 48 ++++++++++++++++-----------------------
 1 file changed, 20 insertions(+), 28 deletions(-)


base-commit: 3a227cff367e5b5415624adcb15eed124ac7768d
-- 
2.38.0





Information forwarded to guix-patches <at> gnu.org:
bug#59025; Package guix-patches. (Fri, 04 Nov 2022 23:05:01 GMT) Full text and rfc822 format available.

Message #8 received at 59025 <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 59025 <at> debbugs.gnu.org
Cc: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Subject: [PATCH 1/1] gnu: cl-xmls: Update to 3.2.0
Date: Fri,  4 Nov 2022 23:04:44 +0000
* gnu/packages/lisp-xyz.scm (sbcl-xmls): Update to 3.2.0
  [package]{version}: Use the latest upstream tag over commit.

* gnu/packages/lisp-xyz.scm (ecl-xmls): Enable tests.  Issue is resolved
  upstream which allows to enable tests for ECL implementation
  https://github.com/rpgoldman/xmls/issues/3
---
 gnu/packages/lisp-xyz.scm | 48 ++++++++++++++++-----------------------
 1 file changed, 20 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 556ac41afc..7894b13dc5 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -13427,41 +13427,33 @@ (define-public ecl-lambda-fiddle
   (sbcl-package->ecl-package sbcl-lambda-fiddle))
 
 (define-public sbcl-xmls
-  (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
-	(revision "1"))
-    (package
-      (name "sbcl-xmls")
-      (version (git-version "3.0.2" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/rpgoldman/xmls")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
-      (native-inputs
-       (list sbcl-fiveam))
-      (build-system asdf-build-system/sbcl)
-      (home-page "https://github.com/rpgoldman/xmls")
-      (synopsis "Non-validating XML parser for Common Lisp")
-      (description "Xmls is a self-contained, easily embedded parser that
+  (package
+    (name "sbcl-xmls")
+    (version "3.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/rpgoldman/xmls")
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "10406sgap9kdaip7blxldnv6kabiczd6890jgic4pacsrfx6jypk"))))
+    (native-inputs
+     (list sbcl-fiveam))
+    (build-system asdf-build-system/sbcl)
+    (home-page "https://github.com/rpgoldman/xmls")
+    (synopsis "Non-validating XML parser for Common Lisp")
+    (description "Xmls is a self-contained, easily embedded parser that
 recognizes a useful subset of the XML spec.  It provides a simple mapping from
 XML to Lisp structures or s-expressions and back.")
-      (license license:bsd-2))))
+    (license license:bsd-2)))
 
 (define-public cl-xmls
   (sbcl-package->cl-source-package sbcl-xmls))
 
 (define-public ecl-xmls
-  (let ((pkg (sbcl-package->ecl-package sbcl-xmls)))
-    (package
-      (inherit pkg)
-      (arguments
-       (substitute-keyword-arguments (package-arguments pkg)
-         ;; Upstream doesn't have a test suite adapted for ECL.
-         ((#:tests? _ #f) #f))))))
+  (sbcl-package->ecl-package sbcl-xmls))
 
 (define-public sbcl-geco
   (let ((commit "db13c9384491092975f46f6a837ccdc04681a93a")
-- 
2.38.0





Reply sent to Guillaume Le Vaillant <glv <at> posteo.net>:
You have taken responsibility. (Sat, 05 Nov 2022 12:09:02 GMT) Full text and rfc822 format available.

Notification sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
bug acknowledged by developer. (Sat, 05 Nov 2022 12:09:02 GMT) Full text and rfc822 format available.

Message #13 received at 59025-done <at> debbugs.gnu.org (full text, mbox):

From: Guillaume Le Vaillant <glv <at> posteo.net>
To: Sharlatan Hellseher <sharlatanus <at> gmail.com>
Cc: 59025-done <at> debbugs.gnu.org
Subject: Re: [bug#59025] [PATCH 1/1] gnu: cl-xmls: Update to 3.2.0
Date: Sat, 05 Nov 2022 12:08:12 +0000
[Message part 1 (text/plain, inline)]
Patch pushed as 2211f50ec1ebcf5f880454b4133ac40e41abac21.
Thanks.
[signature.asc (application/pgp-signature, inline)]

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 03 Dec 2022 12:24:07 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 258 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.