From: ludo@gnu.org (Ludovic Courtès)
To: Kristofer Buffington <kristoferbuffington@gmail.com>
Cc: 29300-done@debbugs.gnu.org
Subject: bug#29300: [PATCH] guile-wiredtiger
Date: Tue, 14 Nov 2017 23:38:47 +0100 [thread overview]
Message-ID: <87lgj8lc3s.fsf@gnu.org> (raw)
In-Reply-To: <8760acel95.fsf@gmail.com> (Kristofer Buffington's message of "Tue, 14 Nov 2017 14:03:02 -0500")
[-- Attachment #1: Type: text/plain, Size: 201 bytes --]
Hi Kristofer,
Thanks for this first patch! I’ve squashed the two patches, applied
the small changes below, and added a commit log that followed our
conventions.
Welcome! :-)
Ludo’.
[-- Attachment #2: Type: text/x-patch, Size: 1864 bytes --]
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index ca35bcd2a..6bc468679 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -22,6 +22,7 @@
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
;;; Copyright © 2017 Pierre Langlois <pierre.langlois@gmx.com>
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
+;;; Copyright © 2017 Kristofer Buffington <kristoferbuffington@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1520,17 +1521,29 @@ trees (LSM), for sustained throughput under random insert workloads.")
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'bootstrap
- (lambda _ (zero? (system* "sh" "bootstrap")))))))
+ (lambda _
+ (zero? (system* "sh" "bootstrap"))))
+ (add-before 'bootstrap 'remove-bundled-dependencies
+ (lambda _
+ ;; TODO: Remove microkanren.scm when we have a separate package
+ ;; for it.
+ (delete-file "htmlprag.scm")
+ (substitute* "Makefile.am"
+ (("htmlprag\\.scm") ""))
+ #t)))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)
("pkg-config" ,pkg-config)))
(inputs
`(("wiredtiger" ,wiredtiger)
- ("guile-lib" ,guile-lib)
("guile" ,guile-2.2)))
+ (propagated-inputs
+ `(("guile-lib" ,guile-lib))) ;for (htmlprag)
(synopsis "Wired Tiger bindings for GNU Guile")
- (description "Wired Tiger bindings for GNU Guile. Build your own database!")
+ (description
+ "This package provides Guile bindings to the WiredTiger ``NoSQL''
+database.")
(home-page "https://framagit.org/a-guile-mind/guile-wiredtiger")
(license license:gpl3+)))
prev parent reply other threads:[~2017-11-14 22:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-14 19:03 [bug#29300] [PATCH] guile-wiredtiger Kristofer Buffington
2017-11-14 22:38 ` Ludovic Courtès [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87lgj8lc3s.fsf@gnu.org \
--to=ludo@gnu.org \
--cc=29300-done@debbugs.gnu.org \
--cc=kristoferbuffington@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.