From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8Chv-0001S2-Mh for guix-patches@gnu.org; Tue, 09 May 2017 17:30:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8Chu-0001eh-OG for guix-patches@gnu.org; Tue, 09 May 2017 17:30:11 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:60226) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d8Chu-0001eV-Lj for guix-patches@gnu.org; Tue, 09 May 2017 17:30:10 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d8Chu-0008WQ-Gm for guix-patches@gnu.org; Tue, 09 May 2017 17:30:10 -0400 Subject: bug#26861: [PATCH 08/31] gnu: Add java-eclipse-equinox-common. Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 9 May 2017 23:28:25 +0200 Message-Id: <20170509212848.14688-8-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 * gnu/packages/java.scm (java-eclipse-equinox-common): New variable. --- gnu/packages/java.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 4eb4686a0..9e21050b4 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -2395,6 +2395,30 @@ the OSGi Core module.") specification.") (license license:epl1.0))) +(define-public java-eclipse-equinox-common + (package + (name "java-eclipse-equinox-common") + (version "3.8.0") + (source (origin + (method url-fetch) + (uri (string-append "https://repo1.maven.org/maven2/" + "org/eclipse/platform/org.eclipse.equinox.common/" + version "/org.eclipse.equinox.common-" + version "-sources.jar")) + (sha256 + (base32 + "12aazpkgw46r1qj0pr421jzwhbmsizd97r37krd7njnbrdgfzksc")))) + (build-system ant-build-system) + (arguments + `(#:tests? #f ; no tests included + #:jar-name "eclipse-equinox-common.jar")) + (inputs + `(("java-eclipse-osgi" ,java-eclipse-osgi))) + (home-page "http://www.eclipse.org/equinox/") + (synopsis "Common Eclipse runtime") + (description "This package provides the common Eclipse runtime.") + (license license:epl1.0))) + (define-public java-commons-cli (package (name "java-commons-cli") -- 2.12.2