Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Apr 2024 11:16:46 GMT
From:      Rene Ladan <rene@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 5589ee72c3f5 - main - net-p2p/frost: Remove expired port
Message-ID:  <202404011116.431BGkT7012609@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by rene:

URL: https://cgit.FreeBSD.org/ports/commit/?id=5589ee72c3f5abfeb6b8db7daa18da6713ced66e

commit 5589ee72c3f5abfeb6b8db7daa18da6713ced66e
Author:     Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2024-04-01 11:16:34 +0000
Commit:     Rene Ladan <rene@FreeBSD.org>
CommitDate: 2024-04-01 11:16:34 +0000

    net-p2p/frost: Remove expired port
    
    2024-03-31 net-p2p/frost: Outdated version and unsupported upstream
---
 MOVED                          |  1 +
 net-p2p/Makefile               |  1 -
 net-p2p/frost/Makefile         | 88 ------------------------------------------
 net-p2p/frost/distinfo         |  2 -
 net-p2p/frost/files/wrapper.sh | 36 -----------------
 net-p2p/frost/pkg-descr        | 13 -------
 6 files changed, 1 insertion(+), 140 deletions(-)

diff --git a/MOVED b/MOVED
index a44ac99c69d8..fb5d34aa7e60 100644
--- a/MOVED
+++ b/MOVED
@@ -3106,3 +3106,4 @@ net-p2p/liberator||2024-04-01|Has expired: Abandoned project with last release i
 devel/electron26||2024-04-01|Has expired: EOLed upstream, switch to newer version
 irc/darkbot||2024-04-01|Has expired: Abandonware, last release in 2005 and no activity upstream since 2014
 sysutils/rubygem-vagrant-vbguest||2024-04-01|Has expired: This project is archived and will not receive further updates or support
+net-p2p/frost||2024-04-01|Has expired: Outdated version and unsupported upstream
diff --git a/net-p2p/Makefile b/net-p2p/Makefile
index dfe9630cfa75..5c648d724fb4 100644
--- a/net-p2p/Makefile
+++ b/net-p2p/Makefile
@@ -32,7 +32,6 @@
     SUBDIR += eiskaltdcpp-gtk
     SUBDIR += eiskaltdcpp-lib
     SUBDIR += ethash
-    SUBDIR += frost
     SUBDIR += go-ethereum
     SUBDIR += go-prysm
     SUBDIR += gtk-gnutella
diff --git a/net-p2p/frost/Makefile b/net-p2p/frost/Makefile
deleted file mode 100644
index 3fd5bfadb60b..000000000000
--- a/net-p2p/frost/Makefile
+++ /dev/null
@@ -1,88 +0,0 @@
-PORTNAME=	frost
-PORTVERSION=	1.2.0.20090314
-PORTREVISION=	2
-PORTEPOCH=	2
-CATEGORIES=	net-p2p java
-MASTER_SITES=	SF/jtc${PORTNAME}/${PORTNAME}/14-Mar-2009
-DISTNAME=	${PORTNAME}-14-Mar-2009
-
-MAINTAINER=	peter.thoenen@yahoo.com
-COMMENT=	Freenet client that provides messenger and file services
-WWW=		https://jtcfrost.sourceforge.net/
-
-DEPRECATED=	Outdated version and unsupported upstream
-EXPIRATION_DATE=2024-03-31
-
-USES=		zip
-USE_JAVA=	yes
-JAVA_RUN=	yes
-NO_BUILD=	yes
-NO_WRKSUBDIR=	yes
-PLIST_SUB=	JAR_DIR=${JAR_DIR}
-
-DATADIR=	${JAVASHAREDIR}/${PORTNAME}
-
-OPTIONS_DEFINE=	DOCS
-
-JAVAVM=		${LOCALBASE}/bin/java
-JAR_DIR=	${JAVAJARDIR:S,^${PREFIX}/,,}/${PORTNAME}
-JAR_FILE=	frost.jar
-JAR_FILES=	frost.jar lib/fecImpl.jar \
-		lib/BCastle.jar lib/datechooser.jar \
-		lib/fec-native.jar \
-		lib/genChkImpl.jar lib/gnu-regexp-1.1.4.jar \
-		lib/xercesImpl.jar \
-		lib/joda-time.jar \
-		lib/perst15.jar \
-		lib/xml-apis.jar
-
-DOC_FILES=	doc/Frost.tex doc/authors.txt doc/gpl.txt \
-		doc/SkinLFLicense.txt
-PORTDOCS=	${DOC_FILES:C,^.*/,,}
-
-DATA_FILES=	config/boards.xml.default07 \
-		jtc.ico \
-
-PLIST_FILES=	bin/${PORTNAME}
-
-.for jar in ${JAR_FILES:C,^.*/,,}
-PLIST_FILES+=	%%JAR_DIR%%/${jar}
-.endfor
-
-.for file in ${DATA_FILES:C,^.*/,,}
-PLIST_FILES+=	%%DATADIR%%/${file}
-.endfor
-
-DESKTOP_ENTRIES=	"Frost" "Freenet Client" \
-			"${JAVASHAREDIR}/${PORTNAME}/jtc.ico" \
-			"frost" "P2P;Network;Java;" \
-			false
-
-post-patch:
-	@${SED} -e "s|%%PREFIX%%|${PREFIX}|; \
-		s|%%JAVAVM%%|${JAVAVM}|; \
-		s|%%JAR_DIR%%|${JAR_DIR}|; \
-		s|%%JAR_FILE%%|${JAR_FILE}|; \
-		s|%%DATADIR%%|${DATADIR:S,^${PREFIX}/,,}|" \
-		${FILESDIR}/wrapper.sh > ${WRKDIR}/wrapper.sh
-
-do-install:
-# docs
-	@${MKDIR} ${STAGEDIR}${DOCSDIR}
-.for doc in ${DOC_FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
-.endfor
-# jars
-	@${MKDIR} ${STAGEDIR}${PREFIX}/${JAR_DIR}
-.for jar in ${JAR_FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${jar} ${STAGEDIR}${PREFIX}/${JAR_DIR}
-.endfor
-# default boards
-	@${MKDIR} ${STAGEDIR}${DATADIR}
-.for file in ${DATA_FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DATADIR}
-.endfor
-# wrapper
-	@${INSTALL_SCRIPT} ${WRKDIR}/wrapper.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME:tl}
-
-.include <bsd.port.mk>
diff --git a/net-p2p/frost/distinfo b/net-p2p/frost/distinfo
deleted file mode 100644
index d67dda27d992..000000000000
--- a/net-p2p/frost/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (frost-14-Mar-2009.zip) = 52fd5fb055ee5a8814efe8ac84f2fa5a1a55ff87b419c147b5412079a6f1b751
-SIZE (frost-14-Mar-2009.zip) = 5816164
diff --git a/net-p2p/frost/files/wrapper.sh b/net-p2p/frost/files/wrapper.sh
deleted file mode 100644
index 52ca5f86fb71..000000000000
--- a/net-p2p/frost/files/wrapper.sh
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-
-PREFIX="%%PREFIX%%"
-JAVAVM="%%JAVAVM%%"
-JAR_DIR="%%JAR_DIR%%"
-JAR_FILE="%%JAR_FILE%%"
-DATADIR="%%DATADIR%%"
-HOME_DIR=${HOME}/.frost
-CLASSPATH="${PREFIX}/${JAR_DIR}/BCastle.jar:${PREFIX}/${JAR_DIR}/datechooser.jar:${PREFIX}/${JAR_DIR}/fec-native.jar:${PREFIX}/${JAR_DIR}/fecImpl.jar:${PREFIX}/${JAR_DIR}/frost.jar:${PREFIX}/${JAR_DIR}/genChkImpl.jar:${PREFIX}/${JAR_DIR}/gnu-regexp-1.1.4.jar:${PREFIX}/${JAR_DIR}/joda-time.jar:${PREFIX}/${JAR_DIR}/perst15.jar:${PREFIX}/${JAR_DIR}/skinlf.jar:${PREFIX}/${JAR_DIR}/skinlfFix.jar:${PREFIX}/${JAR_DIR}/mckoidb.jar:${PREFIX}/${JAR_DIR}/xercesImpl.jar:${PREFIX}/${JAR_DIR}/xml-apis.jar"
-
-if [ ! -d ${HOME_DIR}/config ]
-then
-	mkdir -p ${HOME_DIR}/config
-fi
-
-ln -sf ${PREFIX}/${DATADIR}/boards.xml.default \
-	${HOME_DIR}/config/boards.xml.default
-
-if [ ! -d ${HOME_DIR}/themes ]
-then
-	mkdir -p ${HOME_DIR}/themes
-	ln -sf ${PREFIX}/${DATADIR}/themepack.zip ${HOME_DIR}/themes/themepack.zip
-fi
-
-if [ ! -d ${HOME_DIR}/store ]
-then
-	mkdir -p ${HOME_DIR}/store
-	ln -sf ${PREFIX}/${DATADIR}/applayerdb.conf \
-		${HOME_DIR}/store/applayerdb.conf
-fi
-
-ln -sf ${PREFIX}/${DATADIR}/aquathemepack.zip \
-	${HOME_DIR}/themes/aquathemepack.zip
-
-cd ${HOME_DIR} &&
-	exec ${JAVAVM} -cp $CLASSPATH frost.Frost "${@}"
diff --git a/net-p2p/frost/pkg-descr b/net-p2p/frost/pkg-descr
deleted file mode 100644
index 493021f76a13..000000000000
--- a/net-p2p/frost/pkg-descr
+++ /dev/null
@@ -1,13 +0,0 @@
-Frost is a Freenet client that provides newsgroup-like messaging, private
-encrypted messages, file upload and download functionality and a file sharing
-system.
-
-If this is your first time trying Frost, you'll see its quite different from
-other filesharing programs. Its anonymous, and yet has a very personal
-atmosphere.
-
-If you know how to use newsgroups, you'll find Frost very easy to use and will
-feel right at home. If you're used to other filesharing apps, you should know
-that the best way to find what you're looking for is to ask for it. If you
-can't find it in the search results, post a message to the relevant board and
-someone will respond to you. Common questions are answered in the Support area.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404011116.431BGkT7012609>