From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eGTu0-0007QX-Kh for guix-patches@gnu.org; Sun, 19 Nov 2017 13:01:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eGTtz-0003j7-4c for guix-patches@gnu.org; Sun, 19 Nov 2017 13:01:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:39197) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eGTtz-0003iy-0E for guix-patches@gnu.org; Sun, 19 Nov 2017 13:01:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eGTty-0006P3-OE for guix-patches@gnu.org; Sun, 19 Nov 2017 13:01:06 -0500 Subject: [bug#29359] [PATCH 11/31] gnu: Add java-cdi-api. Resent-Message-ID: From: Julien Lepiller Date: Sun, 19 Nov 2017 18:57:45 +0100 Message-Id: <20171119175805.902-11-julien@lepiller.eu> In-Reply-To: <20171119175805.902-1-julien@lepiller.eu> References: <20171119175805.902-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: 29359@debbugs.gnu.org * gnu/packages/java.scm (java-cdi-api): New variable. --- gnu/packages/java.scm | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 212813c43..3a08d367c 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -7791,3 +7791,46 @@ XPath. This language is used with JavaServer Pages (JSP).") API. Interceptors are used to interpose on business method invocations and specific events.") (license (list license:gpl2 license:cddl1.1)))); either gpl2 only or cddl. + +(define-public java-cdi-api + (package + (name "java-cdi-api") + (version "2.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/cdi-spec/cdi/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1iv8b8bp07c5kmqic14jsr868vycjv4qv02lf3pkgp9z21mnfg5y")))) + (build-system ant-build-system) + (arguments + `(#:source-dir "api/src/main/java" + #:jar-name "java-cdi-api.jar" + #:test-dir "api/src/test" + #:jdk ,icedtea-8 + #:phases + (modify-phases %standard-phases + (replace 'check + (lambda _ + (system* "ant" "compile-tests") + ;; This fails though + (system* "java" "-cp" (string-append (getenv "CLASSPATH") + ":build/classes" + ":build/test-classes") + "org.testng.TestNG" "-verbose" "5" "-testclass" + "build/test-classes/org/jboss/cdi/api/test/CDITest.class") + #t))))) + (inputs + `(("java-javax-inject" ,java-javax-inject) + ("java-jboss-el-api-spec" ,java-jboss-el-api-spec) + ("java-jboss-interceptors-api-spec" ,java-jboss-interceptors-api-spec))) + (native-inputs + `(("java-testng" ,java-testng) + ("java-hamcrest-core" ,java-hamcrest-core))) + (home-page "http://cdi-spec.org/") + (synopsis "Contexts and Dependency Injection APIs") + (description "Java-cdi-api contains the required APIs for Contexts and +Dependency Injection (CDI).") + (license license:asl2.0))) -- 2.15.0