diff options
author | tv <tv@iiso> | 2011-09-13 17:04:45 +0200 |
---|---|---|
committer | tv <tv@iiso> | 2011-09-13 17:04:45 +0200 |
commit | 3aa12f6bcaf0ed4d7e55d686e8a0a4dc45301c36 (patch) | |
tree | d724f38b74780a37baf91566656926bf4070e505 /Reaktor/IRC/install | |
parent | 7448f050bd456c5eef2fbb5492c608d6760ea218 (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 'Reaktor/IRC/install')
-rwxr-xr-x | Reaktor/IRC/install | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Reaktor/IRC/install b/Reaktor/IRC/install deleted file mode 100755 index d5f7a8c1..00000000 --- a/Reaktor/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 -} - - |