Commit 9deb2a02 authored by Rene Ladan's avatar Rene Ladan
Browse files

java/aparapi: Remove expired port

2026-06-15 java/aparapi: no maintainer, no users in the ports tree, java 8 only, last upstream commit was 10 years ago

Fix nearby dates in MOVED to pass the pre-commit checks
parent c2478376
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5349,4 +5349,5 @@ graphics/mesa-gallium-va|graphics/mesa-dri|2026-06-15|Merged into graphics/mesa-
graphics/mesa-gallium-vdpau|graphics/mesa-dri|2026-06-15|Merged into graphics/mesa-dri
graphics/libosmesa||2026-06-15|EOLed upstream
graphics/mesa-gallium-xa||2026-06-15|EOLed upstream
lang/clover||2026-06-14|EOLed upstream
lang/clover||2026-06-15|EOLed upstream
java/aparapi||2026-06-15|Has expired: no maintainer, no users in the ports tree, java 8 only, last upstream commit was 10 years ago
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@
    SUBDIR += apache-commons-lang3
    SUBDIR += apache-commons-logging
    SUBDIR += apache-commons-pool
    SUBDIR += aparapi
    SUBDIR += avis
    SUBDIR += berkeley-db
    SUBDIR += bluej

java/aparapi/Makefile

deleted100644 → 0
+0 −33
Original line number Diff line number Diff line
PORTNAME=	aparapi
PORTVERSION=	1.0.0
PORTREVISION=	5
DISTVERSIONSUFFIX=	-SNAPSHOT
CATEGORIES=	java lang

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Open source API for expressing data parallel workflows in Java
WWW=		https://github.com/aparapi/aparapi

LICENSE=	BSD3CLAUSE
LICENSE_FILE=	${WRKSRC}/LICENSE.TXT

DEPRECATED=	no maintainer, no users in the ports tree, java 8 only, last upstream commit was 10 years ago
EXPIRATION_DATE=	2026-06-15

BUILD_DEPENDS=	opencl>=0:devel/opencl
LIB_DEPENDS=	libOpenCL.so:devel/ocl-icd
RUN_DEPENDS=	opencl>=0:devel/opencl

USES=		dos2unix java:ant,run
USE_GITHUB=	yes
JAVA_VERSION=	8 # com.amd.aparapi.jni/build.xml:458: javah does not exist under Java 10 and higher, use the javac task with nativeHeaderDir instead

ONLY_FOR_ARCHS=	amd64 powerpc64 powerpc64le

ALL_TARGET=	dist

do-install:
		(cd ${WRKSRC}/dist_freebsd && ${INSTALL_DATA} aparapi.jar ${STAGEDIR}${JAVAJARDIR})
		(cd ${WRKSRC}/dist_freebsd && ${INSTALL_LIB} libaparapi.so ${STAGEDIR}${PREFIX}/lib)

.include <bsd.port.mk>

java/aparapi/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1466929753
SHA256 (aparapi-aparapi-1.0.0-SNAPSHOT_GH0.tar.gz) = 4b3a4662476746406f2138e372730a64e566b87a464a767dd878e9794f30101a
SIZE (aparapi-aparapi-1.0.0-SNAPSHOT_GH0.tar.gz) = 5431817
+0 −13
Original line number Diff line number Diff line
--- build.xml.orig	2015-09-21 01:20:25 UTC
+++ build.xml
@@ -5,8 +5,9 @@
 
    <condition property="x86_or_x86_64" value="x86" else="x86_64"> <or><os arch="x86" /><os arch="i386"/></or> </condition>
    <condition property="dist" value="dist_windows_${x86_or_x86_64}"><os family="windows" /></condition>
-   <condition property="dist" value="dist_linux_${x86_or_x86_64}"><and><not><os family="mac"/></not><os family="unix" /></and></condition>	
+   <condition property="dist" value="dist_linux_${x86_or_x86_64}"><and><not><os family="mac"/></not><not><os name="FreeBSD"/></not><os family="unix" /></and></condition>	
    <condition property="dist" value="dist_mac_${x86_or_x86_64}"><os family="mac" /></condition>
+   <condition property="dist" value="dist_freebsd"><os name="FreeBSD" /></condition>
 		
    <target name="help">
       <echo message="Available targets are:-"/> 
Loading