mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add groovy-ant.
* gnu/packages/groovy.scm (groovy-ant): New variable.
This commit is contained in:
parent
f14a197811
commit
b869c5ceaa
1 changed files with 58 additions and 0 deletions
|
@ -376,3 +376,61 @@ (define groovy-groovydoc
|
||||||
(synopsis "Groovy documentation generation")
|
(synopsis "Groovy documentation generation")
|
||||||
(description "This package contains the groovy documentation generator,
|
(description "This package contains the groovy documentation generator,
|
||||||
similar to javadoc.")))
|
similar to javadoc.")))
|
||||||
|
|
||||||
|
(define groovy-ant
|
||||||
|
(package
|
||||||
|
(inherit groovy-bootstrap)
|
||||||
|
(name "groovy-ant")
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "groovy-ant.jar"
|
||||||
|
#:jdk ,icedtea-8
|
||||||
|
#:test-dir "src/test"
|
||||||
|
;; FIXME: Excluding all tests because they fail
|
||||||
|
#:test-exclude (list
|
||||||
|
"**/GroovyTest.java"
|
||||||
|
"**/GroovycTest.java")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'chdir
|
||||||
|
(lambda _
|
||||||
|
(chdir "subprojects/groovy-ant")
|
||||||
|
#t))
|
||||||
|
(add-before 'build 'copy-resources
|
||||||
|
(lambda _
|
||||||
|
(copy-recursively "src/main/resources" "build/classes")
|
||||||
|
#t))
|
||||||
|
(replace 'build
|
||||||
|
(lambda _
|
||||||
|
(mkdir-p "build/classes")
|
||||||
|
(mkdir-p "build/jar")
|
||||||
|
(apply invoke "java" "-cp" (getenv "CLASSPATH")
|
||||||
|
"org.codehaus.groovy.tools.FileSystemCompiler"
|
||||||
|
"-d" "build/classes" "-j"; joint compilation
|
||||||
|
(find-files "src/main" ".*\\.(groovy|java)$"))
|
||||||
|
(invoke "jar" "-cf" "build/jar/groovy-ant.jar"
|
||||||
|
"-C" "build/classes" ".")
|
||||||
|
#t))
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
(mkdir-p "build/test-classes")
|
||||||
|
(substitute* "build.xml"
|
||||||
|
(("depends=\"compile-tests\"") "depends=\"\"")
|
||||||
|
(("}/java") "}/groovy"))
|
||||||
|
(apply invoke "java" "-cp"
|
||||||
|
(string-append (getenv "CLASSPATH") ":build/classes")
|
||||||
|
"org.codehaus.groovy.tools.FileSystemCompiler"
|
||||||
|
"-d" "build/test-classes" "-j"
|
||||||
|
(find-files "src/test" ".*\\.(groovy|java)$"))
|
||||||
|
(invoke "ant" "check")
|
||||||
|
#t)))))
|
||||||
|
(inputs
|
||||||
|
`(("groovy-groovydoc" ,groovy-groovydoc)
|
||||||
|
,@(package-inputs groovy-bootstrap)))
|
||||||
|
(native-inputs
|
||||||
|
`(("groovy-bootstrap" ,groovy-bootstrap)
|
||||||
|
("groovy-xml" ,groovy-xml)
|
||||||
|
("groovy-test" ,groovy-test)
|
||||||
|
("groovy-tests-bootstrap" ,groovy-tests-bootstrap)
|
||||||
|
,@(package-native-inputs java-groovy-bootstrap)))
|
||||||
|
(synopsis "Groovy ant tasks")
|
||||||
|
(description "This package contains groovy-related ant tasks definitions.")))
|
||||||
|
|
Loading…
Reference in a new issue