From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:45663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDXTj-0002Ss-TO for guix-patches@gnu.org; Tue, 01 May 2018 11:46:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fDXTi-0000HF-LL for guix-patches@gnu.org; Tue, 01 May 2018 11:46:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37999) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fDXTi-0000H8-Hr for guix-patches@gnu.org; Tue, 01 May 2018 11:46:06 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fDXTi-00062I-Ay for guix-patches@gnu.org; Tue, 01 May 2018 11:46:06 -0400 Subject: [bug#31333] [PATCH 07/22] gnu: Add groovy-groovydoc. Resent-Message-ID: From: Julien Lepiller Date: Tue, 1 May 2018 17:44:34 +0200 Message-Id: <20180501154449.3531-7-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-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