guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

49/110: gnu: Add javacc-3.


From: guix-commits
Subject: 49/110: gnu: Add javacc-3.
Date: Thu, 16 Jul 2020 22:23:24 -0400 (EDT)

roptat pushed a commit to branch master
in repository guix.

commit aabaac7d85971a4e6b8826f6412b7cd40d42bbcc
Author: Julien Lepiller <julien@lepiller.eu>
AuthorDate: Sun May 17 18:01:32 2020 +0200

    gnu: Add javacc-3.
    
    * gnu/packages/java.scm (javacc-3): New variable.
---
 gnu/packages/java.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index e5e7586..f3c8abe 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2696,6 +2696,35 @@ as tree building (via a tool called JJTree included with 
JavaCC), actions,
 debugging, etc.")
     (license license:bsd-3)))
 
+;; javacc-3, as javacc-4 is not properly bootstrapped: is contains a javacc.jar
+;; in the bootstrap/ directory.
+(define-public javacc-3
+  (package
+    (inherit javacc-4)
+    (version "3.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/javacc/javacc.git";)
+                    (commit "release_32")))
+              (file-name (string-append "javacc-" version "-checkout"))
+              (sha256
+               (base32
+                "1pyf1xyh8gk83nxqn2v2mdws32l68ydznha41cxa4l2kkbq1v1g3"))))
+    (arguments
+     `(#:tests? #f
+       #:phases
+       (modify-phases %standard-phases
+         (add-before 'build 'set-java-version
+           (lambda _
+             (for-each
+               (lambda (file)
+                 (substitute* file
+                   (("debug=") "source=\"1.4\" debug=")))
+               (find-files "." "build.xml"))
+             #t))
+         (replace 'install (install-jars "bin/lib")))))))
+
 (define-public javacc
   (package
     (inherit javacc-4)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]