[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31333] [PATCH 07/22] gnu: Add groovy-groovydoc.
From: |
Julien Lepiller |
Subject: |
[bug#31333] [PATCH 07/22] gnu: Add groovy-groovydoc. |
Date: |
Tue, 1 May 2018 17:44:34 +0200 |
* gnu/packages/groovy.scm (groovy-groovydoc): New variable.
---
gnu/packages/groovy.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/groovy.scm b/gnu/packages/groovy.scm
index 53319a82b..e176c9b44 100644
--- a/gnu/packages/groovy.scm
+++ b/gnu/packages/groovy.scm
@@ -335,3 +335,43 @@ other groovy submodules.")))
(description "This package contains a template framework which is
well-suited to applications where the text to be generated follows the form of
a static template.")))
+
+(define groovy-groovydoc
+ (package
+ (inherit groovy-bootstrap)
+ (name "groovy-groovydoc")
+ (arguments
+ `(#:jar-name "groovy-groovydoc.jar"
+ #:jdk ,icedtea-8
+ #:test-dir "subprojects/groovy-groovydoc/src/test"
+ #:tests? #f; Requires groovy-ant which is a circular dependency
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'copy-resources
+ (lambda _
+ (copy-recursively
"subprojects/groovy-groovydoc/src/main/resources"
+ "build/classes")))
+ (replace 'build
+ (lambda _
+ (mkdir-p "build/classes")
+ (mkdir-p "build/jar")
+ (and
+ (zero? (apply system* "java" "-cp" (getenv "CLASSPATH")
+ "org.codehaus.groovy.tools.FileSystemCompiler"
+ "-d" "build/classes"
+ "-j"; joint compilation
+ (find-files
"subprojects/groovy-groovydoc/src/main"
+ ".*\\.(groovy|java)$")))
+ (zero? (system* "jar" "-cf" "build/jar/groovy-groovydoc.jar"
+ "-C" "build/classes" "."))))))))
+ (inputs
+ `(("groovy-templates" ,groovy-templates)
+ ,@(package-inputs groovy-bootstrap)))
+ (native-inputs
+ `(("groovy-bootstrap" ,groovy-bootstrap)
+ ("groovy-test" ,groovy-test)
+ ("groovy-tests-bootstrap" ,groovy-tests-bootstrap)
+ ,@(package-native-inputs groovy-java-bootstrap)))
+ (synopsis "Groovy documentation generation")
+ (description "This package contains the groovy documentation generator,
+similar to javadoc.")))
--
2.17.0
- [bug#31333] [PATCH 06/22] gnu: Add groovy-templates., (continued)
- [bug#31333] [PATCH 09/22] gnu: Add groovy-bsf., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 10/22] gnu: Add groovy-swing., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 12/22] gnu: Add groovy-docgenerator., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 07/22] gnu: Add groovy-groovydoc.,
Julien Lepiller <=
- [bug#31333] [PATCH 13/22] gnu: Add groovy-groovysh., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 14/22] gnu: Add groovy-jmx., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 15/22] gnu: Add groovy-json., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 16/22] gnu: Add groovy-jsr223., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 04/22] gnu: Add groovy-test., Julien Lepiller, 2018/05/01