guix-commits
[Top][All Lists]
Advanced

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

05/10: gnu: guile-dbi: Update to 2.1.8.


From: guix-commits
Subject: 05/10: gnu: guile-dbi: Update to 2.1.8.
Date: Sun, 3 Oct 2021 10:19:53 -0400 (EDT)

arunisaac pushed a commit to branch master
in repository guix.

commit 658cc8b25f123c4c71d39fcd170d86b17c157516
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Wed Sep 8 19:43:41 2021 +0530

    gnu: guile-dbi: Update to 2.1.8.
    
    * gnu/packages/guile-xyz.scm (guile-dbi): Update to 2.1.8.
    [arguments]: Add chdir phase.
---
 gnu/packages/guile-xyz.scm | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 66bcab0..0363dd6 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1518,7 +1518,7 @@ library}.")
 (define-public guile-dbi
   (package
     (name "guile-dbi")
-    (version "2.1.6")
+    (version "2.1.8")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -1527,7 +1527,7 @@ library}.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0nswd067gvpy9pnig409ympkw29akh9lb2i6g3w7r18g1s0ivah2"))))
+                "123m4j82bi60s1v95pjh4djb7bh6zdwmljbpyg7zq8ni2gyal7lw"))))
     (build-system gnu-build-system)
     (arguments
      `(#:modules (((guix build guile-build-system)
@@ -1541,6 +1541,11 @@ library}.")
               (target-guile-effective-version (assoc-ref %build-inputs 
"guile"))))
        #:phases
        (modify-phases %standard-phases
+         (add-after 'unpack 'chdir
+           (lambda _
+             ;; The upstream Git repository contains all the code, so change
+             ;; to the directory specific to guile-dbi.
+             (chdir "guile-dbi")))
          (add-after 'install 'patch-extension-path
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let* ((out (assoc-ref outputs "out"))



reply via email to

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