aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/checkin-vanilla-release.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/checkin-vanilla-release.sh b/scripts/checkin-vanilla-release.sh
new file mode 100755
index 00000000..b65ca193
--- /dev/null
+++ b/scripts/checkin-vanilla-release.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# this script is for checking in a Pd release tarball into the pure-data SVN
+
+cd ~/code/pure-data/trunk/pd
+rm -rf bin/*
+rm -rf src/autom4te.cache/
+find ~/code/pure-data/trunk/pd -type f | grep -v svn | xargs rm
+tar --strip-components 1 -xzf ~/Downloads/pd-0.43-0.src.tar.gz
+rm configure src/configure src/makefile.dependencies
+svn rm `svn st| sed -n 's|^!\(.*\)|\1|p'`
+svn add `svn st| sed -n 's|^?\(.*\)|\1|p'`