From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39403) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzqSg-0005L8-1J for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzqSb-0004ku-Vx for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40683) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dzqSb-0004kg-SG for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dzqSb-0006Df-K8 for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:05 -0400 Subject: [bug#28707] [PATCH 09/23] gnu: Add java-aqute-libg. Resent-Message-ID: From: julien@lepiller.eu Date: Wed, 4 Oct 2017 22:37:21 +0200 Message-Id: <20171004203735.21155-9-julien@lepiller.eu> In-Reply-To: <20171004203735.21155-1-julien@lepiller.eu> References: <20171004223317.2e824152@lepiller.eu> <20171004203735.21155-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: 28707@debbugs.gnu.org From: Julien Lepiller * gnu/packages/java.scm (java-aqute-libg): New variable. --- gnu/packages/java.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 4d23b8cdd..4bdb8241d 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -5433,3 +5433,17 @@ package contains utilities for obtaining services via the Java SE 6 headers based on analyzing the class code, it verifies the project settings, it manages project dependencies, gives diffs jars, and much more.") (license license:asl2.0))) + +(define-public java-aqute-libg + (package + (inherit java-aqute-bnd-annotation) + (name "java-aqute-libg") + (arguments + `(#:jar-name "java-aqute-libg.jar" + #:source-dir "aQute.libg/src" + #:tests? #f)); FIXME: tests are in "aQute.libg/test", not in a java directory + (inputs + `(("slf4j" ,java-slf4j-api) + ("osgi-annot" ,java-osgi-annotation) + ("java-osgi-cmpn" ,java-osgi-cmpn) + ("osgi" ,java-osgi-core))))) -- 2.14.2