From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57568) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ekeCf-0005zY-41 for guix-patches@gnu.org; Sat, 10 Feb 2018 18:05:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ekeCd-00071y-3x for guix-patches@gnu.org; Sat, 10 Feb 2018 18:05:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57720) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ekeCd-00071j-0z for guix-patches@gnu.org; Sat, 10 Feb 2018 18:05:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ekeCc-00009Q-Oy for guix-patches@gnu.org; Sat, 10 Feb 2018 18:05:02 -0500 Subject: [bug#30417] [PATCH 03/11] gnu: Add java-plexus-compiler-api. Resent-Message-ID: From: Julien Lepiller Date: Sun, 11 Feb 2018 00:04:30 +0100 Message-Id: <20180210230438.26794-3-julien@lepiller.eu> In-Reply-To: <20180210234811.40ddec07@lepiller.eu> References: <20180210234811.40ddec07@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: 30417@debbugs.gnu.org * gnu/packages/java.scm (java-plexus-compiler-api): New variable. --- gnu/packages/java.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 8b51f7122..55233b7ba 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2709,6 +2709,34 @@ archives (jar).") and decryption.") (license license:asl2.0))) +(define-public java-plexus-compiler-api + (package + (name "java-plexus-compiler-api") + (version "2.8.2") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/codehaus-plexus/plexus-compiler" + "/archive/plexus-compiler-" version ".tar.gz")) + (sha256 + (base32 + "0g3x26pymcdnfnwv2a1i57pd5s26f5zqfi1rdy98z1bn01klx25k")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "plexus-compiler-api.jar" + #:source-dir "plexus-compiler-api/src/main/java" + #:jdk ,icedtea-8 + #:test-dir "plexus-compiler-api/src/test")) + (inputs + `(("java-plexus-container-default" ,java-plexus-container-default) + ("java-plexus-util" ,java-plexus-utils))) + (native-inputs + `(("java-junit" ,java-junit))) + (home-page "https://github.com/codehaus-plexus/plexus-compiler") + (synopsis "Plexus Compilers component's API to manipulate compilers") + (description "This package contains the API used by components to manipulate +compilers.") + (license license:asl2.0))) + (define-public java-asm (package (name "java-asm") -- 2.16.1