From 112767ca3898084dac6be3bd2d52df3e00e21736 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 27 Nov 2012 01:58:32 +0000 Subject: remove now useless scripts from old auto-build setup svn path=/trunk/; revision=16598 --- scripts/auto-build/extra-rsync.bat | 16 ------------ scripts/auto-build/pure-data-rsync-checkout | 38 ----------------------------- 2 files changed, 54 deletions(-) delete mode 100644 scripts/auto-build/extra-rsync.bat delete mode 100755 scripts/auto-build/pure-data-rsync-checkout (limited to 'scripts') diff --git a/scripts/auto-build/extra-rsync.bat b/scripts/auto-build/extra-rsync.bat deleted file mode 100644 index 909b35dd..00000000 --- a/scripts/auto-build/extra-rsync.bat +++ /dev/null @@ -1,16 +0,0 @@ -REM uses http://setacl.sourceforge.net/ - -cd \MinGW\msys\1.0\home\pd\ - -REM echo y|cacls c:\MinGW\msys\1.0\home\pd\auto-build /C /T /G pd:F everyone:R - -setacl -on c:\MinGW\msys\1.0\home\pd\auto-build -ot file -actn ace -ace "n:pd;p:full,write_owner;i:so,sc;m:set" -ace "n:everyone;p:read;i:so,sc;m:set" - -REM Cygwin rsync seems to be unhappy with SVN's .svn file permissions, so -REM ignore SVN files first to get all the 'meat' -rsync -av --progress --whole-file --exclude='*inv\**' --cvs-exclude --timeout=60 rsync://128.238.56.50/distros/pd-extended/ /cygdrive/c/MinGW/msys/1.0/home/pd/auto-build/pd-extended/ - -sleep 60 - -REM now get the SVN changes, this might fail a lot, especially on '.svn/entries' -rsync -av --progress --whole-file --delete-before --exclude='*inv\**' --timeout=60 rsync://128.238.56.50/distros/pd-extended/ /cygdrive/c/MinGW/msys/1.0/home/pd/auto-build/pd-extended/ diff --git a/scripts/auto-build/pure-data-rsync-checkout b/scripts/auto-build/pure-data-rsync-checkout deleted file mode 100755 index e5e4256b..00000000 --- a/scripts/auto-build/pure-data-rsync-checkout +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/sh -# update from the local CVS repository - -# the source dir where this script is -SCRIPT_DIR=$(echo $0 | sed 's|\(.*\)/.*$|\1|') -. $SCRIPT_DIR/auto-build-common - -# the name of this script -SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g') -LOGFILE=/home/pd/logs/${DATE}_${TIME}_-_${SCRIPT}_-_${SYSTEM}.txt - -update_distro () -{ - distro=$1 - echo "------------------------------------------------------------" >> $LOGFILE 2>&1 - echo "$distro" >> $LOGFILE 2>&1 - echo "------------------------------------------------------------" >> $LOGFILE 2>&1 - /home/pd/rsync/$distro/scripts/update-developer-layout.sh >> $LOGFILE 2>&1 -} - -touch $LOGFILE - -for dir in /home/pd/rsync/*; do - dirname=$(echo $dir | sed 's|.*/\(.*\)|\1|') - test -e $dir/scripts/update-developer-layout.sh && \ - update_distro $dirname -done - -for dir in /home/pd/rsync/*.git; do - cd $dir - git pull >> $LOGFILE 2>&1 - cd scripts - svn --ignore-externals update >> $LOGFILE 2>&1 -done - -# since the above test can cause this script to exit with an error, force it -# to be happy to prevent getting automated error emails to root -true -- cgit v1.2.1