[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: guile-redis: Update to 1.0.0.
From: |
Ludovic Courtès |
Subject: |
01/06: gnu: guile-redis: Update to 1.0.0. |
Date: |
Mon, 20 Aug 2018 10:32:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit a50eed201bf470b3bd124a2983bcea3453ec698f
Author: Ludovic Courtès <address@hidden>
Date: Mon Aug 20 14:35:33 2018 +0200
gnu: guile-redis: Update to 1.0.0.
* gnu/packages/guile.scm (guile-redis): Update to 1.0.0.
[source]: Fetch from github.com. Remove snippet.
[native-inputs]: Add AUTOCONF, AUTOMAKE, and PKG-CONFIG.
---
gnu/packages/guile.scm | 27 ++++++++-------------------
1 file changed, 8 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index f179f29..358613b 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -1241,31 +1241,20 @@ above command-line parameters.")
(define-public guile-redis
(package
(name "guile-redis")
- (version "0.1.0")
+ (version "1.0.0")
+ (home-page "https://github.com/aconchillo/guile-redis")
(source (origin
(method url-fetch)
- (uri (string-append "mirror://savannah/guile-redis/guile-redis-"
- version ".tar.gz"))
+ (uri (string-append home-page "/archive/" version ".tar.gz"))
(sha256
(base32
- "0vx6if6b4r3kwx64vzbs6vpc0cpcr85x11w9vkzq27gw8n7isv56"))
- (modules '((guix build utils)))
- (snippet
- ;; Make sure everything goes under .../site/X.Y, like Guile's
- ;; search paths expects.
- '(begin
- (substitute* "configure"
- (("ac_subst_vars='")
- "ac_subst_vars='GUILE_EFFECTIVE_VERSION\n"))
- (substitute* '("Makefile.in"
- "redis/Makefile.in"
- "redis/commands/Makefile.in")
- (("moddir =.*/share/guile/site" all)
- (string-append all "/@GUILE_EFFECTIVE_VERSION@")))
- #t))))
+ "1dp5fmqvma59pvp1nfpq6hqgbmjici8sd1y8llahl87fynw1dvr9"))))
(build-system gnu-build-system)
(native-inputs
- `(("guile" ,guile-2.2)))
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)
+ ("guile" ,guile-2.2)))
(home-page "https://savannah.nongnu.org/projects/guile-redis/")
(synopsis "Redis client library for Guile")
(description "Guile-redis provides a Scheme interface to the Redis
- branch master updated (e63da34 -> bab4dc5), Ludovic Courtès, 2018/08/20
- 02/06: import: github: Request API v3 in the 'Accept' header., Ludovic Courtès, 2018/08/20
- 05/06: gnu: guile-ssh: Update to 0.11.3., Ludovic Courtès, 2018/08/20
- 06/06: import: github: Filter out tags that don't look like version numbers., Ludovic Courtès, 2018/08/20
- 01/06: gnu: guile-redis: Update to 1.0.0.,
Ludovic Courtès <=
- 04/06: gnu: guile-json: Update to 1.1.1., Ludovic Courtès, 2018/08/20
- 03/06: import: github: Get /tags when /releases returns the empty list., Ludovic Courtès, 2018/08/20