423ba10303
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
38 lines
997 B
Bash
38 lines
997 B
Bash
#!/bin/sh
|
|
# Nico Schottelius
|
|
# Build release tar
|
|
# Date: Sat Oct 15 21:38:29 CEST 2005
|
|
# Last Changed: Fr Okt 28 01:24:58 CEST 2005
|
|
|
|
|
|
if [ $# -ne 2 ]; then
|
|
echo $(basename $0): source-dir version
|
|
exit 1
|
|
fi
|
|
|
|
DIR=$1
|
|
VERSION=$2
|
|
OUT_NAME=cinit-${VERSION}.tar.bz2
|
|
D_HOST=home.schottelius.org
|
|
D_BASE=www/org/schottelius/unix/www/cinit
|
|
D_DIR=${D_BASE}/archives/
|
|
D_SOURCE=${D_BASE}/browse_source/
|
|
|
|
if [ ! -d "$DIR" ]; then
|
|
echo "$DIR is not a directory"
|
|
exit 1
|
|
fi
|
|
|
|
( cd "$DIR" && make clean ) || exit 1
|
|
|
|
echo "Creating bzip2 compressed tar"
|
|
tar cj -X $DIR/.exclude -f "$OUT_NAME" $DIR
|
|
chmod 0644 "$OUT_NAME"
|
|
echo "Transfering to $D_HOST"
|
|
scp "$OUT_NAME" "$D_HOST:$D_DIR"
|
|
echo "Extracting to $D_SOURCE"
|
|
ssh "$D_HOST" "tar xfj $D_DIR/$OUT_NAME -C $D_SOURCE"
|
|
echo "Correcting paranoid permissions"
|
|
ssh "$D_HOST" "find \"$D_SOURCE/$DIR\" -type f -exec chmod 0644 {} \\;"
|
|
ssh "$D_HOST" "find \"$D_SOURCE/$DIR\" -type d -exec chmod 0755 {} \\;"
|
|
echo "Please do not forget to update the website..."
|