[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/12: gnu: guile-redis: Switch to Guile 2.2.
From: |
Ludovic Courtès |
Subject: |
10/12: gnu: guile-redis: Switch to Guile 2.2. |
Date: |
Mon, 30 Apr 2018 17:41:33 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit d5eacecc9f39be1f9082ccfef0bf140aa73b0ee4
Author: Ludovic Courtès <address@hidden>
Date: Mon Apr 30 21:54:22 2018 +0200
gnu: guile-redis: Switch to Guile 2.2.
* gnu/packages/guile.scm (guile-redis)[inputs]: Switch to
GUILE-2.2.
(guile2.0-redis): New variable.
(guile2.2-redis): Define in terms of 'deprecated-package'.
---
gnu/packages/guile.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 770f7b6..181060c 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -1355,15 +1355,18 @@ above command-line parameters.")
(string-append all "/@GUILE_EFFECTIVE_VERSION@")))))))
(build-system gnu-build-system)
(native-inputs
- `(("guile" ,guile-2.0)))
+ `(("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
key-value cache and store.")
(license license:lgpl3+)))
+(define-public guile2.0-redis
+ (package-for-guile-2.0 guile-redis))
+
(define-public guile2.2-redis
- (package-for-guile-2.2 guile-redis))
+ (deprecated-package "guile2.2-redis" guile-redis))
(define-public guile-wisp
(package
- 03/12: gnu: gzochi: Build without '-Werror'., (continued)
- 03/12: gnu: gzochi: Build without '-Werror'., Ludovic Courtès, 2018/04/30
- 04/12: gnu: gzochi: Switch to Guile 2.2., Ludovic Courtès, 2018/04/30
- 06/12: gnu: guile-ics: Update to 0.2.0., Ludovic Courtès, 2018/04/30
- 05/12: gnu: geiser: Switch to Guile 2.2., Ludovic Courtès, 2018/04/30
- 09/12: gnu: guile-irregex: Switch to Guile 2.2., Ludovic Courtès, 2018/04/30
- 07/12: gnu: guile-ics: Switch to Guile 2.2., Ludovic Courtès, 2018/04/30
- 08/12: gnu: guile-minikanren: Switch to Guile 2.2., Ludovic Courtès, 2018/04/30
- 12/12: gnu: Add amule., Ludovic Courtès, 2018/04/30
- 01/12: weather: Fix type error when reporting CI stats., Ludovic Courtès, 2018/04/30
- 11/12: gnu: guile-dbi: Switch to Guile 2.2., Ludovic Courtès, 2018/04/30
- 10/12: gnu: guile-redis: Switch to Guile 2.2.,
Ludovic Courtès <=