summaryrefslogtreecommitdiffstats
path: root/abs
diff options
context:
space:
mode:
authorCecil Hugh Watson <knoppmyth@gmail.com>2009-09-18 08:10:24 (GMT)
committerCecil Hugh Watson <knoppmyth@gmail.com>2009-09-18 08:10:24 (GMT)
commit3f7f6755080dc75184b8dbcf7c76ac96202cbec8 (patch)
treecaf4278b75e9df89e4f0ca67e684138f5f2ca367 /abs
parentaea3473af4c728fcb02922503eff2d0af1c74fe8 (diff)
downloadlinhes_pkgbuild-3f7f6755080dc75184b8dbcf7c76ac96202cbec8.zip
linhes_pkgbuild-3f7f6755080dc75184b8dbcf7c76ac96202cbec8.tar.gz
linhes_pkgbuild-3f7f6755080dc75184b8dbcf7c76ac96202cbec8.tar.bz2
linhes-scripts:added script to view upgradable packages.
Diffstat (limited to 'abs')
-rw-r--r--abs/core-testing/linhes-scripts/PKGBUILD3
-rw-r--r--abs/core-testing/linhes-scripts/linhes_update.sh1
-rw-r--r--abs/core-testing/linhes-scripts/linhes_update3.sh9
3 files changed, 12 insertions, 1 deletions
diff --git a/abs/core-testing/linhes-scripts/PKGBUILD b/abs/core-testing/linhes-scripts/PKGBUILD
index 924acfd..a8e1f1e 100644
--- a/abs/core-testing/linhes-scripts/PKGBUILD
+++ b/abs/core-testing/linhes-scripts/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=linhes-scripts
pkgver=1
-pkgrel=27
+pkgrel=29
pkgdesc="Various scripts that help to make LinHES, LinHES."
arch=('i686' 'x86_64')
license=('GPL2')
@@ -31,6 +31,7 @@ screenshooter.sh
run-limit-mythcommflag
linhes_update.sh
linhes_update2.sh
+linhes_update3.sh
)
build() {
diff --git a/abs/core-testing/linhes-scripts/linhes_update.sh b/abs/core-testing/linhes-scripts/linhes_update.sh
index 6890d26..89d39d8 100644
--- a/abs/core-testing/linhes-scripts/linhes_update.sh
+++ b/abs/core-testing/linhes-scripts/linhes_update.sh
@@ -32,6 +32,7 @@ chck () {
mv /tmp/linhes.xml.tmp /usr/share/mythtv/linhes.xml
dsply
fi
+ grep Target /tmp/check_update > /tmp/to_be_upgraded
}
dsply
chck
diff --git a/abs/core-testing/linhes-scripts/linhes_update3.sh b/abs/core-testing/linhes-scripts/linhes_update3.sh
new file mode 100644
index 0000000..82722b8
--- /dev/null
+++ b/abs/core-testing/linhes-scripts/linhes_update3.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+if [ -s /tmp/to_be_upgraded ]
+ then
+ sudo killall osd_cat
+ cat /tmp/to_be_upgraded | osd_cat -p top -f"-adobe-courier-bold-*-*-*-34-*-*-*-*-*" -d 1 -A centre -l 20 -w
+ else
+ sudo killall osd_cat
+ echo -e "No updates at this time." | osd_cat -p middle -s 5 -f"-adobe-courier-bold-*-*-*-34-*-*-*-*-*" -d 5 -A centre &
+fi