guix-commits
[Top][All Lists]
Advanced

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

02/11: gnu: Add jamvm-1-bootstrap.


From: Ricardo Wurmus
Subject: 02/11: gnu: Add jamvm-1-bootstrap.
Date: Sun, 25 Mar 2018 15:42:39 -0400 (EDT)

rekado pushed a commit to branch rhel6
in repository guix.

commit c55055b3c1afd4e63b02afe1a5a1c73cc251369b
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Mar 25 19:27:57 2018 +0200

    gnu: Add jamvm-1-bootstrap.
    
    * gnu/packages/java.scm (jamvm-1-bootstrap): New variable.
---
 gnu/packages/java.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 918b99b..a40c550 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -258,6 +258,37 @@ language.")
     ;; GPLv2 or later, with special linking exception.
     (license license:gpl2+)))
 
+;; This is the last version of JamVM that works with a version of GNU
+;; classpath that does not require ECJ.
+(define jamvm-1-bootstrap
+  (package
+    (name "jamvm")
+    (version "1.5.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://sourceforge/jamvm/jamvm/"
+                                  "JamVM%20" version "/jamvm-"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "06lhi03l3b0h48pc7x58bk9my2nrcf1flpmglvys3wyad6yraf36"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list (string-append "--with-classpath-install-dir="
+                            (assoc-ref %build-inputs "classpath")))))
+    (inputs
+     `(("classpath" ,classpath-bootstrap)
+       ("jikes" ,jikes)
+       ("zlib" ,zlib)))
+    (home-page "http://jamvm.sourceforge.net/";)
+    (synopsis "Small Java Virtual Machine")
+    (description "JamVM is a Java Virtual Machine conforming to the JVM
+specification edition 2 (blue book).  It is extremely small.  However, unlike
+other small VMs it supports the full spec, including object finalisation and
+JNI.")
+    (license license:gpl2+)))
+
 (define ant-bootstrap
   (package
     (name "ant-bootstrap")



reply via email to

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