;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ricardo Wurmus ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016, 2017 Roel Janssen ;;; Copyright © 2017, 2019, 2021 Carlo Zancanaro ;;; Copyright © 2017-2021 Julien Lepiller ;;; Copyright © 2017 Thomas Danckaert ;;; Copyright © 2016, 2017, 2018 Alex Vong ;;; Copyright © 2017, 2019, 2021 Tobias Geerinckx-Rice ;;; Copyright © 2018, 2019 Gábor Boskovits ;;; Copyright © 2018 Chris Marusich ;;; Copyright © 2018, 2019, 2020, 2021, 2022 Efraim Flashner ;;; Copyright © 2019, 2020, 2021 Björn Höfling ;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen ;;; Copyright © 2020 Raghav Gururajan ;;; Copyright © 2020, 2022 Maxim Cournoyer ;;; Copyright © 2021 Vincent Legoll ;;; Copyright © 2021 Mike Gerwitz ;;; Copyright © 2021 Pierre Langlois ;;; Copyright © 2021 Guillaume Le Vaillant ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages java) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix hg-download) #:use-module (guix git-download) #:use-module (guix svn-download) #:use-module ((guix build utils) #:select (alist-replace)) #:use-module (guix utils) #:use-module (guix gexp) #:use-module (guix build-system ant) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) #:use-module (guix build-system maven) #:use-module (guix build-system trivial) #:use-module (gnu packages) #:use-module (gnu packages attr) #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages certs) #:use-module (gnu packages cpio) #:use-module (gnu packages cups) #:use-module (gnu packages compression) #:use-module (gnu packages elf) #:use-module (gnu packages fontutils) #:use-module (gnu packages gawk) #:use-module (gnu packages gcc) #:use-module (gnu packages gettext) #:use-module (gnu packages gl) #:use-module (gnu packages ghostscript) ;lcms #:use-module (gnu packages gnome) #:use-module (gnu packages groovy) #:use-module (gnu packages gtk) #:use-module (gnu packages guile) #:use-module (gnu packages icu4c) #:use-module (gnu packages image) #:use-module (gnu packages java-compression) #:use-module (gnu packages libffi) #:use-module (gnu packages linux) ;alsa #:use-module (gnu packages maths) #:use-module (gnu packages maven) #:use-module (gnu packages maven-parent-pom) #:use-module (gnu packages ncurses) #:use-module (gnu packages nss) #:use-module (gnu packages onc-rpc) #:use-module (gnu packages web) #:use-module (gnu packages wget) #:use-module (gnu packages pkg-config) #:use-module (gnu packages perl) #:use-module (gnu packages popt) #:use-module (gnu packages kerberos) #:use-module (gnu packages security-token) #:use-module (gnu packages xml) #:use-module (gnu packages xorg) #:use-module (gnu packages texinfo) #:use-module ((srfi srfi-1) #:select (fold alist-delete)) #:use-module (srfi srfi-11) #:use-module (ice-9 match)) ;;; ;;; Java bootstrap toolchain. ;;; ;; The Java bootstrap begins with Jikes, a Java compiler written in C++. We ;; use it to build a simple version of GNU Classpath, the Java standard ;; library. We chose version 0.93 because it is the last version that can be ;; built with Jikes. With Jikes and this version of GNU Classpath we can ;; build JamVM, a Java Virtual Machine. We build version 1.5.1 because it is ;; the last version of JamVM that works with a version of GNU classpath that ;; does not require ECJ. These three packages make up the bootstrap JDK. ;; This is sufficient to build an older version of Ant, which is needed to ;; build an older version of ECJ, an incremental Java compiler, both of which ;; are written in Java. ;; ;; ECJ is needed to build the latest release (0.99) and the development ;; version of GNU Classpath. The development version of GNU Classpath has ;; much more support for Java 1.6 than the latest release, but we need to ;; build 0.99 first to get a working version of javah. ECJ, the development ;; version of GNU Classpath, and the latest version of JamVM make up the ;; second stage JDK with which we can build the OpenJDK with the Icedtea 2.x ;; build framework. We then build the more recent JDK Icedtea 3.x, and all ;; other versions of OpenJDK. (define jikes (package (name "jikes") (version "1.22") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/jikes/Jikes/" version "/jikes-" version ".tar.bz2")) (sha256 (base32 "1qqldrp74pzpy5ly421srqn30qppmm9cvjiqdngk8hf47dv2rc0c")))) (build-system gnu-build-system) (home-page "http://jikes.sourceforge.net/") (synopsis "Compiler for the Java language") (description "Jikes is a compiler that translates Java source files as defined in The Java Language Specification into the bytecoded instruction set and binary format defined in The Java Virtual Machine Specification.") (license license:ibmpl1.0))) ;; This is the last version of GNU Classpath that can be built without ECJ. (define classpath-bootstrap (package (name "classpath") (version "0.93") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/classpath/classpath-" version ".tar.gz")) (sha256 (base32 "0i99wf9xd3hw1sj2sazychb9prx8nadxh2clgvk3zlmb28v0jbfz")) (patches (search-patches "classpath-aarch64-support.patch" "classpath-miscompilation.patch")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list (string-append "JAVAC=" (search-input-file %build-inputs "/bin/jikes")) "--disable-Werror" "--disable-gmp" "--disable-gtk-peer" "--disable-gconf-peer" "--disable-plugin" "--disable-dssi" "--disable-alsa" "--disable-gjdoc") #:phases (modify-phases %standard-phases (add-after 'install 'install-data (lambda _ (invoke "make" "install-data")))))) (native-inputs (list jikes fastjar libltdl pkg-config)) (home-page "https://www.gnu.org/software/classpath/") (synopsis "Essential libraries for Java") (description "GNU Classpath is a project to create core class libraries for use with runtimes, compilers and tools for the Java programming 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")) (patches (search-patches "jamvm-1.5.1-aarch64-support.patch" "jamvm-1.5.1-armv7-support.patch")) (sha256 (base32 "06lhi03l3b0h48pc7x58bk9my2nrcf1flpmglvys3wyad6yraf36")) ;; Remove precompiled software. (snippet '(delete-file "lib/classes.zip")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list (string-append "--with-classpath-install-dir=" (assoc-ref %build-inputs "classpath")) "--disable-int-caching" "--enable-runtime-reloc-checks" "--enable-ffi") #:phases ,(if (string-prefix? "aarch64" (or (%current-system) (%current-target-system))) ;; Makefiles and the configure script need to be regenerated to ;; incorporate support for AArch64. '(modify-phases %standard-phases (replace 'bootstrap (lambda _ (invoke "autoreconf" "-vif")))) '%standard-phases))) (inputs (list classpath-bootstrap jikes libffi zip zlib)) (native-inputs (if (string-prefix? "aarch64" (or (%current-system) (%current-target-system))) ;; Additional packages needed for autoreconf. `(("autoconf" ,autoconf) ("automake" ,automake) ("libtool" ,libtool)) '())) (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") ;; The 1.10.x series requires Java 8. 1.9.0 and later use generics, which ;; are not supported. The 1.8.x series is the last to use only features ;; supported by Jikes. (version "1.8.4") (source (origin (method url-fetch) (uri (string-append "mirror://apache/" "ant/source/apache-ant-" version "-src.tar.bz2")) (sha256 (base32 "1cg0lga887qz5iizh6mlkxp01lciymrhmp7wzxpl6zpnldxmzrjx")))) (build-system gnu-build-system) (arguments `(#:imported-modules ((guix build syscalls) ,@%gnu-build-system-modules) #:modules ((srfi srfi-1) (guix build gnu-build-system) (guix build utils) (guix build syscalls)) #:tests? #f ; no "check" target #:phases (modify-phases %standard-phases (delete 'bootstrap) (delete 'configure) (add-before 'build 'define-java-environment-variables (lambda* (#:key inputs #:allow-other-keys) ;; First, set environment variables (eases debugging on -K). (setenv "JAVA_HOME" (assoc-ref inputs "jamvm")) (setenv "JAVACMD" (search-input-file inputs "/bin/jamvm")) (setenv "JAVAC" (search-input-file inputs "/bin/jikes")) (setenv "CLASSPATH" (search-input-file inputs "/lib/rt.jar")))) (replace 'build (lambda* (#:key inputs outputs #:allow-other-keys) ;; Ant complains if this file doesn't exist. (setenv "HOME" "/tmp") (with-output-to-file "/tmp/.ant.properties" (lambda _ (display ""))) ;; Use jikes instead of javac for tags in build.xml (setenv "ANT_OPTS" "-Dbuild.compiler=jikes") ;; jikes produces lots of warnings, but they are not very ;; interesting, so we silence them. (setenv "$BOOTJAVAC_OPTS" "-nowarn") ;; Without these JamVM options the build may freeze. (substitute* "bootstrap.sh" (("^\"\\$\\{JAVACMD\\}\" " m) ,@(if (string-prefix? "armhf" (or (%current-system) (%current-target-system))) `((string-append m "-Xnocompact ")) `((string-append m "-Xnocompact -Xnoinlining "))))) ;; Disable tests because we are bootstrapping and thus don't have ;; any of the dependencies required to build and run the tests. (substitute* "build.xml" (("depends=\"jars,test-jar\"") "depends=\"jars\"")) (invoke "bash" "bootstrap.sh" (string-append "-Ddist.dir=" (assoc-ref outputs "out"))))) (add-after 'build 'strip-jar-timestamps ;based on ant-build-system (lambda* (#:key outputs #:allow-other-keys) (define (repack-archive jar) (let* ((dir (mkdtemp! "jar-contents.XXXXXX")) (manifest (string-append dir "/META-INF/MANIFESTS.MF"))) (with-directory-excursion dir (invoke "unzip" jar)) (delete-file jar) ;; XXX: copied from (gnu build install) (for-each (lambda (file) (let ((s (lstat file))) (unless (eq? (stat:type s) 'symlink) (utime file 0 0 0 0)))) (find-files dir #:directories? #t)) ;; It is important that the manifest appears first. (with-directory-excursion dir (let* ((files (find-files "." ".*" #:directories? #t)) ;; To ensure that the reference scanner can ;; detect all store references in the jars ;; we disable compression with the "-0" option. (command (if (file-exists? manifest) `("zip" "-0" "-X" ,jar ,manifest ,@files) `("zip" "-0" "-X" ,jar ,@files)))) (apply invoke command))))) (for-each repack-archive (find-files (string-append (assoc-ref %outputs "out") "/lib") "\\.jar$")))) (delete 'install)))) (native-inputs (list jikes jamvm-1-bootstrap unzip zip)) (home-page "https://ant.apache.org") (synopsis "Build tool for Java") (description "Ant is a platform-independent build tool for Java. It is similar to make but is implemented using the Java language, requires the Java platform, and is best suited to building Java projects. Ant uses XML to describe the build process and its dependencies, whereas Make uses Makefile format.") (license license:asl2.0))) ;; Version 3.2.2 is the last version without a dependency on a full-fledged ;; compiler for Java 1.5. (define ecj-bootstrap (package (name "ecj-bootstrap") (version "3.2.2") (source (origin (method url-fetch) (uri (string-append "http://archive.eclipse.org/eclipse/" "downloads/drops/R-" version "-200702121330/ecjsrc.zip")) (sha256 (base32 "05hj82kxd23qaglsjkaqcj944riisjha7acf7h3ljhrjyljx8307")))) ;; It would be so much easier if we could use the ant-build-system, but we ;; cannot as we don't have ant at this point. We use ecj for ;; bootstrapping the JDK. (build-system gnu-build-system) (arguments `(#:tests? #f ; there are no tests #:phases (modify-phases %standard-phases (replace 'configure (lambda* (#:key inputs #:allow-other-keys) (setenv "CLASSPATH" (string-join (cons (search-input-file inputs "/lib/rt.jar") (find-files (string-append (assoc-ref inputs "ant-bootstrap") "/lib") "\\.jar$")) ":")))) (replace 'build (lambda* (#:key inputs #:allow-other-keys) ;; The unpack phase enters the "org" directory by mistake. (chdir "..") ;; Create a simple manifest to make ecj executable. (with-output-to-file "manifest" (lambda _ (display "Manifest-Version: 1.0 Main-Class: org.eclipse.jdt.internal.compiler.batch.Main\n"))) ;; Compile it all! (and (apply invoke "jikes" (find-files "." "\\.java$")) (invoke "fastjar" "cvfm" "ecj-bootstrap.jar" "manifest" ".")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((share (string-append (assoc-ref outputs "out") "/share/java/"))) (mkdir-p share) (install-file "ecj-bootstrap.jar" share))))))) (native-inputs (list ant-bootstrap unzip jikes jamvm-1-bootstrap fastjar)) (home-page "https://eclipse.org") (synopsis "Eclipse Java development tools core batch compiler") (description "This package provides the Eclipse Java core batch compiler for bootstrapping purposes. The @dfn{Eclipse compiler for Java} (ecj) is a requirement for all GNU Classpath releases after version 0.93.") (license license:epl1.0))) (define ecj-javac-wrapper (package (inherit ecj-bootstrap) (name "ecj-javac-wrapper") (source #f) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) #:builder ,#~(begin (use-modules (guix build utils)) (let* ((bin (string-append #$output "/bin")) (target (string-append bin "/javac")) (guile (string-append (assoc-ref %build-inputs "guile") "/bin/guile")) (ecj (string-append #$(this-package-native-input "ecj-bootstrap") "/share/java/ecj-bootstrap.jar")) (java (string-append #$(this-package-native-input "jamvm") "/bin/jamvm")) (bootcp (let ((jvmlib (string-append #$(this-package-native-input "classpath") "/share/classpath"))) (string-append jvmlib "/glibj.zip:" jvmlib "/tools.zip")))) (mkdir-p bin) (with-output-to-file target (lambda _ (format #t "#!~a --no-auto-compile\n!#\n" guile) (write `(begin (use-modules (ice-9 match) (ice-9 receive) (ice-9 hash-table) (srfi srfi-1) (srfi srfi-26)) (define defaults '(("-bootclasspath" ,bootcp) ("-source" "1.5") ("-target" "1.5") ("-cp" "."))) (define (main args) (let ((classpath (getenv "CLASSPATH"))) (setenv "CLASSPATH" (string-join (list ,ecj (or classpath "")) ":"))) (receive (vm-args other-args) ;; Separate VM arguments from arguments to ECJ. (partition (cut string-prefix? "-J" <>) (fold (lambda (default acc) (if (member (first default) acc) acc (append default acc))) args defaults)) (apply system* ,java (append ;; Remove "-J" prefix (map (cut string-drop <> 2) vm-args) '("org.eclipse.jdt.internal.compiler.batch.Main") (cons "-nowarn" other-args))))) ;; Entry point (let ((args (cdr (command-line)))) (if (null? args) (format (current-error-port) "javac: no arguments given!\n") (main args))))))) (chmod target #o755))))) (native-inputs (list guile-3.0 ecj-bootstrap jamvm-1-bootstrap classpath-bootstrap)) (description "This package provides a wrapper around the @dfn{Eclipse compiler for Java} (ecj) with a command line interface that is compatible with the standard javac executable."))) ;; The classpath-bootstrap was built without a virtual machine, so it does not ;; provide a wrapper for javah. We cannot build the development version of ;; Classpath without javah. (define classpath-0.99 (package (inherit classpath-bootstrap) (version "0.99") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/classpath/classpath-" version ".tar.gz")) (sha256 (base32 "1j7cby4k66f1nvckm48xcmh352b1d1b33qk7l6hi7dp9i9zjjagr")) (patches (search-patches "classpath-aarch64-support.patch")))) (arguments `(#:configure-flags (list (string-append "--with-ecj-jar=" (assoc-ref %build-inputs "ecj-bootstrap") "/share/java/ecj-bootstrap.jar") (string-append "JAVAC=" (assoc-ref %build-inputs "ecj-javac-wrapper") "/bin/javac") (string-append "JAVA=" (assoc-ref %build-inputs "jamvm") "/bin/jamvm") "GCJ_JAVAC_TRUE=no" "ac_cv_prog_java_works=yes" ; trust me "--disable-Werror" "--disable-gmp" "--disable-gtk-peer" "--disable-gconf-peer" "--disable-plugin" "--disable-dssi" "--disable-alsa" "--disable-gjdoc") #:phases (modify-phases %standard-phases (add-after 'install 'install-data (lambda _ (invoke "make" "install-data")))))) (native-inputs (list classpath-bootstrap ecj-bootstrap ecj-javac-wrapper fastjar jamvm-1-bootstrap libltdl pkg-config)))) ;; We need this because classpath-bootstrap does not provide all of the tools ;; we need to build classpath-devel. (define classpath-jamvm-wrappers (package (inherit classpath-0.99) (name "classpath-jamvm-wrappers") (source #f) (build-system trivial-build-system) (arguments (list #:modules '((guix build utils)) #:builder #~(begin (use-modules (guix build utils)) (let ((bash #$(this-package-native-input "bash-minimal")) (jamvm #$(this-package-native-input "jamvm")) (classpath #$(this-package-native-input "classpath")) (bin (string-append #$output "/bin/"))) (mkdir-p bin) (for-each (lambda (tool) (with-output-to-file (string-append bin tool) (lambda _ #$@(if (string-prefix? "armhf" (or (%current-system) (%current-target-system))) `((format #t "#!~a/bin/sh ~a/bin/jamvm -Xnocompact -classpath ~a/share/classpath/tools.zip \ gnu.classpath.tools.~a.~a $@" bash jamvm classpath tool (if (string=? "native2ascii" tool) "Native2ASCII" "Main"))) `((format #t "#!~a/bin/sh ~a/bin/jamvm -Xnocompact -Xnoinlining -classpath ~a/share/classpath/tools.zip \ gnu.classpath.tools.~a.~a $@" bash jamvm classpath tool (if (string=? "native2ascii" tool) "Native2ASCII" "Main")))))) (chmod (string-append bin tool) #o755)) (list "javah" "rmic" "rmid" "orbd" "rmiregistry" "native2ascii")))))) (native-inputs (list bash-minimal jamvm-1-bootstrap classpath-0.99)) (inputs '()) (synopsis "Executables from GNU Classpath") (description "This package provides wrappers around the tools provided by the GNU Classpath library. They are executed by the JamVM virtual machine."))) ;; The last release of GNU Classpath is 0.99 and it happened in 2012. Since ;; then Classpath has gained much more support for Java 1.6. (define-public classpath-devel (let ((commit "e7c13ee0cf2005206fbec0eca677f8cf66d5a103") (revision "1")) (package (inherit classpath-bootstrap) (version (string-append "0.99-" revision "." (string-take commit 9))) (source (origin (method git-fetch) (uri (git-reference (url "https://git.savannah.gnu.org/git/classpath.git") (commit commit))) (file-name (string-append "classpath-" version "-checkout")) (sha256 (base32 "1v2rww76ww322mpg3s12a1kkc6gkp31bm9gcxs532h0wq285fiw4")) (patches (search-patches "classpath-aarch64-support.patch")))) (arguments `(#:make-flags ;; Ensure that the initial heap size is smaller than the maximum ;; size. By default only Xmx is set, which can lead to invalid ;; memory settings on some machines with a lot of memory. '("JAVAC_MEM_OPT=-J-Xms512M -J-Xmx768M") #:configure-flags (list (string-append "--with-ecj-jar=" (assoc-ref %build-inputs "ecj-bootstrap") "/share/java/ecj-bootstrap.jar") (string-append "--with-javac=" (assoc-ref %build-inputs "ecj-javac-wrapper") "/bin/javac") (string-append "JAVA=" (assoc-ref %build-inputs "jamvm") "/bin/jamvm") "GCJ_JAVAC_TRUE=no" "ac_cv_prog_java_works=yes" ; trust me "--disable-Werror" "--disable-gmp" "--disable-gtk-peer" "--disable-gconf-peer" "--disable-plugin" "--disable-dssi" "--disable-alsa" "--disable-gjdoc") #:phases (modify-phases %standard-phases ;; XXX The bootstrap phase executes autogen.sh, which fails after ;; complaining about the lack of gettext. (replace 'bootstrap (lambda _ (invoke "autoreconf" "-vif"))) (add-after 'unpack 'remove-unsupported-annotations (lambda _ (substitute* (find-files "java" "\\.java$") (("@Override") "")))) (add-after 'install 'install-data (lambda _ (invoke "make" "install-data")))))) (native-inputs (list autoconf automake libltdl libtool gettext-minimal texinfo pkg-config classpath-jamvm-wrappers ;for javah ecj-bootstrap ecj-javac-wrapper fastjar jamvm-1-bootstrap))))) (define jamvm (package (inherit jamvm-1-bootstrap) (version "2.0.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/jamvm/jamvm/" "JamVM%20" version "/jamvm-" version ".tar.gz")) (sha256 (base32 "1nl0zxz8y5x8gwsrm7n32bry4dx8x70p8z3s9jbdvs8avyb8whkn")) (patches (search-patches "jamvm-2.0.0-disable-branch-patching.patch" "jamvm-2.0.0-opcode-guard.patch" "jamvm-2.0.0-aarch64-support.patch")) ;; Remove precompiled software. (snippet '(delete-file "src/classlib/gnuclasspath/lib/classes.zip")))) (build-system gnu-build-system) (arguments (substitute-keyword-arguments (package-arguments jamvm-1-bootstrap) ((#:configure-flags _) '(list (string-append "--with-classpath-install-dir=" (assoc-ref %build-inputs "classpath")))))) (inputs `(("classpath" ,classpath-devel) ("ecj-javac-wrapper" ,ecj-javac-wrapper) ("zip" ,zip) ("zlib" ,zlib))))) (define ecj-javac-wrapper-final (package (inherit ecj-javac-wrapper) (native-inputs (list guile-3.0 ecj-bootstrap jamvm classpath-devel)))) ;; We jump ahead by patching the sources of ECJ 4.2.1 so that our bootstrap ;; JDK can build it. ECJ 4 allows us to skip the build of the first version ;; of icedtea and build icedtea 2.x directly. (define-public ecj4-bootstrap (package (name "ecj-bootstrap") (version "4.2.1") (source (origin (method url-fetch) (uri (string-append "http://archive.eclipse.org/eclipse/" "downloads/drops4/R-" version "-201209141800/ecjsrc-" version ".jar")) (sha256 (base32 "1x281p87m14zylvinkiz6gc23ss7pzlx419qjbql11jriwav4qfj")))) ;; It would be so much easier if we could use the ant-build-system, but we ;; cannot as we don't have ant at this point. We use ecj for ;; bootstrapping the JDK. (build-system gnu-build-system) (arguments `(#:tests? #f ; there are no tests #:phases (modify-phases %standard-phases (replace 'unpack (lambda* (#:key source #:allow-other-keys) (mkdir "src") (with-directory-excursion "src" (invoke "gjar" "-xf" source)) (chdir "src"))) (replace 'configure (lambda* (#:key inputs #:allow-other-keys) (setenv "CLASSPATH" (string-join (cons (search-input-file inputs "/lib/rt.jar") (find-files (string-append (assoc-ref inputs "ant-bootstrap") "/lib") "\\.jar$")) ":")) ;; This directive is not supported by our simple bootstrap JDK. (substitute* (find-files "." "\\.java$") (("@Override") "")))) (replace 'build (lambda* (#:key inputs #:allow-other-keys) ;; We can't compile these yet, but we don't need them at this ;; point anyway. (delete-file "org/eclipse/jdt/core/JDTCompilerAdapter.java") (delete-file-recursively "org/eclipse/jdt/internal/antadapter") ;; Create a simple manifest to make ecj executable. (mkdir-p "META-INF") (with-output-to-file "META-INF/MANIFESTS.MF" (lambda _ (display "Manifest-Version: 1.0 Main-Class: org.eclipse.jdt.internal.compiler.batch.Main\n"))) ;; Compile it all! (apply invoke "javac" (find-files "." "\\.java$")) ;; Pack it all up! We don't use "jar" here, because ;; it doesn't produce reproducible zip archives. ;; XXX: copied from (gnu build install) (for-each (lambda (file) (let ((s (lstat file))) (unless (eq? (stat:type s) 'symlink) (utime file 0 0 0 0)))) (find-files "." #:directories? #t)) ;; It is important that the manifest appears first. (apply invoke "zip" "-0" "-X" "ecj-bootstrap.jar" "META-INF/MANIFESTS.MF" (delete "./META-INF/MANIFESTS.MF" (find-files "." ".*" #:directories? #t))))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((share (string-append (assoc-ref outputs "out") "/share/java/"))) (mkdir-p share) (install-file "ecj-bootstrap.jar" share))))))) (native-inputs (list ant-bootstrap classpath-devel ecj-javac-wrapper-final jamvm unzip zip)) (home-page "https://eclipse.org") (synopsis "Eclipse Java development tools core batch compiler") (description "This package provides the Eclipse Java core batch compiler for bootstrapping purposes. The @dfn{Eclipse compiler for Java} (ecj) is a requirement for all GNU Classpath releases after version 0.93. This version supports sufficient parts of Java 7 to build Icedtea 2.x.") (license license:epl1.0))) (define ecj4-javac-wrapper (package (inherit ecj-javac-wrapper) (native-inputs (list guile-3.0 ecj4-bootstrap jamvm classpath-devel)))) (define jamvm-with-ecj4 (package (inherit jamvm) (inputs (modify-inputs (package-inputs jamvm) (replace "ecj-javac-wrapper" ecj4-javac-wrapper))))) (define-public icedtea-7 (let* ((version "2.6.13") (drop (lambda (name hash) (origin (method url-fetch) (uri (string-append "http://icedtea.classpath.org/download/drops" "/icedtea7/" version "/" name ".tar.bz2")) (sha256 (base32 hash)))))) (package (name "icedtea") (version version) (source (origin (method url-fetch) (uri (string-append "http://icedtea.wildebeest.org/download/source/icedtea-" version ".tar.xz")) (sha256 (base32 "1w331rdqx1dcx2xb0fmjmrkdc71xqn20fxsgw8by4xhiblh88khh")) (modules '((guix build utils))) (snippet '(begin (substitute* "Makefile.in" ;; do not leak information about the build host (("DISTRIBUTION_ID=\"\\$\\(DIST_ID\\)\"") "DISTRIBUTION_ID=\"\\\"guix\\\"\"")) #t)))) (build-system gnu-build-system) (outputs '("out" ; Java Runtime Environment "jdk" ; Java Development Kit "doc")) ; all documentation (arguments `(;; There are many test failures. Some are known to ;; fail upstream, others relate to not having an X ;; server running at test time, yet others are a ;; complete mystery to me. ;; hotspot: passed: 241; failed: 45; error: 2 ;; langtools: passed: 1,934; failed: 26 ;; jdk: unknown #:tests? #f ;; The DSOs use $ORIGIN to refer to each other, but (guix build ;; gremlin) doesn't support it yet, so skip this phase. #:validate-runpath? #f #:modules ((guix build utils) (guix build gnu-build-system) (ice-9 match) (ice-9 popen) (srfi srfi-19) (srfi srfi-26)) #:configure-flags ;; TODO: package sctp and add to inputs `("--disable-system-sctp" "--enable-system-pcsc" "--enable-system-lcms" "--enable-bootstrap" "--enable-nss" "--without-rhino" ,(string-append "--with-parallel-jobs=" (number->string (parallel-job-count))) "--disable-downloading" "--disable-tests" ;they are run in the check phase instead "--with-openjdk-src-dir=./openjdk.src" ,(string-append "--with-ecj=" (assoc-ref %build-inputs "ecj4-javac-wrapper") "/bin/javac") ,(string-append "--with-jdk-home=" (assoc-ref %build-inputs "classpath")) ,(string-append "--with-java=" (assoc-ref %build-inputs "jamvm") "/bin/jamvm") ,(string-append "--with-jar=" (assoc-ref %build-inputs "classpath") "/bin/gjar")) #:phases (modify-phases %standard-phases (replace 'unpack (lambda* (#:key source inputs #:allow-other-keys) (let ((target (string-append "icedtea-" ,version)) (unpack (lambda* (name #:optional dir) (let ((dir (or dir (string-drop-right name 5)))) (mkdir dir) (invoke "tar" "xvf" (assoc-ref inputs name) "-C" dir "--strip-components=1"))))) (mkdir target) (invoke "tar" "xvf" source "-C" target "--strip-components=1") (chdir target) (unpack "openjdk-src" "openjdk.src") (with-directory-excursion "openjdk.src" (for-each unpack (filter (cut string-suffix? "-drop" <>) (map (match-lambda ((name . _) name)) inputs))))))) (add-after 'unpack 'use-classpath (lambda* (#:key inputs #:allow-other-keys) (let ((tools (search-input-file inputs "/share/classpath/tools.zip")) (rt.jar (search-input-file inputs "/lib/rt.jar"))) ;; GNU Classpath does not provide rt.jar, but jamvm provides ;; Classpath's glibj.zip as rt.jar, so we just use that. (substitute* "Makefile.in" (("\\$\\(SYSTEM_JDK_DIR\\)/jre/lib/rt.jar") rt.jar)) ;; Make sure we can find all classes. (setenv "CLASSPATH" (string-append rt.jar ":" tools)) (setenv "JAVACFLAGS" (string-append "-cp " rt.jar ":" tools))))) (add-after 'unpack 'patch-bitrot (lambda _ (substitute* '("patches/boot/revert-6973616.patch" "openjdk.src/jdk/make/common/shared/Defs-versions.gmk") (("REQUIRED_FREETYPE_VERSION = 2.2.1") "REQUIRED_FREETYPE_VERSION = 2.10.1")) ;; As of attr 2.4.48 this header is no longer ;; included. It is provided by the libc instead. (substitute* '("configure" "openjdk.src/jdk/src/solaris/native/sun/nio/fs/LinuxNativeDispatcher.c") (("attr/xattr.h") "sys/xattr.h")))) (add-after 'unpack 'fix-openjdk (lambda _ (substitute* "openjdk.src/jdk/make/common/Defs-linux.gmk" (("CFLAGS_COMMON = -fno-strict-aliasing" all) (string-append all " -fcommon"))) (substitute* '("openjdk.src/jdk/src/solaris/native/java/net/PlainSocketImpl.c" "openjdk.src/jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c") (("#include ") "#include ")) ;; It looks like the "h = 31 * h + c" line of the jsum() ;; function gets miscompiled. After a few iterations of the loop ;; the result of "31 * h" is always 0x8000000000000000. ;; Bad optimization maybe... ;; Transform "31 * h + c" into a convoluted "32 * h + c - h" ;; as a workaround. (substitute* "openjdk.src/hotspot/src/share/vm/memory/dump.cpp" (("h = 31 \\* h \\+ c;") "jlong h0 = h;\nfor(int i = 0; i < 5; i++) h += h;\nh += c - h0;")))) (add-after 'unpack 'fix-x11-extension-include-path (lambda* (#:key inputs #:allow-other-keys) (substitute* "openjdk.src/jdk/make/sun/awt/mawt.gmk" (((string-append "\\$\\(firstword \\$\\(wildcard " "\\$\\(OPENWIN_HOME\\)" "/include/X11/extensions\\).*$")) (string-append (assoc-ref inputs "libxrender") "/include/X11/extensions" " -I" (assoc-ref inputs "libxtst") "/include/X11/extensions" " -I" (assoc-ref inputs "libxinerama") "/include/X11/extensions")) (("\\$\\(wildcard /usr/include/X11/extensions\\)\\)") "")))) (add-after 'unpack 'patch-paths (lambda* (#:key inputs #:allow-other-keys) ;; buildtree.make generates shell scripts, so we need to replace ;; the generated shebang (substitute* '("openjdk.src/hotspot/make/linux/makefiles/buildtree.make") (("/bin/sh") (which "bash"))) (let ((corebin (string-append (assoc-ref inputs "coreutils") "/bin/")) (binbin (string-append (assoc-ref inputs "binutils") "/bin/")) (grepbin (string-append (assoc-ref inputs "grep") "/bin/"))) (substitute* '("openjdk.src/jdk/make/common/shared/Defs-linux.gmk" "openjdk.src/corba/make/common/shared/Defs-linux.gmk") (("UNIXCOMMAND_PATH = /bin/") (string-append "UNIXCOMMAND_PATH = " corebin)) (("USRBIN_PATH = /usr/bin/") (string-append "USRBIN_PATH = " corebin)) (("DEVTOOLS_PATH *= */usr/bin/") (string-append "DEVTOOLS_PATH = " corebin)) (("COMPILER_PATH *= */usr/bin/") (string-append "COMPILER_PATH = " (assoc-ref inputs "gcc") "/bin/")) (("DEF_OBJCOPY *=.*objcopy") (string-append "DEF_OBJCOPY = " (which "objcopy")))) ;; fix path to alsa header (substitute* "openjdk.src/jdk/make/common/shared/Sanity.gmk" (("ALSA_INCLUDE=/usr/include/alsa/version.h") (string-append "ALSA_INCLUDE=" (assoc-ref inputs "alsa-lib") "/include/alsa/version.h"))) ;; fix hard-coded utility paths (substitute* '("openjdk.src/jdk/make/common/shared/Defs-utils.gmk" "openjdk.src/corba/make/common/shared/Defs-utils.gmk") (("ECHO *=.*echo") (string-append "ECHO = " (which "echo"))) (("^GREP *=.*grep") (string-append "GREP = " (which "grep"))) (("EGREP *=.*egrep") (string-append "EGREP = " (which "egrep"))) (("CPIO *=.*cpio") (string-append "CPIO = " (which "cpio"))) (("READELF *=.*readelf") (string-append "READELF = " (which "readelf"))) (("^ *AR *=.*ar") (string-append "AR = " (which "ar"))) (("^ *TAR *=.*tar") (string-append "TAR = " (which "tar"))) (("AS *=.*as") (string-append "AS = " (which "as"))) (("LD *=.*ld") (string-append "LD = " (which "ld"))) (("STRIP *=.*strip") (string-append "STRIP = " (which "strip"))) (("NM *=.*nm") (string-append "NM = " (which "nm"))) (("^SH *=.*sh") (string-append "SH = " (which "bash"))) (("^FIND *=.*find") (string-append "FIND = " (which "find"))) (("LDD *=.*ldd") (string-append "LDD = " (which "ldd"))) (("NAWK *=.*(n|g)awk") (string-append "NAWK = " (which "gawk"))) (("XARGS *=.*xargs") (string-append "XARGS = " (which "xargs"))) (("UNZIP *=.*unzip") (string-append "UNZIP = " (which "unzip"))) (("ZIPEXE *=.*zip") (string-append "ZIPEXE = " (which "zip"))) (("SED *=.*sed") (string-append "SED = " (which "sed")))) ;; Some of these timestamps cause problems as they are more than ;; 10 years ago, failing the build process. (substitute* "openjdk.src/jdk/src/share/classes/java/util/CurrencyData.properties" (("AZ=AZM;2005-12-31-20-00-00;AZN") "AZ=AZN") (("MZ=MZM;2006-06-30-22-00-00;MZN") "MZ=MZN") (("RO=ROL;2005-06-30-21-00-00;RON") "RO=RON") (("TR=TRL;2004-12-31-22-00-00;TRY") "TR=TRY"))))) (add-before 'configure 'set-additional-paths (lambda* (#:key inputs #:allow-other-keys) (substitute* "openjdk.src/jdk/make/common/shared/Sanity.gmk" (("ALSA_INCLUDE=/usr/include/alsa/version.h") (string-append "ALSA_INCLUDE=" (assoc-ref inputs "alsa-lib") "/include/alsa/version.h"))) (setenv "CC" "gcc") (setenv "CPATH" (string-append (assoc-ref inputs "libxcomposite") "/include/X11/extensions" ":" (assoc-ref inputs "libxrender") "/include/X11/extensions" ":" (assoc-ref inputs "libxtst") "/include/X11/extensions" ":" (assoc-ref inputs "libxinerama") "/include/X11/extensions" ":" (or (getenv "CPATH") ""))) (setenv "ALT_OBJCOPY" (which "objcopy")) (setenv "ALT_CUPS_HEADERS_PATH" (string-append (assoc-ref inputs "cups") "/include")) (setenv "ALT_FREETYPE_HEADERS_PATH" (string-append (assoc-ref inputs "freetype") "/include")) (setenv "ALT_FREETYPE_LIB_PATH" (string-append (assoc-ref inputs "freetype") "/lib")))) (add-before 'build 'disable-os-version-check ;; allow build on linux major version change (lambda _ (setenv "DISABLE_HOTSPOT_OS_VERSION_CHECK" "ok"))) (add-before 'check 'fix-test-framework (lambda _ ;; Fix PATH in test environment (substitute* "test/jtreg/com/sun/javatest/regtest/Main.java" (("PATH=/bin:/usr/bin") (string-append "PATH=" (getenv "PATH")))) (substitute* "test/jtreg/com/sun/javatest/util/SysEnv.java" (("/usr/bin/env") (which "env"))) (substitute* "openjdk.src/hotspot/test/test_env.sh" (("/bin/rm") (which "rm")) (("/bin/cp") (which "cp")) (("/bin/mv") (which "mv"))))) (add-before 'check 'fix-hotspot-tests (lambda _ (with-directory-excursion "openjdk.src/hotspot/test/" (substitute* "jprt.config" (("PATH=\"\\$\\{path4sdk\\}\"") (string-append "PATH=" (getenv "PATH"))) (("make=/usr/bin/make") (string-append "make=" (which "make")))) (substitute* '("runtime/6626217/Test6626217.sh" "runtime/7110720/Test7110720.sh") (("/bin/rm") (which "rm")) (("/bin/cp") (which "cp")) (("/bin/mv") (which "mv")))))) (add-before 'check 'fix-jdk-tests (lambda _ (with-directory-excursion "openjdk.src/jdk/test/" (substitute* "com/sun/jdi/JdbReadTwiceTest.sh" (("/bin/pwd") (which "pwd"))) (substitute* "com/sun/jdi/ShellScaffold.sh" (("/bin/kill") (which "kill"))) (substitute* "start-Xvfb.sh" ;;(("/usr/bin/X11/Xvfb") (which "Xvfb")) (("/usr/bin/nohup") (which "nohup"))) (substitute* "javax/security/auth/Subject/doAs/Test.sh" (("/bin/rm") (which "rm"))) (substitute* "tools/launcher/MultipleJRE.sh" (("echo \"#!/bin/sh\"") (string-append "echo \"#!" (which "rm") "\"")) (("/usr/bin/zip") (which "zip"))) (substitute* "com/sun/jdi/OnThrowTest.java" (("#!/bin/sh") (string-append "#!" (which "sh")))) (substitute* "java/lang/management/OperatingSystemMXBean/GetSystemLoadAverage.java" (("/usr/bin/uptime") (which "uptime"))) (substitute* "java/lang/ProcessBuilder/Basic.java" (("/usr/bin/env") (which "env")) (("/bin/false") (which "false")) (("/bin/true") (which "true")) (("/bin/cp") (which "cp")) (("/bin/sh") (which "sh"))) (substitute* "java/lang/ProcessBuilder/FeelingLucky.java" (("/bin/sh") (which "sh"))) (substitute* "java/lang/ProcessBuilder/Zombies.java" (("/usr/bin/perl") (which "perl")) (("/bin/ps") (which "ps")) (("/bin/true") (which "true"))) (substitute* "java/lang/Runtime/exec/ConcurrentRead.java" (("/usr/bin/tee") (which "tee"))) (substitute* "java/lang/Runtime/exec/ExecWithDir.java" (("/bin/true") (which "true"))) (substitute* "java/lang/Runtime/exec/ExecWithInput.java" (("/bin/cat") (which "cat"))) (substitute* "java/lang/Runtime/exec/ExitValue.java" (("/bin/sh") (which "sh")) (("/bin/true") (which "true")) (("/bin/kill") (which "kill"))) (substitute* "java/lang/Runtime/exec/LotsOfDestroys.java" (("/usr/bin/echo") (which "echo"))) (substitute* "java/lang/Runtime/exec/LotsOfOutput.java" (("/usr/bin/cat") (which "cat"))) (substitute* "java/lang/Runtime/exec/SleepyCat.java" (("/bin/cat") (which "cat")) (("/bin/sleep") (which "sleep")) (("/bin/sh") (which "sh"))) (substitute* "java/lang/Runtime/exec/StreamsSurviveDestroy.java" (("/bin/cat") (which "cat"))) (substitute* "java/rmi/activation/CommandEnvironment/SetChildEnv.java" (("/bin/chmod") (which "chmod"))) (substitute* "java/util/zip/ZipFile/Assortment.java" (("/bin/sh") (which "sh")))))) (replace 'check (lambda* (#:key tests? #:allow-other-keys) ;; The "make check-*" targets always return zero, so we need to ;; check for errors in the associated log files to determine ;; whether any tests have failed. (when tests? (use-modules (ice-9 rdelim)) (let* ((error-pattern (make-regexp "^(Error|FAILED):.*")) (checker (lambda (port) (let loop () (let ((line (read-line port))) (cond ((eof-object? line) #t) ((regexp-exec error-pattern line) (error "test failed")) (else (loop))))))) (run-test (lambda (test) (invoke "make" test) (call-with-input-file (string-append "test/" test ".log") checker)))) (run-test "check-hotspot") (run-test "check-langtools") (run-test "check-jdk"))))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((doc (string-append (assoc-ref outputs "doc") "/share/doc/icedtea")) (jre (assoc-ref outputs "out")) (jdk (assoc-ref outputs "jdk"))) (copy-recursively "openjdk.build/docs" doc) (copy-recursively "openjdk.build/j2re-image" jre) (copy-recursively "openjdk.build/j2sdk-image" jdk)))) ;; Some of the libraries in the lib/amd64 folder link to libjvm.so. ;; But that shared object is located in the server/ folder, so it ;; cannot be found. This phase creates a symbolic link in the ;; lib/amd64 folder so that the other libraries can find it. ;; ;; See: ;; https://lists.gnu.org/archive/html/guix-devel/2017-10/msg00169.html ;; ;; FIXME: Find the bug in the build system, so that this symlink is ;; not needed. (add-after 'install 'install-libjvm (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((lib-path (string-append (assoc-ref outputs "out") ;; See 'INSTALL_ARCH_DIR' in ;; 'configure'. ,(match (%current-system) ("i686-linux" "/lib/i386") ("x86_64-linux" "/lib/amd64") ("armhf-linux" "/lib/arm") ("aarch64-linux" "/lib/aarch64") ;; We need a catch-all, dropping ;; '-linux' works in most cases. (_ (string-append "/lib/" (string-drop-right (%current-system) 6))))))) (symlink (string-append lib-path "/server/libjvm.so") (string-append lib-path "/libjvm.so"))))) ;; By default IcedTea only generates an empty keystore. In order to ;; be able to use certificates in Java programs we need to generate a ;; keystore from a set of certificates. For convenience we use the ;; certificates from the nss-certs package. (add-after 'install 'install-keystore (lambda* (#:key inputs outputs #:allow-other-keys) (use-modules (ice-9 rdelim)) (let* ((keystore "cacerts") (certs-dir (search-input-directory inputs "etc/ssl/certs")) (keytool (string-append (assoc-ref outputs "jdk") "/bin/keytool"))) (define (extract-cert file target) (call-with-input-file file (lambda (in) (call-with-output-file target (lambda (out) (let loop ((line (read-line in 'concat)) (copying? #f)) (cond ((eof-object? line) #t) ((string-prefix? "-----BEGIN" line) (display line out) (loop (read-line in 'concat) #t)) ((string-prefix? "-----END" line) (display line out) #t) (else (when copying? (display line out)) (loop (read-line in 'concat) copying?))))))))) (define (import-cert cert) (format #t "Importing certificate ~a\n" (basename cert)) (let ((temp "tmpcert")) (extract-cert cert temp) (let ((port (open-pipe* OPEN_WRITE keytool "-import" "-alias" (basename cert) "-keystore" keystore "-storepass" "changeit" "-file" temp))) (display "yes\n" port) (when (not (zero? (status:exit-val (close-pipe port)))) (format #t "failed to import ~a\n" cert))) (delete-file temp))) ;; This is necessary because the certificate directory contains ;; files with non-ASCII characters in their names. (setlocale LC_ALL "en_US.utf8") (setenv "LC_ALL" "en_US.utf8") (for-each import-cert (find-files certs-dir "\\.pem$")) (mkdir-p (string-append (assoc-ref outputs "out") "/lib/security")) (mkdir-p (string-append (assoc-ref outputs "jdk") "/jre/lib/security")) ;; The cacerts files we are going to overwrite are chmod'ed as ;; read-only (444) in icedtea-8 (which derives from this ;; package). We have to change this so we can overwrite them. (chmod (string-append (assoc-ref outputs "out") "/lib/security/" keystore) #o644) (chmod (string-append (assoc-ref outputs "jdk") "/jre/lib/security/" keystore) #o644) (install-file keystore (string-append (assoc-ref outputs "out") "/lib/security")) (install-file keystore (string-append (assoc-ref outputs "jdk") "/jre/lib/security")))))))) (native-inputs `(("openjdk-src" ,(drop "openjdk" "0l34ikyf62hbzlf9032alzkkqvf7bpmckz4gvirvph755w7gka8l")) ("corba-drop" ,(drop "corba" "050gv2jbg1pi6qkn8w18bwpbklfa5b0kymjvan9pncddbj8m84fz")) ("jaxp-drop" ,(drop "jaxp" "1k6yldwnxfzdg5926r1nlfv8d1r1j7rlp2nkz6gqh05vgyamnfhl")) ("jaxws-drop" ,(drop "jaxws" "110j7jlz47x2gg6f7653x12mssan5kvj9l9h1m1c8c92drfxbqyk")) ("jdk-drop" ,(drop "jdk" "0d1mca38ksxvdskp9im3pp7fdijhj1n3lwq9w13r9s4v3qyskgdd")) ("langtools-drop" ,(drop "langtools" "0nq5236fzxn3p6x8cgncl56mzcmsj07q9gymysnws4c8byc6n0qj")) ("hotspot-drop" ,(origin (method url-fetch) (uri (string-append "http://icedtea.classpath.org/downloads/drops" "/icedtea7/" version "/hotspot.tar.bz2")) (sha256 (base32 "17bdv39n4lh8l5737c96f3xgamx4y305m067p01cywgp7zaddqws")) (patches (search-patches "icedtea-7-hotspot-aarch64-use-c++98.patch")))) ("ant" ,ant-bootstrap) ("attr" ,attr) ("classpath" ,classpath-devel) ("coreutils" ,coreutils) ("diffutils" ,diffutils) ;for tests ("ecj4-javac-wrapper" ,ecj4-javac-wrapper) ("fastjar" ,fastjar) ;only for the configure phase; we actually use gjar ("gawk" ,gawk) ("grep" ,grep) ("jamvm" ,jamvm-with-ecj4) ("libtool" ,libtool) ("pkg-config" ,pkg-config) ("wget" ,wget) ("which" ,which) ("cpio" ,cpio) ("zip" ,zip) ("unzip" ,unzip) ("libxslt" ,libxslt) ;for xsltproc ("nss-certs" ,nss-certs) ("perl" ,perl) ("procps" ,procps))) ;for "free", even though I'm not sure we should use it (inputs (list alsa-lib cups fontconfig freetype giflib gtk+-2 lcms libjpeg-turbo libpng libx11 libxcomposite libxi libxinerama libxrender libxt libxtst mit-krb5 nss pcsc-lite zlib)) (home-page "http://icedtea.classpath.org") (synopsis "Java development kit") (description "This package provides the Java development kit OpenJDK built with the IcedTea build harness.") ;; 'configure' lists "mips" and "mipsel", but not "mips64el'. (supported-systems (delete "mips64el-linux" %supported-systems)) ;; IcedTea is released under the GPL2 + Classpath exception, which is the ;; same license as both GNU Classpath and OpenJDK. (license license:gpl2+)))) (define-public icedtea-8 (let* ((version "3.19.0") (drop (lambda (name hash) (origin (method url-fetch) (uri (string-append "http://icedtea.classpath.org/download/drops" "/icedtea8/" version "/" name ".tar.xz")) (sha256 (base32 hash)))))) (package (inherit icedtea-7) (version "3.19.0") (source (origin (method url-fetch) (uri (string-append "http://icedtea.wildebeest.org/download/source/icedtea-" version ".tar.xz")) (sha256 (base32 "1cmms7cb2sav3ywc36ynqmybzx73sl279rm6j8i5nqrmp98ixmpf")) (modules '((guix build utils))) (snippet '(substitute* '("configure" "acinclude.m4") ;; Do not embed build time (("(DIST_ID=\"Custom build).*$" _ prefix) (string-append prefix "\"\n")) ;; Do not leak information about the build host (("DIST_NAME=\"\\$build_os\"") "DIST_NAME=\"guix\""))))) (arguments `(#:imported-modules ((guix build ant-build-system) (guix build syscalls) ,@%gnu-build-system-modules) #:disallowed-references ,(list (gexp-input icedtea-7 "jdk")) ,@(substitute-keyword-arguments (package-arguments icedtea-7) ((#:modules modules) `((guix build utils) (guix build gnu-build-system) ((guix build ant-build-system) #:prefix ant:) (ice-9 match) (ice-9 popen) (srfi srfi-19) (srfi srfi-26))) ((#:configure-flags flags) `(let ((jdk (assoc-ref %build-inputs "jdk"))) `("CFLAGS=-fcommon" "CXXFLAGS=-fcommon" "--enable-bootstrap" "--enable-nss" ,(string-append "--with-parallel-jobs=" (number->string (parallel-job-count))) "--disable-downloading" "--disable-system-pcsc" "--disable-system-sctp" "--disable-tests" ;they are run in the check phase instead "--with-openjdk-src-dir=./openjdk.src" ,(string-append "--with-jdk-home=" jdk)))) ((#:phases phases) `(modify-phases ,phases (delete 'fix-x11-extension-include-path) (delete 'patch-paths) (delete 'set-additional-paths) (delete 'patch-patches) (delete 'patch-bitrot) (delete 'use-classpath) ;; Prevent the keytool from recording the current time when ;; adding certificates at build time. (add-after 'unpack 'patch-keystore (lambda _ (substitute* "openjdk.src/jdk/src/share/classes/sun/security/provider/JavaKeyStore.java" (("date = new Date\\(\\);") "\ date = (System.getenv(\"SOURCE_DATE_EPOCH\") != null) ?\ new Date(Long.parseLong(System.getenv(\"SOURCE_DATE_EPOCH\"))) :\ new Date();")) #t)) (add-after 'unpack 'patch-jni-libs ;; Hardcode dynamically loaded libraries. (lambda _ (define remove (@ (srfi srfi-1) remove)) (define (icedtea-or-openjdk? path) (or (string-contains path "openjdk") (string-contains path "icedtea"))) (let* ((library-path (remove icedtea-or-openjdk? (search-path-as-string->list (getenv "LIBRARY_PATH")))) (find-library (lambda (name) (or (search-path library-path (string-append "lib" name ".so")) (string-append "lib" name ".so"))))) (for-each (lambda (file) (catch 'decoding-error (lambda () (substitute* file (("VERSIONED_JNI_LIB_NAME\\(\"(.*)\", \"(.*)\"\\)" _ name version) (string-append "\"" (find-library name) "\"")) (("JNI_LIB_NAME\\(\"(.*)\"\\)" _ name) (string-append "\"" (find-library name) "\"")))) (lambda _ ;; Those are safe to skip. (format (current-error-port) "warning: failed to substitute: ~a~%" file)))) (find-files "openjdk.src/jdk/src/solaris/native" "\\.c|\\.h"))))) (replace 'fix-openjdk (lambda _ (substitute* '("openjdk.src/jdk/src/solaris/native/java/net/PlainSocketImpl.c" "openjdk.src/jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c") (("#include ") "#include ")))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((doc (string-append (assoc-ref outputs "doc") "/share/doc/icedtea")) (jre (assoc-ref outputs "out")) (jdk (assoc-ref outputs "jdk"))) (copy-recursively "openjdk.build/docs" doc) (copy-recursively "openjdk.build/images/j2re-image" jre) (copy-recursively "openjdk.build/images/j2sdk-image" jdk) ;; Install the nss.cfg file to JRE to enable SSL/TLS ;; support via NSS. (copy-file (string-append jdk "/jre/lib/security/nss.cfg") (string-append jre "/lib/security/nss.cfg"))))) (add-after 'install 'strip-jar-timestamps (assoc-ref ant:%standard-phases 'strip-jar-timestamps))))))) (native-inputs `(("jdk" ,icedtea-7 "jdk") ("openjdk-src" ,(drop "openjdk" "1l3bzmd3s38scxpwamfhnwbv7vndgjq6hz3bl58437fgl9kgbl69")) ("aarch32-drop" ,(drop "aarch32" "0k4dwpi3x3lj41rj32xyxbn76r7cb2g2whh44r1z4iwhw1xd2lpq")) ("corba-drop" ,(drop "corba" "0xhh6gf5gh5c6vf1607xcy49wnp5prch2rim13x14wvsn817xf0r")) ("jaxp-drop" ,(drop "jaxp" "043g335rgi5ipl8dp3q2cc3gcfhxk77ipxs43sv344z71bn8xmxr")) ("jaxws-drop" ,(drop "jaxws" "1pc0pv4v2mn2mjc0vp19d94v2150xigyhxsmckqasy647zcm6w0r")) ("jdk-drop" ,(drop "jdk" "1742lcm55l8zhi522x83v65ccr0rd6511q9rj7crw44x3ymdrhrv")) ("langtools-drop" ,(drop "langtools" "08iz7p2xcddlphipf6gahyabr5cawlnydap12p1n4f0md069b50b")) ("hotspot-drop" ,(drop "hotspot" "1ffaxfnb3yn1i7crivqigc1r1q0z6cp044i6nfring4z6c8pfhd2")) ("nashorn-drop" ,(drop "nashorn" "15fn7cpm2i1npa88h57njxg0f8qkrqhrc30pb54d3hxlx5zyjl94")) ("shenandoah-drop" ,(drop "shenandoah" "1jjzjjx1ykyhbc4llh8249dlr8j5g1ki6r7g9baj2mxyb9whc5nq")) ,@(fold alist-delete (package-native-inputs icedtea-7) '("openjdk-src" "corba-drop" "jaxp-drop" "jaxws-drop" "jdk-drop" "langtools-drop" "hotspot-drop" "classpath" "ecj4-javac-wrapper" "jamvm" "fastjar"))))))) (define-public openjdk9 (package (name "openjdk") (version "9.181") (source (origin (method url-fetch) (uri "https://hg.openjdk.java.net/jdk/jdk/archive/3cc80be736f2.tar.bz2") (file-name (string-append name "-" version ".tar.bz2")) (sha256 (base32 "01ihmyf7k5z17wbr7xig7y40l9f01d5zjgkcmawn1102hw5kchpq")) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.(bin|exe|jar)$")) #t)))) (build-system gnu-build-system) (outputs '("out" "jdk" "doc")) (arguments `(#:tests? #f; require jtreg #:make-flags '("all") #:imported-modules ((guix build syscalls) ,@%gnu-build-system-modules) #:disallowed-references ,(list (gexp-input icedtea-8) (gexp-input icedtea-8 "jdk")) #:phases (modify-phases %standard-phases (add-after 'patch-source-shebangs 'fix-java-shebangs (lambda _ ;; This file was "fixed" by patch-source-shebangs, but it requires ;; this exact first line. (substitute* "jdk/make/data/blacklistedcertsconverter/blacklisted.certs.pem" (("^#!.*") "#! java BlacklistedCertsConverter SHA-256\n")) #t)) (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) ;; TODO: unbundle libpng and lcms (invoke "bash" "./configure" ;; Add flags for compilation with gcc >= 10 ,(string-append "--with-extra-cflags=-fcommon" " -fno-delete-null-pointer-checks" " -fno-lifetime-dse") (string-append "--with-freetype=" (assoc-ref inputs "freetype")) "--disable-freetype-bundling" "--disable-warnings-as-errors" "--disable-hotspot-gtest" "--with-giflib=system" "--with-libjpeg=system" (string-append "--prefix=" (assoc-ref outputs "out"))) #t)) (add-before 'build 'write-source-revision-file (lambda _ (with-output-to-file ".src-rev" (lambda _ (display ,version))) #t)) (replace 'build (lambda* (#:key make-flags parallel-build? #:allow-other-keys) (apply invoke "make" `(,@(if parallel-build? (list (string-append "JOBS=" (number->string (parallel-job-count)))) '()) ,@make-flags)))) (add-after 'unpack 'patch-jni-libs ;; Hardcode dynamically loaded libraries. (lambda _ (define remove (@ (srfi srfi-1) remove)) (define (icedtea-or-openjdk? path) (or (string-contains path "openjdk") (string-contains path "icedtea"))) (let* ((library-path (remove icedtea-or-openjdk? (search-path-as-string->list (getenv "LIBRARY_PATH")))) (find-library (lambda (name) (or (search-path library-path (string-append "lib" name ".so")) (string-append "lib" name ".so"))))) (for-each (lambda (file) (catch 'decoding-error (lambda () (substitute* file (("VERSIONED_JNI_LIB_NAME\\(\"(.*)\", \"(.*)\"\\)" _ name version) (string-append "\"" (find-library name) "\"")) (("JNI_LIB_NAME\\(\"(.*)\"\\)" _ name) (string-append "\"" (find-library name) "\"")))) (lambda _ ;; Those are safe to skip. (format (current-error-port) "warning: failed to substitute: ~a~%" file)))) (find-files "." "\\.c$|\\.h$")) #t))) ;; Some of the libraries in the lib/ folder link to libjvm.so. ;; But that shared object is located in the server/ folder, so it ;; cannot be found. This phase creates a symbolic link in the ;; lib/ folder so that the other libraries can find it. ;; ;; See: ;; https://lists.gnu.org/archive/html/guix-devel/2017-10/msg00169.html ;; ;; FIXME: Find the bug in the build system, so that this symlink is ;; not needed. (add-after 'install 'install-libjvm (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((lib-out (string-append (assoc-ref outputs "out") "/lib")) (lib-jdk (string-append (assoc-ref outputs "jdk") "/lib"))) (symlink (string-append lib-jdk "/server/libjvm.so") (string-append lib-jdk "/libjvm.so")) (symlink (string-append lib-out "/server/libjvm.so") (string-append lib-out "/libjvm.so"))) #t)) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) (jdk (assoc-ref outputs "jdk")) (doc (assoc-ref outputs "doc")) (images (car (find-files "build" ".*-server-release" #:directories? #t)))) (copy-recursively (string-append images "/images/jdk") jdk) (copy-recursively (string-append images "/images/jre") out) (copy-recursively (string-append images "/images/docs") doc)) #t)) (add-after 'install 'strip-zip-timestamps (lambda* (#:key outputs #:allow-other-keys) (use-modules (guix build syscalls)) (for-each (lambda (zip) (let ((dir (mkdtemp! "zip-contents.XXXXXX"))) (with-directory-excursion dir (invoke "unzip" zip)) (delete-file zip) (for-each (lambda (file) (let ((s (lstat file))) (unless (eq? (stat:type s) 'symlink) (format #t "reset ~a~%" file) (utime file 0 0 0 0)))) (find-files dir #:directories? #t)) (with-directory-excursion dir (let ((files (find-files "." ".*" #:directories? #t))) (apply invoke "zip" "-0" "-X" zip files))))) (find-files (assoc-ref outputs "doc") ".*.zip$")) #t))))) (inputs `(("alsa-lib" ,alsa-lib) ("cups" ,cups) ("fontconfig" ,fontconfig) ("freetype" ,freetype) ("giflib" ,giflib) ("lcms" ,lcms) ("libelf" ,libelf) ("libjpeg" ,libjpeg-turbo) ("libice" ,libice) ("libpng" ,libpng) ("libx11" ,libx11) ("libxcomposite" ,libxcomposite) ("libxi" ,libxi) ("libxinerama" ,libxinerama) ("libxrender" ,libxrender) ("libxt" ,libxt) ("libxtst" ,libxtst))) (native-inputs `(("icedtea-8" ,icedtea-8) ("icedtea-8:jdk" ,icedtea-8 "jdk") ;; XXX: The build system fails with newer versions of GNU Make. ("make@4.2" ,gnu-make-4.2) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (home-page "https://openjdk.java.net/projects/jdk9/") (synopsis "Java development kit") (description "This package provides the Java development kit OpenJDK.") (license license:gpl2+))) (define-public openjdk10 (package (inherit openjdk9) (name "openjdk") (version "10.46") (source (origin (method url-fetch) (uri "http://hg.openjdk.java.net/jdk/jdk/archive/6fa770f9f8ab.tar.bz2") (file-name (string-append name "-" version ".tar.bz2")) (sha256 (base32 "0zywq2203b4hx4jms9vbwvjcj1d3k2v3qpx4s33729fkpmid97r4")) (patches (search-patches "openjdk-10-idlj-reproducibility.patch")) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.(bin|exe|jar)$")) #t)))) (arguments (substitute-keyword-arguments (package-arguments openjdk9) ((#:phases phases) `(modify-phases ,phases (replace 'fix-java-shebangs (lambda _ ;; This file was "fixed" by patch-source-shebangs, but it requires ;; this exact first line. (substitute* "make/data/blacklistedcertsconverter/blacklisted.certs.pem" (("^#!.*") "#! java BlacklistedCertsConverter SHA-256\n")) #t)) (replace 'configure (lambda* (#:key inputs outputs #:allow-other-keys) (invoke "bash" "./configure" ;; Add flags for compilation with gcc >= 10 ,(string-append "--with-extra-cflags=-fcommon" " -fno-delete-null-pointer-checks" " -fno-lifetime-dse") (string-append "--with-freetype=" (assoc-ref inputs "freetype")) "--disable-freetype-bundling" "--disable-warnings-as-errors" "--disable-hotspot-gtest" "--with-giflib=system" "--with-libjpeg=system" "--with-native-debug-symbols=zipped" (string-append "--prefix=" (assoc-ref outputs "out"))))) (add-after 'unpack 'disable-warnings-as-errors (lambda _ ;; It looks like the "--disable-warnings-as-errors" option of ;; the 'configure' phase is not working. (substitute* "make/autoconf/generated-configure.sh" (("-Werror") "")))))) ((#:disallowed-references _ '()) `(,(gexp-input openjdk9) ,(gexp-input openjdk9 "jdk"))))) (native-inputs `(("openjdk9" ,openjdk9) ("openjdk9:jdk" ,openjdk9 "jdk") ("make@4.2" ,gnu-make-4.2) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))))) (define-public openjdk11 (package (name "openjdk") (version "11.0.15") (source (origin (method url-fetch) (uri (string-append "https://openjdk-sources.osci.io/openjdk11/openjdk-" version "-ga.tar.xz")) (file-name (string-append name "-" version ".tar.bz2")) (sha256 (base32 "0di91nnms2iq1svgq72r5y17am17r4vh2lq43k0bkcwpc84d6nd8")) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.(bin|exe|jar)$")) #t)))) (build-system gnu-build-system) (outputs '("out" "jdk" "doc")) (arguments `(#:imported-modules ((guix build syscalls) ,@%gnu-build-system-modules) #:disallowed-references ,(list (gexp-input openjdk10) (gexp-input openjdk10 "jdk")) #:tests? #f; requires jtreg ;; TODO package jtreg #:configure-flags `(;; Add flags for compilation with gcc >= 10 ,(string-append "--with-extra-cflags=-fcommon" " -fno-delete-null-pointer-checks" " -fno-lifetime-dse") "--disable-option-checking" ; --enable-fast-install default flag errors otherwise "--disable-warnings-as-errors" ;; make validate-runpath pass, see: http://issues.guix.info/issue/32894 "--with-native-debug-symbols=zipped" ;; do not use the bundled libraries "--with-giflib=system" "--with-lcms=system" "--with-libjpeg=system" "--with-libpng=system" "--with-version-pre=" ;; allow the build system to locate the system freetype ,(string-append "--with-freetype-include=" (assoc-ref %build-inputs "freetype") "/include") ,(string-append "--with-freetype-lib=" (assoc-ref %build-inputs "freetype") "/lib")) #:phases (modify-phases %standard-phases (add-after 'patch-source-shebangs 'fix-java-shebangs (lambda _ ;; This file was "fixed" by patch-source-shebangs, but it requires ;; this exact first line. (substitute* "make/data/blockedcertsconverter/blocked.certs.pem" (("^#!.*") "#! java BlockedCertsConverter SHA-256\n")) #t)) (add-after 'unpack 'patch-jni-libs ;; Hardcode dynamically loaded libraries. (lambda _ (define remove (@ (srfi srfi-1) remove)) (define (icedtea-or-openjdk? path) (or (string-contains path "openjdk") (string-contains path "icedtea"))) (let* ((library-path (remove icedtea-or-openjdk? (search-path-as-string->list (getenv "LIBRARY_PATH")))) (find-library (lambda (name) (or (search-path library-path (string-append "lib" name ".so")) (string-append "lib" name ".so"))))) (for-each (lambda (file) (catch 'decoding-error (lambda () (substitute* file (("VERSIONED_JNI_LIB_NAME\\(\"(.*)\", \"(.*)\"\\)" _ name version) (string-append "\"" (find-library name) "\"")) (("JNI_LIB_NAME\\(\"(.*)\"\\)" _ name) (string-append "\"" (find-library name) "\"")))) (lambda _ ;; Those are safe to skip. (format (current-error-port) "warning: failed to substitute: ~a~%" file)))) (find-files "." "\\.c$|\\.h$")) #t))) (add-before 'build 'write-source-revision-file (lambda _ (with-output-to-file ".src-rev" (lambda _ (display ,version))) #t)) (replace 'build (lambda* (#:key parallel-build? make-flags #:allow-other-keys) (apply invoke "make" "all" `(,@(if parallel-build? (list (string-append "JOBS=" (number->string (parallel-job-count)))) '()) ,@make-flags)))) ;; jdk 11 does not build jre by default any more ;; building it anyways ;; for further information see: ;; https://github.com/AdoptOpenJDK/openjdk-build/issues/356 (add-after 'build 'build-jre (lambda* (#:key parallel-build? make-flags #:allow-other-keys) (apply invoke "make" "legacy-jre-image" `(,@(if parallel-build? (list (string-append "JOBS=" (number->string (parallel-job-count)))) '()) ,@make-flags)))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out")) (jdk (assoc-ref outputs "jdk")) (doc (assoc-ref outputs "doc")) (images (car (find-files "build" ".*-server-release" #:directories? #t)))) (copy-recursively (string-append images "/images/jdk") jdk) (copy-recursively (string-append images "/images/jre") out) (copy-recursively (string-append images "/images/docs") doc)) #t)) ;; Some of the libraries in the lib/ folder link to libjvm.so. ;; But that shared object is located in the server/ folder, so it ;; cannot be found. This phase creates a symbolic link in the ;; lib/ folder so that the other libraries can find it. ;; ;; See: ;; https://lists.gnu.org/archive/html/guix-devel/2017-10/msg00169.html ;; ;; FIXME: Find the bug in the build system, so that this symlink is ;; not needed. (add-after 'install 'install-libjvm (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((lib-out (string-append (assoc-ref outputs "out") "/lib")) (lib-jdk (string-append (assoc-ref outputs "jdk") "/lib"))) (symlink (string-append lib-jdk "/server/libjvm.so") (string-append lib-jdk "/libjvm.so")) (symlink (string-append lib-out "/server/libjvm.so") (string-append lib-out "/libjvm.so"))) #t)) (add-after 'install 'strip-character-data-timestamps (lambda* (#:key outputs #:allow-other-keys) (use-modules (guix build syscalls)) (let ((archive (string-append (assoc-ref outputs "jdk") "/lib/src.zip")) (dir (mkdtemp! "zip-contents.XXXXXX"))) (with-directory-excursion dir (invoke "unzip" archive)) (delete-file archive) (with-directory-excursion dir (let ((char-data-files (find-files "." "CharacterData.*"))) (for-each (lambda (file) (substitute* file (((string-append "This file was generated " "AUTOMATICALLY from a template " "file.*")) (string-append "This file was generated " "AUTOMATICALLY from a template " "file")))) char-data-files))) (with-directory-excursion dir (let ((files (find-files "." ".*" #:directories? #t))) (apply invoke "zip" "-0" "-X" archive files)))))) (add-after 'strip-character-data-timestamps 'strip-archive-timestamps (lambda* (#:key outputs #:allow-other-keys) (use-modules (guix build syscalls) (ice-9 binary-ports) (rnrs bytevectors)) (letrec ((repack-archive (lambda (archive) (let ((dir (mkdtemp! "zip-contents.XXXXXX"))) (with-directory-excursion dir (invoke "unzip" archive)) (delete-file archive) (for-each (compose repack-archive canonicalize-path) (find-files dir "(ct.sym|.*.jar)$")) (let ((reset-file-timestamp (lambda (file) (let ((s (lstat file))) (unless (eq? (stat:type s) 'symlink) (format #t "reset ~a~%" file) (utime file 0 0 0 0)))))) (for-each reset-file-timestamp (find-files dir #:directories? #t))) (with-directory-excursion dir (let ((files (find-files "." ".*" #:directories? #t))) (apply invoke "zip" "-0" "-X" archive files))))))) (for-each repack-archive (find-files (assoc-ref outputs "doc") ".*.zip$")) (for-each repack-archive (find-files (assoc-ref outputs "jdk") ".*.(zip|jar|diz)$")) (repack-archive (string-append (assoc-ref outputs "jdk") "/lib/ct.sym")) (let ((repack-jmod (lambda (file-name) (call-with-input-file file-name (lambda (file) (let ((header #vu8(#x4a #x4d #x01 #x00))) (if (equal? (get-bytevector-n file (bytevector-length header)) header) (let* ((header-length (bytevector-length header)) (temp-file (mkstemp! (string-copy "temp-file.XXXXXX"))) (temp-filename (port-filename temp-file)) (content-length (- (stat:size (stat file)) header-length))) (sendfile temp-file file content-length header-length) (delete-file file-name) (close-port temp-file) (repack-archive (canonicalize-path temp-filename)) (call-with-output-file file-name (lambda (file) (put-bytevector file header) (call-with-input-file temp-filename (lambda (temp-file) (sendfile file temp-file (stat:size (stat temp-file)) 0))))))))))))) (for-each repack-jmod (find-files (assoc-ref outputs "jdk") ".*.jmod$"))) #t))) (add-after 'install 'remove-timestamp-from-api-summary (lambda* (#:key outputs #:allow-other-keys) (substitute* (string-append (assoc-ref outputs "doc") "/api/overview-summary.html") (("Generated by javadoc \\(11-internal\\).*$") "Generated by javadoc (11-internal) -->\n")) #t))))) (inputs `(("alsa-lib" ,alsa-lib) ("cups" ,cups) ("fontconfig" ,fontconfig) ("freetype" ,freetype) ("giflib" ,giflib) ("lcms" ,lcms) ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) ("libx11" ,libx11) ("libxext" ,libxext) ("libxrandr" ,libxrandr) ("libxrender" ,libxrender) ("libxt" ,libxt) ("libxtst" ,libxtst))) (native-inputs `(("autoconf" ,autoconf) ("openjdk10" ,openjdk10) ("openjdk10:jdk" ,openjdk10 "jdk") ("make" ,gnu-make-4.2) ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (home-page "https://openjdk.java.net/projects/jdk/11/") (synopsis "Java development kit") (description "This package provides the Java development kit OpenJDK.") (license license:gpl2+))) (define-public openjdk12 (package (inherit openjdk11) (name "openjdk") (version "12.33") (source (origin (method url-fetch) (uri "http://hg.openjdk.java.net/jdk/jdk/archive/0276cba45aac.tar.bz2") (file-name (string-append name "-" version ".tar.bz2")) (sha256 (base32 "0mbhdrk12b6878kby0flnbak7444dlpm0ihlmf92vk59y1c02bc2")) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.(bin|exe|jar)$")) #t)))) (arguments (substitute-keyword-arguments (package-arguments openjdk11) ((#:phases phases) `(modify-phases ,phases (replace 'fix-java-shebangs (lambda _ ;; This file was "fixed" by patch-source-shebangs, but it requires ;; this exact first line. (substitute* "make/data/blacklistedcertsconverter/blacklisted.certs.pem" (("^#!.*") "#! java BlacklistedCertsConverter SHA-256\n")))))))) (inputs `(("alsa-lib" ,alsa-lib) ("cups" ,cups) ("fontconfig" ,fontconfig) ("freetype" ,freetype) ("giflib" ,giflib) ("lcms" ,lcms) ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) ("libx11" ,libx11) ("libxext" ,libxext) ("libxrandr" ,libxrandr) ("libxrender" ,libxrender) ("libxt" ,libxt) ("libxtst" ,libxtst))) (native-inputs `(("autoconf" ,autoconf) ("openjdk11" ,openjdk11) ("openjdk11:jdk" ,openjdk11 "jdk") ("make@4.2" ,gnu-make-4.2) ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (home-page "https://openjdk.java.net/projects/jdk/12"))) (define-public openjdk13 (package (inherit openjdk12) (name "openjdk") (version "13.0.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openjdk/jdk13u") (commit (string-append "jdk-" version "-ga")))) (file-name (git-file-name name version)) (sha256 (base32 "0wrrr0d7lz1v8qqm752mn4gz5l2vpl2kmx4ac3ysvk4mljc924hp")) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.(bin|exe|jar)$")) #t)))) (inputs `(("alsa-lib" ,alsa-lib) ("cups" ,cups) ("fontconfig" ,fontconfig) ("freetype" ,freetype) ("giflib" ,giflib) ("lcms" ,lcms) ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) ("libx11" ,libx11) ("libxext" ,libxext) ("libxrandr" ,libxrandr) ("libxrender" ,libxrender) ("libxt" ,libxt) ("libxtst" ,libxtst))) (native-inputs `(("autoconf" ,autoconf) ("openjdk12:jdk" ,openjdk12 "jdk") ("make@4.2" ,gnu-make-4.2) ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (home-page "https://openjdk.java.net/projects/jdk/13"))) (define-public openjdk14 (package (inherit openjdk13) (name "openjdk") (version "14.0.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openjdk/jdk14u") (commit (string-append "jdk-" version "-ga")))) (file-name (git-file-name name version)) (sha256 (base32 "07k9bsbxwyf2z2n50z96nvhsdai916mxdxcr5lm44jz7f6xrwfq6")) (modules '((guix build utils))) (snippet `(begin ;; The m4 macro uses 'help' to search for builtins, which is ;; not available in bash-minimal (substitute* "make/autoconf/basics.m4" (("if help") "if command -v")) (for-each delete-file (find-files "." ".*.(bin|exe|jar)$")) #t)))) (inputs `(("alsa-lib" ,alsa-lib) ("cups" ,cups) ("fontconfig" ,fontconfig) ("freetype" ,freetype) ("giflib" ,giflib) ("lcms" ,lcms) ("libjpeg" ,libjpeg-turbo) ("libpng" ,libpng) ("libx11" ,libx11) ("libxext" ,libxext) ("libxrandr" ,libxrandr) ("libxrender" ,libxrender) ("libxt" ,libxt) ("libxtst" ,libxtst))) (native-inputs `(("autoconf" ,autoconf) ("make@4.2" ,gnu-make-4.2) ("openjdk13:jdk" ,openjdk13 "jdk") ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (home-page "https://openjdk.java.net/projects/jdk/14"))) (define-public openjdk15 (package (inherit openjdk14) (name "openjdk") (version "15.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openjdk/jdk15u") (commit (string-append "jdk-" version "-ga")))) (file-name (git-file-name name version)) (sha256 (base32 "168cr08nywp0q3vyj8njkhsmmnyd8rz9r58hk4xhzdzc6bdfkl1i")) (patches (search-patches "openjdk-15-xcursor-no-dynamic.patch")))) (inputs (cons `("libxcursor" ,libxcursor) ; for our patch to work (package-inputs openjdk14))) (native-inputs `(("autoconf" ,autoconf) ("openjdk14:jdk" ,openjdk14 "jdk") ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (home-page "https://openjdk.java.net/projects/jdk/15"))) (define-public openjdk16 (package (inherit openjdk15) (name "openjdk") (version "16.0.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openjdk/jdk16u") (commit (string-append "jdk-" version "-ga")))) (file-name (git-file-name name version)) (sha256 (base32 "1ggddsbsar4dj2fycfqqqagqil7prhb30afvq6933rz7pa9apm2f")) (patches (search-patches "openjdk-15-xcursor-no-dynamic.patch")))) (native-inputs `(("autoconf" ,autoconf) ("openjdk15:jdk" ,openjdk15 "jdk") ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (arguments (substitute-keyword-arguments (package-arguments openjdk15) ((#:phases phases) `(modify-phases ,phases (add-after 'unpack 'make-templates-writable (lambda _ ;; The build system copies a few .template files from the ;; source directory into the build directory and then modifies ;; them in-place. So these files have to be writable. (for-each make-file-writable (find-files "src/java.base/share/classes/jdk/internal/misc/" "\\.template$")))))))) (home-page "https://openjdk.java.net/projects/jdk/16"))) (define-public openjdk17 (package (inherit openjdk16) (name "openjdk") (version "17.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openjdk/jdk17u") (commit (string-append "jdk-" version "-ga")))) (file-name (git-file-name name version)) (sha256 (base32 "0slmd6ww947gxpp4yr2wmr5z975bg86qh7zqfp2radf2q77ql65b")) (patches (search-patches "openjdk-15-xcursor-no-dynamic.patch")))) (native-inputs `(("autoconf" ,autoconf) ("openjdk16:jdk" ,openjdk16 "jdk") ("pkg-config" ,pkg-config) ("unzip" ,unzip) ("which" ,which) ("zip" ,zip))) (arguments (substitute-keyword-arguments (package-arguments openjdk16) ((#:phases phases) `(modify-phases ,phases (replace 'fix-java-shebangs (lambda _ ;; This file was "fixed" by patch-source-shebangs, but it requires ;; this exact first line. (substitute* "make/data/blockedcertsconverter/blocked.certs.pem" (("^#!.*") "#! java BlockedCertsConverter SHA-256\n")))))))) (home-page "https://openjdk.java.net/projects/jdk/17"))) (define-public icedtea icedtea-8) (define-public ant/java8 (package (inherit ant-bootstrap) (name "ant") (version "1.10.10") (source (origin (method url-fetch) (uri (string-append "mirror://apache/ant/source/apache-ant-" version "-src.tar.gz")) (sha256 (base32 "1dhkk9ajc378cln6sj9q0ya8bl9dpyji5xcrl1zq41zx1k6j54g5")) (modules '((guix build utils))) (snippet '(begin (for-each delete-file (find-files "lib/optional" "\\.jar$")) #t)))) (arguments (substitute-keyword-arguments (package-arguments ant-bootstrap) ((#:phases phases) `(modify-phases ,phases (delete 'define-java-environment-variables) (add-after 'unpack 'remove-scripts ;; Remove bat / cmd scripts for DOS as well as the antRun and runant ;; wrappers. (lambda _ (for-each delete-file (find-files "src/script" "(.*\\.(bat|cmd)|runant.*|antRun.*)")) #t)) (replace 'build (lambda* (#:key inputs outputs #:allow-other-keys) (setenv "JAVA_HOME" (assoc-ref inputs "jdk")) ;; Disable tests to avoid dependency on hamcrest-core, which needs ;; Ant to build. This is necessary in addition to disabling the ;; "check" phase, because the dependency on "test-jar" would always ;; result in the tests to be run. (substitute* "build.xml" (("depends=\"jars,test-jar") "depends=\"jars")) (invoke "bash" "bootstrap.sh" (string-append "-Ddist.dir=" (assoc-ref outputs "out"))))))))) (native-inputs `(("jdk" ,icedtea-8 "jdk") ("zip" ,zip) ("unzip" ,unzip))))) ;; The 1.9.x series is the last that can be built with GCJ. The 1.10.x series ;; requires Java 8. (define-public ant (package (inherit ant/java8) (version "1.9.15") (source (origin (method url-fetch) (uri (string-append "mirror://apache/ant/source/apache-ant-" version "-src.tar.gz")) (sha256 (base32 "1xy30f1w5gaqk6g3f0vw7ygix4rb6032qkcw42y4z8wd9jihgygd")))) (native-inputs `(("jdk" ,icedtea-7 "jdk") ("zip" ,zip) ("unzip" ,unzip))))) (define-public ant-apache-bcel (package (inherit ant/java8) (name "ant-apache-bcel") (arguments (substitute-keyword-arguments (package-arguments ant/java8) ((#:phases phases) `(modify-phases ,phases (add-after 'unpack 'link-bcel (lambda* (#:key inputs #:allow-other-keys) (for-each (lambda (file) (symlink file (string-append "lib/optional/" (basename file)))) (find-files (assoc-ref inputs "java-commons-bcel") "\\.jar$")) #t)) (add-after 'build 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (share (string-append out "/share/java")) (bin (string-append out "/bin")) (lib (string-append out "/lib"))) (mkdir-p share) (install-file (string-append lib "/ant-apache-bcel.jar") share) (delete-file-recursively bin) (delete-file-recursively lib) #t))))))) (inputs (modify-inputs (package-inputs ant/java8) (prepend java-commons-bcel))))) (define-public ant-junit (package (inherit ant/java8) (name "ant-junit") (arguments (substitute-keyword-arguments (package-arguments ant/java8) ((#:phases phases) `(modify-phases ,phases (add-after 'unpack 'link-junit (lambda* (#:key inputs #:allow-other-keys) (for-each (lambda (file) (symlink file (string-append "lib/optional/" (basename file)))) (find-files (assoc-ref inputs "java-junit") "\\.jar$")) #t)) (add-after 'build 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (share (string-append out "/share/java")) (bin (string-append out "/bin")) (lib (string-append out "/lib"))) (mkdir-p share) (install-file (string-append lib "/ant-junit.jar") share) (delete-file-recursively bin) (delete-file-recursively lib) #t))))))) (inputs (modify-inputs (package-inputs ant/java8) (prepend java-junit))))) (define-public libantlr3c (package (name "libantlr3c") (version "3.4") (source (origin (method url-fetch) (uri (string-append "https://www.antlr3.org/download/C/" name "-" version ".tar.gz")) (sha256 (base32 "0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list "--enable-debuginfo" "--disable-static" ,@(if (target-64bit?) `("--enable-64bit") '())))) (synopsis "ANTLR C Library") (description "LIBANTLR3C provides run-time C libraries for ANTLR3 (ANother Tool for Language Recognition v3).") (home-page "https://www.antlr3.org/") (license license:bsd-3))) (define-public drip ;; Last release is from 2014, with a few important commits afterwards. (let ((commit "a4bd00df0199e78243847f06cc04ecaea31f8f08")) (package (name "drip") (version (git-version "0.2.4" "1" commit)) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ninjudd/drip") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "0wzmjwfyldr3jn49517xd8yn7dgdk8h88qkga3kjyg1zc375ylg2")))) (build-system gnu-build-system) (native-inputs `(("jdk" ,icedtea "jdk"))) (arguments `(#:tests? #f ; No tests. #:phases (modify-phases %standard-phases (delete 'configure) (add-before 'install 'fix-wrapper (lambda* (#:key inputs #:allow-other-keys) (let ((jps (search-input-file inputs "/bin/jps"))) (substitute* "bin/drip" (("jps") jps) (("brew update && brew upgrade drip") "guix pull && guix install drip") ;; No need to make: (("\\(cd -- \"\\$drip_dir\" && make -s\\) \\|\\| exit 1") "") ;; No need to include source: (("\\[\\[ -r \\$drip_dir/src/org/flatland/drip/Main\\.java \\]\\]") "true")) #t))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (share (string-append out "/share/drip"))) (mkdir-p bin) (for-each (lambda (file) (install-file (string-append "bin/" file) bin)) '("drip" "drip_daemon" "drip_proxy")) (install-file "drip.jar" share) (substitute* (string-append bin "/drip") (("drip_dir=\\$bin_dir/..") (string-append "drip_dir=" share))) #t)))))) (home-page "https://github.com/ninjudd/drip") (synopsis "Faster Java Virtual Machine launching") (description "Drip is a launcher for the Java Virtual Machine that provides much faster startup times than the @command{java} command. The @command{drip} script is intended to be a drop-in replacement for the @command{java} command, only faster.") (license license:epl1.0)))) (define-public java-openjfx-build (package (name "java-openjfx-build") ;; This is a java-8 version (version "8.202") (source (origin (method hg-fetch) (uri (hg-reference (url "http://hg.openjdk.java.net/openjfx/8u-dev/rt") (changeset (string-append (string-join (string-split version #\.) "u") "-ga")))) (file-name (string-append name "-" version "-checkout")) (modules '((guix build utils))) (snippet '(begin ;; Delete included gradle jar (delete-file-recursively "gradle/wrapper") #t)) (sha256 (base32 "0yg38mwpivswccv9n96k06x3iv82i4px1a9xg9l8dswzwmfj259f")) (patches (search-patches "java-openjfx-build-jdk_version.patch")))) (build-system ant-build-system) (arguments `(#:jar-name "java-openjfx.jar" #:source-dir "buildSrc/src/main/java" #:test-dir "buildSrc/src/test" #:phases (modify-phases %standard-phases (add-before 'configure 'generate-jsl-parser (lambda _ (invoke "antlr3" "-o" "buildSrc/src/main/java/com/sun/scenario/effect/compiler" "buildSrc/src/main/antlr/JSL.g")))))) (inputs (list antlr3 java-stringtemplate)) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://openjfx.io") (synopsis "Graphical application toolkit in Java") (description "OpenJFX is a client application platform for desktop, mobile and embedded systems built on Java. Its goal is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains base classes for the OpenJFX distribution and helper classes for building other parts of the distribution.") (license license:gpl2))) ;gpl2 only, with classpath exception (define-public java-openjfx-base (package (inherit java-openjfx-build) (name "java-openjfx-base") (arguments `(#:jar-name "java-openjfx-base.jar" #:source-dir "modules/base/src/main/java:modules/base/src/main/java8:modules/base/src/main/version-info" #:test-dir "modules/base/src/test" #:phases (modify-phases %standard-phases (add-before 'check 'remove-empty-file (lambda _ (with-directory-excursion "modules/base/src/test/java" ;; These files are completely commented, but junit expects them to ;; contain a class, so tests fail. (delete-file "com/sun/javafx/property/adapter/PropertyDescriptorTest.java") (delete-file "com/sun/javafx/property/adapter/ReadOnlyPropertyDescriptorTest.java") (delete-file "javafx/beans/property/PropertiesTest.java") (delete-file "javafx/beans/property/adapter/ReadOnlyJavaBeanPropertyBuilder_General_Test.java") ;; This one fails (delete-file "com/sun/javafx/runtime/VersionInfoTest.java")) #t))))) (propagated-inputs (list java-openjfx-build)) (description "OpenJFX is a client application platform for desktop, mobile and embedded systems built on Java. Its goal is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains base classes for the OpenJFX distribution."))) (define-public java-openjfx-graphics (package (inherit java-openjfx-build) (name "java-openjfx-graphics") (arguments `(#:jar-name "java-openjfx-graphics.jar" #:source-dir "modules/graphics/src/main/java" #:tests? #f; require X #:test-dir "modules/graphics/src/test" #:phases (modify-phases %standard-phases (add-after 'unpack 'copy-missing-file (lambda* (#:key inputs #:allow-other-keys) (let ((target "modules/graphics/src/main/native-prism-sw/JNativeSurface.c")) (copy-file (assoc-ref inputs "JNativeSurface.c") target) ;; XXX: looks like the missing file we found isn't *quite* ;; compatible... (substitute* target (("case TYPE_INT_ARGB:") ""))))) (add-after 'build 'build-native (lambda* (#:key inputs outputs #:allow-other-keys) (let ((jdk (assoc-ref inputs "jdk")) (class-file->class-name (lambda (class-file) (string-map (lambda (c) (if (char=? c #\/) #\. c)) (string-drop-right class-file (string-length ".class")))))) (setenv "CPPFLAGS" (string-append "-DINLINE=inline " "-DLINUX " "-I" jdk "/include " "-I" jdk "/include/linux " "-I " (getcwd) "/build/classes/include " "-I " (getcwd) "/modules/graphics/src/main/native-prism-sw")) ;; Instructions have been adapted from buildSrc/linux.gradle (with-directory-excursion "build/classes" ;; Build prism (mkdir-p "include") ;; Generate headers for prism (apply invoke "javah" "-d" "include" "-cp" "." (map class-file->class-name (append (find-files "com/sun/prism/impl" "\\.class$") (find-files "com/sun/prism" "PresentableState.*\\.class$")))) ;; ...then for prism_sw (apply invoke "javah" "-d" "include" "-cp" "." (map class-file->class-name (find-files "com/sun/pisces" "\\.class$"))) ;; ...and for prism_es2 (apply invoke "javah" "-d" "include" "-cp" "." (map class-file->class-name (find-files "com/sun/prism/es2" "\\.class$"))))) (with-directory-excursion "netbeans/native-prism" (invoke "make" "CONF=Release")) (with-directory-excursion "netbeans/native-prism-sw" (invoke "make" "CONF=Release")) ;; TODO: This fails due to unknown EGL procedure names #; (with-directory-excursion "netbeans/native-prism-es2" (invoke "make" "CONF=Release")) (let* ((out (assoc-ref outputs "out")) (dir ,(match (%current-system) ("i686-linux" "i386") ((or "armhf-linux" "aarch64-linux") "arm") ((or "x86_64-linux") "amd64") (_ "unknown"))) (target (string-append out "/share/" dir "/"))) (mkdir-p target) (for-each (lambda (file) (let ((new-name (string-append "lib" (string-map (lambda (c) (if (char=? c #\-) #\_ c)) (string-drop (basename file) (string-length "libnative-")))))) (copy-file file (string-append target new-name)))) (find-files "netbeans" "\\.so$")))))))) (propagated-inputs (list java-openjfx-base java-swt)) ;; XXX: for unknown reasons ;; modules/graphics/src/main/native-prism-sw/JNativeSurface.c is missing ;; in this revision. (native-inputs `(("JNativeSurface.c" ,(origin (method url-fetch) (uri "https://raw.githubusercontent.com/openjdk/jfx/8u20-b02\ /modules/graphics/src/main/native-prism-sw/JNativeSurface.c") (sha256 (base32 "1kp15wbnd6rn0nciczp5ibq0ikby2yysvx1gnz5fa05vl2mm8mbm")))))) (description "OpenJFX is a client application platform for desktop, mobile and embedded systems built on Java. Its goal is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains graphics-related classes for the OpenJFX distribution."))) (define-public java-openjfx-media (package (inherit java-openjfx-build) (name "java-openjfx-media") (propagated-inputs `(("java-openjxf-graphics" ,java-openjfx-graphics))) (arguments `(#:jar-name "java-openjfx-media.jar" #:source-dir "modules/media/src/main/java" #:tests? #f)); no tests (description "OpenJFX is a client application platform for desktop, mobile and embedded systems built on Java. Its goal is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains media-related classes for the OpenJFX distribution."))) (define-public java-openjfx-controls (package (inherit java-openjfx-build) (name "java-openjfx-controls") (propagated-inputs `(("java-openjxf-graphics" ,java-openjfx-graphics))) (arguments `(#:jar-name "java-openjfx-controls.jar" #:source-dir "modules/controls/src/main/java" #:test-dir "modules/controls/src/test" ;; TODO: tests require com.sun.javafx.pgstub, ;; javafx.collections.MockSetObserver, and ;; com.sun.javafx.binding.ExpressionHelperUtility #:tests? #false #:phases (modify-phases %standard-phases (add-after 'unpack 'copy-resources (lambda _ (copy-recursively "modules/controls/src/test/resources" "build/test-classes") (copy-recursively "modules/controls/src/main/resources" "build/classes")))))) (description "OpenJFX is a client application platform for desktop, mobile and embedded systems built on Java. Its goal is to produce a modern, efficient, and fully featured toolkit for developing rich client applications. This package contains UI control classes for the OpenJFX distribution."))) (define-public javacc-4 (package (name "javacc") (version "4.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/javacc/javacc") (commit "release_41"))) (file-name (string-append "javacc-" version "-checkout")) (sha256 (base32 "07ysav7j8r1c6h8qxrgqk6lwdp74ly0ad1935lragxml0qqc3ka0")) (modules '((guix build utils))) ;; delete bundled jars (snippet '(begin (delete-file-recursively "lib") #t)))) (build-system ant-build-system) ;; Tests fail with ;; /tmp/guix-build-javacc-4.1.drv-0/source/test/javacodeLA/build.xml:60: ;; JAVACODE failed (arguments `(#:tests? #f #:phases (modify-phases %standard-phases ;; Delete tests to avoid build failure (we don't run them anyway). (add-after 'unpack 'delete-tests (lambda _ (for-each delete-file '("src/org/javacc/JavaCCTestCase.java" "src/org/javacc/parser/ExpansionTest.java" "src/org/javacc/parser/OptionsTest.java" "src/org/javacc/jjtree/JJTreeOptionsTest.java")) (for-each delete-file-recursively '("src/org/javacc/parser/test" "src/org/javacc/jjdoc/test")) #t)) (replace 'install (install-jars "bin/lib"))))) (home-page "https://javacc.org/") (synopsis "Java parser generator") (description "Java Compiler Compiler (JavaCC) is the most popular parser generator for use with Java applications. A parser generator is a tool that reads a grammar specification and converts it to a Java program that can recognize matches to the grammar. In addition to the parser generator itself, JavaCC provides other standard capabilities related to parser generation such 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") (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) (version "7.0.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/javacc/javacc") (commit version))) (file-name (git-file-name "javacc" version)) (sha256 (base32 "18kkak3gda93gr25jrgy6q00g0jr8i24ri2wk4kybz1v234fxx9i")) (modules '((guix build utils))) ;; Delete bundled jars. (snippet '(begin (for-each delete-file-recursively '("bootstrap" "lib")) #t)))) (arguments `(#:make-flags ; bootstrap from javacc-4 ,#~(list (string-append "-Dbootstrap-jar=" #$(this-package-native-input "javacc") "/share/java/javacc.jar")) #:test-target "test" #:phases (modify-phases %standard-phases (replace 'install (install-jars "target")) (add-after 'install 'install-bin (lambda* (#:key outputs inputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (dir (string-append out "/share/java")) (bin (string-append out "/bin")) (javacc (string-append bin "/javacc"))) (mkdir-p bin) (with-output-to-file javacc (lambda _ (display (string-append "#!/bin/sh\n" (assoc-ref inputs "jdk") "/bin/java" " -cp " dir "/javacc.jar" " `basename $0`" " $*")))) (chmod javacc #o755) ;; symlink to different names to affect the first argument and ;; change the behavior of the jar file. (symlink javacc (string-append bin "/jjdoc")) (symlink javacc (string-append bin "/jjtree")) #t)))))) (native-inputs (list javacc-4)))) ;; This is the last 3.x release of ECJ (define-public java-ecj-3 (package (name "java-ecj") (version "3.8.2") (source (origin (method url-fetch) (uri (string-append "http://archive.eclipse.org/eclipse/" "downloads/drops/R-" version "-201301310800/ecjsrc-" version ".jar")) (sha256 (base32 "01mdj14jw11g1jfnki4fi8229p0c6zzckd38zqy2w4m3cjcvsx04")))) (build-system ant-build-system) (arguments `(#:tests? #f ; none included #:jdk ,icedtea-7 ; doesn't build with JDK8+ #:make-flags (list "-f" "src/build.xml") #:build-target "build" #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-manifest (lambda _ ;; Record the main class to make ecj executable. (with-atomic-file-replacement "src/META-INF/MANIFEST.MF" (lambda (in out) (display "Manifest-Version: 1.0 Main-Class: org.eclipse.jdt.internal.compiler.batch.Main\n" out))) #t)) (replace 'install (install-jars "."))))) (home-page "https://eclipse.org") (synopsis "Eclipse Java development tools core batch compiler") (description "This package provides the Eclipse Java core batch compiler.") (license license:epl1.0))) ;; This is needed for java-cisd-args4j (define-public java-ecj-3.5 (package (inherit java-ecj-3) (version "3.5.1") (source (origin (method url-fetch/zipbomb) (uri (string-append "http://archive.eclipse.org/eclipse/" "downloads/drops/R-" version "-200909170800/ecjsrc-" version ".zip")) (sha256 (base32 "1vnl2mavisc567bip736xzsvvbjif5279wc4a7pbdik5wlir8qr7")))) (build-system ant-build-system) (arguments `(#:tests? #f ; none included #:jdk ,icedtea-7 ; doesn't build with JDK8+ #:build-target "build" #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-manifest (lambda _ ;; Record the main class to make ecj executable. (with-atomic-file-replacement "META-INF/MANIFEST.MF" (lambda (in out) (dump-port in out) (display "Main-Class: org.eclipse.jdt.internal.compiler.batch.Main\n" out))) #t)) (replace 'install (install-jars "."))))) (native-inputs (list unzip)))) (define-public java-ecj (package (inherit java-ecj-3) (version "4.6.3") (source (origin (method url-fetch) (uri (string-append "http://archive.eclipse.org/eclipse/downloads/drops4/R-" version "-201703010400/ecjsrc-" version ".jar")) (sha256 (base32 "11cfgsdgznja1pvlxkjbqykxd7pcd5655vkm7s44xmahmap15gpl")))) (arguments `(#:tests? #f ; none included #:build-target "build" #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-build.xml (lambda _ (substitute* "src/build.xml" (("^.*MANIFEST.*$") "")) #t)) (add-after 'unpack 'fix-prop (lambda _ (substitute* "src/build.xml" (("^.*properties.*$") " ")) #t)) (add-before 'build 'chdir (lambda _ (chdir "src") #t)) (replace 'install (install-jars "."))))))) (define-public java-cisd-base (let ((revision 38938) (base-version "14.12.0")) (package (name "java-cisd-base") (version (string-append base-version "-" (number->string revision))) (source (origin (method svn-fetch) (uri (svn-reference (url (string-append "http://svnsis.ethz.ch/repos/cisd/" "base/tags/release/" (version-major+minor base-version) ".x/" base-version "/base/")) (revision revision))) (file-name (string-append "java-cisd-base-" version "-checkout")) (sha256 (base32 "1i5adyf7nzclb0wydgwa1az04qliid8035vpahaandmkmigbnxiy")) (modules '((guix build utils))) (snippet '(begin ;; Delete included gradle jar (delete-file-recursively "gradle/wrapper") ;; Delete pre-built native libraries (delete-file-recursively "libs") #t)))) (build-system ant-build-system) (arguments `(#:make-flags '("-file" "build/build.xml") #:test-target "jar-test" #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases (add-after 'unpack 'unpack-build-resources (lambda* (#:key inputs #:allow-other-keys) (copy-recursively (assoc-ref inputs "build-resources") "../build_resources") #t)) (add-after 'unpack-build-resources 'fix-dependencies (lambda* (#:key inputs #:allow-other-keys) (substitute* "build/build.xml" (("\\$\\{lib\\}/testng/testng-jdk15.jar") (search-input-file inputs "/share/java/java-testng.jar")) (("\\$\\{lib\\}/commons-lang/commons-lang.jar") (search-input-file inputs (string-append "/share/java/commons-lang-" ,(package-version java-commons-lang) ".jar"))) (("\\$\\{lib\\}/commons-io/commons-io.jar") (search-input-file inputs (string-append "/lib/m2/commons-io/commons-io/" ,(package-version java-commons-io) "/commons-io-" ,(package-version java-commons-io) ".jar"))) ;; Remove dependency on svn (("string revision)) (("\\$\\{version.number\\}") ,base-version)) ;; Remove dependency on classycle (substitute* "../build_resources/ant/build-common.xml" (("string revision))) (source (origin (method svn-fetch) (uri (svn-reference (url (string-append "http://svnsis.ethz.ch/repos/cisd/" "args4j/tags/release/" (version-major+minor base-version) ".x/" base-version "/args4j/")) (revision revision))) (file-name (string-append "java-cisd-args4j-" version "-checkout")) (sha256 (base32 "0hhqznjaivq7ips7mkwas78z42s6djsm20rrs7g1zd59rcsakxn2")))) (build-system ant-build-system) (arguments `(#:make-flags '("-file" "build/build.xml") #:tests? #f ; there are no tests ;; There are weird build failures with JDK8, such as: "The type ;; java.io.ObjectInputStream cannot be resolved. It is indirectly ;; referenced from required .class files" #:jdk ,icedtea-7 #:modules ((guix build ant-build-system) (guix build utils) (guix build java-utils) (sxml simple) (sxml transform) (sxml xpath)) #:phases (modify-phases %standard-phases (add-after 'unpack 'unpack-build-resources (lambda* (#:key inputs #:allow-other-keys) (mkdir-p "../build_resources") (copy-recursively (assoc-ref inputs "build-resources") "../build_resources") (mkdir-p "../build_resources/lib"))) (add-after 'unpack-build-resources 'fix-dependencies (lambda* (#:key inputs #:allow-other-keys) ;; FIXME: There should be a more convenient abstraction for ;; editing XML files. (with-directory-excursion "../build_resources/ant/" (chmod "build-common.xml" #o664) (call-with-output-file "build-common.xml.new" (lambda (port) (sxml->xml (pre-post-order (with-input-from-file "build-common.xml" (lambda _ (xml->sxml #:trim-whitespace? #t))) `(;; Remove dependency on classycle and custom ant tasks (taskdef . ,(lambda (tag . kids) (let ((name ((sxpath '(name *text*)) kids))) (if (or (member "build-info" name) (member "dependency-checker" name) (member "build-java-subprojects" name) (member "project-classpath" name)) '() ; skip `(,tag ,@kids))))) (typedef . ,(lambda (tag . kids) (let ((name ((sxpath '(name *text*)) kids))) (if (member "recursive-jar" name) '() ; skip `(,tag ,@kids))))) (build-java-subprojects . ,(lambda _ '())) ;; Ignore everything else (*default* . ,(lambda (tag . kids) `(,tag ,@kids))) (*text* . ,(lambda (_ txt) txt)))) port))) (rename-file "build-common.xml.new" "build-common.xml")) (substitute* "build/build.xml" (("\\$\\{lib\\}/cisd-base/cisd-base.jar") (search-input-file inputs "/share/java/sis-base.jar")) ;; Remove dependency on svn (("string revision)) (("\\$\\{version.number\\}") ,base-version) ;; Don't use custom ant tasks. (("recursive-jar") "jar") (("string revision))) (source (origin (method svn-fetch) (uri (svn-reference (url (string-append "http://svnsis.ethz.ch/repos/cisd/" "jhdf5/tags/release/" (version-major+minor base-version) ".x/" base-version "/jhdf5/")) (revision revision))) (file-name (string-append "java-cisd-jhdf5-" version "-checkout")) (sha256 (base32 "13i17s2hn0q9drdqvp8csy7770p3hdbh9rp30ihln2ldkfawdmz0")) (modules '((guix build utils))) (snippet '(begin ;; Delete included gradle jar (delete-file-recursively "gradle/wrapper") ;; Delete pre-built native libraries (delete-file-recursively "libs") #t)))) (build-system ant-build-system) (arguments `(#:make-flags '("-file" "build/build.xml") #:build-target "jar-all" #:test-target "jar-test" #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases ;; FIXME: this build phase fails. (delete 'generate-jar-indices) ;; Don't erase results from the build phase when building tests. (add-after 'unpack 'separate-test-target-from-clean (lambda _ (substitute* "build/build.xml" (("\"jar-test\" depends=\"clean, ") "\"jar-test\" depends=\"")) #t)) (add-after 'unpack 'unpack-build-resources (lambda* (#:key inputs #:allow-other-keys) (copy-recursively (assoc-ref inputs "build-resources") "../build_resources") (delete-file-recursively "../build_resources/lib/") (mkdir-p "../build_resources/lib") ;; Remove dependency on classycle (substitute* "../build_resources/ant/build-common.xml" (("string revision)) (("\\$\\{version.number\\}") ,base-version)) #t)) (add-after 'unpack-build-resources 'fix-dependencies (lambda* (#:key inputs #:allow-other-keys) (substitute* "../build_resources/ant/build-common.xml" (("../libraries/testng/testng-jdk15.jar") (search-input-file inputs "/share/java/java-testng.jar"))) (substitute* "build/build.xml" (("\\$\\{lib\\}/sis-base/sis-base.jar") (search-input-file inputs "/share/java/sis-base.jar")) (("\\$\\{lib\\}/cisd-args4j/cisd-args4j.jar") (search-input-file inputs "/share/java/cisd-args4j.jar")) (("\\$\\{lib\\}/commons-lang/commons-lang.jar") (search-input-file inputs (string-append "/share/java/commons-lang-" ,(package-version java-commons-lang) ".jar"))) (("\\$\\{lib\\}/commons-io/commons-io.jar") (search-input-file inputs (string-append "/lib/m2/commons-io/commons-io/" ,(package-version java-commons-io) "/commons-io-" ,(package-version java-commons-io) ".jar"))) (("\\$\\{lib\\}/testng/testng-jdk15.jar") (search-input-file inputs "/share/java/java-testng.jar")) (("\\$\\{lib\\}/junit4/junit.jar") (car (find-files (assoc-ref inputs "java-junit") "jar$"))) (("\\$\\{lib\\}/jmock/hamcrest/hamcrest-core.jar") (car (find-files (assoc-ref inputs "java-hamcrest-core") "jar$")))) ;; Remove dependency on ch.rinn.restrictions (with-directory-excursion "source/java/ch/systemsx/cisd/hdf5/" (substitute* '("BitSetConversionUtils.java" "HDF5Utils.java") (("import ch.rinn.restrictions.Private;") "") (("@Private") ""))) (with-directory-excursion "sourceTest/java/ch/systemsx/cisd/hdf5/" (substitute* '("BitSetConversionTest.java" "h5ar/HDF5ArchiverTest.java") (("import ch.rinn.restrictions.Friend;") "") (("@Friend.*") "")) ;; Remove leftovers from removing @Friend (substitute* "h5ar/HDF5ArchiverTest.java" (("\\{ HDF5Archiver.class, IdCache.class, LinkRecord.class \\}\\)") ""))) #t)) (add-before 'configure 'build-native-library (lambda* (#:key inputs #:allow-other-keys) (let ((jdk (assoc-ref inputs "jdk")) (hdf5 (assoc-ref inputs "hdf5")) (dir ,(match (%current-system) ("i686-linux" "i386-Linux") ((or "armhf-linux" "aarch64-linux") "arm-Linux") ((or "x86_64-linux") "amd64-Linux") (_ "unknown-Linux")))) (with-directory-excursion "source/c" (apply invoke `("gcc" "-shared" "-O3" "-fPIC" "-Wl,--exclude-libs,ALL" ,@(find-files "jhdf5" "\\.c$") ,@(find-files "hdf-java" "\\.c$") ,(string-append "-I" hdf5 "/include") ,(string-append "-I" jdk "/include") ,(string-append "-I" jdk "/include/linux") ,(string-append hdf5 "/lib/libhdf5.a") "-o" "libjhdf5.so" "-lz"))) (install-file "source/c/libjhdf5.so" (string-append "libs/native/jhdf5/" dir)) #t))) ;; In the "check" phase we only build the test executable. (add-after 'check 'run-tests (lambda _ (invoke "java" "-jar" "targets/dist/sis-jhdf5-test.jar") (delete-file "targets/dist/sis-jhdf5-test.jar") #t)) (replace 'install (install-jars "targets/dist"))))) (inputs (list java-cisd-base java-cisd-args4j java-commons-lang java-commons-io hdf5-1.8 zlib)) (native-inputs `(("jdk" ,icedtea-8) ("java-testng" ,java-testng) ("java-junit" ,java-junit) ("java-jmock" ,java-jmock) ("java-hamcrest-core" ,java-hamcrest-core) ("build-resources" ,(origin (method svn-fetch) (uri (svn-reference (url (string-append "http://svnsis.ethz.ch/repos/cisd/" "jhdf5/tags/release/" (version-major+minor base-version) ".x/" base-version "/build_resources/")) (revision revision))) (sha256 (base32 "0b6335gkm4x895rac6kfg9d3rpq0sy19ph4zpg2gyw6asfsisjhk")))))) (home-page "https://wiki-bsse.ethz.ch/display/JHDF5/") (synopsis "Java binding for HDF5") (description "JHDF5 is a high-level API in Java for reading and writing HDF5 files, building on the libraries provided by the HDF Group.") ;; The C sources are under a non-copyleft license, which looks like a ;; variant of the BSD licenses. The whole package is under the ASL2.0. (license (list license:asl2.0 (license:non-copyleft "file://source/c/COPYING")))))) (define-public java-classpathx-servletapi (package (name "java-classpathx-servletapi") (version "3.0.1") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/classpathx/servletapi/" "servletapi-" version ".tar.gz")) (sha256 (base32 "07d8h051siga2f33fra72hk12sbq1bxa4jifjg0qj0vfazjjff0x")))) (build-system ant-build-system) (arguments `(#:tests? #f ; there is no test target #:build-target "compile" #:make-flags ,#~(list "-Dbuild.compiler=javac1.8" (string-append "-Ddist=" #$output)) #:phases (modify-phases %standard-phases (replace 'install (lambda* (#:key make-flags #:allow-other-keys) (apply invoke `("ant" "dist" ,@make-flags))))))) (home-page "https://www.gnu.org/software/classpathx/") (synopsis "Java servlet API implementation") (description "This is the GNU servlet API distribution, part of the ClasspathX project. It provides implementations of version 3.0 of the servlet API and version 2.1 of the Java ServerPages API.") (license license:gpl3+))) (define-public java-javaee-servletapi (package (name "java-javaee-servletapi") (version "3.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/javaee/servlet-spec") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0s03lj8w5an70lkqbjycgfrfk0kc07vbfav91jzk87gh3awf9ksl")))) (build-system ant-build-system) (arguments `(#:jar-name "javax-servletapi.jar" ;; no tests #:tests? #f #:source-dir "src/main/java" #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes/javax/servlet/http") (let ((from-prefix "src/main/java/javax/servlet/") (to-prefix "build/classes/javax/servlet/")) (for-each (lambda (f) (copy-file (string-append from-prefix f) (string-append to-prefix f))) (list "LocalStrings_ja.properties" "LocalStrings.properties" "LocalStrings_fr.properties" "http/LocalStrings_es.properties" "http/LocalStrings_ja.properties" "http/LocalStrings.properties" "http/LocalStrings_fr.properties"))) #t))))) (native-inputs (list unzip)) (home-page "https://javaee.github.io/servlet-spec/") (synopsis "Java servlet API") (description "Java Servlet is the foundation web specification in the Java Enterprise Platform. Developers can build web applications using the Servlet API to interact with the request/response workflow. This project provides information on the continued development of the Java Servlet specification.") ;; Main code is dual-licensed by Oracle under either GLP2 or CDDL 1.1. ;; Some files are licensed under ASL 2.0. (license (list license:asl2.0 license:gpl2 license:cddl1.1)))) (define-public java-swt (package (name "java-swt") (version "4.7.1a") (source ;; The types of many variables and procedures differ in the sources ;; dependent on whether the target architecture is a 32-bit system or a ;; 64-bit system. Instead of patching the sources on demand in a build ;; phase we download either the 32-bit archive (which mostly uses "int" ;; types) or the 64-bit archive (which mostly uses "long" types). (let ((hash32 "09q0cbh90d90q3a7dx9430kc4m6bijrkr4lajrmzzvi0jjdpq4v9") (hash64 "17k5hs75a87ssmc5xhwdfdm2gn4zba0r837l2455za01krnkaa2q") (file32 "x86") (file64 "x86_64")) (let-values (((hash file) (match (or (%current-target-system) (%current-system)) ("x86_64-linux" (values hash64 file64)) (_ (values hash32 file32))))) (origin (method url-fetch) (uri (string-append "http://download.eclipse.org/eclipse/downloads/drops4/" "R-" version "-201710090410/swt-" version "-gtk-linux-" file ".zip")) (sha256 (base32 hash)))))) (build-system ant-build-system) (arguments `(#:jar-name "swt.jar" #:jdk ,icedtea-8 #:tests? #f ; no "check" target #:phases (modify-phases %standard-phases (replace 'unpack (lambda* (#:key source #:allow-other-keys) (mkdir "swt") (invoke "unzip" source "-d" "swt") (chdir "swt") (mkdir "src") (invoke "unzip" "src.zip" "-d" "src"))) ;; The classpath contains invalid icecat jars. Since we don't need ;; anything other than the JDK on the classpath, we can simply unset ;; it. (add-after 'configure 'unset-classpath (lambda _ (unsetenv "CLASSPATH") #t)) (add-before 'build 'build-native (lambda* (#:key inputs outputs #:allow-other-keys) (let ((lib (string-append (assoc-ref outputs "out") "/lib"))) ;; Build shared libraries. Users of SWT have to set the system ;; property swt.library.path to the "lib" directory of this ;; package output. (mkdir-p lib) (setenv "OUTPUT_DIR" lib) (with-directory-excursion "src" (invoke "bash" "build.sh"))))) (add-after 'install 'install-native (lambda* (#:key outputs #:allow-other-keys) (let ((lib (string-append (assoc-ref outputs "out") "/lib"))) (for-each (lambda (file) (install-file file lib)) (find-files "." "\\.so$")) #t)))))) (inputs `(("gtk" ,gtk+-2) ("libxtst" ,libxtst) ("libxt" ,libxt) ("mesa" ,mesa) ("glu" ,glu))) (native-inputs (list pkg-config unzip)) (home-page "https://www.eclipse.org/swt/") (synopsis "Widget toolkit for Java") (description "SWT is a widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.") ;; SWT code is licensed under EPL1.0 ;; Gnome and Gtk+ bindings contain code licensed under LGPLv2.1 ;; Cairo bindings contain code under MPL1.1 ;; XULRunner 1.9 bindings contain code under MPL2.0 (license (list license:epl1.0 license:mpl1.1 license:mpl2.0 license:lgpl2.1+)))) ;; java-hamcrest-core uses qdox version 1.12. We package this version instead ;; of the latest release. (define-public java-qdox-1.12 (package (name "java-qdox") (version "1.12.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "com/thoughtworks/qdox/qdox/" version "/qdox-" version "-sources.jar")) (sha256 (base32 "0hlfbqq2avf5s26wxkksqmkdyk6zp9ggqn37c468m96mjv0n9xfl")))) (build-system ant-build-system) (arguments `(;; Tests require junit #:tests? #f #:jar-name "qdox.jar" #:phases (modify-phases %standard-phases (replace 'unpack (lambda* (#:key source #:allow-other-keys) (mkdir "src") (with-directory-excursion "src" (invoke "jar" "-xf" source)))) ;; At this point we don't have junit, so we must remove the API ;; tests. (add-after 'unpack 'delete-tests (lambda _ (delete-file-recursively "src/com/thoughtworks/qdox/junit") #t))))) (home-page "https://github.com/codehaus/qdox") (synopsis "Parse definitions from Java source files") (description "QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files complete with JavaDoc @code{@@tags}. It is designed to be used by active code generators or documentation tools.") (license license:asl2.0))) (define-public java-qdox (package (name "java-qdox") ; Newer version exists, but this version is required by java-plexus-component-metadata (version "2.0-M2") (source (origin (method url-fetch) ;; 2.0-M4, -M5 at https://github.com/paul-hammant/qdox ;; Older releases at https://github.com/codehaus/qdox/ ;; Note: The release at maven is pre-generated. The release at ;; github requires jflex. (uri (string-append "https://repo1.maven.org/maven2/" "com/thoughtworks/qdox/qdox/" version "/qdox-" version "-sources.jar")) (sha256 (base32 "10xxrcaicq6axszcr2jpygisa4ch4sinyx5q7kqqxv4lknrmxp5x")))) (build-system ant-build-system) (arguments `(#:jar-name "qdox.jar" #:tests? #f; no tests #:phases (modify-phases %standard-phases (add-before 'install 'create-pom (generate-pom.xml "pom.xml" "com.thoughtworks.qdox" "qdox" ,version #:name "QDox")) (replace 'install (install-from-pom "pom.xml"))))) (home-page "https://github.com/codehaus/qdox") (synopsis "Parse definitions from Java source files") (description "QDox is a high speed, small footprint parser for extracting class/interface/method definitions from source files complete with JavaDoc @code{@@tags}. It is designed to be used by active code generators or documentation tools.") (license license:asl2.0))) (define-public java-qdox-2-M9 (package (inherit java-qdox) (version "2.0-M9"); required by plexus-java (source (origin (method url-fetch) ;; 2.0-M4, -M5 at https://github.com/paul-hammant/qdox ;; Older releases at https://github.com/codehaus/qdox/ ;; Note: The release at maven is pre-generated. The release at ;; github requires jflex. (uri (string-append "https://repo1.maven.org/maven2/" "com/thoughtworks/qdox/qdox/" version "/qdox-" version "-sources.jar")) (sha256 (base32 "1s2jnmx2dkwnaha12lcj26aynywgwa8sslc47z82wx8xai13y4fg")))) (arguments (substitute-keyword-arguments (package-arguments java-qdox) ((#:phases phases) `(modify-phases ,phases (replace 'create-pom (generate-pom.xml "pom.xml" "com.thoughtworks.qdox" "qdox" ,version #:name "QDox")))))))) (define-public java-jarjar (package (name "java-jarjar") (version "1.4") (source (origin (method url-fetch) (uri (string-append "https://storage.googleapis.com/google-code-archive-downloads/v2/" "code.google.com/jarjar/jarjar-src-" version ".zip")) (sha256 (base32 "1v8irhni9cndcw1l1wxqgry013s2kpj0qqn57lj2ji28xjq8ndjl")) (modules '((guix build utils))) (snippet '(begin ;; Delete bundled thirds-party jar archives. (delete-file-recursively "lib") (delete-file "src/test/enumtest.jar") ;; the CLASSPATH needs this directory, create an empty one (mkdir-p "lib") #t)))) (build-system ant-build-system) (arguments `(;; Tests require junit, which ultimately depends on this package. #:tests? #f #:build-target "jar" #:phases (modify-phases %standard-phases (add-before 'build 'do-not-use-bundled-asm (lambda* (#:key inputs #:allow-other-keys) (substitute* "build.xml" (("") (string-append "")) (("") "") (("lib/asm-commons-4.0.jar") (car (find-files (assoc-ref inputs "java-asm-bootstrap") "asm-6.0.jar"))) (("") (string-append "" "" "" ""))) #t)) (add-before 'build 'remove-maven-dependency (lambda _ ;; We do not need to build jarjar as a maven plugin just yet, so ;; remove this file. Maven requires jarjar (but not that plugin), ;; so removing it improves the bootstrap. (delete-file "src/main/com/tonicsystems/jarjar/JarJarMojo.java") #t)) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((target (string-append (assoc-ref outputs "out") "/share/java"))) (install-file (string-append "dist/jarjar-" ,version ".jar") target)) #t))))) (inputs (list java-asm-bootstrap)) (native-inputs (list unzip)) (home-page "https://code.google.com/archive/p/jarjar/") (synopsis "Repackage Java libraries") (description "Jar Jar Links is a utility that makes it easy to repackage Java libraries and embed them into your own distribution. Jar Jar Links includes an Ant task that extends the built-in @code{jar} task.") (license license:asl2.0))) (define-public java-hamcrest-core (package (name "java-hamcrest-core") (version "1.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/hamcrest/JavaHamcrest/") (commit (string-append "hamcrest-java-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "16fxxkrd31ahqvcaby30jgh3z1i0zxh51m24hxgz0z2agxj6bc63")) (modules '((guix build utils))) (snippet '(begin ;; Delete bundled thirds-party jar archives. (delete-file-recursively "lib") #t)))) (build-system ant-build-system) (arguments `(#:tests? #f ; Tests require junit #:modules ((guix build ant-build-system) (guix build java-utils) (guix build utils) (srfi srfi-1)) #:make-flags (list (string-append "-Dversion=" ,version)) #:test-target "unit-test" #:build-target "core" #:phases (modify-phases %standard-phases ;; Disable unit tests, because they require junit, which requires ;; hamcrest-core. We also give a fixed value to the "Built-Date" ;; attribute from the manifest for reproducibility. (add-before 'configure 'patch-build.xml (lambda _ (substitute* "build.xml" (("unit-test, ") "") (("\\$\\{build.timestamp\\}") "guix")) #t)) ;; Java's "getMethods()" returns methods in an unpredictable order. ;; To make the output of the generated code deterministic we must ;; sort the array of methods. (add-after 'unpack 'make-method-order-deterministic (lambda _ (substitute* "hamcrest-generator/src/main/java/org/hamcrest/generator/ReflectiveFactoryReader.java" (("import java\\.util\\.Iterator;" line) (string-append line "\n" "import java.util.Arrays; import java.util.Comparator;")) (("allMethods = cls\\.getMethods\\(\\);" line) (string-append "_" line " private Method[] getSortedMethods() { Arrays.sort(_allMethods, new Comparator() { @Override public int compare(Method a, Method b) { return a.toString().compareTo(b.toString()); } }); return _allMethods; } private Method[] allMethods = getSortedMethods();"))) #t)) (add-before 'build 'do-not-use-bundled-qdox (lambda* (#:key inputs #:allow-other-keys) (substitute* "build.xml" (("lib/generator/qdox-1.12.jar") (string-append (assoc-ref inputs "java-qdox-1.12") "/share/java/qdox.jar"))) #t)) ;; build.xml searches for .jar files in this directoy, which ;; we remove from the source archive. (add-before 'build 'create-dummy-directories (lambda _ (mkdir-p "lib/integration") #t)) (add-before 'build 'create-pom (lambda _ (substitute* "pom/hamcrest-core.pom" (("@VERSION@") ,version)) #t)) (replace 'install (install-from-pom "pom/hamcrest-core.pom"))))) (native-inputs `(("java-qdox-1.12" ,java-qdox-1.12) ("java-jarjar" ,java-jarjar))) (propagated-inputs (list java-hamcrest-parent-pom)) (home-page "http://hamcrest.org/") (synopsis "Library of matchers for building test expressions") (description "This package provides a library of matcher objects (also known as constraints or predicates) allowing @code{match} rules to be defined declaratively, to be used in other frameworks. Typical scenarios include testing frameworks, mocking libraries and UI validation rules.") (license license:bsd-2))) (define java-hamcrest-parent-pom (package (inherit java-hamcrest-core) (name "java-hamcrest-parent-pom") (propagated-inputs '()) (native-inputs '()) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (replace 'build (lambda _ (substitute* "pom/hamcrest-parent.pom" (("@VERSION@") ,(package-version java-hamcrest-core))) #t)) (replace 'install (install-pom-file "pom/hamcrest-parent.pom"))))))) (define-public java-hamcrest-library (package (inherit java-hamcrest-core) (name "java-hamcrest-library") (arguments (substitute-keyword-arguments (package-arguments java-hamcrest-core) ((#:build-target _) "library") ((#:phases phases) `(modify-phases ,phases (add-after 'unpack 'patch-classpath-for-integration (lambda* (#:key inputs #:allow-other-keys) (substitute* "build.xml" (("build/hamcrest-core-\\$\\{version\\}\\.jar") (car (find-files (assoc-ref inputs "java-hamcrest-core") "jar$")))) #t)) (replace 'create-pom (lambda _ (substitute* "pom/hamcrest-library.pom" (("@VERSION@") ,(package-version java-hamcrest-core))) #t)) (replace 'install (install-from-pom "pom/hamcrest-library.pom")))))) (propagated-inputs (list java-hamcrest-core java-hamcrest-parent-pom)))) (define-public java-junit (package (name "java-junit") (version "4.12") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/junit-team/junit/") (commit (string-append "r" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1j8avi91px1z8rjc89cfikwrvfifdmmsarwiyrcnr59ynvpz0v8h")) (modules '((guix build utils))) (snippet '(begin ;; Delete bundled jar archives. (delete-file-recursively "lib") #t)))) (build-system ant-build-system) (arguments `(#:jar-name "junit.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:test-exclude (list "**/SimpleTest.java" "**/StackTracesTest.java" "**/RuleChainTest.java" "**/TestWatchmanTest.java") #:phases (modify-phases %standard-phases (add-before 'check 'copy-test-resources (lambda _ (copy-recursively "src/test/resources" "build/test-classes") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-hamcrest-core)) (native-inputs (list java-hamcrest-library)) (home-page "https://junit.org/junit4/") (synopsis "Test framework for Java") (description "JUnit is a simple framework to write repeatable tests for Java projects. JUnit provides assertions for testing expected results, test fixtures for sharing common test data, and test runners for running tests.") (license license:epl1.0))) (define-public java-junitparams (package (name "java-junitparams") (version "1.1.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/Pragmatists/JUnitParams") (commit (string-append "JUnitParams-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0rb52xdfp99invyjrras3w0bf0a81cz30yd47rkkiyqcqj0y1q9b")))) (build-system ant-build-system) (arguments `(#:jar-name "junitparams.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:test-exclude (list "**/SuperclassTest.java"))) (inputs (list java-junit)) (native-inputs (list java-junit java-hamcrest-core java-assertj)) (home-page "https://github.com/Pragmatists/JUnitParams") (synopsis "Parameterised test support for JUnit") (description "The JUnitParams project adds a new runner to JUnit and provides much easier and readable parametrised tests for JUnit.") (license license:asl2.0))) (define-public java-plexus-utils (package (name "java-plexus-utils") (version "3.3.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-utils") (commit (string-append "plexus-utils-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0d0fq21rzjy0j55kcp8w9k1rbq9rwr0r7cc8239p9jbz54vihp0g")))) (build-system ant-build-system) ;; FIXME: The default build.xml does not include a target to install ;; javadoc files. (arguments `(#:jar-name "plexus-utils.jar" #:source-dir "src/main" #:phases (modify-phases %standard-phases (add-after 'unpack 'fix-reference-to-/bin-and-/usr (lambda _ (substitute* "src/main/java/org/codehaus/plexus/util/\ cli/shell/BourneShell.java" (("/bin/sh") (which "sh")) (("/usr/") (getcwd))) #t)) (add-after 'unpack 'fix-or-disable-broken-tests (lambda _ (with-directory-excursion "src/test/java/org/codehaus/plexus/util" (substitute* '("cli/CommandlineTest.java" "cli/shell/BourneShellTest.java") (("/bin/sh") (which "sh")) (("/bin/echo") (which "echo"))) ;; This test depends on MavenProjectStub, but we don't have ;; a package for Maven. (delete-file "introspection/ReflectionValueExtractorTest.java") ;; FIXME: The command line tests fail, maybe because they use ;; absolute paths. (delete-file "cli/CommandlineTest.java") ;; These tests require openjdk jmh, which is not packaged yet (for-each delete-file (find-files "." "PerfTest.java$"))) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") #t)) (replace 'install (install-from-pom "pom.xml"))))) (native-inputs (list java-hamcrest-core java-junit)) (propagated-inputs (list plexus-parent-pom-5.1)) (home-page "https://codehaus-plexus.github.io/plexus-utils/") (synopsis "Common utilities for the Plexus framework") (description "This package provides various Java utility classes for the Plexus framework to ease working with strings, files, command lines, XML and more.") (license license:asl2.0))) (define-public java-plexus-utils-3.2.1 (package (inherit java-plexus-utils) ;; plexus-build-api needs this version, later versions don't work (version "3.2.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-utils") (commit (string-append "plexus-utils-" version)))) (file-name (git-file-name "java-plexus-utils" version)) (sha256 (base32 "1w169glixyk94jbczj8jzg897lsab46jihiaa3dhw0p06g35va8b")))))) (define-public java-plexus-interpolation (package (name "java-plexus-interpolation") (version "1.26") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-interpolation") (commit (string-append "plexus-interpolation-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1rahjmhywf6d5m32qzlc9izawyvcd71abfm9k03f13rs2xmfxzlh")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-interpolation.jar" #:source-dir "src/main" #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs `(("plexus-parent-pom-5.1" ,plexus-parent-pom-5.1))) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://codehaus-plexus.github.io/plexus-interpolation/") (synopsis "Java components for interpolating ${} strings and the like") (description "Plexus interpolator is a modular, flexible interpolation framework for the expression language style commonly seen in Maven, Plexus, and other related projects. It has its foundation in the @code{org.codehaus.plexus.utils.interpolation} package within @code{plexus-utils}, but has been separated in order to allow these two libraries to vary independently of one another.") (license license:asl2.0))) (define-public java-plexus-classworlds (package (name "java-plexus-classworlds") (version "2.6.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-classworlds") (commit (string-append "plexus-classworlds-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "034k2hgvj1saalwbnzrbg4n0zgzwcpz1lhlb8q4kgglsp9pmm03s")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-classworlds.jar" #:source-dir "src/main" #:tests? #f;; FIXME: we need to generate some resources as in pom.xml #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs `(("plexus-parent-pom-5.1" ,plexus-parent-pom-5.1))) (native-inputs (list java-junit)) (home-page "https://codehaus-plexus.github.io/plexus-classworlds/") (synopsis "Java class loader framework") (description "Plexus classworlds replaces the native @code{ClassLoader} mechanism of Java. It is especially useful for dynamic loading of application components.") (license license:asl2.0))) (define java-plexus-container-default-bootstrap (package (name "java-plexus-container-default-bootstrap") (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-containers") (commit (string-append "plexus-containers-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0r9yq67c1hvi1pz5wmx6x6hk5fmavp8a7yal3j5hkaad757firn1")))) (build-system ant-build-system) (arguments `(#:jar-name "container-default.jar" #:source-dir "plexus-container-default/src/main/java" #:test-dir "plexus-container-default/src/test" #:tests? #f; requires plexus-archiver, which depends on this package #:phases (modify-phases %standard-phases (add-before 'build 'fix-google-collections (lambda _ ;; Google collections are now replaced with guava (substitute* "plexus-container-default/pom.xml" (("google-collections") "guava") (("com.google.collections") "com.google.guava")) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "plexus-container-default/src/main/resources/" "build/classes") #t)) (replace 'install (install-from-pom "plexus-container-default/pom.xml"))))) (propagated-inputs `(("java-plexus-worldclass" ,java-plexus-classworlds) ("java-geronimo-xbean-reflect" ,java-geronimo-xbean-reflect) ("java-plexus-utils" ,java-plexus-utils) ("java-junit" ,java-junit) ("java-guava" ,java-guava) ("java-plexus-containers-parent-pom" ,java-plexus-containers-parent-pom))) (home-page "https://github.com/codehaus-plexus/plexus-containers") (synopsis "Inversion-of-control container") (description "Plexus-default-container is Plexus' inversion-of-control (@dfn{IoC}) container. It is composed of its public API and its default implementation.") (license license:asl2.0))) (define java-plexus-containers-parent-pom (package (inherit java-plexus-container-default-bootstrap) (name "java-plexus-containers-parent-pom") (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs `(("plexus-parent-pom" ,plexus-parent-pom-4.0))))) (define-public java-plexus-io (package (name "java-plexus-io") (version "3.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-io") (commit (string-append "plexus-io-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1r3wqfpbxq8vp4p914i8p88r0994rmcjw02hz14n11cfb6gsyvlr")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-io.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes") (copy-recursively "src/main/resources" "build/classes") (mkdir-p "build/test-classes") (copy-recursively "src/test/resources" "build/test-classes") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-plexus-utils java-commons-io plexus-parent-pom-5.1)) (inputs (list java-jsr305)) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core) ("guava" ,java-guava) ("classworlds" ,java-plexus-classworlds) ("xbean" ,java-geronimo-xbean-reflect) ("container-default" ,java-plexus-container-default-bootstrap))) (home-page "https://github.com/codehaus-plexus/plexus-io") (synopsis "I/O plexus components") (description "Plexus IO is a set of plexus components, which are designed for use in I/O operations. This implementation using plexus components allows reusing it in maven.") (license license:asl2.0))) (define-public java-plexus-archiver (package (name "java-plexus-archiver") (version "4.2.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/codehaus-plexus/plexus-archiver" "/archive/plexus-archiver-" version ".tar.gz")) (sha256 (base32 "144n971r3lfrx3l12nf2scm80x4xdvgbkk4bjpa4vcvvdrll6qys")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-archiver.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:test-exclude (list "**/Abstract*.java" "**/Base*.java") #:phases (modify-phases %standard-phases (add-before 'check 'remove-failing (lambda _ ;; Requires an older version of plexus container (delete-file "src/test/java/org/codehaus/plexus/archiver/DuplicateFilesTest.java") #t)) (add-before 'check 'fix-test-building (lambda _ (substitute* "build.xml" (("srcdir=\"src/test\"") "srcdir=\"src/test/java\"")) #t)) (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes") (copy-recursively "src/main/resources" "build/classes") (mkdir-p "build/test-classes") (copy-recursively "src/test/resources" "build/test-classes") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-plexus-utils java-plexus-io java-iq80-snappy java-commons-compress plexus-parent-pom-6.1)) (inputs `(("java-jsr305" ,java-jsr305) ("java-plexus-container-default" ,java-plexus-container-default-bootstrap))) (native-inputs `(("java-hamcrest-core" ,java-hamcrest-core) ("junit" ,java-junit) ("classworld" ,java-plexus-classworlds) ("xbean" ,java-geronimo-xbean-reflect) ("xz" ,java-xz) ("guava" ,java-guava))) (home-page "https://github.com/codehaus-plexus/plexus-archiver") (synopsis "Archiver component of the Plexus project") (description "Plexus-archiver contains a component to deal with project archives (jar).") (license license:asl2.0))) (define-public java-plexus-container-default (package (inherit java-plexus-container-default-bootstrap) (name "java-plexus-container-default") (arguments `(#:jar-name "container-default.jar" #:source-dir "plexus-container-default/src/main/java" #:test-dir "plexus-container-default/src/test" #:test-exclude (list ;"**/*Test.java" "**/Abstract*.java" ;; Requires plexus-hierarchy "**/PlexusHierarchyTest.java" ;; Failures "**/ComponentRealmCompositionTest.java" "**/PlexusContainerTest.java") #:phases (modify-phases %standard-phases (add-before 'build 'fix-google-collections (lambda _ ;; Google collections are now replaced with guava (substitute* "plexus-container-default/pom.xml" (("google-collections") "guava") (("com.google.collections") "com.google.guava")) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "plexus-container-default/src/main/resources/" "build/classes") #t)) (add-before 'check 'fix-paths (lambda _ (let ((dir "plexus-container-default/src/test/java/org/codehaus")) (substitute* (string-append dir "/plexus/component/composition/" "ComponentRealmCompositionTest.java") (("src/test") "plexus-container-default/src/test")) #t))) (replace 'install (install-from-pom "plexus-container-default/pom.xml"))))) (inputs `(("worldclass" ,java-plexus-classworlds) ("xbean" ,java-geronimo-xbean-reflect) ("utils" ,java-plexus-utils) ("junit" ,java-junit) ("guava" ,java-guava))) (native-inputs `(("archiver" ,java-plexus-archiver) ("hamcrest" ,java-hamcrest-core))))) (define-public java-plexus-component-annotations (package (inherit java-plexus-container-default) (name "java-plexus-component-annotations") (arguments `(#:jar-name "plexus-component-annotations.jar" #:source-dir "plexus-component-annotations/src/main/java" #:tests? #f; no tests #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "plexus-component-annotations/pom.xml"))))) (propagated-inputs (list java-plexus-containers-parent-pom)) (inputs '()) (native-inputs '()) (synopsis "Plexus descriptors generator") (description "This package is a Maven plugin to generate Plexus descriptors from source tags and class annotations."))) (define-public java-plexus-component-metadata (package (inherit java-plexus-container-default) (name "java-plexus-component-metadata") (arguments `(#:jar-name "plexus-component-metadata.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases (add-before 'configure 'chdir (lambda _ (chdir "plexus-component-metadata") #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes/") #t)) (add-before 'build 'reinstate-cli ;; The CLI was removed in 2.1.0, but we still need it to build some ;; maven dependencies, and some parts of maven itself. We can't use ;; the maven plugin for that yet. (lambda _ (with-output-to-file "src/main/java/org/codehaus/plexus/metadata/PlexusMetadataGeneratorCli.java" (lambda _ ;; Copied from a previous version of this package. (display "package org.codehaus.plexus.metadata; import java.io.File; import java.util.Arrays; import java.util.Collections; import org.apache.commons.cli.CommandLine; import org.apache.commons.cli.OptionBuilder; import org.apache.commons.cli.Options; import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.tools.cli.AbstractCli; public class PlexusMetadataGeneratorCli extends AbstractCli { public static final char SOURCE_DIRECTORY = 's'; public static final char SOURCE_ENCODING = 'e'; public static final char CLASSES_DIRECTORY = 'c'; public static final char OUTPUT_FILE = 'o'; public static final char DESCRIPTORS_DIRECTORY = 'm'; public static void main( String[] args ) throws Exception { new PlexusMetadataGeneratorCli().execute( args ); } @Override public String getPomPropertiesPath() { return \"META-INF/maven/org.codehaus.plexus/plexus-metadata-generator/pom.properties\"; } @Override @SuppressWarnings(\"static-access\") public Options buildCliOptions( Options options ) { options.addOption( OptionBuilder.withLongOpt( \"source\" ).hasArg().withDescription( \"Source directory.\" ).create( SOURCE_DIRECTORY ) ); options.addOption( OptionBuilder.withLongOpt( \"encoding\" ).hasArg().withDescription( \"Source file encoding.\" ).create( SOURCE_ENCODING ) ); options.addOption( OptionBuilder.withLongOpt( \"classes\" ).hasArg().withDescription( \"Classes directory.\" ).create( CLASSES_DIRECTORY ) ); options.addOption( OptionBuilder.withLongOpt( \"output\" ).hasArg().withDescription( \"Output directory.\" ).create( OUTPUT_FILE ) ); options.addOption( OptionBuilder.withLongOpt( \"descriptors\" ).hasArg().withDescription( \"Descriptors directory.\" ).create( DESCRIPTORS_DIRECTORY ) ); return options; } public void invokePlexusComponent( CommandLine cli, PlexusContainer plexus ) throws Exception { MetadataGenerator metadataGenerator = plexus.lookup( MetadataGenerator.class ); MetadataGenerationRequest request = new MetadataGenerationRequest(); request.classesDirectory = new File( cli.getOptionValue( CLASSES_DIRECTORY ) ); request.classpath = Collections.emptyList(); request.sourceDirectories = Arrays.asList( new String[]{ new File( cli.getOptionValue( SOURCE_DIRECTORY ) ).getAbsolutePath() } ); request.sourceEncoding = cli.getOptionValue( SOURCE_ENCODING ); request.useContextClassLoader = true; request.outputFile = new File( cli.getOptionValue( OUTPUT_FILE ) ); request.componentDescriptorDirectory = new File( cli.getOptionValue( DESCRIPTORS_DIRECTORY ) ); metadataGenerator.generateDescriptor( request ); } }"))))) (add-before 'check 'fix-test-location (lambda _ (substitute* '("src/test/java/org/codehaus/plexus/metadata/DefaultComponentDescriptorWriterTest.java" "src/test/java/org/codehaus/plexus/metadata/merge/ComponentsXmlMergerTest.java") (("target") "build"))))))) (propagated-inputs `(("java-plexus-container-default" ,java-plexus-container-default) ("java-plexu-component-annotations" ,java-plexus-component-annotations) ("java-plexus-utils" ,java-plexus-utils) ("java-plexus-cli" ,java-plexus-cli) ("java-plexus-classworlds" ,java-plexus-classworlds) ("maven-plugin-api" ,maven-plugin-api) ("maven-plugin-annotations" ,maven-plugin-annotations) ("maven-core-bootstrap" ,maven-core-bootstrap) ("maven-model" ,maven-model) ("java-commons-cli" ,java-commons-cli) ("java-qdox" ,java-qdox) ("java-jdom2" ,java-jdom2) ("java-asm-8" ,java-asm-8))) (native-inputs (list java-junit java-guava java-geronimo-xbean-reflect)) (synopsis "Inversion-of-control container for Maven") (description "The Plexus project provides a full software stack for creating and executing software projects. Based on the Plexus container, the applications can utilise component-oriented programming to build modular, reusable components that can easily be assembled and reused. This package provides the Maven plugin generating the component metadata."))) (define-public java-plexus-container-default-1.7 (package (inherit java-plexus-container-default) (version "1.7.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-containers") (commit (string-append "plexus-containers-" version)))) (file-name (git-file-name "java-plexus-container-default" version)) (sha256 (base32 "1316hrp5vqfv0aw7miq2fp0wwy833h66h502h29vnh5sxj27x228")))))) (define java-plexus-containers-parent-pom-1.7 (package (inherit java-plexus-container-default-1.7) (name "java-plexus-containers-parent-pom") (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs `(("plexus-parent-pom" ,plexus-parent-pom-4.0))))) (define-public java-plexus-component-annotations-1.7 (package (inherit java-plexus-container-default-1.7) (name "java-plexus-component-annotations") (arguments `(#:jar-name "plexus-component-annotations.jar" #:source-dir "plexus-component-annotations/src/main/java" #:tests? #f; no tests #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "plexus-component-annotations/pom.xml"))))) (propagated-inputs `(("java-plexus-containers-parent-pom-1.7" ,java-plexus-containers-parent-pom-1.7))) (inputs '()) (native-inputs '()) (synopsis "Plexus descriptors generator") (description "This package is a Maven plugin to generate Plexus descriptors from source tags and class annotations."))) (define-public java-plexus-component-metadata-1.7 (package (inherit java-plexus-container-default-1.7) (name "java-plexus-component-metadata") (arguments `(#:jar-name "plexus-component-metadata.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:phases (modify-phases %standard-phases (add-before 'configure 'chdir (lambda _ (chdir "plexus-component-metadata") #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes/") #t)) (add-before 'build 'fix-jdom (lambda _ ;; The newer version of jdom now sets multiple features by default ;; that are not supported. ;; Skip these features (substitute* "src/main/java/org/codehaus/plexus/metadata/merge/MXParser.java" (("throw new XmlPullParserException\\(\"unsupporte feature \"\\+name\\);") "// skip")))) (add-before 'check 'fix-test-location (lambda _ (substitute* '("src/test/java/org/codehaus/plexus/metadata/DefaultComponentDescriptorWriterTest.java" "src/test/java/org/codehaus/plexus/metadata/merge/ComponentsXmlMergerTest.java") (("target") "build"))))))) (propagated-inputs (list java-plexus-container-default-1.7 java-plexus-component-annotations-1.7 java-plexus-utils java-plexus-cli java-plexus-cli java-plexus-classworlds maven-plugin-api maven-plugin-annotations maven-core-bootstrap maven-model java-commons-cli java-qdox java-jdom2 java-asm)) (native-inputs (list java-junit java-guava java-geronimo-xbean-reflect)) (synopsis "Inversion-of-control container for Maven") (description "The Plexus project provides a full software stack for creating and executing software projects. Based on the Plexus container, the applications can utilise component-oriented programming to build modular, reusable components that can easily be assembled and reused. This package provides the Maven plugin generating the component metadata."))) (define-public java-plexus-cipher (package (name "java-plexus-cipher") (version "2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-cipher") (commit (string-append "plexus-cipher-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "01fipdsm090n8j4207fl8kbxznkgkmkkgyazf53hm1nwn6na5aai")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-cipher.jar" #:source-dir "src/main/java" #:phases (modify-phases %standard-phases (add-before 'build 'generate-javax.inject.Named (lambda _ (mkdir-p "build/classes/META-INF/sisu") (with-output-to-file "build/classes/META-INF/sisu/javax.inject.Named" (lambda _ (display "org.sonatype.plexus.components.cipher.DefaultPlexusCipher\n"))) #t)) (replace 'install (install-from-pom "pom.xml"))))) (inputs `(("java-cdi-api" ,java-cdi-api) ("java-javax-inject" ,java-javax-inject))) (propagated-inputs `(("java-sonatype-spice-parent-pom" ,java-sonatype-spice-parent-pom-15) ("java-eclipse-sisu-inject" ,java-eclipse-sisu-inject))) (native-inputs `(("java-junit" ,java-junit))) (home-page "https://github.com/sonatype/plexus-cipher") (synopsis "Encryption/decryption Component") (description "Plexus-cipher contains a component to deal with encryption and decryption.") (license license:asl2.0))) (define-public java-plexus-cipher-1.7 (package (inherit java-plexus-cipher) (version "1.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-cipher") (commit (string-append "plexus-cipher-" version)))) (file-name (git-file-name "java-plexus-cipher" version)) (sha256 (base32 "0m638nzlxbmnbcj5cwdpgs326ab584yv0k803zlx37r6iqwvf6b0")))) (arguments `(#:jar-name "plexus-cipher.jar" #:source-dir "src/main/java" #:tests? #f; FIXME: requires sisu-inject-bean #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") (mkdir-p "build/classes/META-INF/sisu") (with-output-to-file "build/classes/META-INF/sisu/javax.inject.Named" (lambda _ (display "org.sonatype.plexus.components.cipher.DefaultPlexusCipher\n"))) #t)) (add-before 'install 'fix-test-dependency (lambda _ ;; sisu-inject-bean is only used for tests, but its scope is "provided". (substitute* "pom.xml" (("provided") "test")) #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-sonatype-spice-parent-pom-15)))) (define-public java-plexus-java (package (name "java-plexus-java") (version "0.9.10") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-languages") (commit (string-append "plexus-languages-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0vmvgq5hfxs90yyxgssfpwq78l7vwx1ljwpkk594mrdr8sm668b5")) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.jar$")) #t)))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-java.java" #:source-dir "plexus-java/src/main/java" #:test-dir "plexus-java/src/test" #:tests? #f; require mockito 2 #:phases (modify-phases %standard-phases (add-after 'build 'generate-metadata (lambda _ (invoke "java" "-cp" (string-append (getenv "CLASSPATH") ":build/classes") "org.codehaus.plexus.metadata.PlexusMetadataGeneratorCli" "--source" "plexus-java/src/main/java" "--output" "build/classes/META-INF/plexus/components.xml" "--classes" "build/classes" "--descriptors" "build/classes/META-INF") (invoke "ant" "jar") #t)) (add-before 'install 'install-parent (install-pom-file "pom.xml")) (replace 'install (install-from-pom "plexus-java/pom.xml"))))) (propagated-inputs (list java-asm java-qdox-2-M9 java-javax-inject plexus-parent-pom-4.0)) (inputs (list java-plexus-component-annotations-1.7)) (native-inputs (list java-plexus-component-metadata-1.7 java-junit)) (home-page "https://codehaus-plexus.github.io/plexus-languages/plexus-java") (synopsis "Shared language features for Java") (description "This package contains shared language features of the Java language, for the plexus project.") (license license:asl2.0))) (define-public java-plexus-compiler-api (package (name "java-plexus-compiler-api") (version "2.8.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-compiler") (commit (string-append "plexus-compiler-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1nq1gnn3s6z1j29gmi1hqbklsmm8b1lmnafb0191914f95mn18gk")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-compiler-api.jar" #:source-dir "plexus-compiler-api/src/main/java" #:test-dir "plexus-compiler-api/src/test" #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "plexus-compiler-api/pom.xml"))))) (propagated-inputs `(("java-plexus-container-default" ,java-plexus-container-default) ("java-plexus-compiler-pom" ,java-plexus-compiler-pom) ("java-plexus-util" ,java-plexus-utils))) (native-inputs (list java-junit)) (home-page "https://github.com/codehaus-plexus/plexus-compiler") (synopsis "Plexus Compilers component's API to manipulate compilers") (description "This package contains the API used by components to manipulate compilers.") (license (list license:asl2.0 license:expat)))) (define java-plexus-compiler-pom (package (inherit java-plexus-compiler-api) (name "java-plexus-compiler-pom") (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml")) (add-after 'install 'install-compilers (install-pom-file "plexus-compilers/pom.xml"))))) (propagated-inputs `(("plexus-components-parent-pom-4.0" ,plexus-components-parent-pom-4.0))))) (define plexus-components-parent-pom-4.0 (package (name "plexus-components-parent-pom") (version "4.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-components") (commit (string-append "plexus-components-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "041bm8yv0m2i17mqg8zljib4ykpha7ijls2qfdwvkma4d39lhysi")))) (build-system ant-build-system) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs `(("plexus-parent-pom-4.0" ,plexus-parent-pom-4.0))) (home-page "https://codehaus-plexus.github.io/plexus-components") (synopsis "Plexus parent pom") (description "This package contains the Plexus components parent POM.") (license license:asl2.0))) (define-public java-plexus-compiler-manager (package (inherit java-plexus-compiler-api) (name "java-plexus-compiler-manager") (arguments `(#:jar-name "compiler-compiler-manager.java" #:source-dir "plexus-compiler-manager/src/main/java" #:test-dir "plexus-compiler-manager/src/test" #:tests? #f #:phases (modify-phases %standard-phases (add-after 'build 'generate-metadata (lambda _ (invoke "java" "-cp" (string-append (getenv "CLASSPATH") ":build/classes") "org.codehaus.plexus.metadata.PlexusMetadataGeneratorCli" "--source" "plexus-compiler-manager/src/main/java" "--output" "build/classes/META-INF/plexus/components.xml" "--classes" "build/classes" "--descriptors" "build/classes/META-INF") (invoke "ant" "jar") #t)) (add-after 'generate-metadata 'rebuild (lambda _ (invoke "ant" "jar") #t)) (replace 'install (install-from-pom "plexus-compiler-manager/pom.xml"))))) (propagated-inputs (list java-plexus-compiler-api java-plexus-compiler-pom java-plexus-container-default-1.7)) (native-inputs (list unzip java-plexus-component-metadata-1.7)) (synopsis "Compiler management for Plexus Compiler component") (description "Plexus Compiler is a Plexus component to use different compilers through a uniform API. This component chooses the compiler implementation to use in a project."))) (define-public java-plexus-compiler-javac (package (inherit java-plexus-compiler-api) (name "java-plexus-compiler-javac") (arguments `(#:jar-name "plexus-compiler-javac.jar" #:source-dir "plexus-compilers/plexus-compiler-javac/src/main/java" #:jdk ,icedtea-8 #:tests? #f; depends on compiler-test -> maven-core -> ... -> this package. #:test-dir "plexus-compilers/plexus-compiler-javac/src/test" #:modules ((guix build ant-build-system) (guix build utils) (guix build java-utils) (sxml simple)) #:phases (modify-phases %standard-phases ;; We cannot use java-plexus-component-metadata to generate the metadata ;; because it ultimately depends on this package. ;; Create it manually instead (add-before 'build 'create-metadata (lambda _ (let* ((dir "build/classes/META-INF/plexus") (file (string-append dir "/components.xml"))) (mkdir-p dir) (with-output-to-file file (lambda _ (sxml->xml `(component-set (components (component (role "org.codehaus.plexus.compiler.Compiler") (role-hint "javac") (implementation "org.codehaus.plexus.compiler.javac.JavacCompiler") (isolated-realm "false")))))))) #t)) (replace 'install (install-from-pom "plexus-compilers/plexus-compiler-javac/pom.xml"))))) (propagated-inputs (list java-plexus-compiler-api java-plexus-utils java-plexus-container-default)) (synopsis "Javac Compiler support for Plexus Compiler component") (description "This package contains the Javac Compiler support for Plexus Compiler component."))) (define plexus-components-pom-1.1.20 (package (name "plexus-components-pom-1.1.20") (version "1.1.20") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-components") (commit (string-append "plexus-components-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1q254k95m9icyfsvaw8c226midg8v6v436wvivhv7im825mnp5yb")))) (build-system ant-build-system) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs `(("plexus-parent-pom" ,plexus-parent-pom-3.1))) (home-page "https://github.com/codehaus-plexus/plexus-components") (synopsis "Maven parent pom for plexus packages") (description "This package contains the parent pom for plexus component packages.") (license license:asl2.0))) (define-public java-plexus-digest (package (name "java-plexus-digest") (version "1.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-digest") (commit "2a52ad1bda8297fa0e287163d2fa37245ec6a430"))) (file-name (git-file-name name version)) (sha256 (base32 "19w5wxsliz8r42niry68qa665kvjsb8081dazg9vgd3pca72w07x")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-digest.jar" #:source-dir "src/main/java" #:tests? #f #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-plexus-utils plexus-components-pom-1.1.20)) (native-inputs (list java-junit)) (home-page "https://github.com/codehaus-plexus/plexus-digest") (synopsis "Hash function utilities for Java") (description "This package is a plexus component that contains hash function utilities.") (license license:asl2.0))) (define-public java-plexus-sec-dispatcher (package (name "java-plexus-sec-dispatcher") (version "2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-sec-dispatcher") (commit (string-append "plexus-sec-dispatcher-" version)))) (sha256 (base32 "0665zcyxkv2knydxgv2dn64zvy1dx9j9af12ds9s64qmzd1rk6pk")) (file-name (git-file-name name version)))) (arguments `(#:jar-name "plexus-sec-dispatcher.jar" #:source-dir "src/main/java" #:phases (modify-phases %standard-phases (add-before 'build 'generate-models (lambda* (#:key inputs #:allow-other-keys) (define (modello-single-mode file version mode) (invoke "java" "org.codehaus.modello.ModelloCli" file mode "src/main/java" version "false" "true")) (let ((file "src/main/mdo/settings-security.mdo")) (modello-single-mode file "1.0.0" "java") (modello-single-mode file "1.0.0" "xpp3-reader") (modello-single-mode file "1.0.0" "xpp3-writer")) #t)) (add-before 'build 'generate-javax.inject.Named (lambda _ (mkdir-p "build/classes/META-INF/sisu") (with-output-to-file "build/classes/META-INF/sisu/javax.inject.Named" (lambda _ (display "org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher\n"))) #t)) (add-before 'check 'fix-paths (lambda _ (copy-recursively "src/test/resources" "target") #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-plexus-utils java-plexus-cipher plexus-parent-pom-8)) (native-inputs (list java-javax-inject java-modello-core ;; for modello java-plexus-container-default java-plexus-classworlds java-plexus-utils java-guava java-geronimo-xbean-reflect ;; modello plugins java-modello-plugins-java java-modello-plugins-xml java-modello-plugins-xpp3 ;; for tests java-junit)) (build-system ant-build-system) (home-page "https://github.com/sonatype/plexus-sec-dispatcher") (synopsis "Plexus Security Dispatcher Component") (description "This package is the Plexus Security Dispatcher Component. This component decrypts a string passed to it.") (license license:asl2.0))) (define-public java-plexus-sec-dispatcher-1.4 (package (inherit java-plexus-sec-dispatcher) (version "1.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-sec-dispatcher") (commit (string-append "sec-dispatcher-" version)))) (sha256 (base32 "1ng4yliy4cqpjr4fxxjbpwyk1wkch5f8vblm1kvwf328s4gibszs")) (file-name (git-file-name "java-plexus-sec-dispatcher" version)))) (arguments (substitute-keyword-arguments (package-arguments java-plexus-sec-dispatcher) ((#:phases phases) `(modify-phases ,phases (delete 'generate-javax.inject.Named) (add-before 'build 'generate-components.xml (lambda _ (mkdir-p "build/classes/META-INF/plexus") (with-output-to-file "build/classes/META-INF/plexus/components.xml" (lambda _ (display "\n \n \n org.sonatype.plexus.components.sec.dispatcher.SecDispatcher\n default\n org.sonatype.plexus.components.sec.dispatcher.DefaultSecDispatcher\n \n \n \n org.sonatype.plexus.components.cipher.PlexusCipher\n _cipher\n \n \n org.sonatype.plexus.components.sec.dispatcher.PasswordDecryptor\n _decryptors\n \n \n \n <_configuration-file>~/.settings-security.xml\n \n \n \n \n"))))))))) (propagated-inputs (list java-plexus-utils java-plexus-cipher-1.7 java-sonatype-spice-parent-pom-12)))) (define-public java-plexus-cli (package (name "java-plexus-cli") (version "1.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/sonatype/plexus-cli") (commit "a776afa6bca84e5107bedb69440329cdb24ed645"))) (file-name (string-append name "-" version)) (sha256 (base32 "0xjrlay605rypv3zd7y24vlwf0039bil3n2cqw54r1ddpysq46vx")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-cli.jar" #:source-dir "src/main/java" #:jdk ,icedtea-8 #:test-dir "src/test")) (inputs (list java-commons-cli java-plexus-container-default java-plexus-classworlds)) (native-inputs (list java-plexus-utils java-junit java-guava)) (home-page "https://codehaus-plexus.github.io/plexus-cli") (synopsis "CLI building library for plexus") (description "This package is a library to help creating CLI around Plexus components.") (license license:asl2.0))) (define-public java-plexus-build-api (package (name "java-plexus-build-api") (version "0.0.7") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/plexus-build-api") (commit (string-append "plexus-build-api-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1d5w6c58gkx30d51v7qwv1xrhc0ly76848gihmgshj19yf6yhca0")))) (build-system ant-build-system) (arguments `(#:jar-name "plexus-build-api.jar" #:source-dir "src/main/java" #:jdk ,icedtea-8 #:tests? #f; FIXME: how to run the tests? #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") (substitute* (find-files "build/classes") (("\\$\\{project.version\\}") ,version)) #t)) (add-before 'build 'generate-plexus-compontent (lambda _ (mkdir-p "build/classes/META-INF/plexus") ;; This file is required for plexus to inject this package. ;; FIXME: how is it generated? (with-output-to-file "build/classes/META-INF/plexus/components.xml" (lambda _ (display "\n \n \n org.sonatype.plexus.build.incremental.BuildContext\n default\n org.sonatype.plexus.build.incremental.DefaultBuildContext\n Filesystem based non-incremental build context implementation\n which behaves as if all files were just created.\n \n \n \n"))) #t)) (replace 'install (install-from-pom "pom.xml"))))) (inputs (list java-plexus-utils-3.2.1 java-plexus-container-default)) (home-page "https://github.com/codehaus-plexus/plexus-build-api/") (synopsis "Base build API for maven") (description "This package contains the base build API for maven and a default implementation of it. This API is about scanning files in a project and determining what files need to be rebuilt.") (license license:asl2.0))) (define-public java-modello-core (package (name "java-modello-core") (version "1.11") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/codehaus-plexus/modello") (commit (string-append "modello-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "18885sim7z9j3wy19i9083y9kc8l9xxl2px823a96q4rnqj5z8s2")))) (build-system ant-build-system) (arguments `(#:jar-name "modello-core.jar" #:source-dir "modello-core/src/main/java" #:test-dir "modello-core/src/test" #:main-class "org.codehaus.modello.ModelloCli" #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes/META-INF/plexus") (copy-file "modello-core/src/main/resources/META-INF/plexus/components.xml" "build/classes/META-INF/plexus/components.xml") #t)) (add-before 'check 'fix-tests (lambda _ (with-directory-excursion "modello-core/src/test/java/org/codehaus" (substitute* '("modello/core/DefaultModelloCoreTest.java" "modello/core/io/ModelReaderTest.java") (("src/test") "modello-core/src/test"))) #t))))) (propagated-inputs (list java-plexus-utils java-plexus-container-default java-plexus-build-api)) (native-inputs (list java-junit java-plexus-classworlds java-geronimo-xbean-reflect java-guava)) (home-page "https://codehaus-plexus.github.io/modello/") (synopsis "Framework for code generation from a simple model") (description "Modello is a framework for code generation from a simple model. Modello generates code from a simple model format: based on a plugin architecture, various types of code and descriptors can be generated from the single model, including Java POJOs, XML/JSON/YAML marshallers/unmarshallers, XSD and documentation.") (license (list license:expat ;; Although this package uses only files licensed under expat, ;; other parts of the source are licensed under different ;; licenses. We include them to be inherited by other packages. license:asl2.0 ;; Some files in modello-plugin-java are licensed under a ;; 5-clause BSD license. (license:non-copyleft (string-append "file:///modello-plugins/modello-plugin-java/" "src/main/java/org/codehaus/modello/plugin/" "java/javasource/JNaming.java")))))) (define-public java-modello-plugins-java (package (inherit java-modello-core) (name "java-modello-plugins-java") (arguments `(#:jar-name "modello-plugins-java.jar" #:source-dir "modello-plugins/modello-plugin-java/src/main/java" #:test-dir "modello-plugins/modello-plugin-java/src/test" #:jdk ,icedtea-8 #:tests? #f; requires maven-model, which depends on this package #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes") (copy-recursively "modello-plugins/modello-plugin-java/src/main/resources" "build/classes") #t))))) (inputs (list java-modello-core)) (synopsis "Modello Java Plugin") (description "Modello Java Plugin generates Java objects for the model."))) (define-public java-modello-plugins-xml (package (inherit java-modello-core) (name "java-modello-plugins-xml") (arguments `(#:jar-name "modello-plugins-xml.jar" #:source-dir "modello-plugins/modello-plugin-xml/src/main/java" #:test-dir "modello-plugins/modello-plugin-xml/src/test" #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes") (copy-recursively "modello-plugins/modello-plugin-xml/src/main/resources" "build/classes") #t)) (add-before 'check 'fix-paths (lambda _ (with-directory-excursion "modello-plugins/modello-plugin-xml/src/test" (substitute* "java/org/codehaus/modello/plugins/xml/XmlModelloPluginTest.java" (("src/test") "modello-plugins/modello-plugin-xml/src/test"))) #t))))) (propagated-inputs (list java-modello-core java-modello-plugins-java)) (synopsis "Modello XML Plugin") (description "Modello XML Plugin contains shared code for every plugins working on XML representation of the model."))) (define-public java-modello-test (package (inherit java-modello-core) (name "java-modello-test") (arguments `(#:jar-name "modello-test.jar" #:source-dir "modello-test/src/main/java" #:tests? #f; no tests #:jdk ,icedtea-8)) (inputs (list java-plexus-utils java-plexus-compiler-api java-plexus-compiler-javac java-plexus-container-default)) (synopsis "Modello test package") (description "The modello test package contains the basis to create Modello generator unit-tests, including sample models and xml files to test every feature for every plugin."))) (define-public java-modello-plugins-xpp3 (package (inherit java-modello-core) (name "java-modello-plugins-xpp3") (arguments `(#:jar-name "modello-plugins-xpp3.jar" #:source-dir "modello-plugins/modello-plugin-xpp3/src/main/java" #:test-dir "modello-plugins/modello-plugin-xpp3/src/test" ;; One of the test dependencies is maven-model which depends on this package. #:tests? #f #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (mkdir-p "build/classes") (copy-recursively "modello-plugins/modello-plugin-xpp3/src/main/resources" "build/classes") #t))))) (propagated-inputs (list java-modello-core java-modello-plugins-java java-modello-plugins-xml)) (native-inputs (modify-inputs (package-native-inputs java-modello-core) (prepend java-xmlunit java-modello-test))) (synopsis "Modello XPP3 Plugin") (description "The modello XPP3 plugin generates XML readers and writers based on the XPP3 API (XML Pull Parser)."))) (define-public java-asm (package (name "java-asm") (version "6.0") (source (origin (method url-fetch) (uri (string-append "https://download.forge.ow2.org/asm/" "asm-" version ".tar.gz")) (sha256 (base32 "115l5pqblirdkmzi32dxx7gbcm4jy0s14y5wircr6h8jdr9aix00")))) (build-system ant-build-system) (arguments `(#:build-target "compile" ;; The tests require an old version of Janino, which no longer compiles ;; with the JDK7. #:tests? #f #:make-flags (list ;; We don't need these extra ant tasks, but the build system asks us to ;; provide a path anyway. "-Dobjectweb.ant.tasks.path=dummy-path" ;; The java-aqute.bndlib JAR file will be put onto the classpath and ;; used during the build automatically by ant-build-system, but ;; java-asm's build.xml fails unless we provide something here. "-Dbiz.aQute.bnd.path=dummy-path") #:phases (modify-phases %standard-phases (add-before 'build 'remove-bnd-dependency (lambda _ ;; This file is the only one to require bnd, and is not needed ;; because we don't build a bundle. (delete-file "src/org/objectweb/asm/tools/ModuleInfoBndPlugin.java") #t)) (add-before 'install 'build-jars (lambda* (#:key make-flags #:allow-other-keys) ;; We cannot use the "jar" target because it depends on a couple ;; of unpackaged, complicated tools. (mkdir "dist") (invoke "jar" "-cf" (string-append "dist/asm-" ,version ".jar") "-C" "output/build/tmp" "."))) (add-before 'install 'fix-pom (lambda _ (substitute* (find-files "archive" "\\.pom$") (("@product.artifact@") ,version)) #t)) (add-before 'install 'install-parent (install-pom-file "archive/asm-parent.pom")) (replace 'install (install-from-pom "archive/asm.pom"))))) (native-inputs (list java-junit)) (propagated-inputs (list java-org-ow2-parent-pom-1.3)) (home-page "https://asm.ow2.io/") (synopsis "Very small and fast Java bytecode manipulation framework") (description "ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify existing classes or dynamically generate classes, directly in binary form. The provided common transformations and analysis algorithms allow easily assembling custom complex transformations and code analysis tools.") (license license:bsd-3))) (define java-org-ow2-parent-pom-1.3 (package (name "java-org-ow2-parent-pom") (version "1.3") (source (origin (method url-fetch) (uri "https://repo1.maven.org/maven2/org/ow2/ow2/1.3/ow2-1.3.pom") (sha256 (base32 "1yr8hfx8gffpppa4ii6cvrsq029a6x8hzy7nsavxhs60s9kmq8ai")))) (build-system ant-build-system) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'unpack) (delete 'build) (delete 'configure) (replace 'install ,#~(install-pom-file #$source))))) (home-page "https://ow2.org") (synopsis "Ow2.org parent pom") (description "This package contains the parent pom for projects from ow2.org, including java-asm.") (license license:lgpl2.1+))) (define java-asm-bootstrap (package (inherit java-asm) (name "java-asm-bootstrap") (arguments (substitute-keyword-arguments (package-arguments java-asm) ((#:tests? _) #f))) (native-inputs `()))) (define-public java-asm-8 (package (inherit java-asm) (version "8.0.1") (source (origin (method git-fetch) (uri (git-reference (url "https://gitlab.ow2.org/asm/asm") (commit (string-append "ASM_" (string-join (string-split version #\.) "_"))))) (file-name (git-file-name "java-asm" version)) (sha256 (base32 "1s6j27zc1i76gh891w2g48b1c3abp9w8zp5j54yb1vm5h8djkd69")))) (arguments `(#:jar-name "asm8.jar" #:source-dir "asm/src/main/java" #:test-dir "asm/src/test" ;; tests depend on junit5 #:tests? #f)) (propagated-inputs '()) (native-inputs '()))) (define-public java-asm-tree-8 (package (inherit java-asm-8) (name "java-asm-tree") (arguments `(#:jar-name "asm-tree.jar" #:source-dir "asm-tree/src/main/java" #:test-dir "asm-tree/src/test" ;; tests depend on junit5 #:tests? #f)) (inputs (list java-asm-8)))) (define-public java-asm-analysis-8 (package (inherit java-asm-8) (name "java-asm-analysis") (arguments `(#:jar-name "asm-analysis.jar" #:source-dir "asm-analysis/src/main/java" #:test-dir "asm-analysis/src/test" ;; tests depend on junit5 #:tests? #f)) (inputs (list java-asm-8 java-asm-tree-8)))) (define-public java-asm-util-8 (package (inherit java-asm-8) (name "java-asm-util") (arguments `(#:jar-name "asm-util8.jar" #:source-dir "asm-util/src/main/java" #:test-dir "asm-util/src/test" ;; tests depend on junit5 #:tests? #f)) (inputs (list java-asm-8 java-asm-analysis-8 java-asm-tree-8)))) (define-public java-cglib (package (name "java-cglib") (version "3.2.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/cglib/cglib") (commit (string-append "RELEASE_" (string-map (lambda (c) (if (char=? c #\.) #\_ c)) version))))) (file-name (git-file-name name version)) (sha256 (base32 "186451jms2zfp47yd8kxd77az2cqal1my2br7klgyp8fpl4qfg8v")))) (build-system ant-build-system) (arguments `(;; FIXME: tests fail because junit runs ;; "net.sf.cglib.transform.AbstractTransformTest", which does not seem ;; to describe a test at all. #:tests? #f #:jar-name "cglib.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "cglib") #t))))) (inputs (list java-asm java-junit)) (home-page "https://github.com/cglib/cglib/") (synopsis "Java byte code generation library") (description "The byte code generation library CGLIB is a high level API to generate and transform Java byte code.") (license license:asl2.0))) (define-public java-objenesis (package (name "java-objenesis") (version "2.5.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/easymock/objenesis") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "054yi200wj00x6dp1sxfrwgndwywadsbn8d8ij1j0v45j9g2vdya")))) (build-system ant-build-system) (arguments `(#:jar-name "objenesis.jar" #:source-dir "main/src/" #:test-dir "main/src/test/")) (native-inputs (list java-junit java-hamcrest-core)) (home-page "http://objenesis.org/") (synopsis "Bypass the constructor when creating an object") (description "Objenesis is a small Java library that serves one purpose: to instantiate a new object of a particular class. It is common to see restrictions in libraries stating that classes must require a default constructor. Objenesis aims to overcome these restrictions by bypassing the constructor on object instantiation.") (license license:asl2.0))) (define-public java-easymock (package (name "java-easymock") (version "3.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/easymock/easymock/") (commit (string-append "easymock-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "02vybm8hc0i0n9sp2f2iiqn54zwqhq835f76wc6b2m7819z5a8dq")))) (build-system ant-build-system) (arguments `(#:jar-name "easymock.jar" #:source-dir "core/src/main" #:test-dir "core/src/test" #:phases (modify-phases %standard-phases ;; FIXME: Android support requires the following packages to be ;; available: com.google.dexmaker.stock.ProxyBuilder (add-after 'unpack 'delete-android-support (lambda _ (with-directory-excursion "core/src/main/java/org/easymock/internal" (substitute* "MocksControl.java" (("AndroidSupport.isAndroid\\(\\)") "false") (("return classProxyFactory = new AndroidClassProxyFactory\\(\\);") "")) (delete-file "AndroidClassProxyFactory.java")) #t)) (add-after 'unpack 'delete-broken-tests (lambda _ (with-directory-excursion "core/src/test/java/org/easymock" ;; This test depends on dexmaker. (delete-file "tests2/ClassExtensionHelperTest.java") ;; This is not a test. (delete-file "tests/BaseEasyMockRunnerTest.java") ;; This test should be executed with a different runner... (delete-file "tests2/EasyMockAnnotationsTest.java") ;; ...but deleting it means that we also have to delete these ;; dependent files. (delete-file "tests2/EasyMockRunnerTest.java") (delete-file "tests2/EasyMockRuleTest.java") ;; This test fails because the file "easymock.properties" does ;; not exist. (delete-file "tests2/EasyMockPropertiesTest.java")) #t))))) (inputs (list java-asm java-cglib java-objenesis)) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://easymock.org/") (synopsis "Java library providing mock objects for unit tests") (description "EasyMock is a Java library that provides an easy way to use mock objects in unit testing.") (license license:asl2.0))) (define-public java-jmock-1 (package (name "java-jmock") (version "1.2.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jmock-developers/jmock-library") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0lkga995xd9b9mmzxmcd301hlw83p1h78nibh7djlx7wydscr85z")))) (build-system ant-build-system) (arguments `(#:build-target "jars" #:test-target "run.tests" #:phases (modify-phases %standard-phases (replace 'install (install-jars "build"))))) (home-page "http://jmock.org/") (synopsis "Mock object library for test-driven development") (description "JMock is a library that supports test-driven development of Java code with mock objects. Mock objects help you design and test the interactions between the objects in your programs. The jMock library @itemize @item makes it quick and easy to define mock objects @item lets you precisely specify the interactions between your objects, reducing the brittleness of your tests @item plugs into your favourite test framework @item is easy to extend. @end itemize\n") (license license:bsd-3))) (define-public java-jmock (package (inherit java-jmock-1) (name "java-jmock") (version "2.8.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jmock-developers/jmock-library") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "12b7l22g3nrjvf2dzcw3z03fpd2chrgp0d8xkvn8w55rwb57pax6")))) (inputs (list java-hamcrest-all java-asm java-bsh java-junit)) (native-inputs `(("cglib" ,java-cglib))) (arguments `(#:jar-name "java-jmock.jar" #:source-dir "jmock/src/main/java" #:test-dir "jmock/src/test")))) (define-public java-jmock-junit4 (package (inherit java-jmock) (name "java-jmock-junit4") (arguments `(#:jar-name "java-jmock-junit4.jar" #:source-dir "jmock-junit4/src/main/java" #:test-dir "jmock-junit4/src/test")) (inputs `(("java-hamcrest-all" ,java-hamcrest-all) ("java-asm" ,java-asm) ("java-bsh" ,java-bsh) ("java-jmock" ,java-jmock) ("java-jumit" ,java-junit))))) (define-public java-jmock-legacy (package (inherit java-jmock) (name "java-jmock-legacy") (arguments `(#:jar-name "java-jmock-legacy.jar" #:source-dir "jmock-legacy/src/main/java" #:test-dir "jmock-legacy/src/test" #:phases (modify-phases %standard-phases (add-before 'check 'copy-tests (lambda _ ;; This file is a dependancy of some tests (let ((file "org/jmock/test/acceptance/PackageProtectedType.java")) (copy-file (string-append "jmock/src/test/java/" file) (string-append "jmock-legacy/src/test/java/" file)) #t)))))) (inputs (list java-hamcrest-all java-objenesis java-cglib java-jmock java-asm java-bsh java-junit)) (native-inputs (list java-jmock-junit4)))) (define-public java-hamcrest-all (package (inherit java-hamcrest-core) (name "java-hamcrest-all") (arguments `(#:jdk ,icedtea-8 ,@(substitute-keyword-arguments (package-arguments java-hamcrest-core) ((#:build-target _) "bigjar") ((#:phases phases) `(modify-phases ,phases ;; Some build targets override the classpath, so we need to patch ;; the build.xml to ensure that required dependencies are on the ;; classpath. (add-after 'unpack 'patch-classpath-for-integration (lambda* (#:key inputs #:allow-other-keys) (substitute* "build.xml" ((" build/hamcrest-library-\\$\\{version\\}.jar" line) (string-join (cons line (append (find-files (assoc-ref inputs "java-junit") "\\.jar$") (find-files (assoc-ref inputs "java-jmock") "\\.jar$") (find-files (assoc-ref inputs "java-easymock") "\\.jar$"))) ";")) (("build/hamcrest-core-\\$\\{version\\}\\.jar") (car (find-files (assoc-ref inputs "java-hamcrest-core") "jar$")))) #t)) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((target (string-append (assoc-ref outputs "out") "/share/java/")) (version-suffix ,(string-append "-" (package-version java-hamcrest-core) ".jar")) (install-without-version-suffix (lambda (jar) (copy-file jar (string-append target (basename jar version-suffix) ".jar"))))) (mkdir-p target) (for-each install-without-version-suffix (find-files "build" (lambda (name _) (and (string-suffix? ".jar" name) (not (string-suffix? "-sources.jar" name))))))) #t))))))) (inputs (modify-inputs (package-inputs java-hamcrest-core) (prepend java-junit java-jmock-1 ;; This is necessary because of what seems to be a race condition. ;; This package would sometimes fail to build because hamcrest-core.jar ;; could not be found, even though it is built as part of this package. ;; Adding java-hamcrest-core appears to fix this problem. See ;; https://debbugs.gnu.org/31390 for more information. java-hamcrest-core java-easymock))))) (define-public java-jopt-simple (package (name "java-jopt-simple") (version "5.0.3") (source (origin (method url-fetch) (uri (string-append "http://repo1.maven.org/maven2/" "net/sf/jopt-simple/jopt-simple/" version "/jopt-simple-" version "-sources.jar")) (sha256 (base32 "1v8bzmwmw6qq20gm42xyay6vrd567dra4vqwhgjnqqjz1gs9f8qa")))) (build-system ant-build-system) (arguments `(#:tests? #f ; there are no tests #:jar-name "jopt-simple.jar" #:phases (modify-phases %standard-phases (add-before 'install 'create-pom (generate-pom.xml "pom.xml" "net.sf.jopt-simple" "jopt-simple" ,version)) (replace 'install (install-from-pom "pom.xml"))))) (home-page "https://pholser.github.io/jopt-simple/") (synopsis "Java library for parsing command line options") (description "JOpt Simple is a Java library for parsing command line options, such as those you might pass to an invocation of @code{javac}. In the interest of striving for simplicity, as closely as possible JOpt Simple attempts to honor the command line option syntaxes of POSIX @code{getopt} and GNU @code{getopt_long}. It also aims to make option parser configuration and retrieval of options and their arguments simple and expressive, without being overly clever.") (license license:expat))) ;; Required by jmh (define-public java-jopt-simple-4 (package (inherit java-jopt-simple) (version "4.6") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "net/sf/jopt-simple/jopt-simple/" version "/jopt-simple-" version "-sources.jar")) (sha256 (base32 "0ny82zczxkn201ld0b7rps0ifzjhfs8m1ncdmy1f50145ciszkpd")))) (arguments (substitute-keyword-arguments (package-arguments java-jopt-simple) ((#:phases phases) `(modify-phases ,phases (replace 'create-pom (generate-pom.xml "pom.xml" "net.sf.jopt-simple" "jopt-simple" ,version)))))))) (define-public java-commons-math3 (package (name "java-commons-math3") (version "3.6.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/math/source/" "commons-math3-" version "-src.tar.gz")) (sha256 (base32 "19l6yp44qc5g7wg816nbn5z3zq3xxzwimvbm4a8pczgvpi4i85s6")))) (build-system ant-build-system) (arguments `(#:build-target "jar" #:test-target "test" #:make-flags ,#~(let ((hamcrest #$(this-package-native-input "java-hamcrest-core")) (junit #$(this-package-native-input "java-junit"))) (list (string-append "-Djunit.jar=" (car (find-files junit "jar$"))) (string-append "-Dhamcrest.jar=" (car (find-files hamcrest ".*.jar$"))))) #:phases (modify-phases %standard-phases ;; We want to build the jar in the build phase and run the tests ;; later in a separate phase. (add-after 'unpack 'untangle-targets (lambda _ (substitute* "build.xml" (("name=\"jar\" depends=\"test\"") "name=\"jar\" depends=\"compile\"")))) ;; There is no install target. (replace 'install (install-from-pom "pom.xml"))))) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://commons.apache.org/math/") (synopsis "Apache Commons mathematics library") (description "Commons Math is a library of lightweight, self-contained mathematics and statistics components addressing the most common problems not available in the Java programming language or Commons Lang.") (license license:asl2.0))) (define-public java-jmh (package (name "java-jmh") (version "1.32") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/openjdk/jmh") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0i7fa7l3gdqkkgz5ddayp6m46dgbj9rqlz35xffrcbyiz3gpljy0")))) (build-system maven-build-system) (arguments `(#:exclude (("org.apache.maven.plugins" . ("maven-source-plugin" "maven-archetype-plugin" "maven-shade-plugin" "maven-site-plugin" "maven-javadoc-plugin" "maven-eclipse-plugin")) ("com.mycila.maven-license-plugin" . ("maven-license-plugin")) ("org.apache.maven.wagon" . ("wagon-ssh"))) #:maven-plugins (("maven-enforcer-plugin" ,maven-enforcer-plugin) ,@(default-maven-plugins)) #:phases (modify-phases %standard-phases (add-after 'unpack 'remove-unnecessary (lambda _ ;; requires org.apache.maven.archetype:archetype-packaging. ;; Its subprojects also require groovy, kotlin and scala, ;; respectively. (delete-file-recursively "jmh-archetypes")))))) (propagated-inputs (list java-jopt-simple-4 java-commons-math3)) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://openjdk.java.net/projects/code-tools/jmh/") (synopsis "Benchmark harness for the JVM") (description "JMH is a Java harness for building, running, and analysing nano/micro/milli/macro benchmarks written in Java and other languages targeting the JVM.") ;; GPLv2 only (license license:gpl2))) (define-public java-commons-collections4 (package (name "java-commons-collections4") (version "4.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/collections/source/" "commons-collections4-" version "-src.tar.gz")) (sha256 (base32 "1krfhvggympq4avk7gh6qafzf6b9ip6r1m4lmacikyx04039m0wl")))) (build-system ant-build-system) (arguments `(#:test-target "test" #:make-flags ,#~(let ((hamcrest #$(this-package-native-input "java-hamcrest-core")) (junit #$(this-package-native-input "java-junit")) (easymock #$(this-package-native-input "java-easymock"))) (list (string-append "-Djunit.jar=" (car (find-files junit "jar$"))) (string-append "-Dhamcrest.jar=" (car (find-files hamcrest "jar$"))) (string-append "-Deasymock.jar=" easymock "/share/java/easymock.jar"))) #:phases (modify-phases %standard-phases (replace 'install (install-jars "target"))))) (native-inputs (list java-junit java-hamcrest-core java-easymock)) (home-page "https://commons.apache.org/collections/") (synopsis "Collections framework") (description "The Java Collections Framework is the recognised standard for collection handling in Java. Commons-Collections seek to build upon the JDK classes by providing new interfaces, implementations and utilities. There are many features, including: @itemize @item @code{Bag} interface for collections that have a number of copies of each object @item @code{BidiMap} interface for maps that can be looked up from value to key as well and key to value @item @code{MapIterator} interface to provide simple and quick iteration over maps @item Transforming decorators that alter each object as it is added to the collection @item Composite collections that make multiple collections look like one @item Ordered maps and sets that retain the order elements are added in, including an LRU based map @item Reference map that allows keys and/or values to be garbage collected under close control @item Many comparator implementations @item Many iterator implementations @item Adapter classes from array and enumerations to collections @item Utilities to test or create typical set-theory properties of collections such as union, intersection, and closure. @end itemize\n") (license license:asl2.0))) (define-public java-commons-collections (package (inherit java-commons-collections4) (name "java-commons-collections") (version "3.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/collections/source/" "commons-collections-" version "-src.tar.gz")) (sha256 (base32 "055r51a5lfc3z7rkxnxmnn1npvkvda7636hjpm4qk7cnfzz98387")) (patches (search-patches "java-commons-collections-fix-java8.patch")))) (arguments (substitute-keyword-arguments (package-arguments java-commons-collections4) ((#:phases phases) `(modify-phases ,phases ;; The manifest is required by the build procedure (add-before 'build 'add-manifest (lambda _ (mkdir-p "build/conf") (call-with-output-file "build/conf/MANIFEST.MF" (lambda (file) (format file "Manifest-Version: 1.0\n"))) #t)) (replace 'install (install-jars "build")))))))) (define java-commons-collections-test-classes (package (inherit java-commons-collections) (arguments `(#:jar-name "commons-collections-test-classes.jar" #:source-dir "src/test" #:tests? #f)) (inputs `(("collection" ,java-commons-collections))))) (define-public java-commons-beanutils (package (name "java-commons-beanutils") (version "1.9.3") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/beanutils/source/" "commons-beanutils-" version "-src.tar.gz")) (sha256 (base32 "03cs0bq3sl1sdc7py9g3qnf8n9h473nrkvd3d251kaqv6a2ab7qk")))) (build-system ant-build-system) (arguments `(#:test-target "test" #:tests? #f #:phases (modify-phases %standard-phases (replace 'install (lambda* (#:key outputs #:allow-other-keys) (rename-file (string-append "dist/commons-beanutils-" ,version "-SNAPSHOT.jar") "commons-beanutils.jar") (install-file "commons-beanutils.jar" (string-append (assoc-ref outputs "out") "/share/java/")) #t))))) (inputs `(("logging" ,java-commons-logging-minimal) ("collections" ,java-commons-collections))) (native-inputs `(("junit" ,java-junit) ("collections-test" ,java-commons-collections-test-classes))) (home-page "https://commons.apache.org/beanutils/") (synopsis "Dynamically set or get properties in Java") (description "BeanUtils provides a simplified interface to reflection and introspection to set or get dynamically determined properties through their setter and getter method.") (license license:asl2.0))) (define-public java-commons-io (package (name "java-commons-io") (version "2.5") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/io/source/" "commons-io-" version "-src.tar.gz")) (sha256 (base32 "0q5y41jrcjvx9hzs47x5kdhnasdy6rm4bzqd2jxl02w717m7a7v3")))) (build-system ant-build-system) (outputs '("out" "doc")) (arguments `(#:test-target "test" #:make-flags ,#~(list (string-append "-Djunit.jar=" (car (find-files #$(this-package-native-input "java-junit") "jar$")))) #:phases (modify-phases %standard-phases (add-after 'build 'build-javadoc ant-build-javadoc) (replace 'install (install-from-pom "pom.xml")) (add-after 'install 'install-doc (install-javadoc "target/apidocs"))))) (native-inputs (list java-junit java-hamcrest-core)) (propagated-inputs (list apache-commons-parent-pom-39)) (home-page "https://commons.apache.org/io/") (synopsis "Common useful IO related classes") (description "Commons-IO contains utility classes, stream implementations, file filters and endian classes.") (license license:asl2.0))) (define-public java-commons-exec-1.1 (package (name "java-commons-exec") (version "1.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/exec/source/" "commons-exec-" version "-src.tar.gz")) (sha256 (base32 "025dk8xgj10lxwwwqp0hng2rn7fr4vcirxzydqzx9k4dim667alk")))) (build-system ant-build-system) (arguments `(#:test-target "test" #:make-flags ,#~(list (string-append "-Dmaven.junit.jar=" (car (find-files #$(this-package-native-input "java-junit") "jar$")))) #:phases (modify-phases %standard-phases (add-before 'build 'delete-network-tests (lambda _ (delete-file "src/test/java/org/apache/commons/exec/DefaultExecutorTest.java") (substitute* "src/test/java/org/apache/commons/exec/TestRunner.java" (("suite\\.addTestSuite\\(DefaultExecutorTest\\.class\\);") "")) #t)) ;; The "build" phase automatically tests. (delete 'check) (replace 'install (install-jars "target"))))) (native-inputs (list java-junit)) (home-page "https://commons.apache.org/proper/commons-exec/") (synopsis "Common program execution related classes") (description "Commons-Exec simplifies executing external processes.") (license license:asl2.0))) (define-public java-commons-exec (package (inherit java-commons-exec-1.1) (version "1.3") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/exec/source/" "commons-exec-" version "-src.tar.gz")) (sha256 (base32 "17yb4h6f8l49c5iyyvda4z2nmw0bxrx857nrwmsr7mmpb7x441yv")))) (arguments `(#:test-target "test" #:make-flags ,#~(list (string-append "-Dmaven.junit.jar=" (car (find-files #$(this-package-native-input "java-junit") "jar$"))) "-Dmaven.compiler.source=1.7" "-Dmaven.compiler.target=1.7") #:phases (modify-phases %standard-phases (add-before 'build 'delete-network-tests (lambda* (#:key inputs #:allow-other-keys) ;; This test hangs indefinitely. (delete-file "src/test/java/org/apache/commons/exec/issues/Exec60Test.java") (substitute* "src/test/java/org/apache/commons/exec/issues/Exec41Test.java" (("ping -c 10 127.0.0.1") "sleep 10")) (substitute* "src/test/java/org/apache/commons/exec/issues/Exec49Test.java" (("/bin/ls") "ls")) (call-with-output-file "src/test/scripts/ping.sh" (lambda (port) (format port "#!~a/bin/sh\nsleep $1\n" (assoc-ref inputs "bash")))) #t)) ;; The "build" phase automatically tests. (delete 'check) (replace 'install (install-jars "target"))))) (native-inputs (list java-junit java-hamcrest-core)))) (define-public java-commons-lang (package (name "java-commons-lang") (version "2.6") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/lang/source/" "commons-lang-" version "-src.tar.gz")) (sha256 (base32 "1mxwagqadzx1b2al7i0z1v0r235aj2njdyijf02szq0vhmqrfiq5")))) (build-system ant-build-system) (outputs '("out" "doc")) (arguments `(#:test-target "test" #:test-exclude (list "**/Abstract*.java" "**/Random*.java") #:phases (modify-phases %standard-phases (add-after 'build 'build-javadoc ant-build-javadoc) (add-before 'check 'disable-failing-test (lambda _ ;; Disable a failing test (substitute* "src/test/java/org/apache/commons/lang/\ time/FastDateFormatTest.java" (("public void testFormat\\(\\)") "public void disabled_testFormat()")) #t)) (replace 'install (install-jars "target")) (add-after 'install 'install-doc (install-javadoc "target/apidocs"))))) (native-inputs (list java-junit)) (home-page "https://commons.apache.org/lang/") (synopsis "Extension of the java.lang package") (description "The Commons Lang components contains a set of Java classes that provide helper methods for standard Java classes, especially those found in the @code{java.lang} package in the Sun JDK. The following classes are included: @itemize @item StringUtils - Helper for @code{java.lang.String}. @item CharSetUtils - Methods for dealing with @code{CharSets}, which are sets of characters such as @code{[a-z]} and @code{[abcdez]}. @item RandomStringUtils - Helper for creating randomised strings. @item NumberUtils - Helper for @code{java.lang.Number} and its subclasses. @item NumberRange - A range of numbers with an upper and lower bound. @item ObjectUtils - Helper for @code{java.lang.Object}. @item SerializationUtils - Helper for serializing objects. @item SystemUtils - Utility class defining the Java system properties. @item NestedException package - A sub-package for the creation of nested exceptions. @item Enum package - A sub-package for the creation of enumerated types. @item Builder package - A sub-package for the creation of @code{equals}, @code{hashCode}, @code{compareTo} and @code{toString} methods. @end itemize\n") (license license:asl2.0))) (define-public java-commons-lang3 (package (name "java-commons-lang3") (version "3.9") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/lang/source/" "commons-lang3-" version "-src.tar.gz")) (sha256 (base32 "0s4ffbvsyl16c90l45ximsg4dwd8hmz7wsza3p308fw43h6mwhb6")))) (build-system ant-build-system) (arguments `(#:jar-name "commons-lang3.jar" #:source-dir "src/main/java" #:tests? #f; require junit5 #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list apache-commons-parent-pom-48)) (home-page "https://commons.apache.org/lang/") (synopsis "Extension of the java.lang package") (description "The Commons Lang components contains a set of Java classes that provide helper methods for standard Java classes, especially those found in the @code{java.lang} package. The following classes are included: @itemize @item StringUtils - Helper for @code{java.lang.String}. @item CharSetUtils - Methods for dealing with @code{CharSets}, which are sets of characters such as @code{[a-z]} and @code{[abcdez]}. @item RandomStringUtils - Helper for creating randomised strings. @item NumberUtils - Helper for @code{java.lang.Number} and its subclasses. @item NumberRange - A range of numbers with an upper and lower bound. @item ObjectUtils - Helper for @code{java.lang.Object}. @item SerializationUtils - Helper for serializing objects. @item SystemUtils - Utility class defining the Java system properties. @item NestedException package - A sub-package for the creation of nested exceptions. @item Enum package - A sub-package for the creation of enumerated types. @item Builder package - A sub-package for the creation of @code{equals}, @code{hashCode}, @code{compareTo} and @code{toString} methods. @end itemize\n") (license license:asl2.0))) (define-public java-commons-bsf (package (name "java-commons-bsf") (version "2.4.0") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/bsf/source/bsf-src-" version ".tar.gz")) (sha256 (base32 "1sbamr8jl32p1jgf59nw0b2w9qivyg145954hm6ly54cfgsqrdas")) (modules '((guix build utils))) (snippet '(begin (for-each delete-file (find-files "." "\\.jar$")) #t)))) (build-system ant-build-system) (arguments `(#:build-target "jar" #:tests? #f; No test file #:modules ((guix build ant-build-system) (guix build utils) (guix build java-utils) (sxml simple)) #:phases (modify-phases %standard-phases (add-before 'build 'create-properties (lambda _ ;; This file is missing from the distribution (call-with-output-file "build-properties.xml" (lambda (port) (sxml->xml `(project (@ (basedir ".") (name "build-properties") (default "")) (property (@ (name "project.name") (value "bsf"))) (property (@ (name "source.level") (value "1.5"))) (property (@ (name "build.lib") (value "build/jar"))) (property (@ (name "src.dir") (value "src"))) (property (@ (name "tests.dir") (value "src/org/apache/bsf/test"))) (property (@ (name "build.tests") (value "build/test-classes"))) (property (@ (name "build.dest") (value "build/classes")))) port))) #t)) (replace 'install (install-jars "build"))))) (native-inputs (list java-junit)) (inputs (list java-commons-logging-minimal)) (home-page "https://commons.apache.org/proper/commons-bsf") (synopsis "Bean Scripting Framework") (description "The Bean Scripting Framework (BSF) is a set of Java classes which provides scripting language support within Java applications, and access to Java objects and methods from scripting languages. BSF allows one to write JSPs in languages other than Java while providing access to the Java class library. In addition, BSF permits any Java application to be implemented in part (or dynamically extended) by a language that is embedded within it. This is achieved by providing an API that permits calling scripting language engines from within Java, as well as an object registry that exposes Java objects to these scripting language engines.") (license license:asl2.0))) (define-public java-commons-jxpath (package (name "java-commons-jxpath") (version "1.3") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/jxpath/source/" "commons-jxpath-" version "-src.tar.gz")) (sha256 (base32 "1rpgg31ayn9fwr4bfi2i1ij0npcg79ad2fv0w9hacvawsyc42cfs")))) (build-system ant-build-system) (arguments `(#:jar-name "commons-jxpath.jar" ;; tests require more dependencies, including mockrunner which depends on old software #:tests? #f #:source-dir "src/java")) (inputs `(("servlet" ,java-classpathx-servletapi) ("java-jdom" ,java-jdom) ("java-commons-beanutils" ,java-commons-beanutils))) (native-inputs (list java-junit)) (home-page "https://commons.apache.org/jxpath/") (synopsis "Simple interpreter of an expression language called XPath") (description "The org.apache.commons.jxpath package defines a simple interpreter of an expression language called XPath. JXPath applies XPath expressions to graphs of objects of all kinds: JavaBeans, Maps, Servlet contexts, DOM etc, including mixtures thereof.") (license license:asl2.0))) (define-public java-commons-pool (package (name "java-commons-pool") (version "2.6.2") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/pool/source/" "commons-pool2-" version "-src.tar.gz")) (sha256 (base32 "1fi1hgqmq01bs6azbj3sfswxzadp2r8sjjfiq6ryilz1m50kvrv6")))) (arguments `(#:jar-name "common-pool.jar" #:source-dir "src/main/java" #:test-exclude (list "**/PerformanceTest.java"))) (build-system ant-build-system) (inputs (list java-cglib)) (native-inputs (list java-junit java-hamcrest-core java-asm java-objenesis)) (home-page "https://commons.apache.org/proper/commons-pool/") (synopsis "Object-pooling API in Java") (description "The commons-pool package provides an object-pooling API and a number of object pool implementations. This package defines a handful of pooling interfaces and some base classes that may be useful when creating new pool implementations.") (license license:asl2.0))) (define-public java-commons-dbcp (package (name "java-commons-dbcp") (version "2.6.0") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/dbcp/source/" "commons-dbcp2-" version "-src.tar.gz")) (sha256 (base32 "0axbvcbnf2l70fc3ybrlp3siw2w4ka9mia2pnx4py8gz54cpw3rc")))) (arguments `(#:source-dir "src/main/java" #:jar-name "java-commons-dbcp.jar" #:tests? #f)); requires apache-geronimo (inputs `(("java-commons-pool" ,java-commons-pool) ("java-commons-logging" ,java-commons-logging-minimal) ("java-jboss-transaction-api-spec" ,java-jboss-transaction-api-spec))) (native-inputs (list java-junit)) (build-system ant-build-system) (home-page "https://commons.apache.org/proper/commons-dbcp/") (synopsis "Database Connection Pool for Java") (description "Commons-dbcp allows you to share a pool of database connections between users. Creating a new connection for each user can be time consuming and even unfeasible when the number of simultaneous users is very large. This package provides a way to share a poole of connections to reduce that load.") (license license:asl2.0))) (define-public java-commons-jcs (package (name "java-commons-jcs") (version "2.2.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/jcs/source/" "commons-jcs-dist-" version "-src.tar.gz")) (sha256 (base32 "0syhq2npjbrl0azqfjm0gvash1qd5qjy4qmysxcrqjsk0nf9fa1q")))) (build-system ant-build-system) (arguments `(#:jar-name "commons-jcs.jar" #:source-dir "commons-jcs-core/src/main/java" #:test-dir "commons-jcs-core/src/test" #:tests? #f; requires hsqldb #:phases (modify-phases %standard-phases (add-before 'build 'prepare (lambda _ (with-directory-excursion "commons-jcs-core/src/main/java/org/apache/commons/jcs" (substitute* "auxiliary/disk/jdbc/dsfactory/SharedPoolDataSourceFactory.java" (("commons.dbcp") "commons.dbcp2") ((".*\\.setMaxActive.*") "")) ;;; Remove dependency on velocity-tools (delete-file "admin/servlet/JCSAdminServlet.java")) #t))))) (propagated-inputs (list java-classpathx-servletapi java-commons-logging-minimal java-commons-httpclient java-commons-dbcp)) (native-inputs (list java-junit)) (home-page "https://commons.apache.org/proper/commons-jcs/") (synopsis "Distributed caching system in Java") (description "JCS is a distributed caching system written in Java. It is intended to speed up applications by providing a means to manage cached data of various dynamic natures. Like any caching system, JCS is most useful for high read, low put applications. Latency times drop sharply and bottlenecks move away from the database in an effectively cached system.") (license license:asl2.0))) (define-public java-jsr250 (package (name "java-jsr250") (version "1.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/javaee/javax.annotation") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1g22a9d75g01s9yxgdig0ss7i30j4ysnnp08gn4krn0wly4lpqq0")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jdk ,icedtea-8 #:jar-name "jsr250.jar" #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-jvnet-parent-pom-3)) (home-page "https://jcp.org/en/jsr/detail?id=250") (synopsis "Security-related annotations") (description "This package provides annotations for security. It provides packages in the @code{javax.annotation} and @code{javax.annotation.security} namespaces.") ;; either cddl or gpl2 only, with classpath exception (license (list license:cddl1.0 license:gpl2)))) (define-public java-jsr305 (package (name "java-jsr305") (version "3.0.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "com/google/code/findbugs/" "jsr305/" version "/jsr305-" version "-sources.jar")) (sha256 (base32 "1rh6jin9v7jqpq3kf1swl868l8i94r636n03pzpsmgr8v0lh9j2n")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "jsr305.jar" #:phases (modify-phases %standard-phases (add-before 'install 'create-pom (generate-pom.xml "pom.xml" "com.google.code.findbugs" "jsr305" ,version)) (replace 'install (install-from-pom "pom.xml"))))) (home-page "http://findbugs.sourceforge.net/") (synopsis "Annotations for the static analyzer called findbugs") (description "This package provides annotations for the findbugs package. It provides packages in the @code{javax.annotations} namespace.") (license license:asl2.0))) (define-public java-guava (package (name "java-guava") ;; This is the last release of Guava that can be built with Java 7. (version "20.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/google/guava/") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "00h5cawdjic1vind3yivzh1f58flvm1yfmhsyqwyvmbvj1vakysp")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "guava.jar" #:source-dir "guava/src" #:phases (modify-phases %standard-phases (add-after 'unpack 'trim-sources (lambda _ (with-directory-excursion "guava/src/com/google/common" ;; Remove annotations to avoid extra dependencies: ;; * "j2objc" annotations are used when converting Java to ;; Objective C; ;; * "errorprone" annotations catch common Java mistakes at ;; compile time; ;; * "IgnoreJRERequirement" is used for Android. (substitute* (find-files "." "\\.java$") (("import com.google.j2objc.*") "") (("import com.google.errorprone.annotation.*") "") (("import org.codehaus.mojo.animal_sniffer.*") "") (("@CanIgnoreReturnValue") "") (("@LazyInit") "") (("@WeakOuter") "") (("@RetainedWith") "") (("@Weak") "") (("@ForOverride") "") (("@J2ObjCIncompatible") "") (("@IgnoreJRERequirement") ""))) #t)) (replace 'install (install-from-pom "guava/pom.xml"))))) (inputs (list java-jsr305)) (propagated-inputs (list java-guava-parent-pom)) (home-page "https://github.com/google/guava") (synopsis "Google core libraries for Java") (description "Guava is a set of core libraries that includes new collection types (such as multimap and multiset), immutable collections, a graph library, functional types, an in-memory cache, and APIs/utilities for concurrency, I/O, hashing, primitives, reflection, string processing, and much more!") (license license:asl2.0))) (define java-guava-parent-pom (package (inherit java-guava) (name "java-guava-parent-pom") (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs `(("java-sonatype-oss-parent-pom" ,java-sonatype-oss-parent-pom-7))))) ;; The java-commons-logging package provides adapters to many different ;; logging frameworks. To avoid an excessive dependency graph we try to build ;; it with only a minimal set of adapters. (define-public java-commons-logging-minimal (package (name "java-commons-logging-minimal") (version "1.2") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/logging/source/" "commons-logging-" version "-src.tar.gz")) (sha256 (base32 "10bwcy5w8d7y39n0krlwhnp8ds3kj5zhmzj0zxnkw0qdlsjmsrj9")))) (build-system ant-build-system) (arguments `(#:tests? #f ; avoid dependency on logging frameworks #:jar-name "commons-logging-minimal.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'delete-adapters-and-tests (lambda _ ;; Delete all adapters except for NoOpLog, SimpleLog, and ;; LogFactoryImpl. NoOpLog is required to build; LogFactoryImpl ;; is used by applications; SimpleLog is the only actually usable ;; implementation that does not depend on another logging ;; framework. (for-each (lambda (file) (delete-file (string-append "src/main/java/org/apache/commons/logging/impl/" file))) (list "Jdk13LumberjackLogger.java" "WeakHashtable.java" "Log4JLogger.java" "ServletContextCleaner.java" "Jdk14Logger.java" "AvalonLogger.java" "LogKitLogger.java")) (delete-file-recursively "src/test") #t))))) (home-page "https://commons.apache.org/logging/") (synopsis "Common API for logging implementations") (description "The Logging package is a thin bridge between different logging implementations. A library that uses the commons-logging API can be used with any logging implementation at runtime.") (license license:asl2.0))) ;; This is the last release of the 1.x series. (define-public java-mockito-1 (package (name "java-mockito") (version "1.10.19") (source (origin (method url-fetch) (uri (string-append "http://repo1.maven.org/maven2/" "org/mockito/mockito-core/" version "/mockito-core-" version "-sources.jar")) (sha256 (base32 "0vmiwnwpf83g2q7kj1rislmja8fpvqkixjhawh7nxnygx6pq11kc")))) (build-system ant-build-system) (arguments `(#:jar-name "mockito.jar" #:tests? #f ; no tests included ;; FIXME: patch-and-repack does not support jars, so we have to apply ;; patches in build phases. #:phases (modify-phases %standard-phases ;; Mockito was developed against a different version of hamcrest, ;; which does not require matcher implementations to provide an ;; implementation of the "describeMismatch" method. We add this ;; simple definition to pass the build with our version of hamcrest. (add-after 'unpack 'fix-hamcrest-build-error (lambda _ (substitute* "src/org/mockito/internal/matchers/LocalizedMatcher.java" (("public Matcher getActualMatcher\\(\\) .*" line) (string-append " public void describeMismatch(Object item, Description description) { actualMatcher.describeMismatch(item, description); }" line))) #t)) ;; Mockito bundles cglib. We have a cglib package, so let's use ;; that instead. (add-after 'unpack 'use-system-libraries (lambda _ (with-directory-excursion "src/org/mockito/internal/creation/cglib" (substitute* '("CGLIBHacker.java" "CglibMockMaker.java" "ClassImposterizer.java" "DelegatingMockitoMethodProxy.java" "MethodInterceptorFilter.java" "MockitoNamingPolicy.java" "SerializableMockitoMethodProxy.java" "SerializableNoOp.java") (("import org.mockito.cglib") "import net.sf.cglib"))) #t))))) (inputs (list java-junit java-objenesis java-cglib java-hamcrest-core)) (home-page "http://mockito.org") (synopsis "Mockito is a mock library for Java") (description "Mockito is a mocking library for Java which lets you write tests with a clean and simple API. It generates mocks using reflection, and it records all mock invocations, including methods arguments.") (license license:asl2.0))) (define-public java-httpcomponents-httpcore (package (name "java-httpcomponents-httpcore") (version "4.4.6") (source (origin (method url-fetch) (uri (string-append "mirror://apache//httpcomponents/httpcore/" "source/httpcomponents-core-" version "-src.tar.gz")) (sha256 (base32 "02bwcf38y4vgwq7kj2s6q7qrmma641r5lacivm16kgxvb2j6h1vy")))) (build-system ant-build-system) (arguments `(#:jar-name "httpcomponents-httpcore.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "httpcore") #t))))) (inputs (list java-commons-logging-minimal java-commons-lang3)) (native-inputs (list java-junit java-mockito-1)) (home-page "https://hc.apache.org/httpcomponents-core-4.4.x/index.html") (synopsis "Low level HTTP transport components") (description "HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint. HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO. This package provides the blocking I/O model library.") (license license:asl2.0))) (define-public java-httpcomponents-httpcore-nio (package (inherit java-httpcomponents-httpcore) (name "java-httpcomponents-httpcore-nio") (arguments `(#:jar-name "httpcomponents-httpcore-nio.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "httpcore-nio") #t))))) (inputs (modify-inputs (package-inputs java-httpcomponents-httpcore) (prepend java-httpcomponents-httpcore java-hamcrest-core))) (description "HttpCore is a set of low level HTTP transport components that can be used to build custom client and server side HTTP services with a minimal footprint. HttpCore supports two I/O models: blocking I/O model based on the classic Java I/O and non-blocking, event driven I/O model based on Java NIO. This package provides the non-blocking I/O model library based on Java NIO."))) (define-public java-httpcomponents-httpcore-ab (package (inherit java-httpcomponents-httpcore) (name "java-httpcomponents-httpcore-ab") (arguments `(#:jar-name "httpcomponents-httpcore-ab.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "httpcore-ab") #t))))) (inputs (modify-inputs (package-inputs java-httpcomponents-httpcore) (prepend java-httpcomponents-httpcore java-commons-cli java-hamcrest-core))) (synopsis "Apache HttpCore benchmarking tool") (description "This package provides the HttpCore benchmarking tool. It is an Apache AB clone based on HttpCore."))) (define-public java-httpcomponents-httpclient (package (name "java-httpcomponents-httpclient") (version "4.5.12") (source (origin (method url-fetch) (uri (string-append "mirror://apache/httpcomponents/httpclient/" "source/httpcomponents-client-" version "-src.tar.gz")) (sha256 (base32 "1va99m2zc2liv0v9vn72p5ja8yz4s5wq7zpahaai5nr966kvxzkb")))) (build-system ant-build-system) (arguments `(#:jar-name "httpcomponents-httpclient.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "httpclient") #t))))) (inputs (list java-commons-logging-minimal java-commons-codec java-hamcrest-core java-httpcomponents-httpcore java-mockito-1 java-junit)) (home-page "https://hc.apache.org/httpcomponents-client-ga/") (synopsis "HTTP client library for Java") (description "Although the @code{java.net} package provides basic functionality for accessing resources via HTTP, it doesn't provide the full flexibility or functionality needed by many applications. @code{HttpClient} seeks to fill this void by providing an efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations.") (license license:asl2.0))) (define-public java-httpcomponents-httpmime (package (inherit java-httpcomponents-httpclient) (name "java-httpcomponents-httpmime") (arguments `(#:jar-name "httpcomponents-httpmime.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "httpmime") #t))))) (inputs (list java-httpcomponents-httpclient java-httpcomponents-httpcore java-junit java-hamcrest-core)))) (define-public java-commons-net (package (name "java-commons-net") (version "3.6") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/net/source/" "commons-net-" version "-src.tar.gz")) (sha256 (base32 "0n0cmnddk9qdqhjvka8pc6hd9mn2qi3166f1s6xk32h7rfy1adxr")))) (build-system ant-build-system) (arguments `(;; FIXME: MainTest.java tries to read "examples.properties" (which ;; should be "resources/examples/examples.properties"), but gets "null" ;; instead. #:tests? #f #:jar-name "commons-net.jar")) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://commons.apache.org/net/") (synopsis "Client library for many basic Internet protocols") (description "The Apache Commons Net library implements the client side of many basic Internet protocols. The purpose of the library is to provide fundamental protocol access, not higher-level abstractions.") (license license:asl2.0))) (define-public java-jsch (package (name "java-jsch") (version "0.1.55") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/jsch/jsch/" version "/jsch-" version ".zip")) (sha256 (base32 "1lxyjwvmwa723wcf3bqn816hkvc03vz4xhbsi7bvfhrz2rpgcfq6")))) (build-system ant-build-system) (arguments `(#:build-target "dist" #:tests? #f ; no tests included #:phases (modify-phases %standard-phases (replace 'install (install-jars "dist"))))) (native-inputs (list unzip)) (home-page "http://www.jcraft.com/jsch/") (synopsis "Pure Java implementation of SSH2") (description "JSch is a pure Java implementation of SSH2. JSch allows you to connect to an SSH server and use port forwarding, X11 forwarding, file transfer, etc., and you can integrate its functionality into your own Java programs.") (license license:bsd-3))) (define-public java-commons-compress (package (name "java-commons-compress") (version "1.13") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/compress/source/" "commons-compress-" version "-src.tar.gz")) (sha256 (base32 "1vjqvavrn0babffn1kciz6v52ibwq2vwhzlb95hazis3lgllnxc8")))) (build-system ant-build-system) (arguments `(#:jar-name "commons-compress.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'delete-bad-tests (lambda _ (with-directory-excursion "src/test/java/org/apache/commons/compress/" ;; FIXME: These tests really should not fail. Maybe they are ;; indicative of problems with our Java packaging work. ;; This test fails with a null pointer exception. (delete-file "archivers/sevenz/SevenZOutputFileTest.java") ;; This test fails to open test resources. (delete-file "archivers/zip/ExplodeSupportTest.java") ;; FIXME: This test adds a dependency on powermock, which is hard to ;; package at this point. ;; https://github.com/powermock/powermock (delete-file "archivers/sevenz/SevenZNativeHeapTest.java")) #t)) (replace 'install (install-from-pom "pom.xml"))))) (propagated-inputs (list java-xz apache-commons-parent-pom-41)) (native-inputs (list java-junit java-mockito-1)) (home-page "https://commons.apache.org/proper/commons-compress/") (synopsis "Java library for working with compressed files") (description "The Apache Commons Compress library defines an API for working with compressed files such as ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE, lz4 and Z files.") (license license:asl2.0))) (define-public java-commons-csv (package (name "java-commons-csv") (version "1.4") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/csv/source/" "commons-csv-" version "-src.tar.gz")) (sha256 (base32 "1l89m0fm2s3xx3v3iynvangymfg2vlyngaj6fgsi457nmsw7m7ij")))) (build-system ant-build-system) (arguments `(#:jar-name "commons-csv.jar" #:source-dir "src/main/java" #:tests? #f)); FIXME: requires java-h2 (inputs `(("java-hamcrest-core" ,java-hamcrest-core) ("java-commons-io" ,java-commons-io) ("java-commons-lang3" ,java-commons-lang3) ("junit" ,java-junit))) (home-page "https://commons.apache.org/proper/commons-csv/") (synopsis "Read and write CSV documents") (description "Commons CSV reads and writes files in variations of the Comma Separated Value (CSV) format. The most common CSV formats are predefined in the CSVFormat class: @itemize @item Microsoft Excel @item Informix UNLOAD @item Informix UNLOAD CSV @item MySQL @item RFC 4180 @item TDF @end itemize Custom formats can be created using a fluent style API.") (license license:asl2.0))) (define-public java-osgi-annotation (package (name "java-osgi-annotation") (version "6.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/osgi/org.osgi.annotation/" version "/" "org.osgi.annotation-" version "-sources.jar")) (sha256 (base32 "1q718mb7gqg726rh6pc2hcisn8v50nv35abbir0jypmffhiii85w")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests #:jar-name "osgi-annotation.jar")) (home-page "https://www.osgi.org") (synopsis "Annotation module of OSGi framework") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the OSGi annotation module, providing additional services to help dynamic components.") (license license:asl2.0))) (define-public java-osgi-core (package (name "java-osgi-core") (version "6.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/osgi/org.osgi.core/" version "/" "org.osgi.core-" version "-sources.jar")) (sha256 (base32 "19bpf5jx32jq9789gyhin35q5v7flmw0p9mk7wbgqpxqfmxyiabv")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests #:jar-name "osgi-core.jar")) (inputs (list java-osgi-annotation)) (home-page "https://www.osgi.org") (synopsis "Core module of OSGi framework") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the OSGi Core module.") (license license:asl2.0))) (define-public java-osgi-service-event (package (name "java-osgi-service-event") (version "1.3.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/osgi/org.osgi.service.event/" version "/org.osgi.service.event-" version "-sources.jar")) (sha256 (base32 "1nyhlgagwym75bycnjczwbnpymv2iw84zbhvvzk84g9q736i6qxm")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests #:jar-name "osgi-service-event.jar")) (inputs (list java-osgi-annotation java-osgi-core)) (home-page "https://www.osgi.org") (synopsis "OSGi service event module") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the OSGi @code{org.osgi.service.event} module.") (license license:asl2.0))) (define-public java-eclipse-osgi (package (name "java-eclipse-osgi") (version "3.11.3") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.osgi/" version "/org.eclipse.osgi-" version "-sources.jar")) (sha256 (base32 "00cqc6lb29n0zv68b4l842vzkwawvbr7gshfdygsk8sicvcq2c7b")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-equinox-osgi.jar")) (inputs (list java-osgi-annotation)) (home-page "http://www.eclipse.org/equinox/") (synopsis "Eclipse Equinox OSGi framework") (description "This package provides an implementation of the OSGi Core specification.") (license license:epl1.0))) (define-public java-eclipse-equinox-common (package (name "java-eclipse-equinox-common") (version "3.10.200") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.equinox.common/" version "/org.eclipse.equinox.common-" version "-sources.jar")) (sha256 (base32 "1yn8ij6xsljlf35sr2l7wvyvc0ss4n1rv0ry5zkgb49dj4hyrqrj")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-equinox-common.jar")) (inputs (list java-eclipse-osgi)) (home-page "http://www.eclipse.org/equinox/") (synopsis "Common Eclipse runtime") (description "This package provides the common Eclipse runtime.") (license license:epl1.0))) (define-public java-eclipse-core-jobs (package (name "java-eclipse-core-jobs") (version "3.8.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.jobs/" version "/org.eclipse.core.jobs-" version "-sources.jar")) (sha256 (base32 "0395b8lh0km8vhzjnchvs1rii1qz48hyvb2wqfaq4yhklbwihq4b")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-jobs.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-osgi)) (home-page "http://www.eclipse.org/equinox/") (synopsis "Eclipse jobs mechanism") (description "This package provides the Eclipse jobs mechanism.") (license license:epl1.0))) (define-public java-eclipse-equinox-registry (package (name "java-eclipse-equinox-registry") (version "3.6.100") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.equinox.registry/" version "/org.eclipse.equinox.registry-" version "-sources.jar")) (sha256 (base32 "1i9sgymh2fy5vdgk5y7s3qvrlbgh4l93ddqi3v4zmca7hwrlhf9k")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-equinox-registry.jar")) (inputs (list java-eclipse-core-jobs java-eclipse-equinox-common java-eclipse-osgi)) (home-page "http://www.eclipse.org/equinox/") (synopsis "Eclipse extension registry support") (description "This package provides support for the Eclipse extension registry.") (license license:epl1.0))) (define-public java-eclipse-equinox-app (package (name "java-eclipse-equinox-app") (version "1.3.400") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.equinox.app/" version "/org.eclipse.equinox.app-" version "-sources.jar")) (sha256 (base32 "0nhvbp93y203ar7y59gb0mz3w2d3jlqhr0c9hii9bcfpmr7imdab")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-equinox-app.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-osgi java-osgi-service-event)) (home-page "http://www.eclipse.org/equinox/") (synopsis "Equinox application container") (description "This package provides the Equinox application container for Eclipse.") (license license:epl1.0))) (define-public java-eclipse-equinox-preferences (package (name "java-eclipse-equinox-preferences") (version "3.6.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.equinox.preferences/" version "/org.eclipse.equinox.preferences-" version "-sources.jar")) (sha256 (base32 "0k7w6c141sqym4fy3af0qkwpy4pdh2vsjpjba6rp5fxyqa24v0a2")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-equinox-preferences.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-osgi)) (home-page "http://www.eclipse.org/equinox/") (synopsis "Eclipse preferences mechanism") (description "This package provides the Eclipse preferences mechanism with the module @code{org.eclipse.equinox.preferences}.") (license license:epl1.0))) (define-public java-eclipse-core-contenttype (package (name "java-eclipse-core-contenttype") (version "3.5.100") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.contenttype/" version "/org.eclipse.core.contenttype-" version "-sources.jar")) (sha256 (base32 "1wcqcv7ijwv5rh748vz3x9pkmjl9w1r0k0026k56n8yjl4rrmspi")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-contenttype.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-preferences java-eclipse-equinox-registry java-eclipse-osgi)) (home-page "http://www.eclipse.org/") (synopsis "Eclipse content mechanism") (description "This package provides the Eclipse content mechanism in the @code{org.eclipse.core.contenttype} module.") (license license:epl1.0))) (define-public java-eclipse-core-runtime (package (name "java-eclipse-core-runtime") (version "3.15.100") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.runtime/" version "/org.eclipse.core.runtime-" version "-sources.jar")) (sha256 (base32 "0l8xayacsbjvz5hypx2fv47vpw2n4dspamcfb3hx30x9hj8vmg7r")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-runtime.jar")) (inputs (list java-eclipse-core-contenttype java-eclipse-core-jobs java-eclipse-equinox-app java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-equinox-preferences java-eclipse-osgi)) (home-page "https://www.eclipse.org/") (synopsis "Eclipse core runtime") (description "This package provides the Eclipse core runtime with the module @code{org.eclipse.core.runtime}.") (license license:epl1.0))) (define-public java-eclipse-core-filesystem (package (name "java-eclipse-core-filesystem") (version "1.6.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.filesystem/" version "/org.eclipse.core.filesystem-" version "-sources.jar")) (sha256 (base32 "0km1bhwjim4rfy3pkvjhvy31kgsyf2ncx0mlkmbf5n6g57pphdyj")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-filesystem.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-osgi)) (home-page "https://www.eclipse.org/") (synopsis "Eclipse core file system") (description "This package provides the Eclipse core file system with the module @code{org.eclipse.core.filesystem}.") (license license:epl1.0))) (define-public java-eclipse-core-expressions (package (name "java-eclipse-core-expressions") (version "3.5.100") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.expressions/" version "/org.eclipse.core.expressions-" version "-sources.jar")) (sha256 (base32 "18bw2l875gmygvpagpgk9l24qzbdjia4ag12nw6fi8v8yaq4987f")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-expressions.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-equinox-preferences java-eclipse-core-runtime java-eclipse-osgi)) (home-page "https://www.eclipse.org/") (synopsis "Eclipse core expression language") (description "This package provides the Eclipse core expression language with the @code{org.eclipse.core.expressions} module.") (license license:epl1.0))) (define-public java-eclipse-core-variables (package (name "java-eclipse-core-variables") (version "3.3.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.variables/" version "/org.eclipse.core.variables-" version "-sources.jar")) (sha256 (base32 "12dirh03zi4n5x5cj07vzrhkmnqy6h9q10h9j605pagmpmifyxmy")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-variables.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-equinox-preferences java-eclipse-core-runtime java-eclipse-osgi)) (home-page "https://www.eclipse.org/platform") (synopsis "Eclipse core variables") (description "This package provides the Eclipse core variables module @code{org.eclipse.core.variables}.") (license license:epl1.0))) (define-public java-eclipse-ant-core (package (name "java-eclipse-ant-core") (version "3.4.100") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.ant.core/" version "/org.eclipse.ant.core-" version "-sources.jar")) (sha256 (base32 "11g3if794qjlk98mz9zch22rr56sd7z63vn4i7k2icr8cq5bfqg7")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-ant-core.jar")) (inputs (list java-eclipse-equinox-app java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-equinox-preferences java-eclipse-core-contenttype java-eclipse-core-runtime java-eclipse-core-variables java-eclipse-osgi)) (home-page "https://www.eclipse.org/platform") (synopsis "Ant build tool core libraries") (description "This package provides the ant build tool core libraries with the module @code{org.eclipse.ant.core}.") (license license:epl1.0))) (define-public java-eclipse-core-resources (package (name "java-eclipse-core-resources") (version "3.13.200") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.resources/" version "/org.eclipse.core.resources-" version "-sources.jar")) (sha256 (base32 "1sn3b6ky72hkvxcgf9b2jkpbdh3y8lbhi9xxwv1dsiddpkkq91hs")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-resources.jar")) (inputs (list java-eclipse-equinox-common java-eclipse-equinox-preferences java-eclipse-equinox-registry java-eclipse-core-contenttype java-eclipse-core-expressions java-eclipse-core-filesystem java-eclipse-core-jobs java-eclipse-core-runtime java-eclipse-ant-core java-eclipse-osgi)) (home-page "https://www.eclipse.org/") (synopsis "Eclipse core resource management") (description "This package provides the Eclipse core resource management module @code{org.eclipse.core.resources}.") (license license:epl1.0))) (define-public java-eclipse-compare-core (package (name "java-eclipse-compare-core") (version "3.6.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.compare.core/" version "/org.eclipse.compare.core-" version "-sources.jar")) (sha256 (base32 "10g37r0pbiffyv2wk35c6g5lwzkdipkl0kkjp41v84dln46xm4dg")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-compare-core.jar")) (inputs (list java-eclipse-core-runtime java-eclipse-equinox-common java-eclipse-osgi java-icu4j)) (home-page "https://www.eclipse.org/") (synopsis "Eclipse core compare support") (description "This package provides the Eclipse core compare support module @code{org.eclipse.compare.core}.") (license license:epl1.0))) (define-public java-eclipse-team-core (package (name "java-eclipse-team-core") (version "3.8.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.team.core/" version "/org.eclipse.team.core-" version "-sources.jar")) (sha256 (base32 "02j2jzqgb26zx2d5ahxmvijw6j4r0la90zl5c3i65x6z19ciyam7")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-team-core.jar")) (inputs (list java-eclipse-compare-core java-eclipse-core-contenttype java-eclipse-core-filesystem java-eclipse-core-jobs java-eclipse-core-resources java-eclipse-core-runtime java-eclipse-equinox-common java-eclipse-equinox-registry java-eclipse-equinox-preferences java-eclipse-osgi)) (home-page "https://www.eclipse.org/platform") (synopsis "Eclipse team support core") (description "This package provides the Eclipse team support core module @code{org.eclipse.team.core}.") (license license:epl1.0))) (define-public java-eclipse-core-commands (package (name "java-eclipse-core-commands") (version "3.8.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.core.commands/" version "/org.eclipse.core.commands-" version "-sources.jar")) (sha256 (base32 "0yjn482qndcfrsq3jd6vnhcylp16420f5aqkrwr8spsprjigjcr9")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-core-commands.jar")) (inputs (list java-eclipse-equinox-common)) (home-page "https://www.eclipse.org/platform") (synopsis "Eclipse core commands") (description "This package provides Eclipse core commands in the module @code{org.eclipse.core.commands}.") (license license:epl1.0))) (define-public java-eclipse-text (package (name "java-eclipse-text") (version "3.6.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/platform/org.eclipse.text/" version "/org.eclipse.text-" version "-sources.jar")) (sha256 (base32 "0scz70vzz5qs5caji9f5q01vkqnvip7dpri1q07l8wbbdcxn4cq1")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-text.jar" #:phases (modify-phases %standard-phases ;; When creating a new category we must make sure that the new list ;; matches List. By default it seems to be too generic ;; (ArrayList), so we specialize it to ArrayList. ;; Without this we get this error: ;; ;; [javac] .../src/org/eclipse/jface/text/AbstractDocument.java:376: ;; error: method put in interface Map cannot be applied to given types; ;; [javac] fPositions.put(category, new ArrayList<>()); ;; [javac] ^ ;; [javac] required: String,List ;; [javac] found: String,ArrayList ;; [javac] reason: actual argument ArrayList cannot be converted ;; to List by method invocation conversion ;; [javac] where K,V are type-variables: ;; [javac] K extends Object declared in interface Map ;; [javac] V extends Object declared in interface Map ;; ;; I don't know if this is a good fix. I suspect it is not, but it ;; seems to work. (add-after 'unpack 'fix-compilation-error (lambda _ (substitute* "src/org/eclipse/jface/text/AbstractDocument.java" (("Positions.put\\(category, new ArrayList<>\\(\\)\\);") "Positions.put(category, new ArrayList());")) #t))))) (inputs (list java-eclipse-equinox-common java-eclipse-core-commands java-icu4j)) (home-page "http://www.eclipse.org/platform") (synopsis "Eclipse text library") (description "Platform Text is part of the Platform UI project and provides the basic building blocks for text and text editors within Eclipse and contributes the Eclipse default text editor.") (license license:epl1.0))) (define-public java-eclipse-jdt-core (package (name "java-eclipse-jdt-core") (version "3.16.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/jdt/org.eclipse.jdt.core/" version "/org.eclipse.jdt.core-" version "-sources.jar")) (sha256 (base32 "1g560yr9v2kzv34gc2m3ifpgnj7krcdd6h4gd4z83pwqacwkfz0k")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-jdt-core.jar" #:phases (modify-phases %standard-phases (add-after 'unpack 'move-sources (lambda _ (with-directory-excursion "src/jdtCompilerAdaptersrc/" (for-each (lambda (file) (install-file file (string-append "../" (dirname file)))) (find-files "." ".*"))) (delete-file-recursively "src/jdtCompilerAdaptersrc/") #t)) (add-before 'build 'copy-resources (lambda _ (with-directory-excursion "src" (for-each (lambda (file) (install-file file (string-append "../build/classes/" (dirname file)))) (find-files "." ".*.(props|properties|rsc)"))) #t))))) (inputs (list java-eclipse-core-contenttype java-eclipse-core-filesystem java-eclipse-core-jobs java-eclipse-core-resources java-eclipse-core-runtime java-eclipse-equinox-app java-eclipse-equinox-common java-eclipse-equinox-preferences java-eclipse-equinox-registry java-eclipse-osgi java-eclipse-text)) (home-page "https://www.eclipse.org/jdt") (synopsis "Java development tools core libraries") (description "This package provides the core libraries of the Eclipse Java development tools.") (license license:epl1.0))) (define-public java-eclipse-jdt-compiler-apt (package (name "java-eclipse-jdt-compiler-apt") (version "1.3.400") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/eclipse/jdt/org.eclipse.jdt.compiler.apt/" version "/org.eclipse.jdt.compiler.apt-" version "-sources.jar")) (sha256 (base32 "1s285k9p2ixdqrknb40jbbvw682n9a7l5lqpn583a8pvlzg2l6r8")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests included #:jar-name "eclipse-jdt-compiler-apt.jar" #:jdk ,openjdk11)) (inputs (list java-eclipse-jdt-core)) (home-page "https://www.eclipse.org/jdt/apt/") (synopsis "Annotation processing tool") (description "APT stands for Annotation Processing Tool. APT provides a means for generating files and compiling new Java classes based on annotations found in your source code.") (license license:epl2.0))) (define-public java-eclipse-lsp4j-common (package (name "java-eclipse-lsp4j-common") (version "0.10.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/eclipse/lsp4j") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "17srrac0pkpybwwc21rzdvn762zzl9m80rlqihc9b4l55hkqpk98")))) (build-system ant-build-system) (home-page "https://eclipse.org/lsp4j/") (synopsis "LSP4J common package") (description "Eclipse LSP4J provides Java bindings for the Language Server Protocol and the Debug Adapter Protocol. This package is a common definition intended to be inherited by other packages.") (license license:epl2.0))) (define-public java-eclipse-lsp4j-debug (package (inherit java-eclipse-lsp4j-common) (name "java-eclipse-lsp4j-debug") (arguments `(#:jar-name "eclipse-lsp4j-debug.jar" #:jdk ,openjdk11 #:tests? #f; tests fail with reflection errors #:source-dir "org.eclipse.lsp4j.debug/src/main/java" #:test-dir "org.eclipse.lsp4j.debug/src/test" #:phases (modify-phases %standard-phases (add-before 'build 'copy-xtend (lambda _ (copy-recursively "org.eclipse.lsp4j.debug/src/main/xtend-gen" "org.eclipse.lsp4j.debug/src/main/java")))))) (native-inputs (list java-junit)) (inputs `(("java-gson" ,java-gson-2.8.6) ("java-eclipse-lsp4j-generaor" ,java-eclipse-lsp4j-generator) ("java-eclipse-lsp4j-jsonrpc" ,java-eclipse-lsp4j-jsonrpc) ("java-eclipse-lsp4j-jsonrpc-debug" ,java-eclipse-lsp4j-jsonrpc-debug) ("java-eclipse-xtext-xbase-lib" ,java-eclipse-xtext-xbase-lib))) (synopsis "Eclipse LSP4J Java bindings for the Debug Server Protocol") (description "Eclipse LSP4J provides Java bindings for the Language Server Protocol and the Debug Adapter Protocol. This package contains its LSP4J Java bindings for the Debug Server Protocol."))) (define-public java-eclipse-lsp4j-generator (package (inherit java-eclipse-lsp4j-common) (name "java-eclipse-lsp4j-generator") (arguments `(#:jar-name "eclipse-lsp4j-generator.jar" #:jdk ,openjdk11 #:tests? #f; no tests #:source-dir "org.eclipse.lsp4j.generator/src/main/java")) (inputs (list java-eclipse-lsp4j-jsonrpc)) (synopsis "Eclipse LSP4J Generator") (description "Eclipse LSP4J provides Java bindings for the Language Server Protocol and the Debug Adapter Protocol. This package contains its LSP4J code generator for Language Server Protocol classes."))) (define-public java-eclipse-lsp4j-jsonrpc (package (inherit java-eclipse-lsp4j-common) (name "java-eclipse-lsp4j-jsonrpc") (arguments `(#:jar-name "eclipse-lsp4j-jsonrpc.jar" #:jdk ,openjdk11 #:source-dir "org.eclipse.lsp4j.jsonrpc/src/main/java" #:test-dir "org.eclipse.lsp4j.jsonrpc/src/test")) (native-inputs (list java-junit)) (inputs (list java-gson-2.8.6)) (synopsis "Java JSON-RPC implementation") (description "Eclipse LSP4J provides Java bindings for the Language Server Protocol and the Debug Adapter Protocol. This package contains its JSON-RPC implementation."))) (define-public java-eclipse-lsp4j-jsonrpc-debug (package (inherit java-eclipse-lsp4j-common) (name "java-eclipse-lsp4j-jsonrpc-debug") (arguments `(#:jar-name "eclipse-lsp4j-jsonrpc-debug.jar" #:jdk ,openjdk11 #:source-dir "org.eclipse.lsp4j.jsonrpc.debug/src/main/java" #:test-dir "org.eclipse.lsp4j.jsonrpc.debug/src/test")) (native-inputs (list java-junit)) (inputs (list java-eclipse-lsp4j-jsonrpc java-gson-2.8.6)) (synopsis "Java JSON-RPC implementation (debug protocol)") (description "Eclipse LSP4J provides Java bindings for the Language Server Protocol and the Debug Adapter Protocol. This package contains its JSON-RPC implementation's debug protocol."))) (define-public java-eclipse-xtext-xbase-lib (package (name "java-eclipse-xtext-xbase-lib") (version "2.25.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/eclipse/xtext-lib") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "13b9lf6lnsprkik665m1qcyyc8cs16k33xm7as4rjcfcpn4pln71")))) (build-system ant-build-system) (arguments `(#:jar-name "eclipse-xtext-xbase-lib.jar" #:jdk ,openjdk11 #:tests? #f; TODO (maybe needs newer guava version?) #:source-dir "org.eclipse.xtext.xbase.lib/src" #:test-dir "org.eclipse.xtext.xbase.lib.tests/src")) (native-inputs (list java-junit)) (inputs (list java-guava)) (home-page "https://www.eclipse.org/Xtext/") (synopsis "Eclipse Xbase Runtime Library") (description "This package contains runtime libraries for Xbase languages such as Xtend.") (license license:epl2.0))) (define-public java-javax-mail (package (name "java-javax-mail") (version "1.5.6") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "com/sun/mail/javax.mail/" version "/javax.mail-" version "-sources.jar")) (sha256 (base32 "0sdlfgsc2b5s89xv1261y8i0jijcja019k2x1c8ngfn582w4jly9")))) (build-system ant-build-system) (arguments `(#:tests? #f ; no tests #:jar-name "javax-mail.jar")) (home-page "https://javamail.java.net") (synopsis "Reference implementation of the JavaMail API") (description "This package provides versions of the JavaMail API implementation, IMAP, SMTP, and POP3 service providers, some examples, and documentation for the JavaMail API.") ;; GPLv2 only with "classpath exception". (license license:gpl2))) (define-public java-log4j-api (package (name "java-log4j-api") (version "2.17.1") (source (origin (method url-fetch) (uri (string-append "mirror://apache/logging/log4j/" version "/apache-log4j-" version "-src.tar.gz")) (sha256 (base32 "05xssljdgxfv8ql42db8ydjfsvvbdqmsgip75phybm259ydzbsd6")))) (build-system ant-build-system) (arguments `(#:tests? #f ; tests require unpackaged software #:jar-name "log4j-api.jar" #:make-flags ,#~(list (string-append "-Ddist.dir=" #$output "/share/java")) #:phases (modify-phases %standard-phases (add-after 'unpack 'enter-dir (lambda _ (chdir "log4j-api") #t)) ;; FIXME: The tests require additional software that has not been ;; packaged yet, such as ;; * org.apache.maven ;; * org.apache.felix (add-after 'enter-dir 'delete-tests (lambda _ (delete-file-recursively "src/test") #t))))) (inputs (list java-osgi-core java-hamcrest-core java-junit)) (properties '((cpe-name . "log4j"))) (home-page "https://logging.apache.org/log4j/2.x/") (synopsis "API module of the Log4j logging framework for Java") (description "This package provides the API module of the Log4j logging framework for Java.") (license license:asl2.0))) (define-public java-log4j-core (package (inherit java-log4j-api) (name "java-log4j-core") (inputs `(("java-osgi-core" ,java-osgi-core) ("java-hamcrest-core" ,java-hamcrest-core) ("java-log4j-api" ,java-log4j-api) ("java-mail" ,java-mail) ("java-jboss-jms-api-spec" ,java-jboss-jms-api-spec) ("java-conversant-disruptor" ,java-conversant-disruptor) ("java-lmax-disruptor" ,java-lmax-disruptor) ("java-jctools-core" ,java-jctools-core-1) ("java-stax2-api" ,java-stax2-api) ("java-jansi" ,java-jansi) ("java-kafka" ,java-kafka-clients) ("java-datanucleus-javax-persistence" ,java-datanucleus-javax-persistence) ("java-fasterxml-jackson-annotations" ,java-fasterxml-jackson-annotations) ("java-fasterxml-jackson-core" ,java-fasterxml-jackson-core) ("java-fasterxml-jackson-databind" ,java-fasterxml-jackson-databind) ("java-fasterxml-jackson-dataformat-xml" ,java-fasterxml-jackson-dataformat-xml) ("java-fasterxml-jackson-dataformat-yaml" ,java-fasterxml-jackson-dataformat-yaml) ("java-commons-compress" ,java-commons-compress) ("java-commons-csv" ,java-commons-csv) ("java-jeromq" ,java-jeromq) ("java-junit" ,java-junit))) (native-inputs `(("hamcrest" ,java-hamcrest-all) ("java-commons-io" ,java-commons-io) ("java-commons-lang3" ,java-commons-lang3) ("slf4j" ,java-slf4j-api))) (arguments `(#:tests? #f ; tests require more dependencies #:test-dir "src/test" #:source-dir "src/main/java" #:jar-name "log4j-core.jar" #:jdk ,icedtea-8 #:make-flags ,#~(list (string-append "-Ddist.dir=" #$output "/share/java")) #:phases (modify-phases %standard-phases (add-after 'unpack 'enter-dir (lambda _ (chdir "log4j-core") #t))))) (synopsis "Core component of the Log4j framework") (description "This package provides the core component of the Log4j logging framework for Java."))) (define-public java-log4j-1.2-api (package (inherit java-log4j-api) (name "java-log4j-1.2-api") (arguments `(#:jar-name "java-log4j-1.2-api.jar" #:source-dir "log4j-1.2-api/src/main/java" #:jdk ,icedtea-8 ;; Tests require maven-model (and other maven subprojects), which is a ;; cyclic dependency. #:tests? #f)) (inputs `(("log4j-api" ,java-log4j-api) ("log4j-core" ,java-log4j-core) ("java-jboss-jms-api-spec" ,java-jboss-jms-api-spec) ("osgi-core" ,java-osgi-core) ("eclipse-osgi" ,java-eclipse-osgi) ("java-lmax-disruptor" ,java-lmax-disruptor))))) (define-public java-commons-cli (package (name "java-commons-cli") (version "1.4") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/cli/source/" "commons-cli-" version "-src.tar.gz")) (sha256 (base32 "05hgi2z01fqz374y719gl1dxzqvzci5af071zm7vxrjg9vczipm1")))) (build-system ant-build-system) ;; TODO: javadoc (arguments `(#:jar-name "commons-cli.jar" #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://commons.apache.org/cli/") (synopsis "Command line arguments and options parsing library") (description "The Apache Commons CLI library provides an API for parsing command line options passed to programs. It is also able to print help messages detailing the options available for a command line tool. Commons CLI supports different types of options: @itemize @item POSIX like options (ie. tar -zxvf foo.tar.gz) @item GNU like long options (ie. du --human-readable --max-depth=1) @item Java like properties (ie. java -Djava.awt.headless=true Foo) @item Short options with value attached (ie. gcc -O2 foo.c) @item long options with single hyphen (ie. ant -projecthelp) @end itemize This is a part of the Apache Commons Project.") (license license:asl2.0))) (define-public java-commons-codec (package (name "java-commons-codec") (version "1.15") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/codec/source/" "commons-codec-" version "-src.tar.gz")) (sha256 (base32 "01z9qmg8fd8d7p7xxipwj1vi9bmvpgqyi29kldjz2x6vzwm171jj")))) (build-system ant-build-system) (arguments `(#:jar-name "java-commons-codec.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:test-exclude (list "**/*AbstractTest.java") #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes"))) (add-before 'check 'copy-test-resources (lambda _ (copy-recursively "src/test/resources" "build/test-classes"))) (add-before 'check 'skip-ravenous-test (lambda _ ;; This test admits to being "memory hungry", but reliably fails ;; even on a machine that should have plenty (12 GiB). Skip it. (substitute* "src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java" (("\\bassertEnsureBufferSizeExpandsToMaxBufferSize.*;") "return;")))) (replace 'install (install-from-pom "pom.xml"))))) (native-inputs (list java-commons-lang3 java-junit)) (propagated-inputs (list apache-commons-parent-pom-52)) (home-page "https://commons.apache.org/codec/") (synopsis "Common encoders and decoders such as Base64, Hex, Phonetic and URLs") (description "The codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities. This is a part of the Apache Commons Project.") (license license:asl2.0))) (define-public java-commons-daemon (package (name "java-commons-daemon") (version "1.1.0") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/daemon/source/" "commons-daemon-" version "-src.tar.gz")) (sha256 (base32 "141gkhfzv5v3pdhic6y4ardq2dhsa3v36j8wmmhy6f8mac48fp7n")))) (build-system ant-build-system) (arguments `(#:test-target "test" #:phases (modify-phases %standard-phases (add-after 'build 'build-javadoc ant-build-javadoc) (replace 'install (install-jars "dist")) (add-after 'install 'install-doc (install-javadoc "dist/docs/api"))))) (native-inputs (list java-junit)) (home-page "https://commons.apache.org/daemon/") (synopsis "Library to launch Java applications as daemons") (description "The Daemon package from Apache Commons can be used to implement Java applications which can be launched as daemons. For example the program will be notified about a shutdown so that it can perform cleanup tasks before its process of execution is destroyed by the operation system. This package contains the Java library. You will also need the actual binary for your architecture which is provided by the jsvc package. This is a part of the Apache Commons Project.") (license license:asl2.0))) (define-public java-javaewah (package (name "java-javaewah") (version "1.1.6") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/lemire/javaewah/") (commit (string-append "JavaEWAH-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1m8qcb1py76v7avbjjrkvyy6fhr5dk2ywy73gbsxqry04gkm2nhw")))) (build-system ant-build-system) (arguments `(#:jar-name "javaewah.jar")) (inputs (list java-junit java-hamcrest-core)) (home-page "https://github.com/lemire/javaewah") (synopsis "Compressed alternative to the Java @code{BitSet} class") (description "This is a word-aligned compressed variant of the Java @code{Bitset} class. It provides both a 64-bit and a 32-bit RLE-like compression scheme. It can be used to implement bitmap indexes. The goal of word-aligned compression is not to achieve the best compression, but rather to improve query processing time. Hence, JavaEWAH tries to save CPU cycles, maybe at the expense of storage. However, the EWAH scheme is always more efficient storage-wise than an uncompressed bitmap (as implemented in the @code{BitSet} class by Sun).") ;; GPL2.0 derivates are explicitly allowed. (license license:asl2.0))) (define-public java-slf4j-api (package (name "java-slf4j-api") (version "1.7.25") (source (origin (method url-fetch) (uri (string-append "https://www.slf4j.org/dist/slf4j-" version ".tar.gz")) (sha256 (base32 "13j51sgzmhhdrfa74gkal5zpip7r1440dh7zsi2c8bpb2zs1v8kb")) (modules '((guix build utils))) ;; Delete bundled jars. (snippet '(begin (for-each delete-file (find-files "." "\\.jar$")) #t)))) (build-system ant-build-system) (arguments `(#:jar-name "slf4j-api.jar" #:source-dir "slf4j-api/src/main" #:test-dir "slf4j-api/src/test" #:phases (modify-phases %standard-phases (add-after 'build 'regenerate-jar (lambda _ ;; pom.xml ignores these files in the jar creation process. If we don't, ;; we get the error "This code should have never made it into slf4j-api.jar" (delete-file-recursively "build/classes/org/slf4j/impl") (invoke "jar" "-cf" "build/jar/slf4j-api.jar" "-C" "build/classes" "."))) (add-before 'check 'dont-test-abstract-classes (lambda _ ;; abstract classes are not meant to be run with junit (substitute* "build.xml" (("") (string-append "" ""))) #t)) (replace 'install (install-from-pom "slf4j-api/pom.xml"))))) (propagated-inputs (list java-slf4j-parent)) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://www.slf4j.org/") (synopsis "Simple logging facade for Java") (description "The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. @code{java.util.logging}, @code{logback}, @code{log4j}) allowing the end user to plug in the desired logging framework at deployment time.") (license license:expat))) (define java-slf4j-parent (package (inherit java-slf4j-api) (name "java-slf4j-parent") (native-inputs `()) (propagated-inputs '()) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'build) (delete 'configure) (replace 'install (install-pom-file "pom.xml"))))))) (define-public java-slf4j-simple (package (name "java-slf4j-simple") (version "1.7.25") (source (package-source java-slf4j-api)) (build-system ant-build-system) (arguments `(#:jar-name "slf4j-simple.jar" #:source-dir "slf4j-simple/src/main" #:test-dir "slf4j-simple/src/test" #:test-exclude (list "**/*SimpleLoggerMultithreadedInitializationTest.java") #:phases (modify-phases %standard-phases ;; The tests need some test classes from slf4j-api (add-before 'check 'build-slf4j-api-test-helpers (lambda _ ;; Add current dir to CLASSPATH ... (setenv "CLASSPATH" (string-append (getcwd) ":" (getenv "CLASSPATH"))) ;; ... and build test helper classes here: (apply invoke `("javac" "-d" "." ,@(find-files "slf4j-api/src/test" ".*\\.java"))))) (replace 'install (install-from-pom "slf4j-simple/pom.xml"))))) (propagated-inputs (list java-slf4j-api)) (native-inputs (list java-junit java-hamcrest-core)) (home-page "https://www.slf4j.org/") (synopsis "Simple implementation of simple logging facade for Java") (description "SLF4J binding for the Simple implementation, which outputs all events to System.err. Only messages of level INFO and higher are printed.") (license license:expat))) (define-public antlr2 (package (name "antlr2") (version "2.7.7") (source (origin (method url-fetch) (uri (string-append "https://www.antlr2.org/download/antlr-" version ".tar.gz")) (sha256 (base32 "1ffvcwdw73id0dk6pj2mlxjvbg0662qacx4ylayqcxgg381fnfl5")) (modules '((guix build utils))) (snippet '(begin (delete-file "antlr.jar") (substitute* "lib/cpp/antlr/CharScanner.hpp" (("#include ") (string-append "#include \n" "#define EOF (-1)\n" "#include "))) (substitute* "configure" (("/bin/sh") "sh")) #t)))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no test target #:imported-modules ((guix build ant-build-system) (guix build syscalls) ,@%gnu-build-system-modules) #:modules (((guix build ant-build-system) #:prefix ant:) (guix build gnu-build-system) (guix build utils)) #:phases (modify-phases %standard-phases (add-after 'install 'strip-jar-timestamps (assoc-ref ant:%standard-phases 'strip-jar-timestamps)) (add-before 'configure 'fix-timestamp (lambda _ (substitute* "configure" (("^TIMESTAMP.*") "TIMESTAMP=19700101\n")) #t)) (add-after 'configure 'fix-bin-ls (lambda _ (substitute* (find-files "." "Makefile") (("/bin/ls") "ls")) #t))))) (native-inputs `(("which" ,which) ("zip" ,zip) ("java" ,icedtea "jdk"))) (inputs `(("java" ,icedtea))) (home-page "https://www.antlr2.org") (synopsis "Framework for constructing recognizers, compilers, and translators") (description "ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions. ANTLR provides excellent support for tree construction, tree walking, and translation.") (license license:public-domain))) (define-public java-stringtemplate-3 (package (name "java-stringtemplate") (version "3.2.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/antlr/website-st4/raw/" "gh-pages/download/stringtemplate-" version ".tar.gz")) (sha256 (base32 "086yj68np1vqhkj7483diz3km6s6y4gmwqswa7524a0ca6vxn2is")))) (build-system ant-build-system) (arguments `(#:jar-name (string-append ,name "-" ,version ".jar") #:test-dir "test" #:modules ((guix build ant-build-system) (guix build utils) (srfi srfi-1)) #:phases (modify-phases %standard-phases (add-before 'check 'fix-tests (lambda _ (substitute* "build.xml" (("\\$\\{test.home\\}/java") "${test.home}/org")) #t)) (add-before 'build 'generate-grammar (lambda _ (with-directory-excursion "src/org/antlr/stringtemplate/language/" (for-each (lambda (file) (format #t "~a\n" file) (invoke "antlr" file)) '("template.g" "angle.bracket.template.g" "action.g" "eval.g" "group.g" "interface.g"))) #t))))) (native-inputs `(("antlr" ,antlr2) ("java-junit" ,java-junit))) (home-page "https://www.stringtemplate.org") (synopsis "Template engine to generate formatted text output") (description "StringTemplate is a java template engine (with ports for C#, Objective-C, JavaScript, Scala) for generating source code, web pages, emails, or any other formatted text output. StringTemplate is particularly good at code generators, multiple site skins, and internationalization / localization. StringTemplate also powers ANTLR.") (license license:bsd-3))) ;; antlr3 is partially written using antlr3 grammar files. It also depends on ;; ST4 (stringtemplate4), which is also partially written using antlr3 grammar ;; files and uses antlr3 at runtime. The latest version requires a recent version ;; of antlr3 at runtime. ;; Fortunately, ST4 4.0.6 can be built with an older antlr3, and we use antlr3.3. ;; This version of ST4 is sufficient for the latest antlr3. ;; We use ST4 4.0.6 to build a boostrap antlr3 (latest version), and build ;; the latest ST4 with it. Then we build our final antlr3 that will be linked ;; against the latest ST4. ;; antlr3.3 still depends on antlr3 to generate some files, so we use an ;; even older version, antlr3.1, to generate them. Fortunately antlr3.1 uses ;; only grammar files with the antlr2 syntax. ;; So we build antlr3.1 -> antlr3.3 -> ST4.0.6 -> antlr3-bootstrap -> ST4 -> antlr3. (define-public java-stringtemplate (package (inherit java-stringtemplate-3) (name "java-stringtemplate") (version "4.0.8") (source (origin (method url-fetch) (uri (string-append "https://github.com/antlr/stringtemplate4/archive/" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1pri8hqa95rfdkjy55icl5q1m09zwp5k67ib14abas39s4v3w087")))) (build-system ant-build-system) (arguments `(#:jar-name (string-append ,name "-" ,version ".jar") #:tests? #f ; FIXME: tests fail for unknown reasons #:test-dir "test" #:modules ((guix build ant-build-system) (guix build utils) (srfi srfi-1)) #:phases (modify-phases %standard-phases (add-before 'check 'fix-test-target (lambda _ (substitute* "build.xml" (("\\$\\{test.home\\}/java") "${test.home}/") (("\\*Test.java") "Test*.java")) #t)) (add-before 'build 'generate-grammar (lambda _ (with-directory-excursion "src/org/stringtemplate/v4/compiler/" (for-each (lambda (file) (format #t "~a\n" file) (invoke "antlr3" file)) '("STParser.g" "Group.g" "CodeGenerator.g"))) #t))))) (inputs `(("antlr3" ,antlr3-bootstrap) ("antlr2" ,antlr2) ("java-stringtemplate" ,java-stringtemplate-3) ("java-junit" ,java-junit))))) (define java-stringtemplate-4.0.6 (package (inherit java-stringtemplate) (name "java-stringtemplate") (version "4.0.6") (source (origin (method url-fetch) (uri (string-append "https://github.com/antlr/stringtemplate4/archive/ST-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0hjmh1ahdsh3w825i67mli9l4nncc4l6hdbf9ma91jvlj590sljp")))) (inputs `(("antlr3" ,antlr3-3.3) ("antlr2" ,antlr2) ("java-stringtemplate" ,java-stringtemplate-3))))) (define-public antlr3 (package (name "antlr3") (version "3.5.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/antlr/antlr3") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0cafavrjmzqhklghrk8c2jqxkdwxgzskm20pbrfd3r41cn00dpnf")))) (build-system ant-build-system) (arguments `(#:jar-name (string-append ,name "-" ,version ".jar") #:source-dir "tool/src/main/java:runtime/Java/src/main/java:tool/src/main/antlr3" #:tests? #f #:phases (modify-phases %standard-phases (add-after 'install 'bin-install (lambda* (#:key inputs outputs #:allow-other-keys) (let ((jar (string-append (assoc-ref outputs "out") "/share/java")) (bin (string-append (assoc-ref outputs "out") "/bin"))) (mkdir-p bin) (with-output-to-file (string-append bin "/antlr3") (lambda _ (display (string-append "#!" (which "sh") "\n" "java -cp " jar "/" ,name "-" ,version ".jar:" (string-concatenate (find-files (assoc-ref inputs "stringtemplate") ".*\\.jar")) ":" (string-concatenate (find-files (assoc-ref inputs "stringtemplate4") ".*\\.jar")) ":" (string-concatenate (find-files (string-append (assoc-ref inputs "antlr") "/lib") ".*\\.jar")) " org.antlr.Tool $*")))) (chmod (string-append bin "/antlr3") #o755)) #t)) (add-before 'build 'generate-grammar (lambda _ (chdir "tool/src/main/antlr3/org/antlr/grammar/v3/") (for-each (lambda (file) (display file) (newline) (invoke "antlr3" file)) '("ANTLR.g" "ANTLRTreePrinter.g" "ActionAnalysis.g" "AssignTokenTypesWalker.g" "ActionTranslator.g" "TreeToNFAConverter.g" "ANTLRv3.g" "ANTLRv3Tree.g" "LeftRecursiveRuleWalker.g" "CodeGenTreeWalker.g" "DefineGrammarItemsWalker.g")) (substitute* "ANTLRParser.java" (("public Object getTree") "public GrammarAST getTree")) (substitute* "ANTLRv3Parser.java" (("public Object getTree") "public CommonTree getTree")) (chdir "../../../../../java") (substitute* "org/antlr/tool/LeftRecursiveRuleAnalyzer.java" (("import org.antlr.grammar.v3.\\*;") "import org.antlr.grammar.v3.*; import org.antlr.grammar.v3.ANTLRTreePrinter;")) (substitute* "org/antlr/tool/ErrorManager.java" (("case NO_SUCH_ATTRIBUTE_PASS_THROUGH:") "")) (chdir "../../../..") #t)) (add-before 'build 'fix-build-xml (lambda _ (substitute* "build.xml" (("target name=\"compile\">") "target name=\"compile\"> ")) #t))))) (native-inputs `(("antlr" ,antlr2) ("antlr3" ,antlr3-bootstrap))) (inputs `(("junit" ,java-junit) ("stringtemplate" ,java-stringtemplate-3) ("stringtemplate4" ,java-stringtemplate))) (propagated-inputs `(("stringtemplate" ,java-stringtemplate-3) ("antlr" ,antlr2) ("stringtemplate4" ,java-stringtemplate-4.0.6))) (home-page "https://www.antlr3.org") (synopsis "Framework for constructing recognizers, compilers, and translators") (description "ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a language tool that provides a framework for constructing recognizers, compilers, and translators from grammatical descriptions containing Java, C#, C++, or Python actions. ANTLR provides excellent support for tree construction, tree walking, and translation.") (license license:bsd-3))) (define antlr3-bootstrap (package (inherit antlr3) (name "antlr3-bootstrap") (native-inputs `(("antlr" ,antlr2) ("antlr3" ,antlr3-3.3))) (inputs `(("junit" ,java-junit))))) (define-public antlr3-3.3 (package (inherit antlr3) (name "antlr3") (version "3.3") (source (origin (method url-fetch) (uri (string-append "https://github.com/antlr/website-antlr3/raw/" "gh-pages/download/antlr-" version ".tar.gz")) (sha256 (base32 "0qgg5vgsm4l1d6dj9pfbaa25dpv2ry2gny8ajy4vvgvfklw97b3m")) (patches (search-patches "antlr3-3_3-fix-java8-compilation.patch")))) (arguments `(#:jar-name (string-append ,name "-" ,version ".jar") #:source-dir (string-join '("tool/src/main/java" "runtime/Java/src/main/java" "tool/src/main/antlr2" "tool/src/main/antlr3") ":") #:tests? #f ; FIXME: tests seem to require maven plugin #:modules ((guix build ant-build-system) (guix build utils) (srfi srfi-1)) #:phases (modify-phases %standard-phases (add-after 'install 'bin-install (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (jar (string-append out "/share/java")) (bin (string-append out "/bin"))) (mkdir-p bin) (with-output-to-file (string-append bin "/antlr3") (lambda _ (display (string-append "#!" (which "sh") "\n" "java -cp " jar "/antlr3-3.3.jar:" (string-join (append (find-files (assoc-ref inputs "java-stringtemplate") ".*\\.jar$") (find-files (string-append (assoc-ref inputs "antlr") "/lib") ".*\\.jar$")) ":") " org.antlr.Tool $*")))) (chmod (string-append bin "/antlr3") #o755) #t))) (add-before 'build 'generate-grammar (lambda _ (substitute* "tool/src/main/java/org/antlr/tool/Grammar.java" (("import org.antlr.grammar.v2.\\*;") "import org.antlr.grammar.v2.*;\n import org.antlr.grammar.v2.TreeToNFAConverter;\n import org.antlr.grammar.v2.DefineGrammarItemsWalker;\n import org.antlr.grammar.v2.ANTLRTreePrinter;")) (with-directory-excursion "tool/src/main/antlr2/org/antlr/grammar/v2/" (for-each (lambda (file) (format #t "~a\n" file) (invoke "antlr" file)) '("antlr.g" "antlr.print.g" "assign.types.g" "buildnfa.g" "codegen.g" "define.g"))) (with-directory-excursion "tool/src/main/antlr3/org/antlr/grammar/v3/" (for-each (lambda (file) (format #t "~a\n" file) (invoke "antlr3" file)) '("ActionAnalysis.g" "ActionTranslator.g" "ANTLRv3.g" "ANTLRv3Tree.g"))) #t)) (add-before 'build 'fix-build-xml (lambda _ (substitute* "build.xml" (("target name=\"compile\">") "target name=\"compile\"> ")) #t))))) (native-inputs `(("antlr" ,antlr2) ("antlr3" ,antlr3-3.1))) (inputs `(("junit" ,java-junit))) (propagated-inputs `(("java-stringtemplate" ,java-stringtemplate-3) ("antlr" ,antlr2))))) (define-public antlr3-3.1 (package (inherit antlr3) (version "3.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/antlr/website-antlr3/raw/" "gh-pages/download/antlr-" version ".tar.gz")) (sha256 (base32 "0sfimc9cpbgrihz4giyygc8afgpma2c93yqpwb951giriri6x66z")) (patches (search-patches "antlr3-3_1-fix-java8-compilation.patch")))) (arguments `(#:jar-name (string-append "antlr3-" ,version ".jar") #:source-dir "src:runtime/Java/src" #:tests? #f #:phases (modify-phases %standard-phases (add-after 'install 'bin-install (lambda* (#:key inputs outputs #:allow-other-keys) (let ((jar (string-append (assoc-ref outputs "out") "/share/java")) (bin (string-append (assoc-ref outputs "out") "/bin"))) (mkdir-p bin) (with-output-to-file (string-append bin "/antlr3") (lambda _ (display (string-append "#!" (which "sh") "\n" "java -cp " jar "/antlr3-3.1.jar:" (string-concatenate (find-files (assoc-ref inputs "stringtemplate") ".*\\.jar")) ":" (string-concatenate (find-files (string-append (assoc-ref inputs "antlr") "/lib") ".*\\.jar")) " org.antlr.Tool $*")))) (chmod (string-append bin "/antlr3") #o755)) #t)) (add-before 'build 'generate-grammar (lambda _ (let ((dir "src/org/antlr/tool/")) (for-each (lambda (file) (display file) (newline) (invoke "antlr" "-o" dir (string-append dir file))) '("antlr.g" "antlr.print.g" "assign.types.g" "buildnfa.g" "define.g"))) (format #t "codegen.g\n") (invoke "antlr" "-o" "src/org/antlr/codegen" "src/org/antlr/codegen/codegen.g") #t)) (add-before 'build 'fix-build-xml (lambda _ (substitute* "build.xml" (("target name=\"compile\">") "target name=\"compile\"> ")) #t))))) (native-inputs `(("antlr" ,antlr2))) (inputs `(("junit" ,java-junit))) (propagated-inputs `(("stringtemplate" ,java-stringtemplate-3))))) (define-public java-treelayout (package (name "java-treelayout") (version "1.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/abego/treelayout") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "18my8ql9b1y0n0zrvkih7xfhf3dpgfhyfifvkcfhmwcvw3divxak")))) (build-system ant-build-system) (arguments `(#:jar-name (string-append ,name "-" ,version ".jar") #:source-dir "org.abego.treelayout/src/main/java" #:test-dir "org.abego.treelayout/src/test")) (inputs (list java-junit)) (native-inputs (list java-hamcrest-core)) (home-page "http://treelayout.sourceforge.net") (synopsis "Tree Layout Algorithm in Java") (description "TreeLayout creates tree layouts for arbitrary trees. It is not restricted to a specific output or format, but can be used for any kind of two dimensional diagram. Examples are Swing based components, SVG files, etc. This is possible because TreeLayout separates the layout of a tree from the actual rendering.") (license license:bsd-3))) (define-public java-antlr4-runtime (package (name "java-antlr4-runtime") (version "4.8") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/antlr/antlr4") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1qal3add26qxskm85nk7r758arladn5rcyjinmhlhznmpbbv9j8m")) (patches (search-patches "java-antlr4-Add-standalone-generator.patch" "java-antlr4-fix-code-too-large.java")))) (build-system ant-build-system) (arguments `(#:jar-name "java-antlr4-runtime.jar" #:source-dir "runtime/Java/src/org" #:tests? #f; tests depend on java-antlr4 itself #:phases (modify-phases %standard-phases (add-before 'build 'copy-resources (lambda _ (copy-recursively "runtime/Java/src/main/dot" "build/classes") #t))))) (home-page "https://www.antlr.org") (synopsis "ANTLR runtime library") (description "This package contains the runtime library used with generated sources by ANTLR.") (license license:bsd-3))) (define-public java-antlr4-runtime-cpp (package (inherit java-antlr4-runtime) (name "java-antlr4-runtime-cpp") (outputs '("out" "static")) (build-system cmake-build-system) (arguments (list ;; TODO: try to run the tests under ;; runtime-testsuite/test/org/antlr/v4/test/runtime/cpp with antlr4. #:tests? #f ;no CMake test target #:phases #~(modify-phases %standard-phases (add-after 'unpack 'chdir (lambda _ (chdir "runtime/Cpp"))) (add-after 'install 'move-static-library (lambda* (#:key outputs #:allow-other-keys) (let ((static (assoc-ref outputs "static")) (libantlr4-runtime.a (search-input-file outputs "lib/libantlr4-runtime.a"))) (mkdir-p (string-append static "/lib")) (rename-file libantlr4-runtime.a (string-append static "/lib/" (basename libantlr4-runtime.a))))))))) (native-inputs (list pkg-config)) (inputs (list `(,util-linux "lib"))) ;libuuid (synopsis "ANTL C++ runtime library") (description "This package contains the C++ runtime library used with C++ generated sources by ANTLR."))) (define-public antlr4 (package (inherit java-antlr4-runtime) (name "antlr4") (arguments `(#:jar-name "antlr4.jar" #:source-dir "tool/src" #:test-dir "tool-testsuite/test:runtime-testsuite/test:runtime-testsuite/annotations/src" #:test-include (list "**/Test*.java") #:test-exclude (list ;; no runnable method "**/TestOutputReading.java" ;; no @Test methods "**/TestParserErrors.java" "**/TestSemPredEvalParser.java" "**/TestSets.java" "**/TestListeners.java" "**/TestParseTrees.java" "**/TestParserExec.java" "**/TestLexerErrors.java" "**/TestPerformance.java" "**/TestCompositeParsers.java" "**/TestLexerExec.java" "**/TestSemPredEvalLexer.java" "**/TestLeftRecursion.java" "**/TestFullContextParsing.java" "**/TestCompositeLexers.java" ;; Null pointer exception "**/TestCompositeGrammars.java" ;; Wrong assumption on emoji "**/TestUnicodeData.java") #:phases (modify-phases %standard-phases (add-before 'build 'fix-build.xml (lambda _ ;; tests are not in a java subdirectory (substitute* "build.xml" (("\\$\\{test.home\\}/java") "${test.home}")) #t)) ;; tests require to have a working antlr4 binary (delete 'check) (add-after 'bin-install 'check (lambda _ (invoke "ant" "compile-tests") (invoke "ant" "check" "-Dtest.home=runtime-testsuite/annotations/src") (invoke "ant" "check" "-Dtest.home=runtime-testsuite/test") (invoke "ant" "check" "-Dtest.home=tool-testsuite/test") #t)) (add-before 'check 'remove-unrelated-languages (lambda _ ;; There are tests for other languages that ANTLR can generate, but ;; we don't have the infrastructure for that yet. Let's test Java ;; generation only. (for-each (lambda (language) (delete-file-recursively (string-append "runtime-testsuite/test/org/antlr/v4/test/runtime/" language))) '("cpp" "csharp" "go" "javascript" "php" "python" "python2" "python3" "swift")) #t)) (add-before 'check 'generate-test-parsers (lambda* (#:key outputs #:allow-other-keys) (define (run-antlr dir filename package) (invoke "antlr4" "-lib" dir "-visitor" "-no-listener" "-package" package (string-append dir "/" filename) "-Xlog")) (setenv "PATH" (string-append (getenv "PATH") ":" (assoc-ref outputs "out") "/bin")) (run-antlr "runtime-testsuite/test/org/antlr/v4/test/runtime/java/api" "Java.g4" "org.antlr.v4.test.runtime.java.api") (run-antlr "runtime-testsuite/test/org/antlr/v4/test/runtime/java/api" "VisitorBasic.g4" "org.antlr.v4.test.runtime.java.api") (run-antlr "runtime-testsuite/test/org/antlr/v4/test/runtime/java/api" "VisitorCalc.g4" "org.antlr.v4.test.runtime.java.api") #t)) (add-before 'check 'remove-graphemes (lambda _ ;; When running antlr on grahemes.g4, we get a runtime exception: ;; set is empty. So delete the file that depends on it. (delete-file "runtime-testsuite/test/org/antlr/v4/test/runtime/java/api/perf/TimeLexerSpeed.java") #t)) (add-after 'install 'bin-install (lambda* (#:key inputs outputs #:allow-other-keys) (let ((jar (string-append (assoc-ref outputs "out") "/share/java")) (bin (string-append (assoc-ref outputs "out") "/bin"))) (mkdir-p bin) (with-output-to-file (string-append bin "/antlr4") (lambda _ (display (string-append "#!" (which "sh") "\n" "java -cp " jar "/antlr4.jar:" (string-join (apply append (map (lambda (input) (find-files (assoc-ref inputs input) ".*\\.jar")) '("antlr3" "java-stringtemplate" "java-antlr4-runtime" "java-treelayout" "java-jsonp-api" "java-icu4j"))) ":") " org.antlr.v4.Tool $*")))) (chmod (string-append bin "/antlr4") #o755) #t))) (add-before 'build 'copy-resources (lambda _ (copy-recursively "tool/resources/" "build/classes") #t)) (add-before 'build 'generate-unicode (lambda _ ;; First: build the generator (invoke "javac" "-cp" (getenv "CLASSPATH") "tool/src/org/antlr/v4/unicode/UnicodeRenderer.java" "tool/src/org/antlr/v4/unicode/UnicodeDataTemplateController.java") ;; Then use it (invoke "java" "-cp" (string-append (getenv "CLASSPATH") ":tool/src:runtime/Java") "org.antlr.v4.unicode.UnicodeRenderer" "tool/resources/org/antlr/v4/tool/templates" "unicodedata" "tool/src/org/antlr/v4/unicode/UnicodeData.java") ;; It seems there is a bug with our ST4 (substitute* "tool/src/org/antlr/v4/unicode/UnicodeData.java" (("\\\\>") ">")) ;; Remove the additional file (delete-file "tool/src/org/antlr/v4/unicode/UnicodeRenderer.java") #t)) (add-before 'build 'generate-grammar (lambda* (#:key inputs #:allow-other-keys) (with-directory-excursion "tool/src/org/antlr/v4/parse" (for-each (lambda (file) (display file) (newline) (invoke "antlr3" file)) '("ANTLRLexer.g" "ANTLRParser.g" "BlockSetTransformer.g" "GrammarTreeVisitor.g" "ATNBuilder.g" "ActionSplitter.g" "LeftRecursiveRuleWalker.g"))) (with-directory-excursion "tool/src/org/antlr/v4/codegen" (install-file "../parse/ANTLRParser.tokens" ".") (display "SourceGenTriggers.g\n") (invoke "antlr3" "SourceGenTriggers.g")) #t))))) (inputs (list antlr3 java-antlr4-runtime java-icu4j java-jsonp-api java-stringtemplate java-treelayout)) (native-inputs (list java-junit)) (synopsis "Parser and lexer generator in Java") (description "ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that can build and walk parse trees."))) (define-public java-antlr4-runtime-4.1 (package (inherit java-antlr4-runtime) (version "4.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/antlr/antlr4") (commit version))) (file-name (git-file-name "antlr4" version)) (sha256 (base32 "1i8hmx5an58cjyvhji0xgpvd6lq00z1k1mjys025q2wqc25wv4c1")))) (arguments (substitute-keyword-arguments (package-arguments java-antlr4-runtime) ((#:phases phases) `(modify-phases ,phases (add-before 'configure 'chmod (lambda _ (chmod "build.xml" #o644) #t)))))) (inputs (list java-treelayout)))) (define-public antlr4-4.1 (package (inherit antlr4) (version (package-version java-antlr4-runtime-4.1)) (source (package-source java-antlr4-runtime-4.1)) (arguments (substitute-keyword-arguments (package-arguments antlr4) ((#:test-dir _) "tool/test") ((#:test-exclude excludes) `(list "**/TestParseErrors.java" "**/TestTopologicalSort.java" ,@excludes)) ((#:phases phases) `(modify-phases ,phases (delete 'generate-unicode) (replace 'check (lambda _ (invoke "ant" "check") #t)) (add-before 'configure 'chmod (lambda _ (chmod "build.xml" #o644) #t)) (delete 'remove-graphemes) (delete 'remove-unrelated-languages) (delete 'generate-test-parsers))))) (inputs (alist-replace "java-antlr4-runtime" (list java-antlr4-runtime-4.1) (package-inputs antlr4))))) (define-public java-tunnelvisionlabs-antlr4-runtime-annotations (package (inherit java-antlr4-runtime) (name "java-tunnelvisionlabs-antlr4-runtime-annotations") (version "4.7.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/tunnelvisionlabs/antlr4") (commit (string-append version "-opt")))) (file-name (git-file-name "java-tunnelvisionlabs-antlr4" version)) (sha256 (base32 "1mf2lvvsszpialsk23ma83pwp50nd32lrbjpa847zlm5gmranbr8")) (patches (search-patches "java-antlr4-Add-standalone-generator.patch" "java-tunnelvisionlabs-antlr-code-too-large.patch")))) (arguments `(#:jar-name "java-antlr4-runtime-annotations.jar" #:source-dir "runtime/JavaAnnotations/src" #:tests? #f; no tests #:phases (modify-phases %standard-phases (add-after 'build 'copy-resources (lambda _ (copy-recursively "runtime/JavaAnnotations/resources" "build/classes") #t)) (add-after 'copy-resources 'rebuild-jar (lambda _ (invoke "ant" "jar") #t))))) (inputs '()) (native-inputs '()) (synopsis "Annotations for ANTLR's runtime library") (description "This package contains annotations used during the build of the runtime library of ANTLR."))) ;; the runtime of this library requires a lexer that is generated by antlr4. ;; However, antlr4 itself requires this library at build and run-time. We ;; use antlr4@4.1, the closest version of antlr that doesn't need this ;; bootstrap process, to generate the lexer. The generated lexer is built ;; for the 4.1 runtime, which is slightly different from this runtime. ;; So, we build the runtime with antlr 4.1, with a broken xml lexer, that we ;; use to build antlr4. We then re-use this antlr4 to build the runtime, and ;; the proper, working, runtime to build antlr4 again. (define java-tunnelvisionlabs-antlr4-runtime-bootstrap (package (inherit java-antlr4-runtime) (name "java-tunnelvisionlabs-antlr4-runtime") (version (package-version java-tunnelvisionlabs-antlr4-runtime-annotations)) (source (package-source java-tunnelvisionlabs-antlr4-runtime-annotations)) (arguments `(#:jar-name "java-antlr4-runtime.jar" #:source-dir "runtime/Java/src" #:tests? #f; tests require antlr4, but antlr4 depends on this package #:phases (modify-phases %standard-phases (add-before 'build 'generate-xpath-lexer (lambda _ (invoke "antlr4" "-lib" "runtime/Java/src/org/antlr/v4/runtime/tree/xpath" "-visitor" "-no-listener" "-package" "org.antlr.v4.runtime.tree.xpath" "runtime/Java/src/org/antlr/v4/runtime/tree/xpath/XPathLexer.g4") ;; Generated code is for an incompatible version of the runtime (substitute* "runtime/Java/src/org/antlr/v4/runtime/tree/xpath/XPathLexer.java" (("LexerATNSimulator\\(this,_ATN,_decisionToDFA,_sharedContextCache\\)") "LexerATNSimulator(this,_ATN)")) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "runtime/Java/src/main/dot" "build/classes") #t))))) (native-inputs `(("antlr4" ,antlr4-4.1) ("java-tunnelvisionlabs-antlr4-runtime-annotations" ,java-tunnelvisionlabs-antlr4-runtime-annotations))))) (define java-tunnelvisionlabs-antlr4-bootstrap (package (inherit antlr4) (name "java-tunnelvisionlabs-antlr4") (version (package-version java-tunnelvisionlabs-antlr4-runtime-annotations)) (source (package-source java-tunnelvisionlabs-antlr4-runtime-annotations)) (arguments (substitute-keyword-arguments (package-arguments antlr4) ((#:test-dir _) "tool/test:runtime-testsuite/src") ((#:phases phases) `(modify-phases ,phases (delete 'remove-unrelated-languages) (delete 'remove-graphemes) (delete 'generate-test-parsers) (delete 'check))))) (native-inputs '()) (inputs `(("antlr3" ,antlr3) ("java-antlr4-runtime" ,java-tunnelvisionlabs-antlr4-runtime-bootstrap) ("java-tunnelvisionlabs-antlr4-runtime-annotations" ,java-tunnelvisionlabs-antlr4-runtime-annotations) ("java-icu4j" ,java-icu4j) ("java-jsonp-api" ,java-jsonp-api) ("java-stringtemplate" ,java-stringtemplate) ("java-treelayout" ,java-treelayout))))) (define-public java-tunnelvisionlabs-antlr4-runtime (package (inherit java-tunnelvisionlabs-antlr4-runtime-bootstrap) (native-inputs (alist-replace "antlr4" (list java-tunnelvisionlabs-antlr4-bootstrap) (package-native-inputs java-tunnelvisionlabs-antlr4-runtime-bootstrap))))) (define-public java-tunnelvisionlabs-antlr4 (package (inherit java-tunnelvisionlabs-antlr4-bootstrap) (inputs (alist-replace "java-antlr4-runtime" (list java-tunnelvisionlabs-antlr4-runtime) (package-inputs java-tunnelvisionlabs-antlr4-bootstrap))))) (define-public java-commons-cli-1.2 ;; This is a bootstrap dependency for Maven2. (package (inherit java-commons-cli) (version "1.2") (source (origin (method url-fetch) (uri (string-append "mirror://apache/commons/cli/source/" "commons-cli-" version "-src.tar.gz")) (sha256 (base32 "0rvfgzgv2pc1m091dfj3ih9ddsjjppr1f1wf0qmc3bk6b1kwv2dm")))) (arguments `(#:jar-name "commons-cli.jar" #:phases (modify-phases %standard-phases (add-before 'check 'fix-build-xml (lambda* (#:key inputs #:allow-other-keys) (substitute* "build.xml" (("dir=\"\\$\\{test.home\\}/java\"") "dir=\"${test.home}\"")) #t))))) (native-inputs (list java-junit)))) (define-public java-microemulator-cldc (package (name "java-microemulator-cldc") (version "2.0.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/barteo/microemu/archive/" "microemulator_" (string-map (lambda (c) (if (char=? c #\.) #\_ c)) version) ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1x1apmz38gkppxnwnygwmi12j54v4p258v8ddzn6dldkk7vak1ll")))) (build-system ant-build-system) (arguments `(#:jar-name "microemulator-cldc.jar" #:source-dir "microemu-cldc/src/main/java" #:tests? #f)); Requires even older software (home-page "https://github.com/barteo/microemu") (synopsis "J2ME CLDC emulator") (description "Microemulator is a Java 2 Micro Edition (J2ME) CLDC/MIDP Emulator. It demonstrates MIDlet based applications in web browser applet and can be run as a standalone java application.") (license (list license:asl2.0 ;; or altenatively: license:lgpl2.1+)))) (define-public java-datanucleus-javax-persistence (package (name "java-datanucleus-javax-persistence") (version "2.2.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/datanucleus/" "javax.persistence/archive/javax.persistence-" version "-release.tar.gz")) (sha256 (base32 "11jx0fjwgc2hhbqqgdd6m1pf2fplf9vslppygax0y1z5csnqjhpx")))) (build-system ant-build-system) (arguments `(#:jar-name "java-datanucleus-javax-persistence.jar" #:jdk ,icedtea-8 #:source-dir "src/main/java" #:tests? #f)); no tests (home-page "https://github.com/datanucleus/javax.persistence") (synopsis "JPA API") (description "This package contains a clean definition of JPA API intended for use with DataNucleus JPA since the JCP haven't provided an official JPA API jar. See @url{http://java.net/projects/jpa-spec/downloads} for the specification used to generate this API.") (license (list license:edl1.0 license:epl1.0)))) (define-public java-osgi-cmpn (package (name "java-osgi-cmpn") (version "6.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/" "org/osgi/osgi.cmpn/" version "/osgi.cmpn-" version "-sources.jar")) (sha256 (base32 "1lmb6xyrmkqdhv1kayf0514rlwq6ypvs4m44ibrck3snp8241wys")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-cmpn.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation) ("core" ,java-osgi-core) ("java-datanucleus-javax-persistence" ,java-datanucleus-javax-persistence) ("microemulator" ,java-microemulator-cldc) ("servlet" ,java-classpathx-servletapi))) (home-page "https://www.osgi.org") (synopsis "Compendium specification module of OSGi framework") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the compendium specification module, providing interfaces and classes for use in compiling bundles.") (license license:asl2.0))) (define-public java-osgi-service-component-annotations (package (name "java-osgi-service-component-annotations") (version "1.3.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.component.annotations/" version "/org.osgi.service.component.annotations-" version "-sources.jar")) (sha256 (base32 "15rq9cmp4fpn74q44m4j35qsqmjf5lx3hcrk6pzvbhc08igic2f0")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-component-annotations.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation))) (home-page "https://www.osgi.org") (synopsis "Support annotations for osgi-service-component") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the support annotations for osgi-service-component.") (license license:asl2.0))) (define-public java-osgi-dto (package (name "java-osgi-dto") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.dto/" version "/org.osgi.dto-" version "-sources.jar")) (sha256 (base32 "0f4bqjzadn0hwk6sd3h5gvbyfp3yci1s6r0v770cc15p0pg627yr")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-dto.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation))) (home-page "https://www.osgi.org") (synopsis "Data Transfer Objects") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the Data Transfer Objects. It is easily serializable having only public fields of primitive types and their wrapper classes, Strings, and DTOs. List, Set, Map and array aggregates may also be used. The aggregates must only hold objects of the listed types or aggregates.") (license license:asl2.0))) (define-public java-osgi-resource (package (name "java-osgi-resource") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.resource/" version "/org.osgi.resource-" version "-sources.jar")) (sha256 (base32 "0hi0fsc5v99q22bd7lrkvpz1y0ds4w9arjldpwsrcpqvz2js7q2d")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-resource.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation) ("dto" ,java-osgi-dto))) (home-page "https://www.osgi.org") (synopsis "OSGI Resource") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the definition of common types in osgi packages.") (license license:asl2.0))) (define-public java-osgi-namespace-contract (package (name "java-osgi-namespace-contract") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.namespace.contract/" version "/org.osgi.namespace.contract-" version "-sources.jar")) (sha256 (base32 "1iz4f2i0fvqrlq90ki9nfzcfpvy2av434ri25bglywqssx8mmp36")))) (build-system ant-build-system) (inputs `(("resource" ,java-osgi-resource) ("annotation" ,java-osgi-annotation))) (arguments `(#:jar-name "osgi-namespace-contract.jar" #:tests? #f)); no tests (home-page "https://www.osgi.org") (synopsis "Contract Capability and Requirement Namespace") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the names for the attributes and directives for a namespace with contracts.") (license license:asl2.0))) (define-public java-osgi-namespace-extender (package (name "java-osgi-namespace-extender") (version "1.0.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.namespace.extender/" version "/org.osgi.namespace.extender-" version "-sources.jar")) (sha256 (base32 "0jgqiak2i05qv6j3gd33xlaifzzc0ylxxk376v2x0apfg3vvixmz")))) (build-system ant-build-system) (inputs `(("resource" ,java-osgi-resource) ("annotation" ,java-osgi-annotation))) (arguments `(#:jar-name "osgi-namespace-extendent.jar" #:tests? #f)); no tests (home-page "https://www.osgi.org") (synopsis "Extender Capability and Requirement Namespace") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the names for the attributes and directives for an extender namespace.") (license license:asl2.0))) (define-public java-osgi-namespace-service (package (name "java-osgi-namespace-service") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.namespace.service/" version "/org.osgi.namespace.service-" version "-sources.jar")) (sha256 (base32 "0qmw8n2449nkmm56d1znz9zhazb6ya3vsimd5bf5jg23zzhgl8c8")))) (build-system ant-build-system) (inputs `(("resource" ,java-osgi-resource) ("annotation" ,java-osgi-annotation))) (arguments `(#:jar-name "osgi-namespace-service.jar" #:tests? #f)); no tests (home-page "https://www.osgi.org") (synopsis "Service Capability and Requirement Namespace") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the names for the attributes and directives for a service namespace.") (license license:asl2.0))) (define-public java-osgi-util-function (package (name "java-osgi-util-function") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.util.function/" version "/org.osgi.util.function-" version "-sources.jar")) (sha256 (base32 "04l7j3hwmmj28w23m7paca0afzncs42j2mdr3liqq8kvp548sc6x")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-util-function.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation))) (home-page "https://www.osgi.org") (synopsis "OSGI Util Function") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains an interface for a function that accepts a single argument and produces a result.") (license license:asl2.0))) (define-public java-osgi-util-promise (package (name "java-osgi-util-promise") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.util.promise/" version "/org.osgi.util.promise-" version "-sources.jar")) (sha256 (base32 "0y34dwiflg1c4ahvkswpf9z02xph2sr9fm04ia5493x3lshpw22c")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-util-promise.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation) ("function" ,java-osgi-util-function))) (home-page "https://www.osgi.org") (synopsis "Promise of a value") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains an interface and utilitary classes for promises. A Promise represents a future value. It handles the interactions for asynchronous processing.") (license license:asl2.0))) (define-public java-osgi-service-metatype-annotations (package (name "java-osgi-service-metatype-annotations") (version "1.3.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.metatype.annotations/" version "/org.osgi.service.metatype.annotations-" version "-sources.jar")) (sha256 (base32 "12rwm3349wk80vm88rcdgs4435m4jxkpkj5mrx326skkz2c6hyw6")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-metatype-annotations.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation))) (home-page "https://www.osgi.org") (synopsis "Support annotations for metatype") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the support annotations for metatype.") (license license:asl2.0))) (define-public java-osgi-service-repository (package (name "java-osgi-service-repository") (version "1.1.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.repository/" version "/org.osgi.service.repository-" version "-sources.jar")) (sha256 (base32 "1k41mhg7b58pd8nsghr2qwcjrxdnf1p9spsw9v11k4257g6rl06n")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-repository.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation) ("promise" ,java-osgi-util-promise) ("resource" ,java-osgi-resource))) (home-page "https://www.osgi.org") (synopsis "OSGI service repository") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains a repository service that contains resources.") (license license:asl2.0))) (define-public java-osgi-framework (package (name "java-osgi-framework") (version "1.8.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.framework/" version "/org.osgi.framework-" version "-sources.jar")) (sha256 (base32 "1lwp2zfad3rybcc6q9bwz8xsgkc92ypzy5p6x54387f1qj65m73s")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-framework.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation) ("resource" ,java-osgi-resource) ("dto" ,java-osgi-dto))) (home-page "https://www.osgi.org") (synopsis "OSGi framework") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language.") (license license:asl2.0))) (define-public java-osgi-service-log (package (name "java-osgi-service-log") (version "1.3.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.log/" version "/org.osgi.service.log-" version "-sources.jar")) (sha256 (base32 "1029j30dzcwializzca0j3fkhwwz08kmmsha5agw1iccscimj6r0")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-log.jar" #:tests? #f)); no tests (inputs (list java-osgi-framework)) (home-page "https://www.osgi.org") (synopsis "Provides methods for bundles to write messages to the log") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the log service.") (license license:asl2.0))) (define-public java-osgi-service-jdbc (package (name "java-osgi-service-jdbc") (version "1.0.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.jdbc/" version "/org.osgi.service.jdbc-" version "-sources.jar")) (sha256 (base32 "11iln5v7bk469cgb9ddkrz9sa95b3733gqgaqw9xf5g6wq652yjz")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-jdbc.jar" #:tests? #f)); no tests (home-page "https://www.osgi.org") (synopsis "Factory for JDBC connection factories") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains a factory for JDBC connection factories. There are 3 preferred connection factories for getting JDBC connections: @itemize @item @code{javax.sql.DataSource}; @item @code{javax.sql.ConnectionPoolDataSource}; @item @code{javax.sql.XADataSource}. @end itemize") (license license:asl2.0))) (define-public java-osgi-service-resolver (package (name "java-osgi-service-resolver") (version "1.0.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.resolver/" version "/org.osgi.service.resolver-" version "-sources.jar")) (sha256 (base32 "1dzqn1ryfi2rq4zwsgp44bmj2wlfydjg1qbxw2b0z4xdjjy55vxd")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-resolver.jar" #:tests? #f)); no tests (inputs `(("annotation" ,java-osgi-annotation) ("resource" ,java-osgi-resource))) (home-page "https://www.osgi.org") (synopsis "OSGI Resolver service") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains a resolver service that resolves the specified resources in the context supplied by the caller.") (license license:asl2.0))) (define-public java-osgi-util-tracker (package (name "java-osgi-util-tracker") (version "1.5.1") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.util.tracker/" version "/org.osgi.util.tracker-" version "-sources.jar")) (sha256 (base32 "0c4fh9vxwzsx59r8dygda0gq2gx3z5vfhc3jsphlqwf5w0h403lz")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-util-tracker.jar" #:tests? #f)); no tests (inputs `(("framework" ,java-osgi-framework) ("annotation" ,java-osgi-annotation))) (home-page "https://www.osgi.org") (synopsis "Bundle tracking") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains bundle tracking utility classes.") (license license:asl2.0))) (define-public java-osgi-service-cm (package (name "java-osgi-service-cm") (version "1.5.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.cm/" version "/org.osgi.service.cm-" version "-sources.jar")) (sha256 (base32 "1z8kap48y3xi0ggj8v6czglfnpnd94mmismgi2wbqhj1nl5fzbp6")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-cm.jar" #:tests? #f)); no tests (inputs `(("framework" ,java-osgi-framework) ("annotation" ,java-osgi-annotation))) (home-page "https://www.osgi.org") (synopsis "OSGI Configuration Management") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains utility classes for the configuration of services.") (license license:asl2.0))) (define-public java-osgi-service-packageadmin (package (name "java-osgi-service-packageadmin") (version "1.2.0") (source (origin (method url-fetch) (uri (string-append "https://repo1.maven.org/maven2/org/osgi/" "org.osgi.service.packageadmin/" version "/org.osgi.service.packageadmin-" version "-sources.jar")) (sha256 (base32 "041mpxzi7g36wmcily6y4ccn3jx15akpdy8gmhyb7m98x7qfvn52")))) (build-system ant-build-system) (arguments `(#:jar-name "osgi-service-packageadmin.jar" #:tests? #f)); no tests (inputs `(("framework" ,java-osgi-framework))) (home-page "https://www.osgi.org") (synopsis "OSGI Package Administration") (description "OSGi, for Open Services Gateway initiative framework, is a module system and service platform for the Java programming language. This package contains the packageadmin service.") (license license:asl2.0))) (define-public java-ops4j-base-lang (package (name "java-ops4j-base-lang") (version "1.5.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/ops4j/org.ops4j.base/" "archive/base-" version ".tar.gz")) (sha256 (base32 "18hl3lpchgpv8yh5rlk39l2gif5dlfgb8gxjmncf39pr2dprkniw")))) (build-system ant-build-system) (arguments `(#:jar-name "java-ops4j-base-lang.jar" #:source-dir "ops4j-base-lang/src/main/java" #:tests? #f; no tests #:phases (modify-phases %standard-phases (add-before 'build 'add-test-file (lambda _ ;; That file is required by a test in ops4j-pax-exam-core-spi (mkdir-p "build/classes/META-INF/maven/org.ops4j.base/ops4j-base-lang") (with-output-to-file "build/classes/META-INF/maven/org.ops4j.base/ops4j-base-lang/pom.properties" (lambda _ (display (string-append "version=" ,version "\n" "groupId=org.ops4j.base" "artifactId=ops4j-base-lang\n")))) #t))))) (home-page "https://ops4j1.jira.com/wiki/spaces/base/overview") (synopsis "Utility classes and extensions to be used in OPS4J projects") (description "OPS4J stands for Open Participation Software for Java. This package contains utilities and extensions related to @code{java.lang}.") (license license:asl2.0))) (define-public java-ops4j-base-monitors (package (inherit java-ops4j-base-lang) (name "java-ops4j-base-monitors") (arguments `(#:jar-name "java-ops4j-base-monitors.jar" #:source-dir "ops4j-base-monitors/src/main/java" #:tests? #f)); no tests (inputs `(("lang" ,java-ops4j-base-lang))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities and extensions related to monitoring."))) (define-public java-ops4j-base-io (package (inherit java-ops4j-base-lang) (name "java-ops4j-base-io") (arguments `(#:jar-name "java-ops4j-base-io.jar" #:source-dir "ops4j-base-io/src/main/java" #:test-dir "ops4j-base-io/src/test" #:test-exclude (list "**/ListerTest.java"))) (inputs `(("lang" ,java-ops4j-base-monitors) ("lang" ,java-ops4j-base-lang))) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities and extensions related to handling streams and files."))) (define-public java-ops4j-base-util (package (inherit java-ops4j-base-lang) (name "java-ops4j-base-util") (arguments `(#:jar-name "java-ops4j-base-util.jar" #:source-dir "ops4j-base-util/src/main/java" #:test-dir "ops4j-base-util/src/test")) (inputs `(("lang" ,java-ops4j-base-lang))) (native-inputs `(("junit" ,java-junit))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities and extensions related to environment, i18n and mime types."))) (define-public java-ops4j-base-util-property (package (inherit java-ops4j-base-lang) (name "java-ops4j-base-util-property") (arguments `(#:jar-name "java-ops4j-base-util-property.jar" #:source-dir "ops4j-base-util-property/src/main/java" #:tests? #f)); no tests (inputs `(("lang" ,java-ops4j-base-lang) ("util" ,java-ops4j-base-util))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities and extensions related to resolving properties from different sources."))) (define-public java-ops4j-base-store (package (inherit java-ops4j-base-lang) (name "java-ops4j-base-store") (arguments `(#:jar-name "java-ops4j-base-store.jar" #:source-dir "ops4j-base-store/src/main/java" #:tests? #f)); no tests (inputs `(("lang" ,java-ops4j-base-lang) ("slf4j" ,java-slf4j-api) ("io" ,java-ops4j-base-io))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities for storing and retrieving data from an @code{InputStream}."))) (define-public java-ops4j-base-spi (package (inherit java-ops4j-base-lang) (name "java-ops4j-base-spi") (arguments `(#:jar-name "java-ops4j-base-spi.jar" #:source-dir "ops4j-base-spi/src/main/java" #:test-dir "ops4j-base-spi/src/test")) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities for obtaining services via the Java SE 6 @code{ServiceLoader}."))) (define-public java-aqute-bnd-annotation (package (name "java-aqute-bnd-annotation") (version "3.5.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/bndtools/bnd/archive/" version ".REL.tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "1ggyiq0as0f6cz333a0dh98j72kmvv5pf2s47v9554yh905lfqdl")))) (build-system ant-build-system) (arguments `(#:jar-name "java-aqute-bnd-annotation.jar" #:source-dir "biz.aQute.bnd.annotation/src" #:tests? #f)); empty test dir (home-page "https://bnd.bndtools.org/") (synopsis "Tools for OSGi") (description "Bnd is a swiss army knife for OSGi, it creates manifest headers based on analyzing the class code, it verifies the project settings, it manages project dependencies, gives diffs jars, and much more.") (license license:asl2.0))) (define-public java-aqute-libg (package (inherit java-aqute-bnd-annotation) (name "java-aqute-libg") (arguments `(#:jar-name "java-aqute-libg.jar" ;; The build fails when source/target more recent than 1.7. This ;; is a known issue. See: https://github.com/bndtools/bnd/issues/1327 ;; ;; It is closed as won't fix. There is no way to change the source ;; so that it works on 1.8, and still works on 1.6, the upstream ;; target. It work fine on 1.7, so we use 1.7. #:make-flags (list "-Dant.build.javac.source=1.7" "-Dant.build.javac.target=1.7") #:phases (modify-phases %standard-phases (add-before 'configure 'chdir ;; Change to aQute.libg directory, so that the relative ;; paths in the tests aren't broken. (lambda _ (chdir "aQute.libg") #t)) (add-before 'check 'create-test-directory ;; Copy the test directory to test/java, since that's where ;; ant-build-system's default project in build.xml expects to find ;; the test classes. Leave a copy in the original place to not ;; break paths in tests. (lambda _ (mkdir "src/test") (copy-recursively "test" "src/test/java") #t))))) (inputs `(("slf4j" ,java-slf4j-api) ("osgi-annot" ,java-osgi-annotation) ("java-osgi-cmpn" ,java-osgi-cmpn) ("osgi" ,java-osgi-core))) (native-inputs `(("hamcrest" ,java-hamcrest-core) ("java-junit" ,java-junit))))) (define-public java-aqute-bndlib (package (inherit java-aqute-bnd-annotation) (name "java-aqute-bndlib") (arguments `(#:jar-name "java-bndlib.jar" #:source-dir "biz.aQute.bndlib/src" #:tests? #f)); no tests (inputs `(("slf4j" ,java-slf4j-api) ("osgi-annot" ,java-osgi-annotation) ("java-aqute-libg" ,java-aqute-libg) ("java-aqute-bnd-annotation" ,java-aqute-bnd-annotation) ("java-osgi-service-component-annotations" ,java-osgi-service-component-annotations) ("java-osgi-service-repository" ,java-osgi-service-repository) ("java-osgi-service-log" ,java-osgi-service-log) ("java-osgi-service-metatype-annotations" ,java-osgi-service-metatype-annotations) ("java-osgi-namespace-contract" ,java-osgi-namespace-contract) ("java-osgi-namespace-extender" ,java-osgi-namespace-extender) ("java-osgi-namespace-service" ,java-osgi-namespace-service) ("promise" ,java-osgi-util-promise) ("osgi" ,java-osgi-core))))) (define-public java-ops4j-pax-tinybundles (package (name "java-ops4j-pax-tinybundles") (version "2.1.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/ops4j/org.ops4j.pax.tinybundles/" "archive/tinybundles-" version ".tar.gz")) (sha256 (base32 "0y0gq3pvv0iir2b885lmlwnvr724vv7vklzhhr4fs27d7mdkj871")))) (arguments `(#:jar-name "java-ops4j-pax-tinybundles.jar" #:source-dir "src/main/java" #:test-exclude ;; Abstract base classes for other tests (list "**/BndTest.java" "**/CoreTest.java") #:phases (modify-phases %standard-phases (add-before 'check 'fix-version (lambda _ ;; This test has a reference to an old version of bndlib we are not ;; packaging. It uses the version referenced in pom.xml. We replace ;; it with our own version. (substitute* "src/test/java/org/ops4j/pax/tinybundles/bnd/BndTest.java" (("[0-9][0-9]*\\.[0-9][0-9]*\\.[0-9][0-9]*\\.[0-9][0-9]*") ,(package-version java-aqute-bndlib))) #t))))) (inputs `(("lang" ,java-ops4j-base-lang) ("io" ,java-ops4j-base-io) ("store" ,java-ops4j-base-store) ("slf4j" ,java-slf4j-api) ("libg" ,java-aqute-libg) ("bndlib" ,java-aqute-bndlib))) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core) ("log4j" ,java-log4j-api) ("bndannotation" ,java-aqute-bnd-annotation) ("framework" ,java-osgi-framework))) (build-system ant-build-system) (home-page "https://ops4j1.jira.com/wiki/spaces/ops4j/pages/12060312/Tinybundles") (synopsis "Java APIs to create OSGi related artifacts") (description "Tinybundles is all about creating OSGi related artifacts like Bundles, Fragments and Deployment Packages with Java Api. It is very convenient to create such artifacts on-the-fly inside Tests (like in Pax Exam). On the other hand, this library can be a foundation of real end user tools that need to create those artifacts.") (license license:asl2.0))) (define-public java-ops4j-pax-exam-core (package (name "java-ops4j-pax-exam-core") (version "4.11.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/ops4j/org.ops4j.pax.exam2/" "archive/exam-reactor-" version ".tar.gz")) (sha256 (base32 "08mzw8nkah3rj3vznlplnawspxhp61zgvb44ifqa1rni1cvbms2g")))) (arguments `(#:jar-name "java-ops4j-pax-exam-core.jar" #:source-dir "core/pax-exam/src/main/java" #:test-dir "core/pax-exam/src/test")) (inputs `(("slf4j" ,java-slf4j-api) ("lang" ,java-ops4j-base-lang) ("io" ,java-ops4j-base-io) ("util-property" ,java-ops4j-base-util-property) ("util-store" ,java-ops4j-base-store) ("java-osgi-core" ,java-osgi-core))) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (build-system ant-build-system) (home-page "https://ops4j1.jira.com/wiki/spaces/PAXEXAM4/overview") (synopsis "In-Container Testing for OSGi, Java EE and CDI") (description "Pax Exam creates OSGi bundles for testing purposes. It lets the user take control of the OSGi framework, the test framework (e.g. JUnit) and the system under test at the same time.") (license license:asl2.0))) (define-public java-ops4j-pax-exam-core-spi (package (inherit java-ops4j-pax-exam-core) (name "java-ops4j-pax-exam-core-spi") (arguments `(#:jar-name "java-ops4j-pax-exam-spi.jar" #:source-dir "src/main/java" #:test-exclude (list ;; Abstract base class, not a test "**/BaseStagedReactorTest.java" ;; Depends on org.mortbay.jetty.testwars:test-war-dump "**/WarBuilderTest.java") #:phases (modify-phases %standard-phases (add-before 'configure 'chdir (lambda _ ;; Tests assume we are in this directory (chdir "core/pax-exam-spi") #t)) (add-before 'check 'fix-tests (lambda _ ;; One test checks that this file is present. (mkdir-p "build/classes/META-INF/maven/org.ops4j.pax.exam/pax-exam-spi") (with-output-to-file "build/classes/META-INF/maven/org.ops4j.pax.exam/pax-exam-spi/pom.properties" (lambda _ (display (string-append "artifactId = pax-exam-spi\n" "version = " ,(package-version java-ops4j-pax-exam-core-spi))))) ;; Maven puts compilation results in the target directory, while we ;; put them in the build directory. (substitute* '("src/test/java/org/ops4j/pax/exam/spi/war/WarBuilderTest.java" "src/test/java/org/ops4j/pax/exam/spi/war/WarTestProbeBuilderTest.java" "src/test/java/org/ops4j/pax/exam/spi/war/ZipBuilderTest.java") (("target") "build")) ;; One test is expected to fail, but it doesn't throw the expected exception (substitute* "src/test/java/org/ops4j/pax/exam/spi/reactors/BaseStagedReactorTest.java" (("AssertionError") "IllegalArgumentException")) #t))))) (inputs `(("java-ops4j-pax-exam-core" ,java-ops4j-pax-exam-core) ("lang" ,java-ops4j-base-lang) ("monitors" ,java-ops4j-base-monitors) ("store" ,java-ops4j-base-store) ("io" ,java-ops4j-base-io) ("spi" ,java-ops4j-base-spi) ("osgi" ,java-osgi-core) ("slf4j" ,java-slf4j-api) ("tinybundles" ,java-ops4j-pax-tinybundles))) (native-inputs `(("mockito" ,java-mockito-1) ("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core) ("cglib" ,java-cglib) ("objenesis" ,java-objenesis) ("asm" ,java-asm))))) (define-public java-ops4j-pax-exam-core-junit (package (inherit java-ops4j-pax-exam-core) (name "java-ops4j-pax-exam-core-junit") (arguments `(#:jar-name "ops4j-pax-exam-core-junit.jar" #:source-dir "drivers/pax-exam-junit4/src/main/java" #:tests? #f)); no tests (inputs `(("junit" ,java-junit) ("slf4j" ,java-slf4j-api) ("core" ,java-ops4j-pax-exam-core) ("spi" ,java-ops4j-pax-exam-core-spi))) (native-inputs '()))) (define-public java-fasterxml-jackson-annotations (package (name "java-fasterxml-jackson-annotations") (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/" "jackson-annotations/archive/" "jackson-annotations-" version ".tar.gz")) (sha256 (base32 "0mr95xd0da6a4g95zvrl1ryk5n5zv2rc696w3xnsr5hxk2gicfc4")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-annotations.jar" #:source-dir "src/main/java" #:test-dir "src/test")) (native-inputs `(("junit" ,java-junit))) (home-page "https://github.com/FasterXML/jackson-annotations") (synopsis "General purpose annotations for the Jackson Data Processor") (description "This package contains general purpose annotations for the Jackson Data Processor, used on value and handler types. The only annotations not included are ones that require dependency to the Databind package.") (license license:asl2.0))) (define-public java-fasterxml-jackson-core (package (name "java-fasterxml-jackson-core") (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/" "jackson-core/archive/" "jackson-core-" version ".tar.gz")) (sha256 (base32 "159hsnk17jr1gyzkf01cxvsn45srnk37g949r7364qlsr527gjgd")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-core.jar" #:source-dir "src/main/java" #:test-dir "src/test" #:test-exclude (list ;; Expected failure. pom.xml excludes these "**/failing/**" ;; Base classes that have no constructor for junit "**/BaseTest.java" "**/ConcurrencyReadTest.java" "**/ManualCharAccessTest.java" "**/ManualCharAccessTest.java" "**/TrailingCommasTest.java" "**/AsyncMissingValuesInObjectTest.java" "**/AsyncMissingValuesInArrayTest.java") #:phases (modify-phases %standard-phases (add-before 'configure 'generate-PackageVersion.java (lambda _ (let* ((out "src/main/java/com/fasterxml/jackson/core/json/PackageVersion.java") (in (string-append out ".in"))) (copy-file in out) (substitute* out (("@package@") "com.fasterxml.jackson.core.json") (("@projectversion@") ,version) (("@projectgroupid@") "com.fasterxml.jackson.core") (("@projectartifactid@") "jackson-core"))) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") #t)) (add-before 'check 'copy-test-resources (lambda _ (copy-recursively "src/test/resources" "build/test-classes") #t))))) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (home-page "https://github.com/FasterXML/jackson-core") (synopsis "Low-level streaming parser and generator abstractions") (description "This package contains core low-level incremental (streaming) parser and generator abstractions used by the Jackson Data Processor. It also includes the default implementation of handler types (parser, generator) that handle JSON format.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing (define-public java-fasterxml-jackson-databind (package (name "java-fasterxml-jackson-databind") (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/" "jackson-databind/archive/" "jackson-databind-" version ".tar.gz")) (sha256 (base32 "1zd2cw4z6kdkbx8za96xh9pyicv2a2l7y0rkcx2fqd8hv6d47s08")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-databind.jar" #:source-dir "src/main/java" #:tests? #f; requires javax.measures for which I can't find a free implementation #:phases (modify-phases %standard-phases (add-before 'configure 'generate-PackageVersion.java (lambda _ (let* ((out "src/main/java/com/fasterxml/jackson/databind/cfg/PackageVersion.java") (in (string-append out ".in"))) (copy-file in out) (substitute* out (("@package@") "com.fasterxml.jackson.databind.cfg") (("@projectversion@") ,version) (("@projectgroupid@") "com.fasterxml.jackson.databind") (("@projectartifactid@") "jackson-databind"))) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") #t))))) (inputs (list java-fasterxml-jackson-annotations java-fasterxml-jackson-core)) (home-page "https://github.com/FasterXML/jackson-databind") (synopsis "Data-binding functionality and tree-model for the Jackson Data Processor") (description "This package contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor. It builds on core streaming parser/generator package, and uses Jackson Annotations for configuration.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing (define-public java-fasterxml-jackson-modules-base-jaxb (package (name "java-fasterxml-jackson-modules-base-jaxb") (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/" "jackson-modules-base/archive/" "jackson-modules-base-" version ".tar.gz")) (sha256 (base32 "1wws95xi8sppp6b0k2vvjdjyynl20r1a4dwrhai08lzlria6blp5")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-modules-base-jaxb.jar" #:source-dir "jaxb/src/main/java" #:test-dir "jaxb/src/test" #:test-exclude ;; Base class for tests (list "**/BaseJaxbTest.java") #:phases (modify-phases %standard-phases (add-before 'configure 'generate-PackageVersion.java (lambda _ (let* ((out (string-append "jaxb/src/main/java/com/fasterxml/" "jackson/module/jaxb/PackageVersion.java")) (in (string-append out ".in"))) (copy-file in out) (substitute* out (("@package@") "com.fasterxml.jackson.module.jaxb") (("@projectversion@") ,version) (("@projectgroupid@") "com.fasterxml.jackson.module.jaxb") (("@projectartifactid@") "jackson-module-jaxb"))) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "jaxb/src/main/resources" "build/classes") #t))))) (inputs (list java-fasterxml-jackson-annotations java-fasterxml-jackson-core java-fasterxml-jackson-databind)) (native-inputs (list java-junit)) (home-page "https://github.com/FasterXML/jackson-modules-base") (synopsis "Jaxb annotations jackson module") (description "This package is the jaxb annotations module for jackson.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing (define-public java-fasterxml-jackson-modules-base-mrbean (package (name "java-fasterxml-jackson-modules-base-mrbean") (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/" "jackson-modules-base/archive/" "jackson-modules-base-" version ".tar.gz")) (sha256 (base32 "1wws95xi8sppp6b0k2vvjdjyynl20r1a4dwrhai08lzlria6blp5")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-modules-base-mrbean.jar" #:source-dir "mrbean/src/main/java" #:test-dir "mrbean/src/test" #:test-exclude ;; Base class for tests (list "**/BaseTest.java") #:phases (modify-phases %standard-phases (add-before 'configure 'generate-PackageVersion.java (lambda _ (let* ((out (string-append "mrbean/src/main/java/com/fasterxml/" "jackson/module/mrbean/PackageVersion.java")) (in (string-append out ".in"))) (copy-file in out) (substitute* out (("@package@") "com.fasterxml.jackson.module.mrbean") (("@projectversion@") ,version) (("@projectgroupid@") "com.fasterxml.jackson.module.mrbean") (("@projectartifactid@") "jackson-module-mrbean"))) #t))))) (inputs (list java-asm java-fasterxml-jackson-annotations java-fasterxml-jackson-core java-fasterxml-jackson-databind)) (native-inputs (list java-junit)) (home-page "https://github.com/FasterXML/jackson-modules-base") (synopsis "POJO type materialization for Java") (description "This package implements POJO type materialization. Databinders can construct implementation classes for Java interfaces as part of deserialization.") (license license:asl2.0))) (define-public java-snakeyaml (package (name "java-snakeyaml") (version "1.18") (source (origin (method url-fetch) (uri (string-append "https://bitbucket.org/asomov/snakeyaml/get/v" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 "0474cqcv46zgv9bhms2vgawakq1vyj0hp3h3f1bfys46msia90bh")))) (build-system ant-build-system) (arguments `(#:jar-name "java-snakeyaml.jar" #:source-dir "src/main/java" ;; Tests require velocity, a cyclic dependency, and ;; java-spring-framework-context which is not packaged. #:tests? #f)) (home-page "https://bitbucket.org/asomov/snakeyaml") (synopsis "YAML processor") (description "SnakeYAML is a YAML processor for the Java Virtual Machine.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing (define-public java-fasterxml-jackson-dataformat-yaml (package (name "java-fasterxml-jackson-dataformat-yaml") (version "2.9.4") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/" "jackson-dataformats-text/archive/" "jackson-dataformats-text-" version ".tar.gz")) (sha256 (base32 "1hikl06khaxbg439avf442qifcadap8w0lx13f0nnhp2vh3dkbz7")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-dataformat-yaml.jar" #:source-dir "yaml/src/main/java" #:test-dir "yaml/src/test" #:test-exclude (list "**/failing/**.java") #:phases (modify-phases %standard-phases (add-before 'configure 'generate-PackageVersion.java (lambda _ (let* ((out "yaml/src/main/java/com/fasterxml/jackson/dataformat/yaml/PackageVersion.java") (in (string-append out ".in"))) (copy-file in out) (substitute* out (("@package@") "com.fasterxml.jackson.dataformat.yaml") (("@projectversion@") ,version) (("@projectgroupid@") "com.fasterxml.jackson.dataformat.yaml") (("@projectartifactid@") "jackson-dataformat-yaml"))) #t))))) (inputs (list java-fasterxml-jackson-annotations java-fasterxml-jackson-core java-fasterxml-jackson-databind java-snakeyaml)) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core) ("java-ops4j-pax-exam-core-spi" ,java-ops4j-pax-exam-core-spi) ("java-ops4j-pax-exam-core-junit" ,java-ops4j-pax-exam-core-junit) ("java-ops4j-pax-exam" ,java-ops4j-pax-exam-core))) (home-page "https://github.com/FasterXML/jackson-dataformats-text") (synopsis "Yaml backend for Jackson") (description "Dataformat backends are used to support format alternatives to JSON, supported by default. This is done by sub-classing Jackson core abstractions.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing (define-public java-stax2-api (package (name "java-stax2-api") (version "4.0.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/FasterXML/stax2-api/archive/" "stax2-api-" version ".tar.gz")) (sha256 (base32 "1amc1si0l0hyyw2sawmnzy4hkna3z6fp195y4nm5m9wb9ld5awkq")))) (build-system ant-build-system) (arguments `(#:jar-name "java-stax2-api.jar" #:source-dir "src/main/java" #:tests? #f)); no tests (home-page "https://github.com/FasterXML/stax2-api") (synopsis "Stax2 API") (description "Stax2 API is an extension to basic Stax 1.0 API that adds significant new functionalities, such as full-featured bi-direction validation interface and high-performance Typed Access API.") (license license:bsd-2))) (define-public java-woodstox-core (package (name "java-woodstox-core") (version "5.0.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/FasterXML/woodstox") (commit (string-append "woodstox-core-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0bfylk24a967hwxprxqbg6cdvm6n4ldcarp54yg980viwvjiglyp")))) (build-system ant-build-system) (arguments `(#:jar-name "woodstox.jar" #:test-exclude (list "**/Base*.java" "failing/**") #:phases (modify-phases %standard-phases (add-before 'build 'remove-msv-dep (lambda _ ;; we don't need osgi, and it depends on msv (delete-file-recursively "src/main/java/com/ctc/wstx/osgi") ;; msv's latest release is from 2011 and we don't need it (delete-file-recursively "src/main/java/com/ctc/wstx/msv") (delete-file-recursively "src/test/java/wstxtest/osgi") (delete-file-recursively "src/test/java/wstxtest/msv") #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") #t))))) (inputs `(("stax2" ,java-stax2-api))) (native-inputs `(("junit" ,java-junit))) (home-page "https://github.com/FasterXML/woodstox") (synopsis "Stax XML API implementation") (description "Woodstox is a stax XML API implementation.") (license license:asl2.0))) (define-public java-fasterxml-jackson-dataformat-xml (package (name "java-fasterxml-jackson-dataformat-xml") (version "2.9.4") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/FasterXML/jackson-dataformat-xml") (commit (string-append "jackson-dataformat-xml-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0s1wl65mbs57c2hz2v8rnh8i04y5lpyyvnjz562j5j6b83vwwpfx")))) (build-system ant-build-system) (arguments `(#:jar-name "jackson-dataformat-xml.jar" #:source-dir "src/main/java" #:test-exclude (list "**/failing/**") #:phases (modify-phases %standard-phases (add-before 'configure 'generate-PackageVersion.java (lambda _ (let* ((out "src/main/java/com/fasterxml/jackson/dataformat/xml/PackageVersion.java") (in (string-append out ".in"))) (copy-file in out) (newline) (substitute* out (("@package@") "com.fasterxml.jackson.dataformat.xml") (("@projectversion@") ,version) (("@projectgroupid@") "com.fasterxml.jackson.dataformat.xml") (("@projectartifactid@") "jackson-dataformat-xml"))) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") #t))))) (inputs `(("jackson-annotations" ,java-fasterxml-jackson-annotations) ("jackson-core" ,java-fasterxml-jackson-core) ("jackson-modules-base-jaxb" ,java-fasterxml-jackson-modules-base-jaxb) ("jackson-databind" ,java-fasterxml-jackson-databind) ("stax2-api" ,java-stax2-api) ("woodstox" ,java-woodstox-core))) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (home-page "https://github.com/FasterXML/jackson-dataformat-xml") (synopsis "Read and write XML") (description "This package contains Jackson extension component for reading and writing XML encoded data. Further, the goal is to emulate how JAXB data-binding works with \"Code-first\" approach (that is, no support is added for \"Schema-first\" approach). Support for JAXB annotations is provided by JAXB annotation module; this module provides low-level abstractions (@code{JsonParser}, @code{JsonGenerator}, @code{JsonFactory}) as well as small number of higher level overrides needed to make data-binding work.") (license license:asl2.0))); found on wiki.fasterxml.com/JacksonLicensing (define-public java-hdrhistogram (package (name "java-hdrhistogram") (version "2.1.9") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/HdrHistogram/HdrHistogram") (commit (string-append "HdrHistogram-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1cw8aa1vk258k42xs6wpy72m4gbai540jq032qsa7c5586iawx2d")))) (build-system ant-build-system) (arguments `(#:jar-name "java-hdrhistogram.jar" #:source-dir "src/main/java" #:phases (modify-phases %standard-phases (add-after 'unpack 'make-files-writable (lambda _ (for-each make-file-writable (find-files ".")) #t)) (add-before 'configure 'set-version (lambda _ (let* ((version-java "src/main/java/org/HdrHistogram/Version.java") (template (string-append version-java ".template"))) (copy-file template version-java) (substitute* version-java (("\\$VERSION\\$") ,version) (("\\$BUILD_TIME\\$") "0")) #t)))))) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (home-page "https://hdrhistogram.github.io/HdrHistogram") (synopsis "High dynamic range histogram") (description "Hdrhistogram creates histograms that support recording and analyzing sampled data value counts across a configurable integer value range with configurable value precision within the range. Value precision is expressed as the number of significant digits in the value recording, and provides control over value quantization behavior across the value range and the subsequent value resolution at any given level.") (license license:public-domain))) (define-public java-cofoja (package (name "java-cofoja") (version "1.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/nhatminhle/cofoja") (commit (string-append "v" version)))) (file-name (string-append "java-cofoja-" version "-checkout")) (sha256 (base32 "0p7sz8y5xgpi5rx1qwn6587fkd52qr3ha3ybh14gqcyxhikl525w")))) (build-system ant-build-system) (arguments `(#:build-target "dist" #:test-target "test" #:jdk ,icedtea-8 #:make-flags (list "-Ddist.dir=dist") #:modules ((guix build ant-build-system) (guix build java-utils) (guix build utils) (srfi srfi-1) (ice-9 match)) #:phases (modify-phases %standard-phases ;; The bulid system ignores the class path the ant-build-system sets ;; up and instead expects to find all dependencies in the "lib" ;; directory. (add-after 'unpack 'create-libdir (lambda* (#:key inputs #:allow-other-keys) (mkdir-p "lib") (for-each (lambda (file) (let ((target (string-append "lib/" (basename file)))) (unless (file-exists? target) (symlink file target)))) (append-map (match-lambda ((label . dir) (find-files dir "\\.jar$"))) inputs)) #t)) (replace 'install (install-jars "dist"))))) (inputs (list java-asm)) (native-inputs (list java-junit)) (home-page "https://github.com/nhatminhle/cofoja") (synopsis "Contracts for Java") (description "Contracts for Java, or Cofoja for short, is a contract programming framework and test tool for Java, which uses annotation processing and bytecode instrumentation to provide run-time checking. (In particular, this is not a static analysis tool.)") (license license:lgpl3+))) (define-public java-aopalliance (package (name "java-aopalliance") (version "1.0") (source (origin (method git-fetch) ;; Note: this git repository is not official, but contains the ;; source code that is in the CVS repository. Downloading the ;; tarball from sourceforge is undeterministic, and the cvs download ;; fails. (uri (git-reference (url "https://github.com/hoverruan/aopalliance") (commit "0d7757ae204e5876f69431421fe9bc2a4f01e8a0"))) (file-name (string-append name "-" version)) (sha256 (base32 "0rsg2b0v3hxlq2yk1i3m2gw3xwq689j3cwx9wbxvqfpdcjbca0qr")))) (build-system ant-build-system) (arguments `(#:jar-name "java-aopalliance.jar" #:jdk ,icedtea-8 #:tests? #f; no tests #:source-dir "aopalliance/src/main" #:phases (modify-phases %standard-phases (add-before 'install 'create-pom (generate-pom.xml "pom.xml" "aopalliance" "aopalliance" ,version)) (replace 'install (install-from-pom "pom.xml"))))) (home-page "http://aopalliance.sourceforge.net") (synopsis "Aspect-Oriented Programming") (description "The AOP Alliance project is a joint project between several software engineering people who are interested in Aspect-Oriented Programming (AOP) and Java.") (license license:public-domain))) (define-public java-javax-inject (package (name "java-javax-inject") (version "1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/javax-inject/javax-inject") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "1rspl0nkvk1jif6nccikw93xic6ljj2b6kpy2mffwi2mnvc13j7x")))) (build-system ant-build-system) (arguments `(#:jar-name "java-javax-inject.jar" #:tests? #f; no tests #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (home-page "https://github.com/javax-inject/javax-inject") (synopsis "JSR-330: Dependency Injection for Java") (description "This package specifies a means for obtaining objects in such a way as to maximize reusability, testability and maintainability compared to traditional approaches such as constructors, factories, and service locators (e.g., JNDI). This process, known as dependency injection, is beneficial to most nontrivial applications. Many types depend on other types. For example, a @var{Stopwatch} might depend on a @var{TimeSource}. The types on which a type depends are known as its dependencies. The process of finding an instance of a dependency to use at run time is known as resolving the dependency. If no such instance can be found, the dependency is said to be unsatisfied, and the application is broken.") (license license:asl2.0))) (define-public java-guice (package (name "java-guice") (version "4.1") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/google/guice") (commit version))) (file-name (git-file-name name version)) (modules '((guix build utils))) (snippet `(begin (for-each delete-file (find-files "." ".*.jar")) #t)) (sha256 (base32 "18im5hdfl4q1b9chww2s1ii60sn3ydyyar32a2sf2p2g8zlbdswq")))) (build-system ant-build-system) (arguments `(#:jar-name "java-guice.jar" #:jdk ,icedtea-8 #:tests? #f; FIXME: tests are not in a java sub directory #:source-dir "core/src" #:phases (modify-phases %standard-phases (add-after 'unpack 'make-files-writable (lambda _ (for-each make-file-writable (find-files ".")) #t)) (replace 'install (install-from-pom "core/pom.xml"))))) (propagated-inputs (list java-aopalliance java-asm java-cglib java-guava java-javax-inject java-guice-parent-pom)) (home-page "https://github.com/google/guice") (synopsis "Lightweight dependency injection framework") (description "Guice is a lightweight dependency injection framework for Java 6 and above.") (license license:asl2.0))) (define-public java-guice-servlet (package (inherit java-guice) (name "java-guice-servlet") (arguments `(#:jar-name "guice-servlet.jar" #:source-dir "extensions/servlet/src/" #:jdk ,icedtea-8 #:tests? #f ; FIXME: not in a java subdir #:phases (modify-phases %standard-phases (add-after 'unpack 'make-files-writable (lambda _ (for-each make-file-writable (find-files ".")) #t))))) (inputs `(("guice" ,java-guice) ("servlet" ,java-classpathx-servletapi) ,@(package-inputs java-guice))))) (define java-guice-parent-pom (package (inherit java-guice) (name "java-guice-parent-pom") (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (add-after 'install 'install-extensions (install-pom-file "extensions/pom.xml")) (replace 'install (install-pom-file "pom.xml"))))) (propagated-inputs `(("java-google-parent-pom" ,java-google-parent-pom-5))))) (define java-google-parent-pom-5 (package (name "java-google-parent-pom") (version "5") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/google/google-maven-parents") (commit (string-append "google-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0zb7hx24p8k8rfdvix2vsbfqn73jhrycdndvhf8j5gbii9wbqibv")))) (build-system ant-build-system) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (delete 'configure) (delete 'build) (replace 'install (install-pom-file "pom.xml"))))) (home-page "https://github.com/google/google-maven-parents") (synopsis "Google parent pom") (description "This package contains the Maven parent POM for other Google Java projects.") (license license:asl2.0))) (define-public java-assertj (package (name "java-assertj") (version "3.8.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/joel-costigliola/assertj-core") (commit (string-append "assertj-core-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1k35cg2in7pzk4pbdjryr0pll5lgk1r6ngrn0j8cdlgi7w8zh2d1")))) (build-system ant-build-system) (arguments `(#:jar-name "java-assertj.jar" #:jdk ,icedtea-8 #:source-dir "src/main/java" #:tests? #f)); depends on tng-junit which depends on assertj (inputs `(("cglib" ,java-cglib) ("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (native-inputs `(("mockito" ,java-mockito-1))) (home-page "https://joel-costigliola.github.io/assertj/index.html") (synopsis "Fluent assertions for java") (description "AssertJ core is a Java library that provides a fluent interface for writing assertions. Its main goal is to improve test code readability and make maintenance of tests easier.") (license license:asl2.0))) (define-public java-jboss-javassist (package (name "java-jboss-javassist") (version "3.21.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jboss-javassist/javassist") (commit (string-append "rel_" (string-map (lambda (x) (if (eq? x #\.) #\_ x)) version) "_ga")))) (file-name (git-file-name name version)) (sha256 (base32 "0h3zlcyqiaq01fspm69h7vki67raw305w89p4ha8vlhpzw02qifm")) (modules '((guix build utils))) (snippet '(begin (delete-file "javassist.jar"))))) (build-system ant-build-system) (arguments `(#:jar-name "java-jboss-javassist.jar" #:jdk ,icedtea-8 #:source-dir "src/main" #:tests? #f; FIXME: requires junit-awtui and junit-swingui from junit3 #:phases (modify-phases %standard-phases (add-after 'unpack 'make-files-writable (lambda _ (for-each make-file-writable (find-files ".")) #t))))) (native-inputs `(("junit" ,java-junit))) (home-page "https://github.com/jboss-javassist/javassist") (synopsis "Java bytecode engineering toolkit") (description "Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation simple. It is a class library for editing bytecodes in Java; it enables Java programs to define a new class at runtime and to modify a class file when the JVM loads it.") (license (list license:gpl2 license:cddl1.0)))); either gpl2 only or cddl. (define-public java-jcommander (package (name "java-jcommander") (version "1.71") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/cbeust/jcommander") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "12vcpc19sd7jhvjgp7xz1qjanfix162xb3x2q5zah93rjklj1h57")))) (build-system ant-build-system) (arguments `(#:jar-name "java-jcommander.jar" #:jdk ,icedtea-8 #:tests? #f; requires testng which depends on jcommander #:source-dir "src/main/java")) (home-page "https://jcommander.org") (synopsis "Command line parameters parser") (description "JCommander is a very small Java framework that makes it trivial to parse command line parameters. Parameters are declared with annotations.") (license license:asl2.0))) (define-public java-bsh (package (name "java-bsh") (version "2.0b6") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/beanshell/beanshell") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 "0kz3f0xjack6c9syssi4qjw1rbd3q5963sk5pmr143hiibxa9csw")) (modules '((guix build utils))) (snippet '(begin ;; Delete bundled third-party jar archives. (for-each delete-file (find-files "." ".*.jar$")) (for-each (lambda (file) (chmod file #o644)) (find-files "." ".")) #t)))) (build-system ant-build-system) (arguments `(#:build-target "jarall" #:test-target "junit-tests-all" #:make-flags (list "-DDATE" "(no date for reproducibility)") #:phases (modify-phases %standard-phases (replace 'install (install-from-pom "pom.xml"))))) (inputs (list java-classpathx-servletapi java-commons-bsf)) (native-inputs (list java-junit javacc-3)) (home-page "http://beanshell.org/") (synopsis "Lightweight Scripting for Java") (description "BeanShell is a small, free, embeddable Java source interpreter with object scripting language features, written in Java. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like those in Perl and JavaScript.") (license license:asl2.0))) (define-public java-fest-util (package (name "java-fest-util") (version "1.2.5") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/alexruiz/fest-util/") (commit (string-append "fest-util-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "02kgal7v85snyyvcsxvn4qphid455f4smh2wri1il8d9asw0djbz")))) (build-system ant-build-system) (arguments `(#:jar-name "java-fest-util.jar" #:source-dir "src/main/java")) (native-inputs `(("junit" ,java-junit) ("hamcrest" ,java-hamcrest-core))) (home-page "https://github.com/alexruiz/fest-util") (synopsis "FEST common utilities") (description "Common utilities used in all FEST module.") (license license:asl2.0))) (define-public java-fest-test (package (name "java-fest-test") (version "2.1.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/alexruiz/fest-test/") (commit (string-append "fest-test-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "0mg1d2jfh7kbx2c40dchbjr6d8pv59snsyb13mfxsr7xk5n69qbn")))) (build-system ant-build-system) (arguments `(#:jar-name "java-fest-test.jar" #:source-dir "src/main/java" #:tests? #f)); no tests (inputs `(("junit" ,java-junit))) (home-page "https://github.com/alexruiz/fest-test") (synopsis "Common FEST testing infrastructure") (description "Fest-test contains the common FEST testing infrastructure.") (license license:asl2.0))) (define-public java-fest-assert (package (name "java-fest-assert") (version "2.0M10") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/alexruiz/fest-assert-2.x/") (commit (string-append "fest-assert-core-" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1cp8zzyag3s85fz2w68sda9zzaal1y5f9wl8g72wkm12an40w6by")))) (build-system ant-build-system) (arguments `(#:jar-name "java-fest-assert.jar" #:source-dir "src/main/java" #:test-exclude (list "**/Abstract*.java" "**/*BaseTest.java" ;; Unable to set MockitoNamingPolicy on cglib generator which creates FastClasses "**/MessageFormatter_format_Test.java" "**/internal/*/*_assert*_Test.java"))) (inputs (list java-fest-util)) (native-inputs (list java-junit java-fest-test java-hamcrest-core java-mockito-1 java-cglib java-objenesis java-asm)) (home-page "https://github.com/alexruiz/fest-assert-2.x") (synopsis "FEST fluent assertions") (description "FEST-Assert provides a fluent interface for assertions.") (license license:asl2.0))) (define-public java-testng (package (name "java-testng") (version "6.14.3") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/cbeust/testng") (commit version))) (file-name (string-append name "-" version "-checkout")) (sha256 (base32 "0y6vq30i5g276kw0v2bhbvci22ijg7ax49ap2611yqlhbs4d6dqv")))) (build-system ant-build-system) (arguments `(#:jdk ,icedtea-8; java.util.function #:jar-name "java-testng.jar" #:source-dir "src/main/java" #:phases (modify-phases %standard-phases ;; FIXME: I don't know why these tests fail (add-after 'unpack 'delete-failing-tests (lambda _ (substitute* "src/test/resources/testng.xml" (("") "") (("") "")) #t)) ;; We don't have groovy (add-after 'unpack 'delete-groovy-tests (lambda _ (delete-file-recursively "src/test/java/test/dependent/issue1648/") (substitute* "src/test/resources/testng.xml" (("") "")) #t)) (add-before 'build 'copy-resources (lambda _ (copy-recursively "src/main/resources" "build/classes") #t)) (add-before 'check 'copy-test-resources (lambda _ (copy-recursively "src/test/resources" "build/test-classes") #t)) (replace 'check (lambda _ (invoke "ant" "compile-tests") ;; we don't have groovy (substitute* "src/test/resources/testng.xml" (("") "")) (invoke "java" "-cp" (string-append (getenv "CLASSPATH") ":build/classes" ":build/test-classes") "-Dtest.resources.dir=src/test/resources" "org.testng.TestNG" "src/test/resources/testng.xml")))))) (propagated-inputs `(("junit" ,java-junit) ("java-jsr305" ,java-jsr305) ("java-bsh" ,java-bsh) ("java-jcommander" ,java-jcommander) ("java-guice" ,java-guice) ("snakeyaml" ,java-snakeyaml))) (native-inputs `(("guava" ,java-guava) ("java-javax-inject" ,java-javax-inject) ("java-hamcrest" ,java-hamcrest-all) ("java-assertj" ,java-assertj) ("java-mockito" ,java-mockito-1) ("cglib" ,java-cglib) ("asm" ,java-asm) ("aopalliance" ,java-aopalliance))) (home-page "https://testng.org") (synopsis "Testing framework") (description "TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use.") (license license:asl2.0))) (define-public java-jnacl (let ((commit "094e819afdd63ea81a499b3bcb42a271006bebd9") (revision "2")) (package (name "java-jnacl") (version (string-append "0.1.0-" revision "." (string-take commit 7))) (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/neilalexander/jnacl") (commit commit))) (file-name (git-file-name name version)) (sha256 (base32 "1d6g6xhn83byv5943n7935wwjsk0ibk0qdvqgr699qqgqqmwisbb")))) (build-system ant-build-system) (arguments `(#:jar-name "jnacl.jar" #:source-dir "src/main/java" #:jdk ,icedtea-8 #:phases (modify-phases %standard-phases (add-before 'build 'fix-tests (lambda _ (substitute* '("src/test/java/com/neilalexander/jnacl/NaClTest.java" "src/test/java/com/neilalexander/jnacl/NaclSecretBoxTest.java") (("assertions.Assertions") "assertions.api.Assertions")) #t)) (replace 'check (lambda _ (invoke "ant" "compile-tests") (invoke "java" "-cp" (string-append (getenv "CLASSPATH") ":build/classes" ":build/test-classes") "org.testng.TestNG" "-testclass" "build/test-classes/com/neilalexander/jnacl/NaclSecretBoxTest.class") (invoke "java" "-cp" (string-append (getenv "CLASSPATH") ":build/classes" ":build/test-classes") "org.testng.TestNG" "-testclass" "build/test-classes/com/neilalexander/jnacl/NaClTest.class")))))) (native-inputs (list java-testng java-fest-util java-fest-assert)) (home-page "https://github.com/neilalexander/jnacl") (synopsis "Java implementation of NaCl") (description "Pure Java implementation of the NaCl: Networking and Cryptography library.") (license license:bsd-2)))) (define-public java-mvel2 (package (name "java-mvel2") (version "2.3.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/mvel/mvel/archive/mvel2-" version ".Final.tar.gz")) (sha256 (base32 "01ph5s9gm16l2qz58lg21w6fna7xmmrj7f9bzqr1jim7h9557d3z")))) (build-system ant-build-system) (arguments `(#:jar-name "mvel2.jar" #:source-dir "src/main/java" #:test-exclude (list "**/Abstract*.java" ;; Base class with no tests "**/MVELThreadTest.java") #:phases (modify-phases %standard-phases (add-after 'install 'install-bin (lambda* (#:key outputs #:allow-other-keys) (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) (mkdir-p bin) (with-output-to-file (string-append bin "/mvel2") (lambda _ (display (string-append "#!" (which "bash") "\n" "if [ \"$#\" -ne \"2\" ]; then\n" "echo 'Usage: mvel2