[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/11: gnu: Remove java-ecj-3.5.
From: |
guix-commits |
Subject: |
06/11: gnu: Remove java-ecj-3.5. |
Date: |
Sun, 8 Jan 2023 18:49:47 -0500 (EST) |
rekado pushed a commit to branch master
in repository guix.
commit 649ea550e754d05825d7bc96e3034b165d04b305
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 9 00:34:41 2023 +0100
gnu: Remove java-ecj-3.5.
* gnu/packages/java.scm (java-ecj-3.5): Remove variable.
---
gnu/packages/java.scm | 32 --------------------------------
1 file changed, 32 deletions(-)
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 226fb88d7b..2fad09750a 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2246,38 +2246,6 @@ Main-Class:
org.eclipse.jdt.internal.compiler.batch.Main\n"
(description "This package provides the Eclipse Java core batch compiler.")
(license license:epl1.0)))
-;; This is needed for java-cisd-args4j
-(define-public java-ecj-3.5
- (package (inherit java-ecj-3)
- (version "3.5.1")
- (source (origin
- (method url-fetch/zipbomb)
- (uri (string-append "http://archive.eclipse.org/eclipse/"
- "downloads/drops/R-" version
- "-200909170800/ecjsrc-" version ".zip"))
- (sha256
- (base32
- "1vnl2mavisc567bip736xzsvvbjif5279wc4a7pbdik5wlir8qr7"))))
- (build-system ant-build-system)
- (arguments
- `(#:tests? #f ; none included
- #:jdk ,icedtea-7 ; doesn't build with JDK8+
- #:build-target "build"
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'fix-manifest
- (lambda _
- ;; Record the main class to make ecj executable.
- (with-atomic-file-replacement "META-INF/MANIFEST.MF"
- (lambda (in out)
- (dump-port in out)
- (display "Main-Class:
org.eclipse.jdt.internal.compiler.batch.Main\n"
- out)))
- #t))
- (replace 'install (install-jars ".")))))
- (native-inputs
- (list unzip))))
-
(define-public java-ecj
(package (inherit java-ecj-3)
(version "4.6.3")
- branch master updated (aac0605de3 -> 9e14a7b4d2), guix-commits, 2023/01/08
- 08/11: gnu: java-cisd-jhdf5: Remove trailing #T., guix-commits, 2023/01/08
- 01/11: gnu: java-jgit-4.2: Do not build with icedtea-7., guix-commits, 2023/01/08
- 02/11: gnu: java-jgit-4.2: Remove trailing #T from build phase., guix-commits, 2023/01/08
- 03/11: gnu: java-cisd-args4j: Remove trailing #T from build phase., guix-commits, 2023/01/08
- 04/11: gnu: java-cisd-args4j: Use later version of ECJ., guix-commits, 2023/01/08
- 05/11: gnu: java-cisd-args4j: Do not build with icedtea-7., guix-commits, 2023/01/08
- 06/11: gnu: Remove java-ecj-3.5.,
guix-commits <=
- 09/11: gnu: java-cisd-jhdf5: Do not override default JDK., guix-commits, 2023/01/08
- 10/11: gnu: ant-apache-bcel: Fix inheritance by using gexp., guix-commits, 2023/01/08
- 07/11: gnu: java-ecj: Do not inherit from java-ecj-3., guix-commits, 2023/01/08
- 11/11: gnu: ant-junit: Fix inheritance by using gexp., guix-commits, 2023/01/08