From cf12c13935bd9d496d7e6237ef22edc86e6e6131 Mon Sep 17 00:00:00 2001 From: Xavier Beaudouin Date: Wed, 19 Feb 2025 15:30:29 +0100 Subject: [PATCH] Removed --- net/akhq/Makefile | 35 ----------------------------- net/akhq/distinfo | 3 --- net/akhq/files/akhq.in | 40 ---------------------------------- net/akhq/files/application.yml | 9 -------- net/akhq/pkg-descr | 2 -- 5 files changed, 89 deletions(-) delete mode 100644 net/akhq/Makefile delete mode 100644 net/akhq/distinfo delete mode 100644 net/akhq/files/akhq.in delete mode 100644 net/akhq/files/application.yml delete mode 100644 net/akhq/pkg-descr diff --git a/net/akhq/Makefile b/net/akhq/Makefile deleted file mode 100644 index 68af3e8..0000000 --- a/net/akhq/Makefile +++ /dev/null @@ -1,35 +0,0 @@ -PORTNAME= akhq -DISTVERSION= 0.25.1 -DISTVERSIONSUFFIX= -all -CATEGORIES= net java -MASTER_SITES= https://github.com/tchiotludo/akhq/releases/download/${PORTVERSION}/ -EXTRACT_SUFX= .jar - -MAINTAINER= freebsd@hackacad.net -COMMENT= Kafka Gui for Apache Kafka -WWW= https://github.com/tchiotludo/akhq - -LICENSE= APACHE20 - -USES= java -JAVA_VERSION= 17+ -USE_RC_SUBR= akhq - -NO_ARCH= yes -NO_BUILD= yes - -PLIST_FILES= "@sample ${ETCDIR}/application.yml.sample" \ - ${JAVASHAREDIR}/${PORTNAME}/${PORTNAME}.jar - -CONFIG_FILES= application.yml - -NO_EXTRACT= yes - -do-install: - ${MKDIR} ${STAGEDIR}${ETCDIR} - ${MKDIR} ${STAGEDIR}${JAVASHAREDIR}/${PORTNAME} - ${INSTALL_DATA} ${DISTDIR}/${DISTFILES} ${STAGEDIR}${JAVASHAREDIR}/${PORTNAME}/${PORTNAME}.jar - ${INSTALL_DATA} ${FILESDIR}/application.yml ${STAGEDIR}${ETCDIR}/application.yml.sample - ${INSTALL_DATA} ${FILESDIR}/application.yml ${STAGEDIR}${ETCDIR}/application.yml - -.include diff --git a/net/akhq/distinfo b/net/akhq/distinfo deleted file mode 100644 index 1fa3cd3..0000000 --- a/net/akhq/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1734718291 -SHA256 (akhq-0.25.1-all.jar) = 5aec420df890e388ade89c6995e6ed45a37d3cb1ff22f5d9837b1156ff4eaf72 -SIZE (akhq-0.25.1-all.jar) = 191995582 diff --git a/net/akhq/files/akhq.in b/net/akhq/files/akhq.in deleted file mode 100644 index d13c742..0000000 --- a/net/akhq/files/akhq.in +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh - -# PROVIDE: akhq -# REQUIRE: LOGIN -# KEYWORD: shutdown - -. /etc/rc.subr - -name=akhq -rcvar=akhq_enable - -load_rc_config $name - -: ${akhq_enable:=NO} -: ${akhq_config:=%%LOCALBASE%%/etc/akhq/application.yml} -: ${akhq_jar:=%%LOCALBASE%%/share/java/akhq/akhq.jar} -: ${akhq_java:=%%LOCALBASE%%/bin/java} -: ${akhq_user:=%%WWWOWN%%} -: ${akhq_pidfile:=/var/run/${name}.pid} - -command="/usr/sbin/daemon" -command_args="-P ${akhq_pidfile} -r -f ${akhq_java} -Dmicronaut.config.files=${akhq_config} -jar ${akhq_jar}" - -start_precmd=akhq_startprecmd - -akhq_startprecmd() -{ - # Ensure the directory for the PID file exists - if [ ! -d $(dirname ${akhq_pidfile}) ]; then - install -d -o ${akhq_user} -m 0750 $(dirname ${akhq_pidfile}) - fi - - # Ensure the PID file exists with the right permissions - if [ ! -e "${akhq_pidfile}" ]; then - install -m 0600 -o ${akhq_user} /dev/null ${akhq_pidfile} - fi -} - -run_rc_command "$1" - diff --git a/net/akhq/files/application.yml b/net/akhq/files/application.yml deleted file mode 100644 index be61195..0000000 --- a/net/akhq/files/application.yml +++ /dev/null @@ -1,9 +0,0 @@ -akhq: - connections: - local: - properties: - bootstrap.servers: "localhost:9092" -micronaut: - server: - port: 8080 - host: "127.0.0.1" diff --git a/net/akhq/pkg-descr b/net/akhq/pkg-descr deleted file mode 100644 index 71e2a94..0000000 --- a/net/akhq/pkg-descr +++ /dev/null @@ -1,2 +0,0 @@ -Kafka GUI for Apache Kafka to manage topics, topics data, -consumers group, schema registry, connect and more...