summaryrefslogtreecommitdiff
path: root/science
diff options
context:
space:
mode:
Diffstat (limited to 'science')
-rw-r--r--science/colt/Makefile3
-rw-r--r--science/opsin/Makefile1
-rw-r--r--science/opsin/files/patch-pom.xml22
3 files changed, 25 insertions, 1 deletions
diff --git a/science/colt/Makefile b/science/colt/Makefile
index 3304c3a6cb50..6edfe26a7c90 100644
--- a/science/colt/Makefile
+++ b/science/colt/Makefile
@@ -8,6 +8,9 @@ MAINTAINER= ports@FreeBSD.org
COMMENT= Java package for scalable scientific and technical computing
WWW= https://acs.lbl.gov/~hoschek/colt/
+DEPRECATED= java 8 only, unmaintained, no users in the ports tree, latest release was 2004
+EXPIRATION_DATE= 2026-04-13
+
JAVA_VERSION= 8
NO_ARCH= yes
diff --git a/science/opsin/Makefile b/science/opsin/Makefile
index f4e98275bd30..b9c6e1f5da9d 100644
--- a/science/opsin/Makefile
+++ b/science/opsin/Makefile
@@ -15,7 +15,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt
BUILD_DEPENDS= maven>0:devel/maven
USES= java
-JAVA_VERSION= 17 # Java 8 fails on aarch64: Internal Error (assembler_aarch64.hpp:237), pid=29730, tid=0x000000000002d236 guarantee(val < (1U << nbits)) failed: Field too big for insn
NO_ARCH= yes
diff --git a/science/opsin/files/patch-pom.xml b/science/opsin/files/patch-pom.xml
new file mode 100644
index 000000000000..97c13f852077
--- /dev/null
+++ b/science/opsin/files/patch-pom.xml
@@ -0,0 +1,22 @@
+--- pom.xml.orig 2025-12-13 15:51:13 UTC
++++ pom.xml
+@@ -60,8 +60,8 @@
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+- <source>1.7</source>
+- <target>1.7</target>
++ <source>1.8</source>
++ <target>1.8</target>
+ </configuration>
+ </plugin>
+ <!-- Include POM.xml in source JAR -->
+@@ -141,7 +141,7 @@
+ <artifactId>maven-pmd-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+- <targetJdk>1.7</targetJdk>
++ <targetJdk>1.8</targetJdk>
+ <linkXref>true</linkXref>
+ </configuration>
+ </plugin>