From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33124) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlffp-0005xM-NZ for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlffm-000686-7E for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:13 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58182) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlffm-00067B-1S for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:10 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlffl-000703-My for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:09 -0400 Subject: [bug#36605] [PATCH 09/12] gnu: Add java-commons-io. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 11 Jul 2019 22:26:31 +0200 Message-Id: <20190711202644.32014-23-h.goebel@crazy-compilers.com> In-Reply-To: <20190711202644.32014-1-h.goebel@crazy-compilers.com> References: <58494E16.9010909@crazy-compilers.com> <20190711202644.32014-1-h.goebel@crazy-compilers.com> 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: 36605@debbugs.gnu.org * gnu/packages/java.scm (java-commons-io): New variable. --- gnu/packages/java.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index e200296..3af8cd0 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1428,3 +1428,45 @@ for your architecture which is provided by the jsvc package. This is a part of the Apache Commons Project.") (license license:asl2.0))) + +(define-public java-commons-io + (package + (name "java-commons-io") + (version "2.5") + (source (origin + (method url-fetch) + (uri (apache-commons-url "io" version)) + (sha256 (base32 "0q5y41jrcjvx9hzs47x5kdhnasdy6rm4bzqd2jxl02w717m7a7v3")))) + (build-system ant-build-system) + (outputs '("out" "doc")) + (arguments + `(#:test-target "test" + #:phases + (modify-phases %standard-phases + (add-after 'unpack 'symlink-junit.jar + (lambda* (#:key source #:allow-other-keys) + ; the existance of this file is taken as indicator whether test + ; dependencis will to be downloaded. + (let ((junit (assoc-ref inputs "java-junit")) + (junit-version "4.12")) ; from build.xml + (mkdir-p "lib") + (symlink (string-append junit "/share/java/junit.jar") + (string-append "lib/junit-" junit-version ".jar"))))) + (add-after 'build 'build-javadoc ant-build-javadoc) + (add-after 'configure 'patch-build.xml + (lambda* _ + (substitute* "build.xml" + ; set current year to a fixed value, you may want to update + ; this when updating the package version + (("]+>") + "")))) + (replace 'install (install-jars "target")) + (add-after 'install 'install-doc (install-javadoc "target/apidocs"))))) + (native-inputs + `(("java-junit" ,java-junit) + ("java-hamcrest-core" ,java-hamcrest-core))) + (home-page "http://commons.apache.org/io/") + (synopsis "Common useful IO related classes") + (description "Commons-IO contains utility classes, stream implementations, +file filters and endian classes.") + (license license:asl2.0))) -- 2.7.4