From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39266) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dzqSc-0005FL-Rd for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dzqSZ-0004hD-L9 for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40678) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dzqSZ-0004h6-Hy for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dzqSZ-0006D3-9k for guix-patches@gnu.org; Wed, 04 Oct 2017 16:40:03 -0400 Subject: [bug#28707] [PATCH 04/23] gnu: Add java-ops4j-base-util. Resent-Message-ID: From: julien@lepiller.eu Date: Wed, 4 Oct 2017 22:37:16 +0200 Message-Id: <20171004203735.21155-4-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-ops4j-base-util): New variable. --- gnu/packages/java.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 96ef7c033..1c7b5f92e 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -5347,3 +5347,19 @@ package contains utilities and extensions related to monitoring."))) ("hamcrest" ,java-hamcrest-core))) (description "OPS4J stands for Open Participation Software for Java. This package contains utilities and extensions related to handling streams and files."))) + +(define-public java-ops4j-base-util + (package + (inherit java-ops4j-base-lang) + (name "java-ops4j-base-util") + (arguments + `(#:jar-name "java-ops4j-base-util.jar" + #:source-dir "ops4j-base-util/src/main/java" + #:test-dir "ops4j-base-util/src/test")) + (inputs + `(("lang" ,java-ops4j-base-lang))) + (native-inputs + `(("junit" ,java-junit))) + (description "OPS4J stands for Open Participation Software for Java. This +package contains utilities and extensions related to environment, i18n and +mime types."))) -- 2.14.2