From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33084) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlffp-0005uM-11 for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlffn-0006Aq-Gc for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:12 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58185) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlffn-0006AO-AG for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:11 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlffn-00070Q-5d for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:11 -0400 Subject: [bug#36605] [PATCH 12/12] gnu: Add java-commons-bcel. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 11 Jul 2019 22:26:34 +0200 Message-Id: <20190711202644.32014-26-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-bcel): New variable. --- gnu/packages/java.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index b7971a3..b1e1ecc 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1327,6 +1327,24 @@ libraries to vary independently of one another.") (string-append "mirror://apache/commons/" projname "/source/" basename "-" version "-src.tar.gz")) +(define-public java-commons-bcel + (package + (name "java-commons-bcel") + (version "6.0") + (source (origin + (method url-fetch) + (uri (apache-commons-url "bcel" version "bcel")) + (sha256 (base32 "0n39601zcj7ymjihfv53r260mf3n8kj6bqhxv90dw5sgc7qbjqxr")))) + (build-system ant-build-system) + ; todo: tests, javadoc + (arguments + `(#:jar-name (string-append "commons-bcel-" ,version ".jar") + #:src-dir "src/main")) + (home-page "http://commons.apache.org/bcel/") + (synopsis "Apache Commons Bytecode Engineering Library") + (description "") + (license license:asl2.0))) + (define-public java-commons-cli (package (name "java-commons-cli") -- 2.7.4