[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50476] [PATCH v2 05/10] gnu: guile-dbi: Update to 2.1.8.
From: |
Arun Isaac |
Subject: |
[bug#50476] [PATCH v2 05/10] gnu: guile-dbi: Update to 2.1.8. |
Date: |
Thu, 30 Sep 2021 22:22:30 +0530 |
* 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 1d56bbfede..e250d4d1f2 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1491,7 +1491,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
@@ -1500,7 +1500,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)
@@ -1514,6 +1514,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"))
--
2.33.0
- [bug#50476] [PATCH 10/10] gnu: guile-dbd-sqlite3: Use normal variable instead of @ reference., (continued)
- [bug#50476] [PATCH 10/10] gnu: guile-dbd-sqlite3: Use normal variable instead of @ reference., Arun Isaac, 2021/09/08
- [bug#50476] [PATCH 03/10] gnu: guile-dbi: Search for dbd libraries using native-search-paths., Arun Isaac, 2021/09/08
- [bug#50476] [PATCH 00/10] Update guile-dbi and guile-dbd-*, Ludovic Courtès, 2021/09/21
- [bug#50476] [PATCH 00/10] Update guile-dbi and guile-dbd-*, Arun Isaac, 2021/09/22
- [bug#50476] [PATCH 00/10] Update guile-dbi and guile-dbd-*, Ludovic Courtès, 2021/09/27
- [bug#50476] [PATCH v2 09/10] gnu: Add guile-dbd-mysql., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 01/10] gnu: guile-dbi: Update upstream source., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 02/10] gnu: guile-dbi: Remove hard-coded guile effective version., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 08/10] gnu: guile-dbi-bootstrap: Remove package., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 03/10] gnu: guile-dbi: Search for dbd libraries using native-search-paths., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 05/10] gnu: guile-dbi: Update to 2.1.8.,
Arun Isaac <=
- [bug#50476] [PATCH v2 06/10] gnu: guile-dbd-sqlite3: Inherit from guile-dbi., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 07/10] gnu: guile-dbd-postgresql: Inherit from guile-dbi., Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 00/10] Update guile-dbi and guile-dbd-*, Arun Isaac, 2021/09/30
- [bug#50476] [PATCH v2 04/10] gnu: guile-dbi: Do not return #t from custom phases., Arun Isaac, 2021/09/30
[bug#50476] [PATCH 04/10] gnu: guile-dbi: Do not return #t from custom phases., Arun Isaac, 2021/09/08
[bug#50476] [PATCH 08/10] gnu: guile-dbi-bootstrap: Remove package., Arun Isaac, 2021/09/08
[bug#50476] [PATCH 09/10] gnu: Add guile-dbd-mysql., Arun Isaac, 2021/09/08
[bug#50476] [PATCH 02/10] gnu: guile-dbi: Remove hard-coded guile effective version., Arun Isaac, 2021/09/08
[bug#50476] [PATCH 07/10] gnu: guile-dbd-postgresql: Inherit from guile-dbi., Arun Isaac, 2021/09/08