[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/14: gnu: Add cl-exponential-backoff.
From: |
guix-commits |
Subject: |
12/14: gnu: Add cl-exponential-backoff. |
Date: |
Fri, 5 Jun 2020 09:48:18 -0400 (EDT) |
glv pushed a commit to branch master
in repository guix.
commit aae3df1817ebb98891ce5866c908b3a9a009835a
Author: Katherine Cox-Buday <cox.katherine.e@gmail.com>
AuthorDate: Tue Jun 2 12:47:09 2020 -0500
gnu: Add cl-exponential-backoff.
* gnu/packages/lisp-xyz.scm (sbcl-exponential-backoff,
cl-exponential-backoff,
ecl-exponential-backoff): New variables.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
---
gnu/packages/lisp-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index f6f523d..62977f5 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -11800,3 +11800,33 @@ This is intended to be a successor of Prove.")
(define-public ecl-rove
(sbcl-package->ecl-package sbcl-rove))
+
+(define-public sbcl-exponential-backoff
+ (let ((commit "8d9e8444d8b3184a524c12ce3449f91613ab714f"))
+ (package
+ (name "sbcl-exponential-backoff")
+ (version (git-version "0" "1" commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/death/exponential-backoff.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1389hm9hxv85s0125ja4js1bvh8ay4dsy9q1gaynjv27ynik6gmv"))))
+ (build-system asdf-build-system/sbcl)
+ (home-page "https://github.com/death/exponential-backoff")
+ (synopsis "Exponential backoff algorithm in Common Lisp")
+ (description
+ "An implementation of the exponential backoff algorithm in Common Lisp.
+Inspired by the implementation found in Chromium. Read the header file to
+learn about each of the parameters.")
+ (license license:expat))))
+
+(define-public cl-exponential-backoff
+ (sbcl-package->cl-source-package sbcl-exponential-backoff))
+
+(define-public ecl-exponential-backoff
+ (sbcl-package->ecl-package sbcl-exponential-backoff))
- branch master updated (66294d7 -> 1f9999d), guix-commits, 2020/06/05
- 02/14: gnu: Add quantile-estimator., guix-commits, 2020/06/05
- 05/14: gnu: Add cl-prometheus.collectors.process., guix-commits, 2020/06/05
- 06/14: gnu: Add cl-prometheus.formats.text., guix-commits, 2020/06/05
- 01/14: gnu: txr: Update to 239., guix-commits, 2020/06/05
- 03/14: gnu: Add cl-prometheus., guix-commits, 2020/06/05
- 04/14: gnu: Add cl-prometheus.collectors.sbcl., guix-commits, 2020/06/05
- 07/14: gnu: Add cl-prometheus.exposers.hunchentoot., guix-commits, 2020/06/05
- 08/14: gnu: Add cl-prometheus.pushgateway., guix-commits, 2020/06/05
- 10/14: gnu: Add cl-dissect., guix-commits, 2020/06/05
- 12/14: gnu: Add cl-exponential-backoff.,
guix-commits <=
- 13/14: gnu: Add cl-sxql., guix-commits, 2020/06/05
- 09/14: gnu: Add cl-uuid., guix-commits, 2020/06/05
- 11/14: gnu: Add cl-rove., guix-commits, 2020/06/05
- 14/14: gnu: Add cl-1am., guix-commits, 2020/06/05