[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#50476] [PATCH v2 07/10] gnu: guile-dbd-postgresql: Inherit from gui
From: |
Arun Isaac |
Subject: |
[bug#50476] [PATCH v2 07/10] gnu: guile-dbd-postgresql: Inherit from guile-dbi. |
Date: |
Thu, 30 Sep 2021 22:22:32 +0530 |
* gnu/packages/guile-xyz.scm (guile-dbd-postgresql): Inherit from
guile-dbi. Remove version, source, build-system, home-page and license fields.
[arguments]: Remove patch-src/Makefile.am phase. Do not return #t from phases.
[native-inputs]: Replace guile-dbi-bootstrap with guile-dbi.
---
gnu/packages/guile-xyz.scm | 72 ++++++++++++--------------------------
1 file changed, 23 insertions(+), 49 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 96182d7362..bc86bf3f68 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1585,60 +1585,34 @@ It currently supports MySQL, Postgres and SQLite3.")
SQL databases. This package implements the interface for SQLite.")))
(define-public guile-dbd-postgresql
- (let ((commit "e97589b6b018b206c901e4cc24db463407a4036b")
- (revision 0))
- (package
- (name "guile-dbd-postgresql")
- (version (string-append
- "2.1.6-" (number->string revision) "." (string-take commit 7)))
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/opencog/guile-dbi")
- (commit commit)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0n1gv9a0kdys10a4qmnrwvg5sydwb03880asri4gqdchcj3fimni"))))
- (build-system gnu-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'chdir
+ (package
+ (inherit guile-dbi)
+ (name "guile-dbd-postgresql")
+ (arguments
+ (substitute-keyword-arguments (package-arguments guile-dbi)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (replace 'chdir
(lambda _
;; The upstream Git repository contains all the code, so change
- ;; to the relevant directory.
- (chdir "guile-dbd-postgresql")
- #t))
- (add-after 'chdir 'patch-src/Makefile.am
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* "src/Makefile.am"
- (("/usr/include")
- (string-append (assoc-ref inputs "postgresql") "/include")))
- #t))
- (add-after 'patch-src/Makefile.am 'patch-src
+ ;; to the directory specific to guile-dbd-mysql.
+ (chdir "guile-dbd-postgresql")))
+ (add-after 'chdir 'patch-src
(lambda _
(substitute* "src/guile-dbd-postgresql.c"
- (("postgresql/libpq-fe\\.h") "libpq-fe.h"))
- #t)))))
- (native-inputs
- `(("pkg-config" ,pkg-config)
- ("automake" ,automake)
- ("autoconf" ,autoconf)
- ("perl" ,perl)
- ("libtool" ,libtool)
- ("guile-dbi-bootstrap" ,guile-dbi-bootstrap)))
- (inputs
- `(("postgresql" ,postgresql)
- ("zlib" ,zlib)))
- (synopsis "Guile DBI driver for PostgreSQL")
- (home-page
- "https://github.com/opencog/guile-dbi/tree/master/guile-dbd-postgresql")
- (description
- "@code{guile-dbi} is a library for Guile that provides a convenient
+ (("postgresql/libpq-fe\\.h") "libpq-fe.h"))))
+ (delete 'patch-extension-path)))))
+ (inputs
+ `(("postgresql" ,postgresql)
+ ("zlib" ,zlib)))
+ (native-inputs
+ `(("guile-dbi" ,guile-dbi) ; only required for headers
+ ,@(package-native-inputs guile-dbi)))
+ (synopsis "Guile DBI driver for PostgreSQL")
+ (description
+ "@code{guile-dbi} is a library for Guile that provides a convenient
interface to SQL databases. This package implements the interface for
-PostgreSQL.")
- (license license:gpl2+))))
+PostgreSQL.")))
(define-public guile-config
(package
--
2.33.0
- [bug#50476] [PATCH 00/10] Update guile-dbi and guile-dbd-*, (continued)
- [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, 2021/09/30
- [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 <=
- [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