guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: cl-string-match: Fix dependency.


From: guix-commits
Subject: 02/03: gnu: cl-string-match: Fix dependency.
Date: Mon, 1 Nov 2021 05:59:29 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit 9070bfd2c043258718e4fe444a0f8a4aa4589f37
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Mon Nov 1 10:21:55 2021 +0100

    gnu: cl-string-match: Fix dependency.
    
    * gnu/packages/lisp-xyz.scm (sbcl-cl-string-match)[arguments]: Add
      'fix-dependency' phase.
      [source, home-page]: Update to new URL.
---
 gnu/packages/lisp-xyz.scm | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index b122227..13d585e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -2472,7 +2472,7 @@ values from a string in Common Lisp.")
        (origin
          (method hg-fetch)
          (uri (hg-reference
-               (url "https://bitbucket.org/vityok/cl-string-match/";)
+               (url "https://github.com/vityok/cl-string-match";)
                (changeset changeset)))
          (sha256
           (base32
@@ -2494,13 +2494,20 @@ values from a string in Common Lisp.")
        ;; For testing:
        `(("lisp-unit" ,sbcl-lisp-unit)))
       (arguments
-       `(#:tests? #f))
+       `(#:tests? #f
+         #:phases
+         (modify-phases %standard-phases
+           (add-after 'unpack 'fix-dependency
+             (lambda _
+               (substitute* "cl-string-match.asd"
+                 ((":mgl-pax")
+                  ":mgl-pax/document")))))))
       (synopsis "Set of utilities to manipulate strings in Common Lisp")
       (description
        "@command{cl-strings} is a small, portable, dependency-free set of
 utilities that make it even easier to manipulate text in Common Lisp.  It has
 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
-      (home-page "https://bitbucket.org/vityok/cl-string-match/";)
+      (home-page "https://github.com/vityok/cl-string-match";)
       (license license:bsd-3))))
 
 (define-public cl-string-match



reply via email to

[Prev in Thread] Current Thread [Next in Thread]