[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/11: gnu: ephemeralpg: Update to 2.9.
From: |
guix-commits |
Subject: |
10/11: gnu: ephemeralpg: Update to 2.9. |
Date: |
Fri, 10 Apr 2020 17:27:50 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit fa8343de32833f2f819464128ee002d0ad64cb49
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Fri Apr 10 23:11:44 2020 +0200
gnu: ephemeralpg: Update to 2.9.
* gnu/packages/databases.scm (ephemeralpg): Update to 2.9.
[arguments]: Remove obsolete work-arounds.
[native-inputs]: Add which.
---
gnu/packages/databases.scm | 24 ++++++------------------
1 file changed, 6 insertions(+), 18 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 7880d33..d180f34 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -225,7 +225,7 @@ standard Go idioms.")
(define-public ephemeralpg
(package
(name "ephemeralpg")
- (version "2.8")
+ (version "2.9")
(source
(origin
(method url-fetch)
@@ -233,7 +233,7 @@ standard Go idioms.")
"https://eradman.com/ephemeralpg/code/ephemeralpg-"
version ".tar.gz"))
(sha256
- (base32 "1dpfxsd8a52psx3zlfbqkw53m35w28qwyb87a8anz143x6gnkkr4"))))
+ (base32 "1ghp3kya4lxvfwz3c022cx9vqf55jbf9sjw60bxjcb5sszklyc89"))))
(build-system gnu-build-system)
(arguments
'(#:make-flags (list "CC=gcc"
@@ -243,20 +243,7 @@ standard Go idioms.")
(delete 'configure)
(replace 'check
(lambda* (#:key inputs #:allow-other-keys)
- ;; The intention for one test is to test without PostgreSQL on
- ;; the $PATH, so replace the test $PATH with just the util-linux
- ;; bin, which contains getopt. It will hopefully be possible to
- ;; remove this for releases after 2.8.
- (substitute* "test.rb"
- (("/bin:/usr/bin")
- (string-append (assoc-ref inputs "util-linux")
- "/bin")))
- ;; Set the LC_ALL=C as some tests use sort, and the locale
- ;; affects the order. It will hopefully be possible to remove
- ;; this for releases after 2.8.
- (setenv "LC_ALL" "C")
- (invoke "ruby" "test.rb")
- #t))
+ (invoke "ruby" "test.rb")))
(add-after 'install 'wrap
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
@@ -266,14 +253,15 @@ standard Go idioms.")
"/bin")
,(string-append (assoc-ref inputs "postgresql")
"/bin")
- ;; For getsocket
+ ;; For getsocket.
,(string-append out "/bin")))))
#t)))))
(inputs
`(("postgresql" ,postgresql)
("util-linux" ,util-linux)))
(native-inputs
- `(("ruby" ,ruby)))
+ `(("ruby" ,ruby)
+ ("which" ,which)))
(home-page "https://eradman.com/ephemeralpg/")
(synopsis "Run temporary PostgreSQL databases")
(description
- branch master updated (6720616 -> 8ec9c5f), guix-commits, 2020/04/10
- 01/11: gnu: btrfs-progs: Update to 5.6., guix-commits, 2020/04/10
- 02/11: gnu: ghc-regex-tdfa: Update home page., guix-commits, 2020/04/10
- 03/11: gnu: celluloid: Update to 0.19., guix-commits, 2020/04/10
- 06/11: gnu: burp: Update to 2.3.24., guix-commits, 2020/04/10
- 07/11: gnu: r-powerlaw: Update to 0.70.4., guix-commits, 2020/04/10
- 11/11: gnu: boinc-client: Update to 7.16.6., guix-commits, 2020/04/10
- 08/11: gnu: crispy-doom: Update to 5.7.2., guix-commits, 2020/04/10
- 04/11: gnu: libzen: Update to 0.4.38., guix-commits, 2020/04/10
- 10/11: gnu: ephemeralpg: Update to 2.9.,
guix-commits <=
- 05/11: gnu: burp: Extend test time-outs., guix-commits, 2020/04/10
- 09/11: gnu: ephemeralpg: Use HTTPS home page., guix-commits, 2020/04/10