From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hartmut Goebel Subject: [PATCH 05/12] gnu: Add java-plexus-interpolation. Date: Fri, 9 Sep 2016 16:51:05 +0200 Message-ID: <1473432672-21007-6-git-send-email-h.goebel@crazy-compilers.com> References: <1473432672-21007-1-git-send-email-h.goebel@crazy-compilers.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56606) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biN9O-0007Bm-U2 for guix-devel@gnu.org; Fri, 09 Sep 2016 10:51:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1biN9L-0002yq-QK for guix-devel@gnu.org; Fri, 09 Sep 2016 10:51:30 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:36478) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1biN9L-0002yW-Jv for guix-devel@gnu.org; Fri, 09 Sep 2016 10:51:27 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 3sW0Wz0dK1z3hjTH for ; Fri, 9 Sep 2016 16:51:27 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3sW0Wz0XmCzvlQ6 for ; Fri, 9 Sep 2016 16:51:27 +0200 (CEST) Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id A30dKKjd3mWk for ; Fri, 9 Sep 2016 16:51:25 +0200 (CEST) Received: from hermia.goebel-consult.de (ppp-188-174-128-63.dynamic.mnet-online.de [188.174.128.63]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS for ; Fri, 9 Sep 2016 16:51:25 +0200 (CEST) Received: from thisbe.goebel-consult.de.de (hermia.goebel-consult.de [192.168.110.7]) by hermia.goebel-consult.de (Postfix) with ESMTP id A7FD560DE0 for ; Fri, 9 Sep 2016 16:51:15 +0200 (CEST) In-Reply-To: <1473432672-21007-1-git-send-email-h.goebel@crazy-compilers.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/java.scm (java-plexus-interplation): 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 0dfd9fa..3687c7e 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1288,3 +1288,31 @@ sharing common test data, and test runners for running tests.") (description "Various Java utility classes to ease working with strings, files, command lines, XML and more.") (license license:asl2.0))) + +(define-public java-plexus-interpolation + (package + (name "java-plexus-interpolation") + (version "1.23") + (source (origin + (method url-fetch) + (uri (codehaus-plexus-url "interpolation" version)) + (sha256 (base32 "1w79ljwk42ymrgy8kqxq4l82pgdj6287gabpfnpkyzbrnclsnfrp")))) + (build-system ant-build-system) + ; todo: javadoc + (arguments + `(#:tests? #f ; todo: tests + #:jar-name (string-append "plexus-interpolation-" ,version ".jar") + #:src-dir "src/main")) + (native-inputs + `(("java-junit" ,java-junit))) + (home-page "http://codehaus-plexus.github.io/plexus-interpolation/") + (synopsis "Java components for interpolating ${} strings and the like") + (description "Plexus interpolator is the outgrowth of multiple iterations +of development focused on providing a more modular, flexible interpolation +framework for the expression language style commonly seen in Maven, Plexus, +and other related projects. + +It has its foundation in the org.codehaus.plexus.utils.interpolation package +within plexus-utils, but has been separated in order to allow these two +libraries to vary independently of one another.") + (license license:asl2.0))) -- 2.7.4