From: Dale Weiler Date: Thu, 12 Sep 2013 19:06:36 +0000 (-0400) Subject: Added xonotic_export.sh utility that when run from a xonotic-data.pk3dir will elimina... X-Git-Tag: 0.3.5~93 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=5bb245a33a25229a76b402a597dc897dad3564a3 Added xonotic_export.sh utility that when run from a xonotic-data.pk3dir will eliminate redundant files and create prog.src files for csprogs, progs(server) and menu. This tool will be used for check-proj.sh for exporting xonotic changes to our server. --- diff --git a/misc/xonotic_export.sh b/misc/xonotic_export.sh new file mode 100755 index 0000000..775cf05 --- /dev/null +++ b/misc/xonotic_export.sh @@ -0,0 +1,55 @@ +#!/bin/sh + +if [ ! -d qcsrc ]; then + echo "failed to find qcsrc directory in $(pwd), please run this script" + echo "from xonotic-data.pk3dir" + exit 1 +else + # ensure this is actually a xonotic repo + pushd qcsrc > /dev/null + if [ ! -d client -o ! -d common -o ! -d dpdefs -o ! -d menu -o ! -d server -o ! -d warpzonelib ]; then + echo "this doesnt look like a xonotic source tree, aborting" + popd >> /dev/null + exit 1 + fi +fi + +# force reset and update +git rev-parse +if [ $? -ne 0 ]; then + echo "not a git directory, continuing without rebase" +else + echo -n "resetting git state and updating ... " + git reset --hard HEAD > /dev/null + git pull > /dev/null + echo "complete" +fi + +echo -n "removing redundant files ... " +# remove redundant stuff +rm -f autocvarize.pl +rm -f autocvarize-update.sh +rm -f collect-precache.sh +rm -f fteqcc-bugs.qc +rm -f i18n-badwords.txt +rm -f i18n-guide.txt +rm -rf server-testcase +rm -f Makefile +rm -f *.src +echo "complete" + +echo -n "creating prog.src files ... " +find client common warpzonelib csqcmodellib -type f > csprogs.src +ls server/w_*.qc | cat >> csprogs.src +find server common warpzonelib csqcmodellib -type f > progs.src +ls server/w_*.qc | cat >> progs.src +find menu common warpzonelib -type f > menu.src +ls server/w_*.qc | cat >> menu.src +echo "complete" + +echo -n "creating zip archive ... " +zip -r ../xonotic.zip * > /dev/null +echo "complete" + +popd > /dev/null +echo "finished!"