aboutsummaryrefslogtreecommitdiffstats
path: root/IRC/install
diff options
context:
space:
mode:
authortv <tv@iiso>2011-09-13 17:04:45 +0200
committertv <tv@iiso>2011-09-13 17:04:45 +0200
commit7fb86be4b75f7c1a53e5ee39b620a52f2d35d1bf (patch)
treec47bc370c268fa630bc2672cab8b1f1ef63ef26e /IRC/install
parent8ed75e6eaf2b5050477b644a1bb97e0c182a4260 (diff)
//Reaktor/IRC: replace irclib with own async bot
Unfortunately irclib failed to detect stale connections. Asyboy comes to the rescue (maybe).^_^->deal with it...^_^
Diffstat (limited to 'IRC/install')
-rwxr-xr-xIRC/install28
1 files changed, 0 insertions, 28 deletions
diff --git a/IRC/install b/IRC/install
deleted file mode 100755
index d5f7a8c..0000000
--- a/IRC/install
+++ /dev/null
@@ -1,28 +0,0 @@
-#! /bin/sh
-set -xeuf
-
-# cd //Reaktor/IRC
-cd $(dirname $(readlink -f $0))
-
-# install irclib.py
-{
- PV=0.4.6
- PN=python-irclib
- P=$PN-$PV
- tarball=$P.tar.gz
- URL=http://downloads.sourceforge.net/$PN/$tarball
- SHA1SUM=c6271e44293ed51c21af0f44ce106667d3006e6f
-
- file=irclib.py
-
- if ! echo "$SHA1SUM $file" | sha1sum -c; then
- temp=`mktemp`
- trap "rm -f $temp" EXIT INT
-
- echo $P/$file > $temp
- curl -LfsS $URL | tar --strip-components=1 -zxT $temp
- fi
- echo "$SHA1SUM $file" | sha1sum -c
-}
-
-