Commit 250355c3 authored by Rene Ladan's avatar Rene Ladan
Browse files

net/seda: Remove expired port

2026-06-26 net/seda: old, no users in the ports tree, unmaintained, uses long deprecated code removed in jdk25
parent 46556def
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -5378,3 +5378,4 @@ net-im/libaccounts-qt@qt5||2026-06-22|Unflavorize, remove Qt5 flavor
net-im/libaccounts-qt@qt6|net-im/libaccounts-qt|2026-06-22|Unflavorize
science/minc2|science/minc-tools|2026-06-24|Split into science/minc-tools and science/libminc
www/xist|www/py-ll-xist|2026-06-24|Use correct Python package name
net/seda||2026-06-26|Has expired: old, no users in the ports tree, unmaintained, uses long deprecated code removed in jdk25
+0 −1
Original line number Diff line number Diff line
@@ -1519,7 +1519,6 @@
    SUBDIR += sdl3_net
    SUBDIR += sdl_net
    SUBDIR += seaweedfs
    SUBDIR += seda
    SUBDIR += self-service-password
    SUBDIR += sendemail
    SUBDIR += sendme

net/seda/Makefile

deleted100644 → 0
+0 −50
Original line number Diff line number Diff line
PORTNAME=	seda
PORTVERSION=	3.0
PORTREVISION=	7
CATEGORIES=	net java
MASTER_SITES=	SF
DISTNAME=	${PORTNAME}-release-${VERSION_DATE}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Architecture for Highly Concurrent Server Applications
WWW=		http://www.eecs.harvard.edu/~mdw/proj/seda/

DEPRECATED=	old, no users in the ports tree, unmaintained, uses long deprecated code removed in jdk25
EXPIRATION_DATE=	2026-06-26

USES=		java:ant,run
JAVA_VERSION=	8 11 17 21

ALL_TARGET=	dist
NO_ARCH=	yes

OPTIONS_DEFINE=	DOCS

JAVADOC_WRKSRC=	${WRKSRC}/build/javadoc
WRKSRC=		${WRKDIR}/${DISTNAME}/${PORTNAME}

VERSION_DATE=	20020712

PORTDOCS=	*

PLIST_FILES=	%%JAVAJARDIR%%/${PORTNAME:tl}.jar

DOCS_ALL_TARGET=	javadoc

pre-build:
# use our build.xml
	${CP} ${FILESDIR}/build.xml ${WRKSRC}

do-install:
# jar
	@${MKDIR} ${STAGEDIR}${JAVAJARDIR}
	${INSTALL_DATA} ${WRKSRC}/dist/lib/${PORTNAME:tl}.jar \
		${STAGEDIR}${JAVAJARDIR}/

do-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in gnutella-graph.gif index.html nbio.html profile.gif sandstorm.html sandstorm.jpg
	${INSTALL_DATA} ${WRKSRC}/docs/${doc} ${STAGEDIR}${DOCSDIR}
.endfor

.include <bsd.port.mk>

net/seda/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (seda-release-20020712.tar.gz) = 7e5f2fc1212fda9fbc088a1b5441f9fa3cfaa84c96a8883ed8fb386bb44ea9ee
SIZE (seda-release-20020712.tar.gz) = 326630

net/seda/files/build.xml

deleted100644 → 0
+0 −54
Original line number Diff line number Diff line
<!-- Obtained from http://www.haxwell.org/SEDA_Sandstorm_Ant_Build_Script.html -->
<!-- Written by Johnathan James (jjames at haxwell dot org) -2005 -->
<!-- Copyright by Mario S F Ferreira <lioux@FreeBSD.org> 2005- -->
<!-- Copyright by jrandom 2005- -->
<project name="Build SEDA" default="dist" basedir=".">
     <description>
	Builds the SEDA 20020712 JAR file
     </description>
   <!-- set global properties for this build -->
   <property name="src" location="src"/>
   <property name="build" location="build"/>
   <property name="dist" location="dist"/>

   <target name="init">
     <!-- Create the time stamp -->
     <tstamp/>
     <!-- Create the build directory structure used by compile -->
     <mkdir dir="${build}"/>
   </target>

   <target name="compile" depends="init" description="compile the source " >
     <!-- Compile the java code from ${src} into ${build} -->
     <javac srcdir="${src}" destdir="${build}" excludes="**/test/**"/>
   </target>

   <target name="dist" depends="compile" description="generate the distribution" >
     <!-- Create the distribution directory -->
     <mkdir dir="${dist}/lib"/>

     <!-- Put everything in ${build} into the SEDA.jar file -->
     <jar jarfile="${dist}/lib/seda.jar" basedir="${build}"/>
   </target>

   <target name="javadoc">
     <mkdir dir="${build}" />
     <mkdir dir="${build}/javadoc" />
     <javadoc access="package" 
       destdir="${build}/javadoc" 
       use="true" 
       splitindex="true" 
       sourcepath="src" 
       windowtitle="SEDA">
       <fileset dir="." defaultexcludes="yes">
         <include name="**/*.java" />
       </fileset>
     </javadoc>
   </target>

   <target name="clean" description="clean up" >
     <!-- Delete the ${build} and ${dist} directory trees -->
     <delete dir="${build}"/>
     <delete dir="${dist}"/>
   </target>
</project>
Loading