From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:58627) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8Cir-0002OY-5o for guix-patches@gnu.org; Tue, 09 May 2017 17:31:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8Cil-00032P-HQ for guix-patches@gnu.org; Tue, 09 May 2017 17:31:09 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60267) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8Cil-00031c-5M for guix-patches@gnu.org; Tue, 09 May 2017 17:31:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8Cil-0000AI-0j for guix-patches@gnu.org; Tue, 09 May 2017 17:31:03 -0400 Subject: bug#26861: [PATCH 31/31] gnu: Add classpath-minimal-0.93. Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 9 May 2017 23:28:48 +0200 Message-Id: <20170509212848.14688-31-rekado@elephly.net> In-Reply-To: <20170509212848.14688-1-rekado@elephly.net> References: <20170509212848.14688-1-rekado@elephly.net> 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: 26861@debbugs.gnu.org Cc: Ricardo Wurmus From: Ricardo Wurmus * gnu/packages/java.scm (classpath-minimal-0.93): New variable. --- gnu/packages/java.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index fe73608a2..447be65c9 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -78,6 +78,41 @@ defined in The Java Language Specification into the bytecoded instruction set and binary format defined in The Java Virtual Machine Specification.") (license license:ibmpl1.0))) +;; This is the last version of GNU Classpath that does not require ecj. +(define-public classpath-minimal-0.93 + (package + (name "classpath-minimal") + (version "0.93") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnu/classpath/classpath-" + version ".tar.gz")) + (sha256 + (base32 + "0i99wf9xd3hw1sj2sazychb9prx8nadxh2clgvk3zlmb28v0jbfz")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--with-jikes" + "--disable-Werror" + "--disable-gmp" + "--disable-gtk-peer" + "--disable-jni" + "--disable-plugin" + "--disable-dssi" + "--disable-alsa" + "--disable-gjdoc"))) + (native-inputs + `(("jikes" ,jikes) + ("fastjar" ,fastjar))) + (home-page "https://www.gnu.org/software/classpath/") + (synopsis "Essential libraries for Java") + (description " GNU Classpath is a project to create core class libraries +for use with runtimes, compilers and tools for the Java programming +language.") + ;; GPLv2 or later, with special linking exception. + (license license:gpl2+))) + (define-public java-swt (package (name "java-swt") -- 2.12.2