git: 6d740d3abd30 - main - sysutils/pprotectd: Remove expired port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 24 Mar 2025 18:35:04 UTC
The branch main has been updated by rene:
URL: https://cgit.FreeBSD.org/ports/commit/?id=6d740d3abd3081f1dc0fb98662cfe6820c91daa1
commit 6d740d3abd3081f1dc0fb98662cfe6820c91daa1
Author: Rene Ladan <rene@FreeBSD.org>
AuthorDate: 2025-03-24 18:34:56 +0000
Commit: Rene Ladan <rene@FreeBSD.org>
CommitDate: 2025-03-24 18:34:56 +0000
sysutils/pprotectd: Remove expired port
2025-03-23 sysutils/pprotectd: Obsolete utility, superseded by protect in base
---
MOVED | 1 +
sysutils/Makefile | 1 -
sysutils/pprotectd/Makefile | 23 -----------------------
sysutils/pprotectd/distinfo | 2 --
sysutils/pprotectd/files/pprotectd.in | 31 -------------------------------
sysutils/pprotectd/pkg-descr | 6 ------
6 files changed, 1 insertion(+), 63 deletions(-)
diff --git a/MOVED b/MOVED
index e3cf86c26f91..53760e99250b 100644
--- a/MOVED
+++ b/MOVED
@@ -4217,3 +4217,4 @@ www/rubygem-gitlab-gollum-lib|www/rubygem-gollum-lib|2025-03-22|Use www/rubygem-
www/sogo-activesync|www/sogo|2025-03-22|Use sogo-mysqlactivesync or sogo-pgsqlactivesync flavors instead
net/clash|net/mihomo|2025-03-23|Project is renamed
x11-toolkits/Xaw3d|x11-toolkits/libXaw3d|2025-03-23|Rename in preparation to rebase the port forom Slackware to freedesktop.org
+sysutils/pprotectd||2025-03-24|Has expired: Obsolete utility, superseded by protect in base
diff --git a/sysutils/Makefile b/sysutils/Makefile
index 17c1e3b99d98..be641b4679cc 100644
--- a/sysutils/Makefile
+++ b/sysutils/Makefile
@@ -974,7 +974,6 @@
SUBDIR += powerman
SUBDIR += powermon
SUBDIR += pp
- SUBDIR += pprotectd
SUBDIR += prips
SUBDIR += procenv
SUBDIR += process-viewer
diff --git a/sysutils/pprotectd/Makefile b/sysutils/pprotectd/Makefile
deleted file mode 100644
index f56f539b60cf..000000000000
--- a/sysutils/pprotectd/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-PORTNAME= pprotectd
-PORTVERSION= 0.1
-PORTREVISION= 1
-CATEGORIES= sysutils
-MASTER_SITES= http://www.zonov.org/${PORTNAME}/
-
-MAINTAINER= zont@FreeBSD.org
-COMMENT= Daemon that protects processes from killing when memory is exhausted
-WWW= http://www.zonov.org/
-
-DEPRECATED= Obsolete utility, superseded by protect in base
-EXPIRATION_DATE=2025-03-23
-
-USE_RC_SUBR= ${PORTNAME}
-
-PLIST_FILES= sbin/${PORTNAME} \
- share/man/man8/${PORTNAME}.8.gz
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/sbin
- ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${PREFIX}/share/man/man8
-
-.include <bsd.port.mk>
diff --git a/sysutils/pprotectd/distinfo b/sysutils/pprotectd/distinfo
deleted file mode 100644
index 45f17d0365c4..000000000000
--- a/sysutils/pprotectd/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (pprotectd-0.1.tar.gz) = d25909d8030f3aca0f8e1d443c601787029773c88fa0209f49c58d7614c1c4a1
-SIZE (pprotectd-0.1.tar.gz) = 4752
diff --git a/sysutils/pprotectd/files/pprotectd.in b/sysutils/pprotectd/files/pprotectd.in
deleted file mode 100644
index 190a6326f46b..000000000000
--- a/sysutils/pprotectd/files/pprotectd.in
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-# PROVIDE: pprotectd
-# REQUIRE: LOGIN
-# KEYWORD: shutdown
-#
-# Add the following lines to /etc/rc.conf to enable pprotectd:
-#
-# pprotectd_enable (bool): Set to "NO" by default.
-# Set it to "YES" to enable pprotectd
-# pprotectd_pidfiles (str): Set to "/var/run/cron.pid,/var/run/syslog.pid" by default.
-# Set it to "/var/run/sshd.pid" for example
-# pprotectd_flags (str): Set to "" by default.
-# See pprotectd(8) for pprotectd_flags
-#
-
-. /etc/rc.subr
-
-name="pprotectd"
-rcvar=pprotectd_enable
-
-load_rc_config "$name"
-
-: ${pprotectd_enable="NO"}
-: ${pprotectd_pidfiles="/var/run/cron.pid,/var/run/syslog.pid"}
-: ${pprotectd_flags=""}
-
-command="/usr/local/sbin/pprotectd"
-command_args="-F ${pprotectd_pidfiles}"
-
-run_rc_command "$1"
diff --git a/sysutils/pprotectd/pkg-descr b/sysutils/pprotectd/pkg-descr
deleted file mode 100644
index f72f877ef852..000000000000
--- a/sysutils/pprotectd/pkg-descr
+++ /dev/null
@@ -1,6 +0,0 @@
-pprotectd this is a self protected daemon which protect processes
-from killing by the kernel when memory is exhausted.
-
-The P_PROTECTED flag protects processes from killing by the kernel
-when memory is exhausted. This may be useful for protection many
-critical daemons, such as cron, syslogd, inetd, sshd or mysqld.