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