From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/eclipse-ecj/
Date: Fri, 20 Sep 2024 15:42:41 +0000 (UTC) [thread overview]
Message-ID: <1726846829.c066dceb45f3c1699236629605e83952efb6a7c8.fordfrog@gentoo> (raw)
commit: c066dceb45f3c1699236629605e83952efb6a7c8
Author: Volkmar W. Pogatzki <gentoo <AT> pogatzki <DOT> net>
AuthorDate: Thu Sep 12 13:02:56 2024 +0000
Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Fri Sep 20 15:40:29 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c066dceb
dev-java/eclipse-ecj: add 4.33
does not provide components for 'eselect ecj'
Signed-off-by: Volkmar W. Pogatzki <gentoo <AT> pogatzki.net>
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
dev-java/eclipse-ecj/Manifest | 1 +
dev-java/eclipse-ecj/eclipse-ecj-4.33.ebuild | 55 ++++++++++++++++++++++++++++
2 files changed, 56 insertions(+)
diff --git a/dev-java/eclipse-ecj/Manifest b/dev-java/eclipse-ecj/Manifest
index 6b1083ddddd7..007a22f402d1 100644
--- a/dev-java/eclipse-ecj/Manifest
+++ b/dev-java/eclipse-ecj/Manifest
@@ -4,3 +4,4 @@ DIST ecjsrc-4.27.jar 2301849 BLAKE2B 77f35d1a9f36086e8515dc9437894b84c88fd440bd4
DIST ecjsrc-4.30.jar 2330181 BLAKE2B 7f3ba7f8dbfcaea9f8bbcdb8161ae8f164e2bf3469cf2242b6b7df5d375c98322f810b9c6de7209f622740a2cc61704915d255559bd376bf158b114e30a17d40 SHA512 ddc1569082fad0dcf91a9d41d5ef5f2f694f007e1378af5f5f28893aeb91e99acef91af59c762010eba071fa8b8b8a9d367b08e23f91b8c73ceacc6e6150bb23
DIST ecjsrc-4.31.jar 2347993 BLAKE2B edb1a525646fc3152661a6583ab5c50a1dd7f06dac0b7cdae0913843e0ed6ef2c9862889351557857140c79c479505aeca154958b649d05ace6a5b83f6ccac45 SHA512 3e72ae5e5209dd80f7b3f208aeb0a6eece28ab416c56eedd590c67724c6a905b39b8f27a41394e3cf6a96acc16a9c7dd91d12df9651bc289839648036ac2d430
DIST ecjsrc-4.32.jar 2357386 BLAKE2B f6c440b13eb3cd014f317d9232a7db713621b3bcb902bc385561fc4ce68711c9fde021920b535fafb4db7e93d515e23c9d57ac3506539915e1ba33ce37a4570a SHA512 e45cfe0df73f5ec83efeeb12785c2efab9977e927de8766507668f104fea4fefeaa59695988d977734fee4ccd43da43da798976177bb3b15a87ca2966e448d9e
+DIST ecjsrc-4.33.jar 2361539 BLAKE2B 1bfd2f7d8e9f79bceebec337ddff651a42d133015be8749076d6a67f60d7fbf8e56e658b1535f52fe7f736b6e59eff6187ee94c6c260b399145c1018ae388e35 SHA512 48823264ff18b666b6d350c58e8b3b7d0429d2c5de061cee4c88894da2d44049bf0fcf13ca20d848797ef0591fccd028ac687ec072b8eb02deb5f57b7e560677
diff --git a/dev-java/eclipse-ecj/eclipse-ecj-4.33.ebuild b/dev-java/eclipse-ecj/eclipse-ecj-4.33.ebuild
new file mode 100644
index 000000000000..3aec5546ba39
--- /dev/null
+++ b/dev-java/eclipse-ecj/eclipse-ecj-4.33.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source"
+# 3.38.0 according to
+# https://github.com/eclipse-jdt/eclipse.jdt.core/blob/R4_32/org.eclipse.jdt.core.compiler.batch/pom.xml#L20
+MAVEN_ID="org.eclipse.jdt:org.eclipse.jdt.core.compiler.batch:3.38.0"
+
+inherit java-pkg-2 java-pkg-simple
+
+DMF="R-${PV/_rc/RC}-202409030240"
+
+DESCRIPTION="Eclipse Compiler for Java"
+HOMEPAGE="https://projects.eclipse.org/projects/eclipse.jdt"
+SRC_URI="https://download.eclipse.org/eclipse/downloads/drops4/${DMF}/ecjsrc-${PV/_rc/RC}.jar"
+S="${WORKDIR}"
+
+LICENSE="EPL-1.0"
+SLOT="4.33"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+BDEPEND="app-arch/unzip"
+COMMON_DEP="app-eselect/eselect-java"
+# ElementsImpl9.java:206: error:
+# method does not override or implement a method from a supertype
+DEPEND="${COMMON_DEP}
+ >=dev-java/ant-1.10.14-r3:0
+ >=virtual/jdk-21:*"
+# Parser.java:1095: error:
+# pattern matching in instanceof is not supported in -source 11
+RDEPEND="${COMMON_DEP}
+ >=virtual/jre-17:*"
+
+DOCS=( org/eclipse/jdt/core/README.md )
+
+JAVA_AUTOMATIC_MODULE_NAME="org.eclipse.jdt.core.compiler.batch"
+JAVA_CLASSPATH_EXTRA="ant"
+JAVA_JAR_FILENAME="ecj.jar"
+JAVA_LAUNCHER_FILENAME="ecj-${SLOT}"
+JAVA_MAIN_CLASS="org.eclipse.jdt.internal.compiler.batch.Main"
+JAVA_RESOURCE_DIRS="res"
+
+src_prepare() {
+ java-pkg-2_src_prepare
+
+ # Exception in thread "main" java.lang.SecurityException: Invalid signature file digest for Manifest main attributes
+ rm META-INF/ECLIPSE_* || die
+
+ mkdir "${JAVA_RESOURCE_DIRS}" || die
+ find -type f \
+ ! -name '*.java' \
+ | xargs cp --parent -t "${JAVA_RESOURCE_DIRS}" || die
+}
next reply other threads:[~2024-09-20 15:42 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-20 15:42 Miroslav Šulc [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-10 0:31 [gentoo-commits] repo/gentoo:master commit in: dev-java/eclipse-ecj/ Sam James
2024-12-07 13:25 Miroslav Šulc
2024-09-19 8:45 Miroslav Šulc
2024-09-19 8:45 Miroslav Šulc
2024-05-22 9:31 Miroslav Šulc
2024-04-30 15:31 Sam James
2024-04-30 15:31 Sam James
2024-04-05 8:16 Miroslav Šulc
2024-04-03 8:45 Miroslav Šulc
2024-03-30 11:13 Arthur Zamarin
2024-03-30 8:51 Arthur Zamarin
2024-03-17 8:56 Miroslav Šulc
2024-03-12 9:34 Miroslav Šulc
2024-03-12 8:05 Sam James
2024-03-12 8:05 Sam James
2024-03-12 4:29 Ionen Wolkens
2024-03-12 4:29 Ionen Wolkens
2024-03-12 4:29 Ionen Wolkens
2024-03-12 4:29 Ionen Wolkens
2024-02-26 12:53 Miroslav Šulc
2024-02-26 10:46 Jakov Smolić
2024-02-26 10:46 Jakov Smolić
2024-01-24 9:03 Miroslav Šulc
2023-12-04 9:09 Miroslav Šulc
2023-11-24 11:14 Miroslav Šulc
2023-11-24 11:14 Miroslav Šulc
2023-11-20 7:54 Miroslav Šulc
2023-11-20 7:54 Miroslav Šulc
2023-11-20 7:54 Miroslav Šulc
2023-07-18 17:21 Sam James
2023-07-18 17:21 Sam James
2023-05-21 7:58 Miroslav Šulc
2023-05-18 5:59 Miroslav Šulc
2023-05-18 5:59 Miroslav Šulc
2023-02-16 6:04 Sam James
2023-02-16 6:04 Sam James
2023-01-15 9:50 Miroslav Šulc
2022-11-12 2:39 Sam James
2022-11-11 21:16 Sam James
2022-10-11 18:25 Miroslav Šulc
2022-07-05 7:29 Agostino Sarubbo
2022-07-05 6:01 Agostino Sarubbo
2022-06-02 6:20 Miroslav Šulc
2022-05-30 8:36 Florian Schmaus
2022-05-11 7:33 Florian Schmaus
2022-05-10 13:32 Florian Schmaus
2022-05-01 16:34 Miroslav Šulc
2022-03-30 11:09 Jakov Smolić
2022-03-02 20:52 Miroslav Šulc
2022-03-02 20:52 Miroslav Šulc
2022-02-19 9:44 Miroslav Šulc
2022-02-02 15:23 Jakov Smolić
2021-11-17 12:06 Miroslav Šulc
2020-11-24 10:30 Miroslav Šulc
2020-09-19 15:55 Aaron Bauman
2020-02-27 22:35 Miroslav Šulc
2020-02-27 20:01 Miroslav Šulc
2019-10-16 10:51 Miroslav Šulc
2019-01-23 14:54 Miroslav Šulc
2016-12-13 11:30 Agostino Sarubbo
2016-12-13 11:05 Agostino Sarubbo
2016-02-19 20:54 James Le Cuirot
2015-12-04 17:56 Miroslav Šulc
2015-08-22 20:59 James Le Cuirot
2015-08-22 20:59 James Le Cuirot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1726846829.c066dceb45f3c1699236629605e83952efb6a7c8.fordfrog@gentoo \
--to=fordfrog@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox