sys-power/nut: remove unused patch/files

Closes: https://github.com/gentoo/gentoo/pull/3870
This commit is contained in:
Michael Mair-Keimberger (asterix)
2017-02-07 17:48:35 +01:00
committed by David Seifert
parent 29e972873b
commit 26f8ebb05c
3 changed files with 0 additions and 89 deletions

View File

@@ -1,38 +0,0 @@
#!/sbin/openrc-run
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_started_commands="reload"
pidfile=/var/lib/nut/upsd.pid
bin=/usr/sbin/upsd
depend() {
need net
before upsmon
after upsdrv
}
start() {
ebegin "Starting upsd"
# clean up first
pkill -u root,nut -x ${bin}
sleep 1
rm -f ${pidfile}
# now start up
start-stop-daemon --start --quiet --exec ${bin}
eend $?
}
stop() {
ebegin "Stopping upsd"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend $?
}
reload() {
ebegin "Reloading upsd"
start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile ${pidfile}
eend $?
}

View File

@@ -1,30 +0,0 @@
#!/sbin/openrc-run
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_started_commands="reload"
pidfile=/var/run/upsmon.pid
bin=/usr/sbin/upsmon
depend() {
need net
}
start() {
ebegin "Starting upsmon"
start-stop-daemon --start --quiet --exec ${bin}
eend $?
}
stop() {
ebegin "Stopping upsmon"
start-stop-daemon --stop --quiet --pidfile ${pidfile}
eend $?
}
reload() {
ebegin "Reloading upsd"
start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile ${pidfile}
eend $?
}

View File

@@ -1,21 +0,0 @@
http://bugs.gentoo.org/show_bug.cgi?id=318937
http://boxster.ghz.cc/projects/nut/changeset/2407
Index: /trunk/drivers/libhid.c
===================================================================
--- /trunk/drivers/libhid.c (revision 2336)
+++ /trunk/drivers/libhid.c (revision 2407)
@@ -142,5 +142,5 @@
int id = pData->ReportID;
int r;
- unsigned char buf[SMALLBUF];
+ unsigned char buf[8]; /* Maximum size for low-speed USB devices */
if (rbuf->ts[id] + age > time(NULL)) {
@@ -470,5 +470,5 @@
int HIDGetEvents(hid_dev_handle_t udev, HIDData_t **event, int eventsize)
{
- unsigned char buf[SMALLBUF];
+ unsigned char buf[8]; /* Maximum size for low-speed USB devices */
int itemCount = 0;
int buflen, r, i;