From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45913) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDXTu-0002c1-D9 for guix-patches@gnu.org; Tue, 01 May 2018 11:46:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDXTq-0000SW-AI for guix-patches@gnu.org; Tue, 01 May 2018 11:46:18 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38014) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDXTq-0000S8-6Y for guix-patches@gnu.org; Tue, 01 May 2018 11:46:14 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fDXTp-000646-VW for guix-patches@gnu.org; Tue, 01 May 2018 11:46:14 -0400 Subject: [bug#31333] [PATCH 20/22] gnu: Add groovy-testng. Resent-Message-ID: From: Julien Lepiller Date: Tue, 1 May 2018 17:44:47 +0200 Message-Id: <20180501154449.3531-20-julien@lepiller.eu> In-Reply-To: <20180501154449.3531-1-julien@lepiller.eu> References: <20180501174136.1c411b1a@lepiller.eu> <20180501154449.3531-1-julien@lepiller.eu> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 31333@debbugs.gnu.org * 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