[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: Add cl-ppcre.
From: |
??? |
Subject: |
07/11: gnu: Add cl-ppcre. |
Date: |
Sat, 8 Oct 2016 13:26:00 +0000 (UTC) |
iyzsong pushed a commit to branch master
in repository guix.
commit 5aa608a7e81649724b363d6c292d86334eb18a9e
Author: Andy Patterson <address@hidden>
Date: Sun Oct 2 22:41:35 2016 -0400
gnu: Add cl-ppcre.
* gnu/packages/lisp.scm (cl-ppcre, sbcl-cl-pprcre, ecl-cl-pprcre): New
variables.
Signed-off-by: 宋文武 <address@hidden>
---
gnu/packages/lisp.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 5836e75..9b7d8a7 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -672,3 +672,31 @@ streams which are similar to string streams.")
(define-public ecl-flexi-streams
(sbcl-package->ecl-package sbcl-flexi-streams))
+
+(define-public sbcl-cl-ppcre
+ (package
+ (name "sbcl-cl-ppcre")
+ (version "2.0.11")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://github.com/edicl/cl-ppcre/archive/v"
+ version ".tar.gz"))
+ (sha256
+ (base32 "1i7daxf0wnydb0pgwiym7qh2wy70n14lxd6dyv28sy0naa8p31gd"))
+ (file-name (string-append "cl-ppcre-" version ".tar.gz"))))
+ (build-system asdf-build-system/sbcl)
+ (native-inputs `(("tests:cl-flexi-streams" ,sbcl-flexi-streams)))
+ (synopsis "Portable regular expression library for Common Lisp")
+ (description "CL-PPCRE is a portable regular expression library for Common
+Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
+compatible with ANSI-compliant Common Lisp implementations.")
+ (home-page "http://weitz.de/cl-ppcre/")
+ (license license:bsd-2)))
+
+(define-public cl-ppcre
+ (sbcl-package->cl-source-package sbcl-cl-ppcre))
+
+(define-public ecl-cl-ppcre
+ (sbcl-package->ecl-package sbcl-cl-ppcre))
- branch master updated (53aec09 -> 9678443), ???, 2016/10/08
- 03/11: gnu: Add cl-fiveam., ???, 2016/10/08
- 06/11: gnu: Add cl-flexi-streams., ???, 2016/10/08
- 05/11: gnu: Add cl-trivial-gray-streams., ???, 2016/10/08
- 04/11: gnu: Add cl-bordeaux-threads., ???, 2016/10/08
- 02/11: gnu: Add cl-alexandria., ???, 2016/10/08
- 07/11: gnu: Add cl-ppcre.,
??? <=
- 11/11: gnu: Add sbcl-stumpwm-with-slynk., ???, 2016/10/08
- 09/11: gnu: Add cl-stumpwm., ???, 2016/10/08
- 10/11: gnu: Add cl-slynk., ???, 2016/10/08
- 08/11: gnu: Add cl-clx., ???, 2016/10/08
- 01/11: build-system: Add asdf-build-system., ???, 2016/10/08