From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:56376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hMXpE-0006U3-K5 for guix-patches@gnu.org; Fri, 03 May 2019 09:02:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hMXpD-0000f9-K1 for guix-patches@gnu.org; Fri, 03 May 2019 09:02:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:34523) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hMXpD-0000f0-Fj for guix-patches@gnu.org; Fri, 03 May 2019 09:02:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hMXpD-0005t3-AC for guix-patches@gnu.org; Fri, 03 May 2019 09:02:03 -0400 Subject: [bug#35545] [PATCH 03/17] gnu: Add java-jsonp-impl. Resent-Message-ID: From: Julien Lepiller Date: Fri, 3 May 2019 15:01:20 +0200 Message-Id: <20190503130134.24788-3-julien@lepiller.eu> In-Reply-To: <20190503130134.24788-1-julien@lepiller.eu> References: <20190503145820.606f37db@sybil.lepiller.eu> <20190503130134.24788-1-julien@lepiller.eu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 35545@debbugs.gnu.org * gnu/packages/java.scm (java-jsonp-impl): New variable. --- gnu/packages/java.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 7fb619cc40..d0bbc4b682 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -11083,3 +11083,18 @@ and allows to build a Java object model for JSON text using API classes (similar to DOM API for XML).") (license (list license:gpl2 license:epl2.0)))) + +(define-public java-jsonp-impl + (package + (inherit java-jsonp-api) + (name "java-jsonp-impl") + (arguments + `(#:jar-name "jsonp-impl.jar" + #:tests? #f + #:source-dir "impl/src/main/java" + #:test-dir "impl/src/test")) + (propagated-inputs + `(("java-jsonp-api" ,java-jsonp-api))) + (description "JSON Processing (JSON-P) is a Java API to process (e.g. +parse, generate, transform and query) JSON messages. This package contains +a reference implementation of that API."))) -- 2.21.0