From b135457ff0ba0eda52c9808f767a2a30013cc9ac Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Mon, 26 Oct 2009 09:46:40 +0000 Subject: testing/apcupsd: moved from unstable it builds --- unstable/apcupsd/APKBUILD | 30 ------------------------- unstable/apcupsd/apcupsd-alpine.patch | 41 ----------------------------------- unstable/apcupsd/apcupsd.initd | 38 -------------------------------- 3 files changed, 109 deletions(-) delete mode 100644 unstable/apcupsd/APKBUILD delete mode 100644 unstable/apcupsd/apcupsd-alpine.patch delete mode 100644 unstable/apcupsd/apcupsd.initd (limited to 'unstable') diff --git a/unstable/apcupsd/APKBUILD b/unstable/apcupsd/APKBUILD deleted file mode 100644 index 4adc8c096..000000000 --- a/unstable/apcupsd/APKBUILD +++ /dev/null @@ -1,30 +0,0 @@ -pkgname=apcupsd -pkgver=3.14.7 -pkgrel=0 -pkgdesc="A Daemon to control APC UPSes" -subpackages="$pkgname-doc" -url="http://www.apcupsd.org" -license="GPL-2" -depends="util-linux-ng" -makedepends= -source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - apcupsd.initd - apcupsd-alpine.patch - " - -build() { - cd "$srcdir/$pkgname-$pkgver" - patch -p1 < ../apcupsd-alpine.patch || return 1 - - ac_cv_path_SHUTDOWN="/sbin/poweroff" \ - ./configure --prefix=/usr \ - --mandir=/usr/share/man \ - --enable-usb - make || return 1 - make DESTDIR=$pkgdir install - install -D -m755 "$srcdir"/apcupsd.initd "$pkgdir"/etc/init.d/apcupsd -} - -md5sums="bb2f8e4fc6b2f5d7b3e236eb57b81640 apcupsd-3.14.7.tar.gz -0798cd407de6f199d4c267036ec54c5b apcupsd.initd -08d9cc703cdd4275d342882deed1d719 apcupsd-alpine.patch" diff --git a/unstable/apcupsd/apcupsd-alpine.patch b/unstable/apcupsd/apcupsd-alpine.patch deleted file mode 100644 index 3f5c6965b..000000000 --- a/unstable/apcupsd/apcupsd-alpine.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- a/platforms/apccontrol.in Mon Oct 26 09:12:30 2009 -+++ b/platforms/apccontrol.in Mon Oct 26 09:36:47 2009 -@@ -20,11 +20,20 @@ - - APCPID=@PIDDIR@/apcupsd.pid - APCUPSD=@sbindir@/apcupsd --SHUTDOWN=@SHUTDOWN@ -+POWEROFF=/sbin/poweroff -+REBOOT=/sbin/reboot - SCRIPTSHELL=@SCRIPTSHELL@ - SCRIPTDIR=@sysconfdir@ --WALL=wall -+WALL=_wall - -+_wall() { -+ local i -+ local msg=$(cat) -+ for i in /dev/pts/*; do -+ [ -c "$i" ] && echo "$msg" > $i -+ done -+} -+ - # - # Concatenate all output from this script to the events file - # Note, the following kills the script in a power fail situation -@@ -100,11 +109,13 @@ - ;; - doreboot) - echo "UPS ${2} initiating Reboot Sequence" | ${WALL} -- ${SHUTDOWN} -r now "apcupsd UPS ${2} initiated reboot" -+ echo "apcupsd UPS ${2} initiated reboot" | ${WALL} -+ $REBOOT - ;; - doshutdown) - echo "UPS ${2} initiated Shutdown Sequence" | ${WALL} -- ${SHUTDOWN} -h now "apcupsd UPS ${2} initiated shutdown" -+ echo "apcupsd UPS ${2} initiated shutdown" | ${WALL} -+ $POWEROFF - ;; - annoyme) - echo "Power problems with UPS ${2}. Please logoff." | ${WALL} diff --git a/unstable/apcupsd/apcupsd.initd b/unstable/apcupsd/apcupsd.initd deleted file mode 100644 index 5265347f4..000000000 --- a/unstable/apcupsd/apcupsd.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/files/apcupsd.init.2,v 1.1 2009/01/15 15:21:11 flameeyes Exp $ - -INSTANCE="${SVCNAME#*.}" -if [ -z "${INSTANCE}" ] || [ "${SVCNAME}" = "apcupsd" ]; then - INSTANCE="apcupsd" -fi - -depend() { - use net - after firewall -} - -start() { - rm -f /etc/apcupsd/powerfail - - export SERVICE="${SVCNAME}" - - ebegin "Starting APC UPS daemon" - start-stop-daemon \ - --start --pidfile "/var/run/${SVCNAME}.pid" \ - --exec /sbin/apcupsd -- \ - -f "/etc/apcupsd/${INSTANCE}.conf" \ - -P "/var/run/${SVCNAME}.pid" - eend $? -} - -stop() { - ebegin "Stopping APC UPS daemon" - start-stop-daemon \ - --stop --pidfile "/var/run/${SVCNAME}.pid" \ - --retry TERM/5/TERM/5 \ - --exec /sbin/apcupsd - eend $? -} - -- cgit v1.2.3