uptimed: dropped unmaintained port

This commit is contained in:
Tim Biermann 2023-09-24 09:32:54 +02:00
parent 38617d9457
commit 16533e7ac5
Signed by: tb
GPG Key ID: 42F8B4E30B673606
4 changed files with 0 additions and 89 deletions

View File

@ -1,24 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/uptimed
-rw-r--r-- root/root etc/uptimed.conf
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/uprecords
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libuptimed.a
-rwxr-xr-x root/root usr/lib/libuptimed.la
lrwxrwxrwx root/root usr/lib/libuptimed.so -> libuptimed.so.0.0.0
lrwxrwxrwx root/root usr/lib/libuptimed.so.0 -> libuptimed.so.0.0.0
-rwxr-xr-x root/root usr/lib/libuptimed.so.0.0.0
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/uptimed
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/uprecords.1.gz
drwxr-xr-x root/root usr/share/man/man8/
-rw-r--r-- root/root usr/share/man/man8/uptimed.8.gz
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/spool/
drwxr-xr-x root/root var/spool/uptimed/

View File

@ -1,6 +0,0 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zDUV2bnqmNjLFs/o+KdVu8zG/YE4dmOkuSGetBn8cJ3g1jtkufM21kz1RyT9JudQZcFoLXEsSeiA167mddJqwA=
SHA256 (Pkgfile) = 345fc6b63ca89c8c0a0d2a1cf2e576b580197199e3d18b20a5818344207eda4a
SHA256 (.footprint) = aad26302138813099fb6a986e2f3fe407d15564569f66d2bfbd86dc822efdbf0
SHA256 (uptimed-0.4.6.tar.gz) = 48656498ac30c59b902e98dc5e411e97cbb96278a01946bdf0941d8da72b2ae1
SHA256 (uptimed.rc) = e2a2d3972c9e4413e085db00d64a0a5f51be8a4c186070ea264d4f9a0f089208

View File

@ -1,24 +0,0 @@
# Description: Uptime record tracking daemon.
# URL: https://github.com/rpodgorny/uptimed
# Maintainer: unmaintained
name=uptimed
version=0.4.6
release=1
source=(https://github.com/rpodgorny/uptimed/archive/v$version/$name-$version.tar.gz
uptimed.rc)
build() {
cd $name-$version
./autogen.sh
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
mv $PKG/etc/uptimed.conf-dist $PKG/etc/uptimed.conf
install -m 0755 -D $SRC/uptimed.rc $PKG/etc/rc.d/uptimed
}

View File

@ -1,35 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/uptimed: start/stop uptime record tracking daemon
#
SSD=/sbin/start-stop-daemon
PROG=/usr/sbin/uptimed
PID=/var/run/uptimed.pid
OPTS="-p $PID"
case $1 in
start)
$PROG -b
$SSD --start --pidfile $PID --exec $PROG -- $OPTS
;;
stop)
$SSD --stop --retry 10 --pidfile $PID
;;
restart)
$0 stop
$0 start
;;
status)
$SSD --status --pidfile $PID
case $? in
0) echo "$PROG is running with pid $(cat $PID)" ;;
1) echo "$PROG is not running but the pid file $PID exists" ;;
3) echo "$PROG is not running" ;;
4) echo "Unable to determine the program status" ;;
esac
;;
*)
echo "usage: $0 [start|stop|restart|status]"
;;
esac