guix-commits
[Top][All Lists]
Advanced

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

21/32: gnu: Add java-xpp3.


From: julien lepiller
Subject: 21/32: gnu: Add java-xpp3.
Date: Sat, 10 Feb 2018 13:05:13 -0500 (EST)

roptat pushed a commit to branch master
in repository guix.

commit 82d7d4e1c81744f49f3b2168774437532755b32d
Author: Julien Lepiller <address@hidden>
Date:   Sat Feb 10 17:56:51 2018 +0100

    gnu: Add java-xpp3.
    
    gnu/packages/xml.scm (java-xpp3): New variable.
---
 gnu/packages/xml.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 2e2b714..e65ea53 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1685,3 +1685,37 @@ that strives for correctness and simplicity.")
     (description "Xsdlib contains an implementation of sun.com.msv, an XML
 validator.")
     (license license:bsd-2)))
+
+(define-public java-xpp3
+  (package
+    (name "java-xpp3")
+    (version "1.1.4")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://www.extreme.indiana.edu/dist/";
+                                  "java-repository/xpp3/distributions/xpp3-"
+                                  version "_src.tgz"))
+              (sha256
+               (base32
+                "1b99zrhyij5qwyhilyjdl1ykxvhk902vsvflh6gx4fir8hfvdl5p"))
+              (modules '((guix build utils)))
+              (snippet
+                '(begin ;; Delete bundled jar archives.
+                   (for-each delete-file (find-files "." ".*\\.jar"))
+                   #t))))
+    (build-system ant-build-system)
+    (arguments
+     `(#:tests? #f; no tests
+       #:build-target "jar"
+       #:phases
+       (modify-phases %standard-phases
+         (replace 'install (install-jars "build")))))
+    (home-page "http://www.extreme.indiana.edu/xgws/xsoap/xpp/";)
+    (synopsis "Streaming pull XML parser")
+    (description "Xml Pull Parser (in short XPP) is a streaming pull XML
+parser and should be used when there is a need to process quickly and
+efficiently all input elements (for example in SOAP processors). This
+package is a stable XmlPull parsing engine that is based on ideas from XPP
+and in particular XPP2 but completely revised and rewritten to take the best
+advantage of JIT JVMs.")
+    (license (license:non-copyleft "file://LICENSE.txt"))))



reply via email to

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