]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
./all: support DP's new jpeg lib handling
[xonotic/xonotic.git] / all
1 #!/bin/sh
2 # vim: filetype=zsh
3
4 set -e
5
6 # I use this in EVERY shell script ;)
7 LF="
8 "
9
10 d00=`pwd`
11 while ! [ -f ./all ]; do
12         if [ x"`pwd`" = x"/" ]; then
13                 echo "Cannot find myself."
14                 echo "Please run this script with the working directory inside a Xonotic checkout."
15                 exit 1
16         fi
17         cd ..
18 done
19 export d0=`pwd`
20 SELF="$d0/all"
21
22 # If we are on WINDOWS:
23 case "$0" in
24         all|*/all)
25                 case "`uname`" in
26                         MINGW*|Win*)
27                                 # Windows hates users. So this script has to copy itself elsewhere first...
28                                 cp "$SELF" ../all.xonotic.sh
29                                 export WE_HATE_OUR_USERS=1
30                                 exec ../all.xonotic.sh "$@"
31                                 ;;
32                 esac
33                 ;;
34 esac
35
36 msg()
37 {
38         echo >&2 "\e[1m$*\e[m"
39 }
40
41 self=`git hash-object "$SELF"`
42 checkself()
43 {
44         self_new=`git hash-object "$SELF"`
45         if [ x"$self" != x"$self_new" ]; then
46                 msg "./all has changed."
47                 if [ -z "$XONOTIC_FORBID_RERUN_ALL" ]; then
48                         msg "Rerunning the requested operation to make sure."
49                         export XONOTIC_FORBID_RERUN_ALL=1
50                         exec "$SELF" "$@"
51                 else
52                         msg "Please try $SELF update, and then retry your requested operation."
53                         exit 1
54                 fi
55         fi
56         return 0
57 }
58
59 verbose()
60 {
61         msg "+ $*"
62         "$@"
63 }
64
65 visible_repo_name()
66 {
67         case "$1" in
68                 .)
69                         echo "the root directory"
70                         ;;
71                 *)
72                         echo "\"$1\""
73                         ;;
74         esac
75 }
76
77 check_mergeconflict()
78 {
79         if git ls-files -u | grep ' 1   '; then
80                 echo
81                 echo "MERGE CONFLICT."
82                 echo "change into the \"$1\" project directory, and then:"
83                 echo "- edit the files mentioned above with your favorite editor,"
84                 echo "  and fix the conflicts (marked with <<<<<<< blocks)"
85                 echo "- for binary files, you can select the files using"
86                 echo "  git checkout --ours or git checkout --theirs"
87                 echo "- when done with a file, 'git add' the file"
88                 echo "- when done, 'git commit'"
89                 echo
90                 exit 1
91         fi
92 }
93
94 yesno()
95 {
96         yesno=
97         while [ x"$yesno" != x"y" -a x"$yesno" != x"n" ]; do
98                 eval "$2"
99                 echo "$1"
100                 IFS= read -r yesno
101         done
102         [ x"$yesno" = x"y" ]
103 }
104
105 enter()
106 {
107         $2 cd "$1" || exit 1
108         check_mergeconflict "$1"
109 }
110
111 repos_urls="
112 .                             |                                                   | master      |
113 data/xonotic-data.pk3dir      |                                                   | master      |
114 data/xonotic-maps.pk3dir      |                                                   | master      |
115 data/xonotic-music.pk3dir     |                                                   | master      |
116 data/xonotic-nexcompat.pk3dir |                                                   | master      |
117 mediasource                   |                                                   | master      |
118 darkplaces                    |                                                   | div0-stable | svn
119 fteqcc                        | git://github.com/Blub/qclib.git                   | master      |
120 div0-gittools                 |                                                   | master      |
121 netradiant                    |                                                   | master      |
122 "
123 # todo: in darkplaces, change repobranch to div0-stable
124
125 repos=`echo "$repos_urls" | grep . | cut -d '|' -f 1 | tr -d ' '`
126
127 base=`git config remote.origin.url`
128 case "$base" in
129         */xonotic.git)
130                 base=${base%xonotic.git}
131                 ;;
132         *)
133                 echo "The main repo is not xonotic.git, what have you done?"
134                 exit 1
135                 ;;
136 esac
137
138 repourl()
139 {
140         repo_t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 2 | tr -d ' '`
141         if [ -n "$repo_t" ]; then
142                 case "$repo_t" in
143                         *://*)
144                                 echo "$repo_t"
145                                 ;;
146                         *)
147                                 echo "$base$repo_t"
148                                 ;;
149                 esac
150         else
151                 if [ x"$1" = x"." ]; then
152                         echo "$base""xonotic.git"
153                 else
154                         echo "$base${1##*/}.git"
155                 fi
156         fi
157 }
158
159 repobranch()
160 {
161         repo_t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 3 | tr -d ' '`
162         if [ -n "$repo_t" ]; then
163                 echo "$repo_t"
164         else
165                 echo "master"
166         fi
167 }
168
169 repoflags()
170 {
171         echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 4 | tr -d ' '
172 }
173
174 repos=`for d in $repos; do
175         p="${d%dir}"
176         if [ x"$p" = x"$d" ] || [ -d "$d" ] || ! { [ -f "$d.no" ] || [ -f "$p" ]; }; then
177                 echo "$d"
178         fi
179 done`
180
181 if [ "$#" = 0 ]; then
182         set -- help
183 fi
184 cmd=$1
185 shift
186
187 fix_upstream_rebase()
188 {
189         if [ -z "$r_me" ] || [ -z "$r_other" ]; then
190                 return
191         fi
192         r_base=`git merge-base "$r_me" "$r_other"`
193
194         # no merge-base? upstream did filter-branch
195         if [ -n "$r_base" ]; then
196                 # otherwise, check if the two histories are "similar"
197                 r_l_me=`git log --pretty="format:%s" "$r_other".."$r_me" | grep -v "^Merge" | sort -u`
198                 r_l_other=`git log --pretty="format:%s" "$r_me".."$r_other" | grep -v "^Merge" | sort -u`
199
200                 # heuristics: upstream rebase/filter-branch if more than 50% of the commits of one of the sides are in the other too
201                 r_lc_me=`echo "$r_l_me" | wc -l`
202                 r_lc_other=`echo "$r_l_other" | wc -l`
203                 r_lc_together=`{ echo "$r_l_me"; echo "$r_l_other"; } | sort -u | wc -l`
204                 r_lc_same=$(($r_lc_me + $r_lc_other - $r_lc_together))
205
206                 if [ $(( $r_lc_same * 2 )) -gt $(( $r_lc_me )) ] || [ $(( $r_lc_same * 2 )) -gt $(( $r_lc_other )) ]; then
207                         if yesno "Probable upstream rebase detected, automatically fix?" 'git log --oneline --graph --date-order --left-right "$r_other"..."$r_me"'; then
208                                 git reset --hard "$r_me"
209                                 git pull --rebase
210                                 return 1
211                         fi
212                 fi
213         fi
214
215         return 0
216 }
217
218 fix_upstream_rebase_mergeok()
219 {
220         r_me=`git rev-parse --revs-only HEAD^1 2>/dev/null || true`
221         r_other=`git rev-parse --revs-only HEAD^2 2>/dev/null || true`
222         fix_upstream_rebase
223 }
224
225 fix_upstream_rebase_mergefail()
226 {
227         r_me=`git rev-parse --revs-only HEAD 2>/dev/null || true`
228         r_other=`git rev-parse --revs-only MERGE_HEAD 2>/dev/null || true`
229         fix_upstream_rebase
230 }
231
232 case "$cmd" in
233         fix_upstream_rebase)
234                 for d in $repos; do
235                         enter "$d0/$d" verbose
236                         verbose fix_upstream_rebase_mergefail && verbose fix_upstream_rebase_mergeok
237                 done
238                 ;;
239         update|pull)
240                 allow_pull=true
241                 if [ x"$1" = x"-N" ]; then
242                         allow_pull=false
243                 fi
244                 for d in $repos; do
245                         url=`repourl "$d"`
246                         branch=`repobranch "$d"`
247                         if [ -d "$d0/$d" ]; then
248                                 if $allow_pull; then
249                                         enter "$d0/$d" verbose
250                                         verbose git config remote.origin.url "$url"
251                                         verbose git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
252
253                                         verbose git config core.autocrlf input
254
255                                         r=`git symbolic-ref HEAD`
256                                         r=${r#refs/heads/}
257                                         if git config branch.$r.remote >/dev/null 2>&1; then
258                                                 if ! verbose git pull; then
259                                                         fix_upstream_rebase_mergefail || true
260                                                         check_mergeconflict "$d"
261                                                         echo "Pulling failed. Press ENTER to continue, or Ctrl-C to abort."
262                                                         read -r DUMMY
263                                                 else
264                                                         fix_upstream_rebase_mergeok || true
265                                                 fi
266                                         fi
267
268                                         cd "$d00"
269                                         checkself "$cmd" "$@"
270                                         cd "$d0/$d"
271                                         verbose git remote prune origin
272                                         cd "$d0"
273                                 fi
274                         else
275                                 verbose git clone "$url" "$d0/$d"
276                                 enter "$d0/$d" verbose
277                                 if [ "$branch" != "master" ]; then
278                                         verbose git checkout --track -b "$branch" origin/"$branch"
279                                 fi
280                                 cd "$d0"
281                         fi
282                 done
283                 ;;
284         update-maps)
285                 misc/tools/xonotic-map-compiler-autobuild download
286                 ;;
287         checkout|switch)
288                 checkoutflags=
289                 if [ x"$1" = x"-f" ]; then
290                         checkoutflags=-f
291                         shift
292                 fi
293                 remote=$1
294                 branch=$2
295                 if [ -z "$branch" ]; then
296                         case "$remote" in
297                                 origin/*)
298                                         branch=${remote#origin/}
299                                         remote=origin
300                                         ;;
301                                 *)
302                                         branch=$remote
303                                         remote=origin
304                                         ;;
305                         esac
306                 fi
307                 exists=false
308                 for d in $repos; do
309                         enter "$d0/$d" verbose
310                         b=$branch
311                         if [ -n "$b" ] && git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
312                                 exists=true
313                                 verbose git checkout $checkoutflags "$b"
314                         elif [ -n "$b" ] && git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
315                                 exists=true
316                                 verbose git checkout $checkoutflags --track -b "$b" "$remote/$b"
317                         else
318                                 b=`repobranch "$d"`
319                                 if git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
320                                         exists=true
321                                         verbose git checkout $checkoutflags "$b"
322                                 elif git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
323                                         exists=true
324                                         verbose git checkout $checkoutflags --track -b "$b" "$remote/$b"
325                                 else
326                                         echo "WTF? Not even branch $b doesn't exist in $d"
327                                         exit 1
328                                 fi
329                         fi
330                         cd "$d00"
331                         checkself "$cmd" "$@"
332                         cd "$d0"
333                 done
334                 if ! $exists; then
335                         echo "The requested branch was not found in any repository."
336                 fi
337                 exec "$SELF" branch
338                 ;;
339         branch)
340                 remote=$1
341                 branch=$2
342                 srcbranch=$3
343                 if [ -z "$branch" ]; then
344                         branch=$remote
345                         remote=origin
346                 fi
347                 if [ -z "$branch" ]; then
348                         for d in $repos; do
349                                 enter "$d0/$d"
350                                 r=`git symbolic-ref HEAD`
351                                 r=${r#refs/heads/}
352                                 echo "$d is at $r"
353                                 cd "$d0"
354                         done
355                 else
356                         for d in $repos; do
357                                 dv=`visible_repo_name "$d"`
358                                 enter "$d0/$d" verbose
359                                 if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then
360                                         echo "Already having this branch in $dv."
361                                 else
362                                         if yesno "Branch in $dv?"; then
363                                                 if [ -n "$srcbranch" ]; then
364                                                         b=$srcbranch
365                                                 else
366                                                         b=origin/"`repobranch "$d"`"
367                                                         verbose git fetch origin || true
368                                                 fi
369                                                 # TODO do this without pushing
370                                                 verbose git checkout -b "$branch" "$b"
371                                                 verbose git config "branch.$branch.remote" "$remote"
372                                                 verbose git config "branch.$branch.merge" "refs/heads/$branch"
373                                         fi
374                                 fi
375                                 cd "$d0"
376                         done
377                         "$SELF" branch
378                 fi
379                 ;;
380         branches)
381                 for d in $repos; do
382                         cd "$d0/$d" # am in a pipe, shouldn't use enter
383                         git branch -a -v -v | cut -c 3- | sed "s/^(no branch)/(no_branch)/" | sed "s,^,$d ,"
384                         cd "$d0"
385                 done | {
386                         branches_list=
387                         # branches_repos_*=
388                         while read -r d BRANCH REV UPSTREAM TEXT; do
389                                 if [ x"$BRANCH" = x"`repobranch "$d"`" ]; then
390                                         continue
391                                 fi
392                                 case "$UPSTREAM" in
393                                         \[*)
394                                                 UPSTREAM=${UPSTREAM#\[}
395                                                 UPSTREAM=${UPSTREAM%\]}
396                                                 UPSTREAM=${UPSTREAM%:*}
397                                                 ;;
398                                         *)
399                                                 TEXT="$UPSTREAM $TEXT"
400                                                 UPSTREAM=
401                                                 ;;
402                                 esac
403                                 if [ x"$REV" = x"->" ]; then
404                                         continue
405                                 fi
406                                 BRANCH=${BRANCH#remotes/}
407                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
408                                 branches_list="$branches_list $BRANCH" # TEH SORT MAKEZ IT UNIEQ
409                                 eval "r=\$branches_repos_$ID"
410                                 case "$UPSTREAM" in
411                                         '')
412                                                 r="$r $d"
413                                                 ;;
414                                         *)
415                                                 r="$r $d:$UPSTREAM"
416                                                 ;;
417                                 esac
418                                 eval "branches_repos_$ID=\$r"
419                         done
420                         echo -n "$branches_list" | xargs -n 1 echo | sort -u | while IFS= read -r BRANCH; do
421                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
422                                 eval "r=\$branches_repos_$ID"
423                                 printf "%-60s %s\n" "$BRANCH" "$r"
424                                 #echo "$BRANCH: $r"
425                         done
426                 }
427                 ;;
428         merge)
429                 for d in $repos; do
430                         dv=`visible_repo_name "$d"`
431                         enter "$d0/$d" verbose
432                         r=`git symbolic-ref HEAD`
433                         r=${r#refs/heads/}
434                         if git log HEAD..origin/"`repobranch "$d"`" | grep .; then
435                                 # we have uncommitted changes
436                                 if yesno "Could merge from \"`repobranch "$d"`\" into \"$r\" in $dv. Do it?"; then
437                                         if ! verbose git merge origin/"`repobranch "$d"`"; then
438                                                 check_mergeconflict "$d"
439                                                 exit 1 # this should ALWAYS be fatal
440                                         fi
441                                 fi
442                         fi
443                         cd "$d0"
444                 done
445                 ;;
446         push|commit)
447                 submit=$1
448                 for d in $repos; do
449                         dv=`visible_repo_name "$d"`
450                         enter "$d0/$d" verbose
451                         r=`git symbolic-ref HEAD`
452                         r=${r#refs/heads/}
453                         diffdata=`git diff --color HEAD`
454                         if [ -n "$diffdata" ]; then
455                                 # we have uncommitted changes
456                                 if yesno "Uncommitted changes in \"$r\" in $dv. Commit?" 'echo "$diffdata" | less -r'; then
457                                         verbose git commit -a
458                                 fi
459                         fi
460                         rem=`git config "branch.$r.remote" || echo origin`
461                         bra=`git config "branch.$r.merge" || echo "$r"`
462                         upstream="$rem/${bra#refs/heads/}"
463                         if ! git rev-parse "$upstream" >/dev/null 2>&1; then
464                                 upstream="origin/`repobranch "$d"`"
465                         fi
466                         logdata=`git log --color "$upstream".."$r"`
467                         if [ -n "$logdata" ]; then
468                                 if yesno "Push \"$r\" in $dv?" 'echo "$logdata" | less -r'; then
469                                         verbose git push "$rem" HEAD
470                                 fi
471                         fi
472                         if [ x"$submit" = x"-s" ]; then
473                                 case "$r" in
474                                         */*)
475                                                 verbose git push "$rem" HEAD:"${bra%%/*}/finished/${bra#*/}"
476                                                 ;;
477                                 esac
478                         fi
479                         cd "$d0"
480                 done
481                 ;;
482         compile)
483                 if [ -n "$WE_HATE_OUR_USERS" ]; then
484                         TARGETS="sv-debug cl-debug"
485                         if [ -z "$CC" ]; then
486                                 export CC=gcc
487                         fi
488                 elif [ x"`uname`" = x"Darwin" ]; then
489                         case "`uname -r`" in
490                                 ?.*)
491                                         TARGETS="sv-debug cl-debug sdl-debug"
492                                         ;;
493                                 *)
494                                         # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard)
495                                         TARGETS="sv-debug sdl-debug"
496                                         ;;
497                         esac
498                         export CC="gcc -I$PWD/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks/SDL.framework/Headers -F$PWD/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
499                 else
500                         TARGETS="sv-debug cl-debug sdl-debug"
501                 fi
502                 case "$1" in
503                         -c)
504                                 cleandp=true
505                                 cleanqcc=true
506                                 cleanqc=true
507                                 shift
508                                 ;;
509                         -n)
510                                 cleandp=false
511                                 cleanqcc=false
512                                 cleanqc=false
513                                 shift
514                                 ;;
515                         *)
516                                 cleandp=false
517                                 cleanqcc=false
518                                 cleanqc=true # version info
519                                 ;;
520                 esac
521                 if [ $# -gt 0 ] && [ x"$1" = x"" ]; then
522                         # if we give the command make the arg "", it will surely fail (invalid filename),
523                         # so better handle it as an empty client option
524                         BAD_TARGETS=" "
525                         shift
526                 elif [ -n "$1" ]; then
527                         BAD_TARGETS=
528                         TARGETS_SAVE=$TARGETS
529                         TARGETS=
530                         for X in $1; do
531                                 case "$X" in
532                                         sdl)
533                                                 TARGETS="$TARGETS sdl-debug"
534                                                 ;;
535                                         glx|agl|wgl)
536                                                 TARGETS="$TARGETS cl-debug"
537                                                 ;;
538                                         dedicated)
539                                                 TARGETS="$TARGETS sv-debug"
540                                                 ;;
541                                         *)
542                                                 BAD_TARGETS="$BAD_TARGETS $X"
543                                                 ;;
544                                 esac
545                         done
546                         if [ -n "$TARGETS" ]; then # at least a valid client
547                                 shift
548                         else # no valid client, let's assume this option is not meant to be a client then
549                                 TARGETS=$TARGETS_SAVE
550                                 BAD_TARGETS=
551                         fi
552                 fi
553                 if [ -z "$MAKEFLAGS" ]; then
554                         if [ -f /proc/cpuinfo ]; then
555                                 ncpus=$((`grep -c '^processor   :' /proc/cpuinfo`+0))
556                                 if [ $ncpus -gt 1 ]; then
557                                         MAKEFLAGS=-j$ncpus
558                                 fi
559                         fi
560                         if [ -n "$WE_HATE_OUR_USERS" ]; then
561                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw LIB_JPEG= CFLAGS_LIBJPEG="
562                         fi
563                 fi
564
565                 enter "$d0/fteqcc" verbose
566                 if $cleanqcc; then
567                         verbose make $MAKEFLAGS clean
568                 fi
569                 verbose make $MAKEFLAGS
570
571                 enter "$d0/data/xonotic-data.pk3dir" verbose
572                 if $cleanqc; then
573                         verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS clean
574                 fi
575                 verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS
576
577                 enter "$d0/darkplaces" verbose
578                 if [ x"$BAD_TARGETS" = x" " ]; then
579                         echo "Warning: invalid empty client, default clients will be used."
580                 fi
581                 if $cleandp; then
582                         verbose make $MAKEFLAGS clean
583                 fi
584                 for T in $TARGETS; do
585                         verbose make $MAKEFLAGS "$@" "$T"
586                 done
587                 for T in $BAD_TARGETS; do
588                         echo "Warning: discarded invalid client $T."
589                 done
590
591                 verbose "$SELF" update-maps
592                 ;;
593         run)
594                 if [ -n "$WE_HATE_OUR_USERS" ]; then
595                         client=
596                         export PATH="$d0/misc/buildfiles/win32:$PATH"
597                 elif [ x"`uname`" = x"Darwin" ]; then
598                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/MacOS"
599                         export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
600                         client=-sdl
601                 else
602                         client=-sdl
603                 fi
604                 case "$1" in
605                         sdl|glx|agl|dedicated)
606                                 client=-$1
607                                 shift
608                                 ;;
609                         wgl)
610                                 client=
611                                 shift
612                                 ;;
613                 esac
614                 if ! [ -x "darkplaces/darkplaces$client" ]; then
615                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
616                                 client=$client.exe
617                         else
618                                 echo "Client darkplaces/darkplaces$client not found, aborting"
619                                 exit 1
620                         fi
621                 fi
622                 set -- "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic -mygames "$@"
623
624                 # if pulseaudio is running: USE IT
625                 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
626                         if ps -C pulseaudio >/dev/null; then
627                                 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
628                                         export SDL_AUDIODRIVER=pulse
629                                 fi
630                         fi
631                 fi
632
633                 if [ -n "$USE_GDB" ]; then
634                         set -- gdb --args "$@"
635                 fi
636                 "$@"
637                 ;;
638         each|foreach)
639                 keep_going=false
640                 if [ x"$1" = x"-k" ]; then
641                         keep_going=true
642                         shift
643                 fi
644                 for d in $repos; do
645                         if verbose cd "$d0/$d"; then
646                                 if $keep_going; then
647                                         verbose "$@" || true
648                                 else
649                                         verbose "$@"
650                                 fi
651                                 cd "$d0"
652                         fi
653                 done
654                 ;;
655         save-patches)
656                 outfile=$1
657                 patchdir=`mktemp -d -t save-patches.XXXXXX`
658                 for d in $repos; do
659                         enter "$d0/$d" verbose
660                         git branch -v -v | cut -c 3- | {
661                                 i=0
662                                 while read -r BRANCH REV UPSTREAM TEXT; do
663                                         case "$UPSTREAM" in
664                                                 \[*)
665                                                         UPSTREAM=${UPSTREAM#\[}
666                                                         UPSTREAM=${UPSTREAM%\]}
667                                                         UPSTREAM=${UPSTREAM%:*}
668                                                         TRACK=true
669                                                         ;;
670                                                 *)
671                                                         UPSTREAM=origin/"`repobranch "$d"`"
672                                                         TRACK=false
673                                                         ;;
674                                         esac
675                                         if [ x"$REV" = x"->" ]; then
676                                                 continue
677                                         fi
678                                         if git format-patch -o "$patchdir/$i" "$UPSTREAM".."$BRANCH"; then
679                                                 echo "$d" > "$patchdir/$i/info.txt"
680                                                 echo "$BRANCH" >> "$patchdir/$i/info.txt"
681                                                 echo "$UPSTREAM" >> "$patchdir/$i/info.txt"
682                                                 echo "$TRACK" >> "$patchdir/$i/info.txt"
683                                                 i=$(($i+1))
684                                         else
685                                                 rm -rf "$patchdir/$i"
686                                         fi
687                                 done
688                         }
689                 done
690                 ( cd "$patchdir" && tar cvzf - . ) > "$outfile"
691                 rm -rf "$patchdir"
692                 ;;
693         restore-patches)
694                 infile=$1
695                 patchdir=`mktemp -d -t restore-patches.XXXXXX`
696                 ( cd "$patchdir" && tar xvzf - ) < "$infile"
697                 # detach the head
698                 for P in "$patchdir"/*/info.txt; do
699                         D=${P%/info.txt}
700                         exec 3<"$P"
701                         read -r d <&3
702                         read -r BRANCH <&3
703                         read -r UPSTREAM <&3
704                         read -r TRACK <&3
705                         verbose git checkout HEAD^0
706                         verbose git branch -D "$BRANCH"
707                         if [ x"$TRACK" = x"true" ]; then
708                                 verbose git checkout --track -b "$BRANCH" "$UPSTREAM"
709                         else
710                                 verbose git branch -b "$BRANCH" "$UPSTREAM"
711                         fi
712                         verbose git am "$D"
713                 done
714                 rm -rf "$patchdir"
715                 ;;
716         admin-merge)
717                 branch=$1
718                 t=`mktemp`
719                 report=""
720                 reportecho()
721                 {
722                         report=$report"$*$LF"
723                         echo "$*"
724                 }
725                 reportecho4()
726                 {
727                         report=$report"    $*$LF"
728                         echo "    $*"
729                 }
730                 reportdo4()
731                 {
732                         o=`"$@" | sed 's/^/    /' || true`
733                         reportecho "$o"
734                 }
735                 for d in $repos; do
736                         enter "$d0/$d" verbose
737                         base="`repobranch "$d"`"
738                         reportecho "In $d:"
739                         for ref in `git for-each-ref --format='%(refname)' refs/remotes/origin/`; do
740                                 case "${ref#refs/remotes/origin/}" in
741                                         "$base")
742                                                 continue
743                                                 ;;
744                                         HEAD|master)
745                                                 continue
746                                                 ;;
747                                         */*)
748                                                 ;;
749                                         *)
750                                                 continue
751                                                 ;;
752                                 esac
753                                 if [ -n "$branch" ]; then
754                                         if [ x"$branch" != x"${ref#refs/remotes/origin/}" ]; then
755                                                 continue
756                                         fi
757                                 fi
758                                 case "$base" in
759                                         master)
760                                                 realbase=$base
761                                                 ;;
762                                         *)
763                                                 l0=`git rev-list "$base".."$ref" | wc -l`
764                                                 l1=`git rev-list master.."$ref" | wc -l`
765                                                 if [ $l0 -gt $l1 ]; then
766                                                         realbase=master
767                                                 else
768                                                         realbase=$base
769                                                 fi
770                                                 ;;
771                                 esac
772                                 reportecho "  Branch $ref:"
773                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
774                                 logdata=`git log --color "$realbase".."$ref"`
775                                 if [ -z "$logdata" ]; then
776                                         reportecho4 "--> not merging, no changes vs master"
777                                         if yesno "Branch \"$ref\" probably should get deleted. Do it?" ''; then
778                                                 git push origin :"${ref#refs/remotes/origin/}"
779                                                 reportecho4 "--> branch deleted"
780                                         fi
781                                 else
782                                         diffdata=`git diff --color --find-copies-harder --ignore-space-change "$realbase"..."$ref"`
783                                         if [ -z "$diffdata" ]; then
784                                                 reportecho4 "--> not merging, no changes vs master, branch contains redundant history"
785                                                 if yesno "Branch \"$ref\" probably should get deleted. Do it?" '{ echo "$logdata"; } | less -r'; then
786                                                         git push origin :"${ref#refs/remotes/origin/}"
787                                                         reportecho4 "--> branch deleted"
788                                                 fi
789                                         elif [ -z "$branch" ] && [ -n "$note" ]; then
790                                                 reportdo4 echo "$note"
791                                                 reportecho4 "--> not merging, already had this one rejected before"
792                                         elif yesno "Branch \"$ref\" may want to get merged. Do it?" '{ echo "$logdata"; echo "$diffdata"; } | less -r'; then
793                                                 git checkout "$realbase"
794                                                 org=`git rev-parse HEAD`
795                                                 if ! git merge --no-ff "$ref" 2>&1 | tee "$t" && ! { git ls-files -u | grep ' 1   ' >/dev/null; }; then
796                                                         git reset --hard "$org"
797                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Merge failed:$LF`cat "$t"`" "$ref"
798                                                         reportdo4 cat "$t"
799                                                         reportecho4 "--> merge failed"
800                                                 elif ! "$SELF" compile -n 2>&1 | tee "$t"; then
801                                                         git reset --hard "$org"
802                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Compile failed:$LF`cat "$t"`" "$ref"
803                                                         reportdo4 cat "$t"
804                                                         reportecho4 "--> compile failed"
805                                                 elif ! yesno "Still merge \"$ref\" into `git symbolic-ref HEAD` of $d? Maybe you want to test first."; then
806                                                         git reset --hard "$org"
807                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
808                                                         note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
809                                                         if [ x"$note" = x"del" ]; then
810                                                                 git push origin :"${ref#refs/remotes/origin/}"
811                                                                 reportecho4 "--> test failed, branch deleted"
812                                                         elif [ -n "$note" ]; then
813                                                                 reportdo4 echo "$note"
814                                                                 reportecho4 "--> test failed"
815                                                         else
816                                                                 reportecho4 "--> test failed, postponed"
817                                                         fi
818                                                 else
819                                                         echo "MERGING"
820                                                         case ",`repoflags "$d"`," in
821                                                                 *,svn,*)
822                                                                         # we do quite a mess here... luckily we know $org
823                                                                         git fetch # svn needs to be current
824                                                                         git rebase -i --onto origin/master "$org"
825                                                                         git svn dcommit --add-author-from
826                                                                         git reset --hard "$org"
827                                                                         ;;
828                                                                 *)
829                                                                         git push origin HEAD
830                                                                         ;;
831                                                         esac
832                                                         reportecho4 "--> MERGED"
833                                                         if yesno "Delete original branch \"$ref\"?"; then
834                                                                 git push origin :"${ref#refs/remotes/origin/}"
835                                                                 reportecho4 "--> branch deleted"
836                                                         fi
837                                                 fi
838                                         else
839                                                 GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
840                                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
841                                                 if [ x"$note" = x"del" ]; then
842                                                         git push origin :"${ref#refs/remotes/origin/}"
843                                                         reportecho4 "--> branch deleted"
844                                                 elif [ -n "$note" ]; then
845                                                         reportdo4 echo "$note"
846                                                         reportecho4 "--> rejected"
847                                                 else
848                                                         reportecho4 "--> postponed"
849                                                 fi
850                                         fi
851                                 fi
852                                 reportecho ""
853                         done
854                         reportecho ""
855                 done
856                 rm -f "$t"
857                 echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
858                 ;;
859         clean)
860                 force=false
861                 if [ x"$1" = x"-f" ]; then
862                         force=true
863                 fi
864                 for d in $repos; do
865                         enter "$d0/$d" verbose
866                         if $force; then
867                                 verbose git checkout-index -fa
868                         fi
869                         case "$d" in
870                                 .)
871                                         verbose git clean -df
872                                         ;;
873                                 *)
874                                         verbose git clean -xdf
875                                         ;;
876                         esac
877                 done
878                 ;;
879
880         # release building goes here
881         release-prepare)
882                 #"$SELF" each git clean -fxd
883                 case "$RELEASETYPE" in
884                         beta)
885                                 msg "Building a BETA"
886                                 ;;
887                         release)
888                                 msg "Building a RELEASE"
889                                 ;;
890                         *)
891                                 msg "Must either set RELEASETYPE=beta or RELEASETYPE=release"
892                                 exit 1
893                                 ;;
894                 esac
895                 verbose rm -rf Xonotic Xonotic*.zip
896                 verbose mkdir -p Xonotic
897                 verbose date +%Y%m%d > Xonotic/stamp.txt
898                 verbose git archive --format=tar HEAD -- Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh misc/buildfiles | {
899                         verbose cd Xonotic
900                         verbose mkdir data fteqcc source source/darkplaces source/fteqcc
901                         verbose tar xvf -
902                         verbose rm -rf misc/builddeps
903                         verbose mv misc/buildfiles/win32/* . || true
904                         verbose mv misc/buildfiles/win64 bin64 || true
905                         verbose mv misc/buildfiles/osx/* . || true
906                         verbose rm -rf misc/buildfiles
907                 }
908                 {
909                         verbose cd darkplaces
910                         verbose git archive --format=tar HEAD
911                 } | {
912                         verbose cd Xonotic/source/darkplaces
913                         verbose tar xvf -
914                 }
915                 {
916                         verbose cd fteqcc
917                         verbose git archive --format=tar HEAD
918                 } | {
919                         verbose cd Xonotic/source/fteqcc
920                         verbose tar xvf -
921                 }
922                 {
923                         verbose cd data/xonotic-data.pk3dir
924                         verbose git archive --format=tar HEAD -- qcsrc Makefile
925                 } | {
926                         verbose cd Xonotic/source
927                         verbose tar xvf -
928                 }
929                 ;;
930         release-compile-run)
931                 host=$1
932                 buildpath=$2
933                 maketargets=$3
934                 makeflags=$4
935                 srcdir=$5
936                 targetfiles=$6
937                 case " $HOSTS_THAT_ARE_MYSELF " in
938                         *\ $host\ *)
939                                 verbose rsync --delete -zvaSHP "$srcdir"/ "$buildpath/"
940                                 verbose eval make -C "$buildpath" clean $maketargets $makeflags
941                                 for f in $targetfiles; do
942                                         verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
943                                 done
944                                 ;;
945                         *)
946                                 verbose rsync --delete -zvaSHP "$srcdir"/ "$host:$buildpath/"
947                                 verbose ssh "$host" ". ~/.profile && cd $buildpath && make clean $maketargets $makeflags"
948                                 for f in $targetfiles; do
949                                         verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
950                                 done
951                                 ;;
952                 esac
953                 # now rebrand the binaries...
954                 for f in $targetfiles; do
955                         verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "$d0/misc/tools/xonotic.brand" "${f##*:}" || true
956                 done
957                 ;;
958         release-compile)
959                 suffix=$1
960                 makeflags=$2
961                 fteqcc_maketargets=$3
962                 fteqcc_files=$4
963                 darkplaces_maketargets=$5
964                 darkplaces_files=$6
965                 verbose "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "Xonotic/source/fteqcc" "$fteqcc_files"
966                 verbose "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$darkplaces_files"
967                 ;;
968         release-engine-win32)
969                 verbose "$SELF" release-compile win32 \
970                         'STRIP=: DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I$HOME/dp.win32/include -L$HOME/dp.win32/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win32/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN32RELEASE=1 D3D=0' \
971                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
972                         release 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
973                 ;;
974         release-engine-win64)
975                 verbose "$SELF" release-compile win64 \
976                         'STRIP=: DP_MAKE_TARGET=mingw CC="amd64-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I$HOME/dp.win64/include -L$HOME/dp.win64/lib" WINDRES="amd64-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win64/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN64RELEASE=1 D3D=0' \
977                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc-x64.exe' \
978                         'sv-release cl-release' 'darkplaces.exe:Xonotic/xonotic-x64.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated-x64.exe'
979                         # release 'darkplaces.exe:Xonotic/xonotic-x64.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl-x64.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated-x64.exe'
980                 ;;
981         release-engine-osx)
982                 # gcc on OSX is buggy, needs -fno-reorder-blocks for a release build to succeed
983                 verbose "$SELF" release-compile osx \
984                         'STRIP=: CC="gcc -g -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I$HOME/dp.osx/include -L$HOME/dp.osx/lib -fno-reorder-blocks" LIB_JPEG= CFLAGS_LIBJPEG=' \
985                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
986                         'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin' 'darkplaces-dedicated:xonotic-osx-dedicated'
987                 ;;
988         release-engine-linux32)
989                 verbose "$SELF" release-compile linux32 \
990                         'STRIP=: CC="gcc -m32 -g -Wl,--hash-style=sysv -I$HOME/dp.linux32/include -L$HOME/dp.linux32/lib" DP_MODPLUG_STATIC_LIBDIR=$HOME/dp.linux32/lib LIB_JPEG=$HOME/dp.linux32/lib/libjpeg.a' \
991                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
992                         release 'darkplaces-glx:Xonotic/xonotic-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux32-dedicated'
993                 ;;
994         release-engine-linux64)
995                 verbose "$SELF" release-compile linux64 \
996                         'STRIP=: CC="gcc -m64 -g -Wl,--hash-style=sysv -I$HOME/dp.linux64/include -L$HOME/dp.linux64/lib" DP_MODPLUG_STATIC_LIBDIR=$HOME/dp.linux64/lib LIB_JPEG=$HOME/dp.linux64/lib/libjpeg.a' \
997                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
998                         release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
999                 ;;
1000         release-engine)
1001                 verbose "$SELF" release-engine-win64
1002                 verbose "$SELF" release-engine-osx
1003                 verbose "$SELF" release-engine-win32
1004                 verbose "$SELF" release-engine-linux32
1005                 verbose "$SELF" release-engine-linux64
1006                 ;;
1007         release-maps)
1008                 verbose "$SELF" update-maps
1009                 ;;
1010         release-qc)
1011                 case "$RELEASETYPE" in
1012                         beta)
1013                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 clean all
1014                                 ;;
1015                         release)
1016                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 FTEQCCFLAGS_WATERMARK= clean all
1017                                 ;;
1018                 esac
1019                 verbose rm -f Xonotic/source/*/fteqcc.log
1020                 ;;
1021         release-buildpk3-transform-raw)
1022                 dir=$1
1023                 ;;
1024         release-buildpk3-transform-normal)
1025                 dir=$1
1026                 verbose cd "$dir"
1027                 # texture: convert to jpeg and dds
1028                 verbose export do_jpeg=true
1029                 verbose export jpeg_qual_rgb=95
1030                 verbose export jpeg_qual_a=99
1031                 verbose export do_dds=true
1032                 verbose export dds_flags=
1033                 verbose export do_ogg=false
1034                 verbose export del_src=true
1035                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1036                 ;;
1037         release-buildpk3-transform-low)
1038                 dir=$1
1039                 verbose cd "$dir"
1040                 # texture: convert to jpeg and dds
1041                 # music: reduce bitrate
1042                 verbose export do_jpeg=true
1043                 verbose export jpeg_qual_rgb=80
1044                 verbose export jpeg_qual_a=95
1045                 verbose export do_dds=false
1046                 verbose export do_ogg=true
1047                 verbose export ogg_qual=1
1048                 verbose export del_src=true
1049                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1050                 ;;
1051         release-buildpk3-transform-lowdds)
1052                 dir=$1
1053                 verbose cd "$dir"
1054                 # texture: convert to jpeg and dds
1055                 # music: reduce bitrate
1056                 verbose export do_jpeg=false
1057                 verbose export do_jpeg_if_not_dds=true
1058                 verbose export jpeg_qual_rgb=80
1059                 verbose export jpeg_qual_a=95
1060                 verbose export do_dds=true
1061                 verbose export dds_flags=
1062                 verbose export do_ogg=true
1063                 verbose export ogg_qual=1
1064                 verbose export del_src=true
1065                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1066                 ;;
1067         release-buildpk3)
1068                 src=$1
1069                 dst=$2
1070                 transform=$3
1071                 case "$dst" in
1072                         /*)
1073                                 ;;
1074                         */)
1075                                 dst="$PWD/$dst"
1076                                 ;;
1077                 esac
1078                 verbose rm -rf Xonotic/temp
1079                 verbose mkdir -p Xonotic/temp
1080                 {
1081                         verbose cd "$src"
1082                         verbose git archive --format=tar HEAD
1083                 } | {
1084                         verbose cd Xonotic/temp
1085                         verbose tar xvf -
1086                 }
1087                 verbose cd Xonotic/temp
1088                 if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
1089                         verbose cp ../source/progs.dat .
1090                         verbose cp ../source/csprogs.dat .
1091                         verbose cp ../source/menu.dat .
1092                         verbose rm -rf qcsrc
1093                         gv=`grep "^gameversion " "defaultXonotic.cfg" | awk '{ print $2 }'`
1094                         major=$(($gv / 10000))
1095                         minor=$(($gv / 100 - $major * 100))
1096                         patch=$(($gv - $major * 10000 - $minor * 100))
1097                         verbose sed -i "
1098                                 s/^set g_xonoticversion [^ ]* /set g_xonoticversion $major.$minor.$patch /;
1099                                 s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
1100                                 s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
1101                         " defaultXonotic.cfg
1102                 fi
1103                 if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
1104                         for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
1105                                 if [ -f "$X" ]; then
1106                                         verbose unzip "$X"
1107                                 fi
1108                         done
1109                 fi
1110                 verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
1111                 verbose zip -9yr "../../$dst" .
1112                 verbose cd ../..
1113                 verbose rm -rf Xonotic/temp
1114                 ;;
1115         release-buildpk3s)
1116                 stamp=`cat Xonotic/stamp.txt`
1117                 src=$1
1118                 shift
1119                 dst=${src%.pk3dir}
1120                 case "$dst" in
1121                         data/xonotic-*)
1122                                 dst="data/xonotic-$stamp-${dst#data/xonotic-}"
1123                                 ;;
1124                         *)
1125                                 dst="$dst-$stamp"
1126                                 ;;
1127                 esac
1128                 while [ "$#" -gt 1 ]; do
1129                         verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
1130                         shift
1131                         shift
1132                 done
1133                 ;;
1134         release-pack)
1135                 verbose "$SELF" release-buildpk3s data/font-nimbussansl.pk3dir             raw ''
1136                 verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1137                 verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1138                 verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir                raw ''     low '-low'
1139                 verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
1140                 ;;
1141         release-pack-needsx11)
1142                 case "$DISPLAY" in
1143                         '')
1144                                 verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
1145                                 ;;
1146                         *)
1147                                 verbose "$SELF" release-pack
1148                                 ;;
1149                 esac
1150                 ;;
1151         release-zip)
1152                 stamp=`cat Xonotic/stamp.txt`
1153                 verbose zip -9yr Xonotic-$stamp-common.zip \
1154                         Xonotic/*.dll \
1155                         Xonotic/source/*/ \
1156                         Xonotic/Docs \
1157                         Xonotic/misc \
1158                         Xonotic/fteqcc \
1159                         Xonotic/server \
1160                         Xonotic/*.app \
1161                         Xonotic/xonotic-* \
1162                         Xonotic/xonotic.exe \
1163                         Xonotic/data/font-nimbussansl-$stamp.pk3
1164                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
1165                 verbose zip -0yr Xonotic-$stamp.zip \
1166                         Xonotic/data/xonotic-$stamp-data.pk3 \
1167                         Xonotic/data/xonotic-$stamp-maps.pk3 \
1168                         Xonotic/data/xonotic-$stamp-music.pk3 \
1169                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1170                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-low.zip
1171                 verbose zip -0yr Xonotic-$stamp-low.zip \
1172                         Xonotic/data/xonotic-$stamp-data-low.pk3 \
1173                         Xonotic/data/xonotic-$stamp-maps-low.pk3 \
1174                         Xonotic/data/xonotic-$stamp-music-low.pk3
1175                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-lowdds.zip
1176                 verbose zip -0yr Xonotic-$stamp-lowdds.zip \
1177                         Xonotic/data/xonotic-$stamp-data-lowdds.pk3 \
1178                         Xonotic/data/xonotic-$stamp-maps-lowdds.pk3 \
1179                         Xonotic/data/xonotic-$stamp-music-low.pk3
1180                 verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
1181                 verbose zip -0yr Xonotic-$stamp-high.zip \
1182                         Xonotic/data/xonotic-$stamp-data-raw.pk3 \
1183                         Xonotic/data/xonotic-$stamp-maps-raw.pk3 \
1184                         Xonotic/data/xonotic-$stamp-music.pk3 \
1185                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1186                 ;;
1187         release)
1188                 verbose "$SELF" release-prepare
1189                 verbose "$SELF" release-maps
1190                 verbose "$SELF" release-engine
1191                 verbose "$SELF" release-qc
1192                 verbose "$SELF" release-pack-needsx11
1193                 verbose "$SELF" release-zip
1194                 ;;
1195
1196         *)
1197                 echo "Usage:"
1198                 echo "  $SELF pull"
1199                 echo "  $SELF merge"
1200                 echo "  $SELF push [-s]"
1201                 echo "  $SELF branches"
1202                 echo "  $SELF branch [<remote>] <branchname>"
1203                 echo "  $SELF branch <remote> <branchname> <srcbranchname>"
1204                 echo "  $SELF checkout [<remote>] <branchname>"
1205                 echo "  $SELF compile [-c|-n] [<client>] <options>"
1206                 echo "  $SELF run [<client>] <options>"
1207                 echo "  $SELF each <command>"
1208                 ;;
1209 esac