]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
new var HOSTS_THAT_ARE_DISABLED
[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                 # change this to:
660                 #set -- "darkplaces/darkplaces$client" -xonotic -mygames "$@"
661
662                 # if pulseaudio is running: USE IT
663                 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
664                         if ps -C pulseaudio >/dev/null; then
665                                 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
666                                         export SDL_AUDIODRIVER=pulse
667                                 fi
668                         fi
669                 fi
670
671                 if [ -n "$USE_GDB" ]; then
672                         set -- gdb --args "$@"
673                 fi
674                 "$@"
675                 ;;
676         each|foreach)
677                 keep_going=false
678                 if [ x"$1" = x"-k" ]; then
679                         keep_going=true
680                         shift
681                 fi
682                 for d in $repos; do
683                         if verbose cd "$d0/$d"; then
684                                 if $keep_going; then
685                                         verbose "$@" || true
686                                 else
687                                         verbose "$@"
688                                 fi
689                                 cd "$d0"
690                         fi
691                 done
692                 ;;
693         save-patches)
694                 outfile=$1
695                 patchdir=`mktemp -d -t save-patches.XXXXXX`
696                 for d in $repos; do
697                         enter "$d0/$d" verbose
698                         git branch -v -v | cut -c 3- | {
699                                 i=0
700                                 while read -r BRANCH REV UPSTREAM TEXT; do
701                                         case "$UPSTREAM" in
702                                                 \[*)
703                                                         UPSTREAM=${UPSTREAM#\[}
704                                                         UPSTREAM=${UPSTREAM%\]}
705                                                         UPSTREAM=${UPSTREAM%:*}
706                                                         TRACK=true
707                                                         ;;
708                                                 *)
709                                                         UPSTREAM=origin/"`repobranch "$d"`"
710                                                         TRACK=false
711                                                         ;;
712                                         esac
713                                         if [ x"$REV" = x"->" ]; then
714                                                 continue
715                                         fi
716                                         if git format-patch -o "$patchdir/$i" "$UPSTREAM".."$BRANCH"; then
717                                                 echo "$d" > "$patchdir/$i/info.txt"
718                                                 echo "$BRANCH" >> "$patchdir/$i/info.txt"
719                                                 echo "$UPSTREAM" >> "$patchdir/$i/info.txt"
720                                                 echo "$TRACK" >> "$patchdir/$i/info.txt"
721                                                 i=$(($i+1))
722                                         else
723                                                 rm -rf "$patchdir/$i"
724                                         fi
725                                 done
726                         }
727                 done
728                 ( cd "$patchdir" && tar cvzf - . ) > "$outfile"
729                 rm -rf "$patchdir"
730                 ;;
731         restore-patches)
732                 infile=$1
733                 patchdir=`mktemp -d -t restore-patches.XXXXXX`
734                 ( cd "$patchdir" && tar xvzf - ) < "$infile"
735                 # detach the head
736                 for P in "$patchdir"/*/info.txt; do
737                         D=${P%/info.txt}
738                         exec 3<"$P"
739                         read -r d <&3
740                         read -r BRANCH <&3
741                         read -r UPSTREAM <&3
742                         read -r TRACK <&3
743                         verbose git checkout HEAD^0
744                         verbose git branch -D "$BRANCH"
745                         if [ x"$TRACK" = x"true" ]; then
746                                 verbose git checkout --track -b "$BRANCH" "$UPSTREAM"
747                         else
748                                 verbose git branch -b "$BRANCH" "$UPSTREAM"
749                         fi
750                         verbose git am "$D"
751                 done
752                 rm -rf "$patchdir"
753                 ;;
754         admin-merge)
755                 branch=$1
756                 t=`mktemp`
757                 report=""
758                 reportecho()
759                 {
760                         report=$report"$*$LF"
761                         echo "$*"
762                 }
763                 reportecho4()
764                 {
765                         report=$report"    $*$LF"
766                         echo "    $*"
767                 }
768                 reportdo4()
769                 {
770                         o=`"$@" | sed 's/^/    /' || true`
771                         reportecho "$o"
772                 }
773                 for d in $repos; do
774                         enter "$d0/$d" verbose
775                         base="`repobranch "$d"`"
776                         reportecho "In $d:"
777                         for ref in `git for-each-ref --format='%(refname)' refs/remotes/origin/`; do
778                                 case "${ref#refs/remotes/origin/}" in
779                                         "$base")
780                                                 continue
781                                                 ;;
782                                         HEAD|master)
783                                                 continue
784                                                 ;;
785                                         */*)
786                                                 ;;
787                                         *)
788                                                 continue
789                                                 ;;
790                                 esac
791                                 if [ -n "$branch" ]; then
792                                         if [ x"$branch" != x"${ref#refs/remotes/origin/}" ]; then
793                                                 continue
794                                         fi
795                                 fi
796                                 case "$base" in
797                                         master)
798                                                 realbase=$base
799                                                 ;;
800                                         *)
801                                                 l0=`git rev-list "$base".."$ref" | wc -l`
802                                                 l1=`git rev-list master.."$ref" | wc -l`
803                                                 if [ $l0 -gt $l1 ]; then
804                                                         realbase=master
805                                                 else
806                                                         realbase=$base
807                                                 fi
808                                                 ;;
809                                 esac
810                                 reportecho "  Branch $ref:"
811                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
812                                 logdata=`git log --color "$realbase".."$ref"`
813                                 if [ -z "$logdata" ]; then
814                                         reportecho4 "--> not merging, no changes vs master"
815                                         if yesno "Branch \"$ref\" probably should get deleted. Do it?" ''; then
816                                                 git push origin :"${ref#refs/remotes/origin/}"
817                                                 reportecho4 "--> branch deleted"
818                                         fi
819                                 else
820                                         diffdata=`git diff --color --find-copies-harder --ignore-space-change "$realbase"..."$ref"`
821                                         if [ -z "$diffdata" ]; then
822                                                 reportecho4 "--> not merging, no changes vs master, branch contains redundant history"
823                                                 if yesno "Branch \"$ref\" probably should get deleted. Do it?" '{ echo "$logdata"; } | less -r'; then
824                                                         git push origin :"${ref#refs/remotes/origin/}"
825                                                         reportecho4 "--> branch deleted"
826                                                 fi
827                                         elif [ -z "$branch" ] && [ -n "$note" ]; then
828                                                 reportdo4 echo "$note"
829                                                 reportecho4 "--> not merging, already had this one rejected before"
830                                         elif yesno "Branch \"$ref\" may want to get merged. Do it?" '{ echo "$logdata"; echo "$diffdata"; } | less -r'; then
831                                                 git checkout "$realbase"
832                                                 org=`git rev-parse HEAD`
833                                                 if ! git merge --no-ff "$ref" 2>&1 | tee "$t" && ! { git ls-files -u | grep ' 1 ' >/dev/null; }; then
834                                                         git reset --hard "$org"
835                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Merge failed:$LF`cat "$t"`" "$ref"
836                                                         reportdo4 cat "$t"
837                                                         reportecho4 "--> merge failed"
838                                                 elif ! "$SELF" compile -n 2>&1 | tee "$t"; then
839                                                         git reset --hard "$org"
840                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Compile failed:$LF`cat "$t"`" "$ref"
841                                                         reportdo4 cat "$t"
842                                                         reportecho4 "--> compile failed"
843                                                 elif ! yesno "Still merge \"$ref\" into `git symbolic-ref HEAD` of $d? Maybe you want to test first."; then
844                                                         git reset --hard "$org"
845                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
846                                                         note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
847                                                         if [ x"$note" = x"del" ]; then
848                                                                 git push origin :"${ref#refs/remotes/origin/}"
849                                                                 reportecho4 "--> test failed, branch deleted"
850                                                         elif [ -n "$note" ]; then
851                                                                 reportdo4 echo "$note"
852                                                                 reportecho4 "--> test failed"
853                                                         else
854                                                                 reportecho4 "--> test failed, postponed"
855                                                         fi
856                                                 else
857                                                         echo "MERGING"
858                                                         case ",`repoflags "$d"`," in
859                                                                 *,svn,*)
860                                                                         # we do quite a mess here... luckily we know $org
861                                                                         git fetch # svn needs to be current
862                                                                         git rebase -i --onto origin/master "$org"
863                                                                         git svn dcommit --add-author-from
864                                                                         git reset --hard "$org"
865                                                                         ;;
866                                                                 *)
867                                                                         git push origin HEAD
868                                                                         ;;
869                                                         esac
870                                                         reportecho4 "--> MERGED"
871                                                         if yesno "Delete original branch \"$ref\"?"; then
872                                                                 git push origin :"${ref#refs/remotes/origin/}"
873                                                                 reportecho4 "--> branch deleted"
874                                                         fi
875                                                 fi
876                                         else
877                                                 GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
878                                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
879                                                 if [ x"$note" = x"del" ]; then
880                                                         git push origin :"${ref#refs/remotes/origin/}"
881                                                         reportecho4 "--> branch deleted"
882                                                 elif [ -n "$note" ]; then
883                                                         reportdo4 echo "$note"
884                                                         reportecho4 "--> rejected"
885                                                 else
886                                                         reportecho4 "--> postponed"
887                                                 fi
888                                         fi
889                                 fi
890                                 reportecho ""
891                         done
892                         reportecho ""
893                 done
894                 rm -f "$t"
895                 echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
896                 ;;
897         clean)
898                 force=false
899                 if [ x"$1" = x"-f" ]; then
900                         force=true
901                 fi
902                 for d in $repos; do
903                         verbose cd "$d0/$d"
904                         if $force; then
905                                 verbose git reset --hard
906                                 #redundant# verbose git checkout-index -fa
907                         fi
908                         case "$d" in
909                                 .)
910                                         verbose git clean -df
911                                         ;;
912                                 *)
913                                         verbose git clean -xdf
914                                         ;;
915                         esac
916                 done
917                 ;;
918
919         # release building goes here
920         release-prepare)
921                 #"$SELF" each git clean -fxd
922                 case "$RELEASETYPE" in
923                         beta)
924                                 msg "Building a BETA"
925                                 ;;
926                         release)
927                                 msg "Building a RELEASE"
928                                 ;;
929                         *)
930                                 msg "Must either set RELEASETYPE=beta or RELEASETYPE=release"
931                                 exit 1
932                                 ;;
933                 esac
934                 verbose rm -rf Xonotic Xonotic*.zip
935                 verbose mkdir -p Xonotic
936                 if [ -n "$RELEASEDATE" ]; then
937                         verbose echo "$RELEASEDATE" > Xonotic/stamp.txt
938                 else
939                         verbose date +%Y%m%d > Xonotic/stamp.txt
940                 fi
941                 verbose git archive --format=tar HEAD -- Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh misc/buildfiles | {
942                         verbose cd Xonotic
943                         verbose mkdir data fteqcc source source/darkplaces source/fteqcc
944                         verbose tar xvf -
945                         verbose rm -rf misc/builddeps
946                         verbose mv misc/buildfiles/win32/* . || true
947                         verbose mv misc/buildfiles/win64 bin64 || true
948                         verbose mv misc/buildfiles/osx/* . || true
949                         verbose rm -rf misc/buildfiles
950                 }
951                 {
952                         verbose cd darkplaces
953                         verbose git archive --format=tar HEAD
954                 } | {
955                         verbose cd Xonotic/source/darkplaces
956                         verbose tar xvf -
957                 }
958                 {
959                         verbose cd fteqcc
960                         verbose git archive --format=tar HEAD
961                 } | {
962                         verbose cd Xonotic/source/fteqcc
963                         verbose tar xvf -
964                 }
965                 {
966                         verbose cd data/xonotic-data.pk3dir
967                         verbose git archive --format=tar HEAD -- qcsrc Makefile
968                 } | {
969                         verbose cd Xonotic/source
970                         verbose tar xvf -
971                 }
972                 ;;
973         release-compile-run)
974                 host=$1
975                 buildpath=$2
976                 maketargets=$3
977                 makeflags=$4
978                 srcdir=$5
979                 depsdir=$6
980                 targetfiles=$7
981                 if [ -n "$targetfiles" ]; then
982                         case " $HOSTS_THAT_ARE_DISABLED " in
983                                 *\ $host\ *)
984                                         return 0
985                                         ;;
986                         esac
987                         case " $HOSTS_THAT_ARE_MYSELF " in
988                                 *\ $host\ *)
989                                         verbose rsync --delete -zLvaSHP "$srcdir"/ "$buildpath/"
990                                         verbose rsync --delete -zLvaSHP "$depsdir"/ "$buildpath.deps/"
991                                         verbose ln -snf "$buildpath.deps" "$buildpath/.deps"
992                                         verbose eval make -C "$buildpath" clean $maketargets $makeflags
993                                         for f in $targetfiles; do
994                                                 verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
995                                         done
996                                         ;;
997                                 *)
998                                         verbose rsync --delete -zLvaSHP "$srcdir"/ "$host:$buildpath/"
999                                         verbose rsync --delete -zLvaSHP "$depsdir"/ "$host:$buildpath.deps/"
1000                                         verbose ssh "$host" "ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && make clean $maketargets $makeflags"
1001                                         for f in $targetfiles; do
1002                                                 verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
1003                                         done
1004                                         ;;
1005                         esac
1006                         # now rebrand the binaries...
1007                         for f in $targetfiles; do
1008                                 #verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "${XONOTIC_BRAND:-$d0/misc/tools/xonotic.brand}" "${f##*:}" || true
1009                                 case "$f" in
1010                                         xonotic*.exe)
1011                                                 verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "$f"
1012                                                 (
1013                                                         d=`mktemp -d -t rebrand.XXXXXX`
1014                                                         cd "$d"
1015                                                         echo "-mygames" > darkplaces.opt
1016                                                         zip -9r darkplaces.zip darkplaces.opt
1017                                                         cat darkplaces.zip
1018                                                         cd "$d0"
1019                                                         rm -rf "$d"
1020                                                 ) >> "$f"
1021                                                 ;;
1022                                 esac
1023                         done
1024                 fi
1025                 ;;
1026         release-compile)
1027                 suffix=$1
1028                 makeflags=$2
1029                 fteqcc_maketargets=$3
1030                 fteqcc_files=$4
1031                 darkplaces_maketargets=$5
1032                 darkplaces_files=$6
1033                 host=xonotic-build-$suffix
1034                 verbose "$SELF" release-compile-run "$host" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "Xonotic/source/fteqcc" "$d0/misc/builddeps/dp.$suffix" "$fteqcc_files"
1035                 verbose "$SELF" release-compile-run "$host" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$d0/misc/builddeps/dp.$suffix" "$darkplaces_files"
1036                 ;;
1037         release-engine-win32)
1038                 # TODO change to g++ and D3D=1 when D3D gets added
1039                 verbose "$SELF" release-compile win32 \
1040                         'STRIP=: DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN32RELEASE=1 D3D=0' \
1041                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
1042                         release 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
1043                 ;;
1044         release-engine-win64)
1045                 # TODO change to g++ and D3D=1 when D3D gets added
1046                 verbose "$SELF" release-compile win64 \
1047                         'STRIP=: DP_MAKE_TARGET=mingw CC="amd64-mingw32msvc-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="amd64-mingw32msvc-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN64RELEASE=1 D3D=0' \
1048                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc-x64.exe' \
1049                         'sv-release cl-release' 'darkplaces.exe:Xonotic/xonotic-x64.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated-x64.exe'
1050                         # release 'darkplaces.exe:Xonotic/xonotic-x64.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl-x64.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated-x64.exe'
1051                 ;;
1052         release-engine-osx-sv-sdl)
1053                 # gcc on OSX is buggy, needs -fno-reorder-blocks for a release build to succeed
1054                 verbose "$SELF" release-compile osx \
1055                         'STRIP=: CC="gcc -g -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I.deps/include -L.deps/lib -fno-reorder-blocks"' \
1056                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
1057                         'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin darkplaces-dedicated:Xonotic/xonotic-osx-dedicated'
1058                 ;;
1059         release-engine-osx-agl)
1060                 # gcc on OSX is buggy, needs -fno-reorder-blocks for a release build to succeed
1061                 verbose "$SELF" release-compile osx \
1062                         'STRIP=: CC="gcc -g -arch i386 -arch ppc -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I.deps/include -L.deps/lib -fno-reorder-blocks"' \
1063                         '' '' \
1064                         'cl-release' 'darkplaces-agl:Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-agl-bin'
1065                 ;;
1066         release-engine-osx)
1067                 verbose "$SELF" release-engine-osx-sv-sdl
1068                 verbose "$SELF" release-engine-osx-agl
1069                 ;;
1070         release-engine-linux32)
1071                 verbose "$SELF" release-compile linux32 \
1072                         'STRIP=: CC="gcc -m32 -g -I.deps/include -L.deps/lib" DP_MODPLUG_STATIC_LIBDIR=.deps/lib LIB_JPEG=.deps/lib/libjpeg.a' \
1073                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
1074                         release 'darkplaces-glx:Xonotic/xonotic-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux32-dedicated'
1075                 ;;
1076         release-engine-linux64)
1077                 verbose "$SELF" release-compile linux64 \
1078                         'STRIP=: CC="gcc -m64 -g -I.deps/include -L.deps/lib" DP_MODPLUG_STATIC_LIBDIR=.deps/lib LIB_JPEG=.deps/lib/libjpeg.a' \
1079                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
1080                         release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
1081                 ;;
1082         release-engine)
1083                 verbose "$SELF" release-engine-linux32 &
1084                 verbose "$SELF" release-engine-linux64 &
1085                 verbose "$SELF" release-engine-win32 &
1086                 verbose "$SELF" release-engine-win64 &
1087                 verbose "$SELF" release-engine-osx &
1088                 wait %1
1089                 wait %2
1090                 wait %3
1091                 wait %4
1092                 wait %5
1093                 wait
1094                 ;;
1095         release-maps)
1096                 verbose "$SELF" update-maps
1097                 ;;
1098         release-qc)
1099                 case "$RELEASETYPE" in
1100                         beta)
1101                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 clean all
1102                                 ;;
1103                         release)
1104                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 FTEQCCFLAGS_WATERMARK= clean all
1105                                 ;;
1106                 esac
1107                 verbose rm -f Xonotic/source/*/fteqcc.log
1108                 ;;
1109         release-buildpk3-transform-raw)
1110                 dir=$1
1111                 ;;
1112         release-buildpk3-transform-normal)
1113                 dir=$1
1114                 verbose cd "$dir"
1115                 # texture: convert to jpeg and dds
1116                 verbose export do_jpeg=true
1117                 verbose export jpeg_qual_rgb=95
1118                 verbose export jpeg_qual_a=99
1119                 verbose export do_dds=true
1120                 verbose export dds_flags=
1121                 verbose export do_ogg=false
1122                 verbose export del_src=true
1123                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1124                 ;;
1125         release-buildpk3-transform-low)
1126                 dir=$1
1127                 verbose cd "$dir"
1128                 # texture: convert to jpeg and dds
1129                 # music: reduce bitrate
1130                 verbose export do_jpeg=true
1131                 verbose export jpeg_qual_rgb=80
1132                 verbose export jpeg_qual_a=95
1133                 verbose export do_dds=false
1134                 verbose export do_ogg=true
1135                 verbose export ogg_qual=1
1136                 verbose export del_src=true
1137                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1138                 ;;
1139         release-buildpk3-transform-lowdds)
1140                 dir=$1
1141                 verbose cd "$dir"
1142                 # texture: convert to jpeg and dds
1143                 # music: reduce bitrate
1144                 verbose export do_jpeg=false
1145                 verbose export do_jpeg_if_not_dds=true
1146                 verbose export jpeg_qual_rgb=80
1147                 verbose export jpeg_qual_a=95
1148                 verbose export do_dds=true
1149                 verbose export dds_flags=
1150                 verbose export do_ogg=true
1151                 verbose export ogg_qual=1
1152                 verbose export del_src=true
1153                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1154                 ;;
1155         release-buildpk3)
1156                 src=$1
1157                 dst=$2
1158                 transform=$3
1159                 case "$dst" in
1160                         /*)
1161                                 ;;
1162                         */)
1163                                 dst="$PWD/$dst"
1164                                 ;;
1165                 esac
1166                 verbose rm -rf Xonotic/temp
1167                 verbose mkdir -p Xonotic/temp
1168                 {
1169                         verbose cd "$src"
1170                         verbose git archive --format=tar HEAD
1171                 } | {
1172                         verbose cd Xonotic/temp
1173                         verbose tar xvf -
1174                 }
1175                 verbose cd Xonotic/temp
1176                 if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
1177                         verbose cp ../source/progs.dat .
1178                         verbose cp ../source/csprogs.dat .
1179                         verbose cp ../source/menu.dat .
1180                         verbose rm -rf qcsrc
1181                         gv=`grep "^gameversion " "defaultXonotic.cfg" | awk '{ print $2 }'`
1182                         major=$(($gv / 10000))
1183                         minor=$(($gv / 100 - $major * 100))
1184                         patch=$(($gv - $major * 10000 - $minor * 100))
1185                         versionstr="$major.$minor.$patch"
1186                         case "$RELEASETYPE" in
1187                                 beta)
1188                                         versionstr="$versionstr""beta"
1189                                         ;;
1190                         esac
1191                         verbose sed -i "
1192                                 s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
1193                                 s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
1194                                 s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
1195                         " defaultXonotic.cfg
1196                         (
1197                                 verbose cd gfx/menu/luminos
1198                                 verbose cp "$d0"/mediasource/gfx/menu/luminos_versionbuilder/background_l2.svg .
1199                                 verbose "$d0"/mediasource/gfx/menu/luminos_versionbuilder/versionbuilder "$versionstr"
1200                                 verbose rm background_l2.svg
1201                         )
1202                 fi
1203                 if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
1204                         for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
1205                                 if [ -f "$X" ]; then
1206                                         verbose unzip "$X"
1207                                         verbose rm -f maps/*.log maps/*.irc maps/*.lin
1208                                 fi
1209                         done
1210                 fi
1211                 verbose export git_src_repo="$d0/$src" # skip hash-object
1212                 verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
1213                 verbose zip -9yr "../../$dst" .
1214                 verbose cd ../..
1215                 verbose rm -rf Xonotic/temp
1216                 ;;
1217         release-buildpk3s)
1218                 stamp=`cat Xonotic/stamp.txt`
1219                 src=$1
1220                 shift
1221                 dst=${src%.pk3dir}
1222                 case "$dst" in
1223                         data/xonotic-*)
1224                                 dst="data/xonotic-$stamp-${dst#data/xonotic-}"
1225                                 ;;
1226                         *)
1227                                 dst="$dst-$stamp"
1228                                 ;;
1229                 esac
1230                 while [ "$#" -gt 1 ]; do
1231                         verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
1232                         shift
1233                         shift
1234                 done
1235                 ;;
1236         release-pack)
1237                 verbose "$SELF" release-buildpk3s data/font-nimbussansl.pk3dir             raw ''
1238                 verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1239                 verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1240                 verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir                raw ''     low '-low'
1241                 verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
1242                 ;;
1243         release-pack-needsx11)
1244                 case "$DISPLAY" in
1245                         '')
1246                                 verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
1247                                 ;;
1248                         *)
1249                                 verbose "$SELF" release-pack
1250                                 ;;
1251                 esac
1252                 ;;
1253         release-zip)
1254                 stamp=`cat Xonotic/stamp.txt`
1255                 verbose zip -9yr Xonotic-$stamp-engine.zip \
1256                         Xonotic/*.dll \
1257                         Xonotic/bin64/*.dll \
1258                         Xonotic/*.app \
1259                         Xonotic/xonotic-* \
1260                         Xonotic/xonotic.exe
1261                 verbose cp Xonotic-$stamp-engine.zip Xonotic-$stamp-common.zip
1262                 verbose zip -9yr Xonotic-$stamp-common.zip \
1263                         Xonotic/source/*/ \
1264                         Xonotic/Docs \
1265                         Xonotic/misc \
1266                         Xonotic/fteqcc \
1267                         Xonotic/server \
1268                         Xonotic/data/font-nimbussansl-$stamp.pk3
1269                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
1270                 verbose zip -0yr Xonotic-$stamp.zip \
1271                         Xonotic/data/xonotic-$stamp-data.pk3 \
1272                         Xonotic/data/xonotic-$stamp-maps.pk3 \
1273                         Xonotic/data/xonotic-$stamp-music.pk3 \
1274                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1275                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-low.zip
1276                 verbose zip -0yr Xonotic-$stamp-low.zip \
1277                         Xonotic/data/xonotic-$stamp-data-low.pk3 \
1278                         Xonotic/data/xonotic-$stamp-maps-low.pk3 \
1279                         Xonotic/data/xonotic-$stamp-music-low.pk3
1280                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-lowdds.zip
1281                 verbose zip -0yr Xonotic-$stamp-lowdds.zip \
1282                         Xonotic/data/xonotic-$stamp-data-lowdds.pk3 \
1283                         Xonotic/data/xonotic-$stamp-maps-lowdds.pk3 \
1284                         Xonotic/data/xonotic-$stamp-music-low.pk3
1285                 verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
1286                 verbose zip -0yr Xonotic-$stamp-high.zip \
1287                         Xonotic/data/xonotic-$stamp-data-raw.pk3 \
1288                         Xonotic/data/xonotic-$stamp-maps-raw.pk3 \
1289                         Xonotic/data/xonotic-$stamp-music.pk3 \
1290                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1291                 ;;
1292         release)
1293                 verbose "$SELF" release-prepare
1294                 verbose "$SELF" release-maps
1295                 verbose "$SELF" release-engine
1296                 verbose "$SELF" release-qc
1297                 verbose "$SELF" release-pack-needsx11
1298                 verbose "$SELF" release-zip
1299                 ;;
1300
1301         *)
1302                 echo "Usage:"
1303                 echo "  $SELF pull"
1304                 echo "  $SELF merge"
1305                 echo "  $SELF push [-s]"
1306                 echo "  $SELF branches"
1307                 echo "  $SELF branch [<remote>] <branchname>"
1308                 echo "  $SELF branch <remote> <branchname> <srcbranchname>"
1309                 echo "  $SELF checkout [<remote>] <branchname>"
1310                 echo "  $SELF compile [-c|-n] [<client>] <options>"
1311                 echo "  $SELF run [<client>] <options>"
1312                 echo "  $SELF each <command>"
1313                 ;;
1314 esac