[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/26: gnu: Add cl-yacc.
From: |
Pierre Neidhardt |
Subject: |
07/26: gnu: Add cl-yacc. |
Date: |
Fri, 24 Aug 2018 09:14:04 -0400 (EDT) |
ambrevar pushed a commit to branch wip-next-browser
in repository guix.
commit 4c4c641a14eaa075060606a54c65107ce9822dcf
Author: Pierre Neidhardt <address@hidden>
Date: Fri Aug 24 11:19:24 2018 +0200
gnu: Add cl-yacc.
* gnu/packages/lisp.scm (cl-cl-yacc, ecl-cl-yacc, sbcl-cl-yacc): New
variables.
---
gnu/packages/lisp.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 7296988..bc9001e 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1591,3 +1591,38 @@ GNU libiconv, but completely written in Common Lisp.")
(define-public ecl-babel
(sbcl-package->ecl-package sbcl-babel))
+
+(define-public sbcl-cl-yacc
+ (package
+ (name "sbcl-cl-yacc")
+ (version "0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jech/cl-yacc")
+ (commit (string-append "cl-yacc-" version))))
+ (sha256
+ (base32
+ "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
+ (file-name (string-append "cl-yacc-" version "-checkout"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ `(#:asd-file "yacc.asd"
+ #:asd-system-name "yacc"))
+ (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to
Yacc")
+ (description
+ "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
+to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
+
+CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
+by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
+to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
+ (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
+ (license license:expat)))
+
+(define-public cl-yacc
+ (sbcl-package->cl-source-package sbcl-cl-yacc))
+
+(define-public ecl-cl-yacc
+ (sbcl-package->ecl-package sbcl-cl-yacc))
- branch wip-next-browser created (now 0ca397a), Pierre Neidhardt, 2018/08/24
- 01/26: build-system/asdf: Fix normalize-string to support versioned dependencies, Pierre Neidhardt, 2018/08/24
- 06/26: gnu: Add babel., Pierre Neidhardt, 2018/08/24
- 02/26: gnu: Add cl-strings., Pierre Neidhardt, 2018/08/24
- 04/26: gnu: Add hu.dwim.asdf., Pierre Neidhardt, 2018/08/24
- 05/26: gnu: Add hu.dwim.stefil., Pierre Neidhardt, 2018/08/24
- 03/26: gnu: Add trivial-features., Pierre Neidhardt, 2018/08/24
- 08/26: gnu: Add jpl-util., Pierre Neidhardt, 2018/08/24
- 10/26: gnu: Add eos., Pierre Neidhardt, 2018/08/24
- 07/26: gnu: Add cl-yacc.,
Pierre Neidhardt <=
- 23/26: gnu: Add mgl-pax., Pierre Neidhardt, 2018/08/24
- 22/26: gnu: Add pythonic-string-reader., Pierre Neidhardt, 2018/08/24
- 19/26: gnu: Add nibbles., Pierre Neidhardt, 2018/08/24
- 11/26: gnu: Add esrap., Pierre Neidhardt, 2018/08/24
- 20/26: gnu: Add ironclad., Pierre Neidhardt, 2018/08/24
- 14/26: gnu: Add colorize., Pierre Neidhardt, 2018/08/24
- 12/26: gnu: Add split-sequence., Pierre Neidhardt, 2018/08/24
- 15/26: gnu: Add 3bmd., Pierre Neidhardt, 2018/08/24
- 09/26: gnu: Add jpl-queues., Pierre Neidhardt, 2018/08/24
- 26/26: gnu: Add next-browser (DRAFT)., Pierre Neidhardt, 2018/08/24