[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#31333] [PATCH 20/22] gnu: Add groovy-testng.
From: |
Julien Lepiller |
Subject: |
[bug#31333] [PATCH 20/22] gnu: Add groovy-testng. |
Date: |
Tue, 1 May 2018 17:44:47 +0200 |
* gnu/packages/groovy.scm (groovy-testng): New variable.
---
gnu/packages/groovy.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/groovy.scm b/gnu/packages/groovy.scm
index 25a0cd24f..8723ffdd2 100644
--- a/gnu/packages/groovy.scm
+++ b/gnu/packages/groovy.scm
@@ -996,3 +996,41 @@ version of Java servlets.")))
(synopsis "Groovy SQL library")
(description "This package contains a facade over Java's normal JDBC APIs
providing greatly simplified resource management and result set handling.")))
+
+(define groovy-testng
+ (package
+ (inherit groovy-bootstrap)
+ (name "groovy-testng")
+ (arguments
+ `(#:jar-name "groovy-testng.jar"
+ #:tests? #f; No tests
+ #:jdk ,icedtea-8
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'configure 'chdir
+ (lambda _
+ (chdir "subprojects/groovy-testng")))
+ (add-before 'build 'copy-resources
+ (lambda _
+ (copy-recursively "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 "src/main"
+ ".*\\.(groovy|java)$")))
+ (zero? (system* "jar" "-cf" "build/jar/groovy-testng.jar"
+ "-C" "build/classes" "."))))))))
+ (native-inputs
+ `(("groovy-bootstrap" ,groovy-bootstrap)
+ ("groovy-test" ,groovy-test)
+ ("groovy-tests-bootstrap" ,groovy-tests-bootstrap)
+ ,@(package-native-inputs groovy-java-bootstrap)))
+ (synopsis "Groovy testing framework")
+ (description "This package contains integration code for running TestNG
+tests in Groovy.")))
--
2.17.0
- [bug#31333] [PATCH 17/22] gnu: Add groovy-nio., (continued)
- [bug#31333] [PATCH 17/22] gnu: Add groovy-nio., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 19/22] gnu: Add groovy-sql., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 18/22] gnu: Add groovy-servlet., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 22/22] gnu: Add groovy., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 21/22] gnu: Add groovy-macro., Julien Lepiller, 2018/05/01
- [bug#31333] [PATCH 20/22] gnu: Add groovy-testng.,
Julien Lepiller <=
- [bug#31333] [PATCH 01/22] gnu: Add groovy-java-bootstrap., Danny Milosavljevic, 2018/05/07
- [bug#31333] [PATCH 01/22] gnu: Add groovy-java-bootstrap., Björn Höfling, 2018/05/07
- bug#31333: [PATCH] Add groovy, Julien Lepiller, 2018/05/09