diff options
Diffstat (limited to 'abs/not_built/extra/recstat')
-rw-r--r-- | abs/not_built/extra/recstat/PKGBUILD | 19 | ||||
-rw-r--r-- | abs/not_built/extra/recstat/recstat | 56 | ||||
-rw-r--r-- | abs/not_built/extra/recstat/recstat.install | 13 | ||||
-rw-r--r-- | abs/not_built/extra/recstat/recstat.py | 38 | ||||
-rwxr-xr-x | abs/not_built/extra/recstat/run | 7 |
5 files changed, 133 insertions, 0 deletions
diff --git a/abs/not_built/extra/recstat/PKGBUILD b/abs/not_built/extra/recstat/PKGBUILD new file mode 100644 index 0000000..6df6627 --- /dev/null +++ b/abs/not_built/extra/recstat/PKGBUILD @@ -0,0 +1,19 @@ +pkgname=recstat +pkgver=1 +pkgrel=20 +pkgdesc="pkg to help use the System LEDs for Recording Status" +arch=('i686' 'x86_64') +url="" +depends=('python2' 'python-pyserial') +license=('GPL') +source=(recstat recstat.py run) +md5sums=('626acb8cdd9e5cdb3a502bc12b828067') +install=recstat.install +build () { +# install -D ${srcdir}/recstat ${pkgdir}/etc/rc.d/recstat + install -D ${srcdir}/recstat.py ${pkgdir}/usr/bin/recstat.py + install -D ${srcdir}/run ${pkgdir}/etc/sv/recstat/run +} +md5sums=('7f4ba41b65ed4d693d60d5ea00e8411b' + 'df8e54220636cedec89dee95109853ed' + '3a7cd3382212650e9233b910ed28d046') diff --git a/abs/not_built/extra/recstat/recstat b/abs/not_built/extra/recstat/recstat new file mode 100644 index 0000000..2d72c61 --- /dev/null +++ b/abs/not_built/extra/recstat/recstat @@ -0,0 +1,56 @@ +#! /bin/sh + +set -e + +PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin +DESC="serial port encoder status script" +NAME=recstat +DAEMON=/usr/bin/$NAME.py +PIDFILE=/var/run/$NAME.pid +SCRIPTNAME=/etc/init.d/$NAME + +# Gracefully exit if the package has been removed. +test -x $DAEMON || exit 0 + +# +# Function that starts the daemon/service. +# +d_start() { + start-stop-daemon --start --quiet --make-pidfile --pidfile $PIDFILE \ + --exec $DAEMON & +} + +# +# Function that stops the daemon/service. +# +d_stop() { + kill -9 `cat $PIDFILE` +} + +case "$1" in + start) + echo -n "Starting $DESC: $NAME" + d_start + echo "." + ;; + stop) + echo -n "Stopping $DESC: $NAME" + d_stop + echo "." + ;; + restart|force-reload) + echo -n "Stopping $DESC: $NAME" + d_stop + sleep 1 + echo "." + echo -n "Starting $DESC: $NAME" + d_start + echo "." + ;; + *) + echo "Usage: $SCRIPTNAME {start|stop|restart|force-reload}" >&2 + exit 1 + ;; +esac + +exit 0
\ No newline at end of file diff --git a/abs/not_built/extra/recstat/recstat.install b/abs/not_built/extra/recstat/recstat.install new file mode 100644 index 0000000..ecd58f0 --- /dev/null +++ b/abs/not_built/extra/recstat/recstat.install @@ -0,0 +1,13 @@ +# arg 1: the new package version +post_install() { + echo "" + echo "" + echo "" + echo " Edit /usr/bin/recstat.py to fit your tuner setup" + echo " http://linhes.org/bugs/projects/lin-hes/wiki/_Using_System_LEDs_for_Recording_Status_" + echo " To start this program at boot run add_service.sh recstat " +} + +op=$1 +shift +$op $* diff --git a/abs/not_built/extra/recstat/recstat.py b/abs/not_built/extra/recstat/recstat.py new file mode 100644 index 0000000..d791cb6 --- /dev/null +++ b/abs/not_built/extra/recstat/recstat.py @@ -0,0 +1,38 @@ +#!/usr/bin/python2 + +import httplib +import serial,time + +mythStatus = "127.0.0.1:6544" +encoder1 = "Encoder 1 " +encoder2 = "Encoder 2 " +recording = "is local on mythtv and is recording" +watching = "is local on mythtv and is watching" + +#Open COM2 +s = serial.Serial(1) +#Turn off all lights +s.setDTR(0) +s.setRTS(0) + +while(True): + conn = httplib.HTTPConnection(mythStatus) + conn.request("GET", "/") + r1 = conn.getresponse() + results = r1.read() + + if(results.find(encoder1+recording)!=-1): + s.setDTR(1) + elif (results.find(encoder1+watching) !=-1): + s.setDTR(1) + else: + s.setDTR(0) + + if(results.find(encoder2+recording)!=-1): + s.setRTS(1) + elif (results.find(encoder2+watching) !=-1): + s.setRTS(1) + else: + s.setRTS(0) + + time.sleep(1) diff --git a/abs/not_built/extra/recstat/run b/abs/not_built/extra/recstat/run new file mode 100755 index 0000000..150fdb4 --- /dev/null +++ b/abs/not_built/extra/recstat/run @@ -0,0 +1,7 @@ +#!/bin/sh +exec 2>&1 +export TERM=linux +. /etc/rc.conf +. /etc/rc.d/functions +stat_runit "Starting recstat" +exec /usr/bin/recstat.py |