]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
fix admin-merge test compile
[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-music.pk3dir     |                                                   | master      |
115 data/xonotic-nexcompat.pk3dir |                                                   | master      | no
116 darkplaces                    |                                                   | div0-stable | svn
117 netradiant                    |                                                   | master      |
118 div0-gittools                 |                                                   | master      | no
119 data/xonotic-maps.pk3dir      |                                                   | master      |
120 mediasource                   |                                                   | master      | no
121 fteqcc                        | git://github.com/Blub/qclib.git                   | 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 mkzip()
276 {
277         archive=$1
278         shift
279         ziplist=`mktemp`
280         find "$@" -xtype f \( -executable -or -type l \) -print > "$ziplist"
281         7za a -tzip -mx=9 -x@"$ziplist" "$archive" "$@" || true
282         zip         -9y   -@<"$ziplist" "$archive"      || true
283         rm -f "$ziplist"
284 }
285
286 mkzip0()
287 {
288         zip -0y "$@"
289 }
290
291 case "$cmd" in
292         fix_upstream_rebase)
293                 for d in $repos; do
294                         enter "$d0/$d" verbose
295                         verbose fix_upstream_rebase_mergefail && verbose fix_upstream_rebase_mergeok
296                 done
297                 ;;
298         update|pull)
299                 allow_pull=true
300                 if [ x"$1" = x"-N" ]; then
301                         allow_pull=false
302                 fi
303                 for d in $repos; do
304                         url=`repourl "$d"`
305                         branch=`repobranch "$d"`
306                         if [ -d "$d0/$d" ]; then
307                                 if $allow_pull; then
308                                         enter "$d0/$d" verbose
309                                         fix_git_config
310                                         verbose git config remote.origin.url "$url"
311                                         verbose git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
312                                         r=`git symbolic-ref HEAD`
313                                         r=${r#refs/heads/}
314                                         if git config branch.$r.remote >/dev/null 2>&1; then
315                                                 if ! verbose git pull; then
316                                                         fix_upstream_rebase_mergefail || true
317                                                         check_mergeconflict "$d"
318                                                         echo "Pulling failed. Press ENTER to continue, or Ctrl-C to abort."
319                                                         read -r DUMMY
320                                                 else
321                                                         fix_upstream_rebase_mergeok || true
322                                                 fi
323                                         fi
324
325                                         cd "$d00"
326                                         checkself "$cmd" "$@"
327                                         cd "$d0/$d"
328                                         verbose git remote prune origin
329                                         cd "$d0"
330                                 fi
331                         else
332                                 verbose git clone "$url" "$d0/$d"
333                                 enter "$d0/$d" verbose
334                                 fix_git_config
335                                 if [ "$branch" != "master" ]; then
336                                         verbose git checkout --track -b "$branch" origin/"$branch"
337                                 fi
338                                 cd "$d0"
339                         fi
340                 done
341                 ;;
342         update-maps)
343                 misc/tools/xonotic-map-compiler-autobuild download
344                 ;;
345         checkout|switch)
346                 checkoutflags=
347                 if [ x"$1" = x"-f" ]; then
348                         checkoutflags=-f
349                         shift
350                 fi
351                 remote=$1
352                 branch=$2
353                 if [ -z "$branch" ]; then
354                         case "$remote" in
355                                 origin/*)
356                                         branch=${remote#origin/}
357                                         remote=origin
358                                         ;;
359                                 *)
360                                         branch=$remote
361                                         remote=origin
362                                         ;;
363                         esac
364                 fi
365                 exists=false
366                 for d in $repos; do
367                         enter "$d0/$d" verbose
368                         b=$branch
369                         if [ -n "$b" ] && git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
370                                 exists=true
371                                 verbose git checkout $checkoutflags "$b"
372                         elif [ -n "$b" ] && git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
373                                 exists=true
374                                 verbose git checkout $checkoutflags --track -b "$b" "$remote/$b"
375                         else
376                                 b=`repobranch "$d"`
377                                 if git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
378                                         exists=true
379                                         verbose git checkout $checkoutflags "$b"
380                                 elif git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
381                                         exists=true
382                                         verbose git checkout $checkoutflags --track -b "$b" "$remote/$b"
383                                 else
384                                         echo "WTF? Not even branch $b doesn't exist in $d"
385                                         exit 1
386                                 fi
387                         fi
388                         cd "$d00"
389                         checkself "$cmd" "$@"
390                         cd "$d0"
391                 done
392                 if ! $exists; then
393                         echo "The requested branch was not found in any repository."
394                 fi
395                 exec "$SELF" branch
396                 ;;
397         branch)
398                 remote=$1
399                 branch=$2
400                 srcbranch=$3
401                 if [ -z "$branch" ]; then
402                         branch=$remote
403                         remote=origin
404                 fi
405                 if [ -z "$branch" ]; then
406                         for d in $repos; do
407                                 enter "$d0/$d"
408                                 r=`git symbolic-ref HEAD`
409                                 r=${r#refs/heads/}
410                                 echo "$d is at $r"
411                                 cd "$d0"
412                         done
413                 else
414                         for d in $repos; do
415                                 dv=`visible_repo_name "$d"`
416                                 enter "$d0/$d" verbose
417                                 if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then
418                                         echo "Already having this branch in $dv."
419                                 else
420                                         if yesno "Branch in $dv?"; then
421                                                 if [ -n "$srcbranch" ]; then
422                                                         b=$srcbranch
423                                                 else
424                                                         b=origin/"`repobranch "$d"`"
425                                                         verbose git fetch origin || true
426                                                 fi
427                                                 # TODO do this without pushing
428                                                 verbose git checkout -b "$branch" "$b"
429                                                 verbose git config "branch.$branch.remote" "$remote"
430                                                 verbose git config "branch.$branch.merge" "refs/heads/$branch"
431                                         fi
432                                 fi
433                                 cd "$d0"
434                         done
435                         "$SELF" branch
436                 fi
437                 ;;
438         branches)
439                 for d in $repos; do
440                         cd "$d0/$d" # am in a pipe, shouldn't use enter
441                         git branch -r -v -v | cut -c 3- | sed "s/^(no branch)/(no_branch)/" | sed "s,^,$d ,"
442                         cd "$d0"
443                 done | {
444                         branches_list=
445                         # branches_repos_*=
446                         while read -r d BRANCH REV TEXT; do
447                                 if [ x"$BRANCH" = x"`repobranch "$d"`" ]; then
448                                         continue
449                                 fi
450                                 if [ x"$REV" = x"->" ]; then
451                                         continue
452                                 fi
453                                 BRANCH=${BRANCH#remotes/}
454                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
455                                 branches_list="$branches_list $BRANCH" # TEH SORT MAKEZ IT UNIEQ
456                                 eval "r=\$branches_repos_$ID"
457                                 r="$r $d"
458                                 eval "branches_repos_$ID=\$r"
459                         done
460                         echo -n "$branches_list" | xargs -n 1 echo | sort -u | while IFS= read -r BRANCH; do
461                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
462                                 eval "r=\$branches_repos_$ID"
463                                 printf "%-60s %s\n" "$BRANCH" "$r"
464                                 #echo "$BRANCH: $r"
465                         done
466                 }
467                 ;;
468         merge)
469                 for d in $repos; do
470                         dv=`visible_repo_name "$d"`
471                         enter "$d0/$d" verbose
472                         r=`git symbolic-ref HEAD`
473                         r=${r#refs/heads/}
474                         if git log HEAD..origin/"`repobranch "$d"`" | grep .; then
475                                 # we have uncommitted changes
476                                 if yesno "Could merge from \"`repobranch "$d"`\" into \"$r\" in $dv. Do it?"; then
477                                         if ! verbose git merge origin/"`repobranch "$d"`"; then
478                                                 check_mergeconflict "$d"
479                                                 exit 1 # this should ALWAYS be fatal
480                                         fi
481                                 fi
482                         fi
483                         cd "$d0"
484                 done
485                 ;;
486         push|commit)
487                 submit=$1
488                 for d in $repos; do
489                         dv=`visible_repo_name "$d"`
490                         enter "$d0/$d" verbose
491                         r=`git symbolic-ref HEAD`
492                         r=${r#refs/heads/}
493                         diffdata=`git diff --color HEAD`
494                         if [ -n "$diffdata" ]; then
495                                 # we have uncommitted changes
496                                 if yesno "Uncommitted changes in \"$r\" in $dv. Commit?" 'echo "$diffdata" | less -r'; then
497                                         verbose git commit -a
498                                 fi
499                         fi
500                         rem=`git config "branch.$r.remote" || echo origin`
501                         bra=`git config "branch.$r.merge" || echo "$r"`
502                         upstream="$rem/${bra#refs/heads/}"
503                         if ! git rev-parse "$upstream" >/dev/null 2>&1; then
504                                 upstream="origin/`repobranch "$d"`"
505                         fi
506                         logdata=`git log --color "$upstream".."$r"`
507                         if [ -n "$logdata" ]; then
508                                 if yesno "Push \"$r\" in $dv?" 'echo "$logdata" | less -r'; then
509                                         verbose git push "$rem" HEAD
510                                 fi
511                         fi
512                         if [ x"$submit" = x"-s" ]; then
513                                 case "$r" in
514                                         */*)
515                                                 verbose git push "$rem" HEAD:"${bra%%/*}/finished/${bra#*/}"
516                                                 ;;
517                                 esac
518                         fi
519                         cd "$d0"
520                 done
521                 ;;
522         compile)
523                 if [ -n "$WE_HATE_OUR_USERS" ]; then
524                         TARGETS="sv-debug cl-debug"
525                         if [ -z "$CC" ]; then
526                                 export CC=gcc
527                         fi
528                 elif [ x"`uname`" = x"Darwin" ]; then
529                         case "`uname -r`" in
530                                 ?.*)
531                                         TARGETS="sv-debug cl-debug sdl-debug"
532                                         ;;
533                                 *)
534                                         # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard)
535                                         TARGETS="sv-debug sdl-debug"
536                                         ;;
537                         esac
538                         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"
539                 else
540                         TARGETS="sv-debug cl-debug sdl-debug"
541                 fi
542                 case "$1" in
543                         -c)
544                                 cleandp=true
545                                 cleanqcc=true
546                                 cleanqc=true
547                                 shift
548                                 ;;
549                         *)
550                                 cleandp=false
551                                 cleanqcc=false
552                                 cleanqc=false
553                                 ;;
554                 esac
555                 if [ $# -gt 0 ] && [ x"$1" = x"" ]; then
556                         # if we give the command make the arg "", it will surely fail (invalid filename),
557                         # so better handle it as an empty client option
558                         BAD_TARGETS=" "
559                         shift
560                 elif [ -n "$1" ]; then
561                         BAD_TARGETS=
562                         TARGETS_SAVE=$TARGETS
563                         TARGETS=
564                         for X in $1; do
565                                 case "$X" in
566                                         sdl)
567                                                 TARGETS="$TARGETS sdl-debug"
568                                                 ;;
569                                         glx|agl|wgl)
570                                                 TARGETS="$TARGETS cl-debug"
571                                                 ;;
572                                         dedicated)
573                                                 TARGETS="$TARGETS sv-debug"
574                                                 ;;
575                                         *)
576                                                 BAD_TARGETS="$BAD_TARGETS $X"
577                                                 ;;
578                                 esac
579                         done
580                         if [ -n "$TARGETS" ]; then # at least a valid client
581                                 shift
582                         else # no valid client, let's assume this option is not meant to be a client then
583                                 TARGETS=$TARGETS_SAVE
584                                 BAD_TARGETS=
585                         fi
586                 fi
587                 if [ -z "$MAKEFLAGS" ]; then
588                         if [ -f /proc/cpuinfo ]; then
589                                 ncpus=$((`grep -c '^processor   :' /proc/cpuinfo`+0))
590                                 if [ $ncpus -gt 1 ]; then
591                                         MAKEFLAGS=-j$ncpus
592                                 fi
593                         fi
594                         if [ -n "$WE_HATE_OUR_USERS" ]; then
595                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw LIB_JPEG= CFLAGS_LIBJPEG="
596                         fi
597                 fi
598
599                 enter "$d0/fteqcc" verbose
600                 if $cleanqcc; then
601                         verbose make $MAKEFLAGS clean
602                 fi
603                 verbose make $MAKEFLAGS
604
605                 enter "$d0/data/xonotic-data.pk3dir" verbose
606                 if $cleanqc; then
607                         verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS clean
608                 fi
609                 verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS
610
611                 enter "$d0/darkplaces" verbose
612                 if [ x"$BAD_TARGETS" = x" " ]; then
613                         echo "Warning: invalid empty client, default clients will be used."
614                 fi
615                 if $cleandp; then
616                         verbose make $MAKEFLAGS clean
617                 fi
618                 for T in $TARGETS; do
619                         verbose make $MAKEFLAGS "$@" "$T"
620                 done
621                 for T in $BAD_TARGETS; do
622                         echo "Warning: discarded invalid client $T."
623                 done
624
625                 verbose "$SELF" update-maps
626                 ;;
627         run)
628                 if [ -n "$WE_HATE_OUR_USERS" ]; then
629                         client=
630                         export PATH="$d0/misc/buildfiles/win32:$PATH"
631                 elif [ x"`uname`" = x"Darwin" ]; then
632                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/MacOS"
633                         export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
634                         client=-sdl
635                 else
636                         client=-sdl
637                 fi
638                 case "$1" in
639                         sdl|glx|agl|dedicated)
640                                 client=-$1
641                                 shift
642                                 ;;
643                         wgl)
644                                 client=
645                                 shift
646                                 ;;
647                 esac
648                 if ! [ -x "darkplaces/darkplaces$client" ]; then
649                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
650                                 client=$client.exe
651                         else
652                                 echo "Client darkplaces/darkplaces$client not found, aborting"
653                                 exit 1
654                         fi
655                 fi
656                 set -- "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic -mygames "$@"
657                 # change this to:
658                 #set -- "darkplaces/darkplaces$client" -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 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                 gotoupstream=false
898                 fetchupstream=false
899                 gotomaster=false
900                 rmuntracked=false
901                 killbranches=false
902                 # usage:
903                 #   ./all clean [-m] [-f | -fu | -fU] [-r] [-D]
904                 #   ./all clean --reclone
905                 found=false
906                 while :; do
907                         if [ x"$1" = x"--reclone" ]; then
908                                 force=true
909                                 fetchupstream=true
910                                 gotoupstream=true
911                                 gotomaster=true
912                                 rmuntracked=true
913                                 killbranches=true
914                         elif [ x"$1" = x"-f" ]; then
915                                 force=true
916                         elif [ x"$1" = x"-u" ]; then
917                                 gotoupstream=true
918                         elif [ x"$1" = x"-U" ]; then
919                                 gotoupstream=true
920                                 fetchupstream=true
921                         elif [ x"$1" = x"-fu" ]; then
922                                 force=true
923                                 gotoupstream=true
924                         elif [ x"$1" = x"-fU" ]; then
925                                 force=true
926                                 gotoupstream=true
927                                 fetchupstream=true
928                         elif [ x"$1" = x"-m" ]; then
929                                 gotomaster=true
930                         elif [ x"$1" = x"-r" ]; then
931                                 rmuntracked=true
932                         elif [ x"$1" = x"-D" ]; then
933                                 killbranches=true
934                         else
935                                 break
936                         fi
937                         found=true
938                         shift
939                 done
940                 if ! $found; then
941                         rmuntracked=true
942                 fi
943                 for d in $repos; do
944                         verbose cd "$d0/$d"
945                         if $gotoupstream; then
946                                 if ! $force; then
947                                         msg "Must also use -f (delete local changes) when using -u"
948                                         exit 1
949                                 fi
950                                 if $gotomaster; then
951                                         if $fetchupstream; then
952                                                 verbose git fetch origin
953                                         fi
954                                         verbose git checkout -f "`repobranch "$d"`"
955                                         verbose git reset --hard origin/"`repobranch "$d"`"
956                                 else
957                                         r=`git symbolic-ref HEAD`
958                                         r=${r#refs/heads/}
959                                         rem=`git config "branch.$r.remote" || echo origin`
960                                         bra=`git config "branch.$r.merge" || echo "$r"`
961                                         upstream="$rem/${bra#refs/heads/}"
962                                         if $fetchupstream; then
963                                                 verbose git fetch "$rem"
964                                         fi
965                                         if ! git rev-parse "$upstream" >/dev/null 2>&1; then
966                                                 upstream="origin/`repobranch "$d"`"
967                                         fi
968                                         verbose git reset --hard "$upstream"
969                                 fi
970                         elif $gotomaster; then
971                                 if $force; then
972                                         verbose git checkout -f "`repobranch "$d"`"
973                                         verbose git reset --hard
974                                 else
975                                         verbose git checkout "`repobranch "$d"`"
976                                 fi
977                         elif $force; then
978                                 verbose git reset --hard
979                         fi
980                         if $rmuntracked; then
981                                 case "$d" in
982                                         .)
983                                                 verbose git clean -df
984                                                 ;;
985                                         *)
986                                                 verbose git clean -xdf
987                                                 ;;
988                                 esac
989                         fi
990                         if $killbranches; then
991                                 git for-each-ref --format='%(refname)' refs/heads/ | while IFS= read -r B; do
992                                         if [ x"$B" != x"`git symbolic-ref HEAD`" ]; then
993                                                 verbose git branch -D "${B#refs/heads/}"
994                                         fi
995                                 done
996                         fi
997                 done
998                 ;;
999
1000         # release building goes here
1001         release-prepare)
1002                 #"$SELF" each git clean -fxd
1003                 case "$RELEASETYPE" in
1004                         beta)
1005                                 msg "Building a BETA"
1006                                 ;;
1007                         release)
1008                                 msg "Building a RELEASE"
1009                                 ;;
1010                         *)
1011                                 msg "Must either set RELEASETYPE=beta or RELEASETYPE=release"
1012                                 exit 1
1013                                 ;;
1014                 esac
1015                 verbose rm -rf Xonotic Xonotic*.zip
1016                 verbose mkdir -p Xonotic
1017                 if [ -n "$RELEASEDATE" ]; then
1018                         verbose echo "$RELEASEDATE" > Xonotic/stamp.txt
1019                 else
1020                         verbose date +%Y%m%d > Xonotic/stamp.txt
1021                 fi
1022                 verbose git archive --format=tar HEAD -- Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh misc/buildfiles | {
1023                         verbose cd Xonotic
1024                         verbose mkdir data fteqcc source source/darkplaces source/fteqcc
1025                         verbose tar xvf -
1026                         verbose rm -rf misc/builddeps
1027                         verbose mv misc/buildfiles/win32/* . || true
1028                         verbose mv misc/buildfiles/win64 bin64 || true
1029                         verbose mv misc/buildfiles/osx/* . || true
1030                         verbose rm -rf misc/buildfiles
1031                 }
1032                 {
1033                         verbose cd darkplaces
1034                         verbose git archive --format=tar HEAD
1035                 } | {
1036                         verbose cd Xonotic/source/darkplaces
1037                         verbose tar xvf -
1038                 }
1039                 {
1040                         verbose cd fteqcc
1041                         verbose git archive --format=tar HEAD
1042                 } | {
1043                         verbose cd Xonotic/source/fteqcc
1044                         verbose tar xvf -
1045                 }
1046                 {
1047                         verbose cd data/xonotic-data.pk3dir
1048                         verbose git archive --format=tar HEAD -- qcsrc Makefile
1049                 } | {
1050                         verbose cd Xonotic/source
1051                         verbose tar xvf -
1052                 }
1053                 ;;
1054         release-compile-run)
1055                 host=$1
1056                 buildpath=$2
1057                 maketargets=$3
1058                 makeflags=$4
1059                 srcdir=$5
1060                 depsdir=$6
1061                 targetfiles=$7
1062                 set -x
1063                 if [ -n "$targetfiles" ]; then
1064                         case " $HOSTS_THAT_ARE_DISABLED " in
1065                                 *\ $host\ *)
1066                                         exit
1067                                         ;;
1068                         esac
1069                         case " $HOSTS_THAT_ARE_MYSELF " in
1070                                 *\ $host\ *)
1071                                         verbose rsync --delete -zLvaSHP "$srcdir"/ "$buildpath/"
1072                                         verbose rsync --delete -zLvaSHP "$depsdir"/ "$buildpath.deps/"
1073                                         verbose ln -snf "$buildpath.deps" "$buildpath/.deps"
1074                                         verbose eval make -C "$buildpath" clean $maketargets $makeflags
1075                                         for f in $targetfiles; do
1076                                                 verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
1077                                         done
1078                                         ;;
1079                                 *)
1080                                         verbose rsync --delete -zLvaSHP "$srcdir"/ "$host:$buildpath/"
1081                                         verbose rsync --delete -zLvaSHP "$depsdir"/ "$host:$buildpath.deps/"
1082                                         verbose ssh "$host" "ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && nice -`nice` make clean $maketargets $makeflags"
1083                                         for f in $targetfiles; do
1084                                                 verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
1085                                         done
1086                                         ;;
1087                         esac
1088                         # now rebrand the binaries...
1089                         for f in $targetfiles; do
1090                                 #verbose "$d0/misc/tools/rebrand-darkplaces-engine.sh" "${XONOTIC_BRAND:-$d0/misc/tools/xonotic.brand}" "${f##*:}" || true
1091                                 case "$f" in
1092                                         xonotic*.exe)
1093                                                 verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "$f"
1094                                                 (
1095                                                         d=`mktemp -d -t rebrand.XXXXXX`
1096                                                         cd "$d"
1097                                                         echo "-mygames" > darkplaces.opt
1098                                                         zip -9r darkplaces.zip darkplaces.opt
1099                                                         cat darkplaces.zip
1100                                                         cd "$d0"
1101                                                         rm -rf "$d"
1102                                                 ) >> "$f"
1103                                                 ;;
1104                                 esac
1105                         done
1106                 fi
1107                 ;;
1108         release-compile)
1109                 suffix=$1
1110                 makeflags=$2
1111                 fteqcc_maketargets=$3
1112                 fteqcc_files=$4
1113                 darkplaces_maketargets=$5
1114                 darkplaces_files=$6
1115                 host=xonotic-build-$suffix
1116                 verbose "$SELF" release-compile-run "$host" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "Xonotic/source/fteqcc" "$d0/misc/builddeps/dp.$suffix" "$fteqcc_files"
1117                 verbose "$SELF" release-compile-run "$host" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$d0/misc/builddeps/dp.$suffix" "$darkplaces_files"
1118                 ;;
1119         release-engine-win32)
1120                 verbose "$SELF" release-compile win32 \
1121                         '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' \
1122                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
1123                         '' ''
1124                 verbose "$SELF" release-compile win32 \
1125                         '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' \
1126                         '' '' \
1127                         release 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
1128                 ;;
1129         release-engine-win64)
1130                 verbose "$SELF" release-compile win64 \
1131                         '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' \
1132                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc-x64.exe' \
1133                         'sv-release sdl-release' 'darkplaces-sdl.exe:Xonotic/xonotic-x64-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-x64-dedicated.exe'
1134                 verbose "$SELF" release-compile win64 \
1135                         'STRIP=: DP_MAKE_TARGET=mingw CC="x86_64-w64-mingw32-gcc -g -Wl,--dynamicbase -Wl,--nxcompat -I.deps/include -L.deps/lib" WINDRES="x86_64-w64-mingw32-windres" SDL_CONFIG=".deps/bin/sdl-config" LIB_JPEG= CFLAGS_LIBJPEG= WIN64RELEASE=1 D3D=0' \
1136                         '' '' \
1137                         cl-release 'darkplaces.exe:Xonotic/xonotic-x64.exe'
1138                 ;;
1139         release-engine-osx)
1140                 # gcc on OSX is buggy, needs -fno-reorder-blocks for a release build to succeed
1141                 verbose "$SELF" release-compile osx \
1142                         '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"' \
1143                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
1144                         'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin darkplaces-dedicated:Xonotic/xonotic-osx-dedicated'
1145                 verbose "$SELF" release-compile osx \
1146                         '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"' \
1147                         '' '' \
1148                         'cl-release' 'darkplaces-agl:Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-agl-bin'
1149                 ;;
1150         release-engine-linux32)
1151                 verbose "$SELF" release-compile linux32 \
1152                         'STRIP=: CC="gcc -m32 -g -I.deps/include -L.deps/lib" DP_MODPLUG_STATIC_LIBDIR=.deps/lib LIB_JPEG=.deps/lib/libjpeg.a' \
1153                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
1154                         release 'darkplaces-glx:Xonotic/xonotic-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux32-dedicated'
1155                 ;;
1156         release-engine-linux64)
1157                 verbose "$SELF" release-compile linux64 \
1158                         'STRIP=: CC="gcc -m64 -g -I.deps/include -L.deps/lib" DP_MODPLUG_STATIC_LIBDIR=.deps/lib LIB_JPEG=.deps/lib/libjpeg.a' \
1159                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
1160                         release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
1161                 ;;
1162         release-engine)
1163                 verbose "$SELF" release-engine-linux32 &
1164                 verbose "$SELF" release-engine-linux64 &
1165                 verbose "$SELF" release-engine-win32 &
1166                 verbose "$SELF" release-engine-win64 &
1167                 verbose "$SELF" release-engine-osx &
1168                 wait %1
1169                 wait %2
1170                 wait %3
1171                 wait %4
1172                 wait %5
1173                 wait
1174                 ;;
1175         release-maps)
1176                 verbose "$SELF" update-maps
1177                 ;;
1178         release-qc)
1179                 case "$RELEASETYPE" in
1180                         beta)
1181                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 clean all
1182                                 ;;
1183                         release)
1184                                 verbose make -C Xonotic/source FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" XON_BUILDSYSTEM=1 FTEQCCFLAGS_WATERMARK= clean all
1185                                 ;;
1186                 esac
1187                 verbose rm -f Xonotic/source/*/fteqcc.log
1188                 ;;
1189         release-buildpk3-transform-raw)
1190                 dir=$1
1191                 ;;
1192         release-buildpk3-transform-normal)
1193                 dir=$1
1194                 verbose cd "$dir"
1195                 # texture: convert to jpeg and dds
1196                 verbose export do_jpeg=true
1197                 verbose export jpeg_qual_rgb=95
1198                 verbose export jpeg_qual_a=99
1199                 verbose export do_dds=true
1200                 verbose export dds_flags=
1201                 verbose export do_ogg=false
1202                 verbose export del_src=true
1203                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1204                 ;;
1205         release-buildpk3-transform-low)
1206                 dir=$1
1207                 verbose cd "$dir"
1208                 # texture: convert to jpeg and dds
1209                 # music: reduce bitrate
1210                 verbose export do_jpeg=true
1211                 verbose export jpeg_qual_rgb=80
1212                 verbose export jpeg_qual_a=95
1213                 verbose export do_dds=false
1214                 verbose export do_ogg=true
1215                 verbose export ogg_qual=1
1216                 verbose export del_src=true
1217                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1218                 ;;
1219         release-buildpk3-transform-lowdds)
1220                 dir=$1
1221                 verbose cd "$dir"
1222                 # texture: convert to jpeg and dds
1223                 # music: reduce bitrate
1224                 verbose export do_jpeg=false
1225                 verbose export do_jpeg_if_not_dds=true
1226                 verbose export jpeg_qual_rgb=80
1227                 verbose export jpeg_qual_a=95
1228                 verbose export do_dds=true
1229                 verbose export dds_flags=
1230                 verbose export do_ogg=true
1231                 verbose export ogg_qual=1
1232                 verbose export del_src=true
1233                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
1234                 ;;
1235         release-buildpk3)
1236                 src=$1
1237                 dst=$2
1238                 transform=$3
1239                 case "$dst" in
1240                         /*)
1241                                 ;;
1242                         */)
1243                                 dst="$PWD/$dst"
1244                                 ;;
1245                 esac
1246                 verbose rm -rf Xonotic/temp
1247                 verbose mkdir -p Xonotic/temp
1248                 {
1249                         verbose cd "$src"
1250                         verbose git archive --format=tar HEAD
1251                 } | {
1252                         verbose cd Xonotic/temp
1253                         verbose tar xvf -
1254                 }
1255                 verbose cd Xonotic/temp
1256                 if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
1257                         verbose cp ../source/progs.dat .
1258                         verbose cp ../source/csprogs.dat .
1259                         verbose cp ../source/menu.dat .
1260                         verbose rm -rf qcsrc
1261                         gv=`grep "^gameversion " "defaultXonotic.cfg" | awk '{ print $2 }'`
1262                         major=$(($gv / 10000))
1263                         minor=$(($gv / 100 - $major * 100))
1264                         patch=$(($gv - $major * 10000 - $minor * 100))
1265                         versionstr="$major.$minor.$patch"
1266                         case "$RELEASETYPE" in
1267                                 beta)
1268                                         versionstr="$versionstr""beta"
1269                                         ;;
1270                         esac
1271                         verbose sed -i "
1272                                 s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
1273                                 s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
1274                                 s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
1275                         " defaultXonotic.cfg
1276                         (
1277                                 verbose cd gfx/menu/luminos
1278                                 verbose cp "$d0"/mediasource/gfx/menu/luminos_versionbuilder/background_l2.svg .
1279                                 verbose "$d0"/mediasource/gfx/menu/luminos_versionbuilder/versionbuilder "$versionstr"
1280                                 verbose rm background_l2.svg
1281                         )
1282                 fi
1283                 if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
1284                         for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
1285                                 if [ -f "$X" ]; then
1286                                         verbose unzip "$X"
1287                                         verbose rm -f maps/*.log maps/*.irc maps/*.lin
1288                                 fi
1289                         done
1290                 fi
1291                 verbose export git_src_repo="$d0/$src" # skip hash-object
1292                 verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
1293                 verbose mkzip "../../$dst" *
1294                 verbose cd ../..
1295                 verbose rm -rf Xonotic/temp
1296                 ;;
1297         release-buildpk3s)
1298                 stamp=`cat Xonotic/stamp.txt`
1299                 src=$1
1300                 shift
1301                 dst=${src%.pk3dir}
1302                 case "$dst" in
1303                         data/xonotic-*)
1304                                 dst="data/xonotic-$stamp-${dst#data/xonotic-}"
1305                                 ;;
1306                         *)
1307                                 dst="$dst-$stamp"
1308                                 ;;
1309                 esac
1310                 while [ "$#" -gt 1 ]; do
1311                         verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
1312                         shift
1313                         shift
1314                 done
1315                 ;;
1316         release-pack)
1317                 verbose "$SELF" release-buildpk3s data/font-nimbussansl.pk3dir             raw ''
1318                 verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1319                 verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low' lowdds '-lowdds'
1320                 verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir                raw ''     low '-low'
1321                 verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
1322                 ;;
1323         release-pack-needsx11)
1324                 case "$DISPLAY" in
1325                         '')
1326                                 verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
1327                                 ;;
1328                         *)
1329                                 verbose "$SELF" release-pack
1330                                 ;;
1331                 esac
1332                 ;;
1333         release-zip)
1334                 stamp=`cat Xonotic/stamp.txt`
1335                 # exe and dll files do not need +x, so this makes them eligible for 7zip compression too
1336                 chmod a-x Xonotic/*.exe Xonotic/*.dll || true
1337                 # need to use infozip for these (+x bits)
1338                 verbose mkzip Xonotic-$stamp-engine.zip \
1339                         Xonotic/*.dll \
1340                         Xonotic/bin64/*.dll \
1341                         Xonotic/*.app \
1342                         Xonotic/xonotic-* \
1343                         Xonotic/xonotic.exe \
1344                         Xonotic/source/darkplaces/
1345                 verbose cp Xonotic-$stamp-engine.zip Xonotic-$stamp-common.zip
1346                 verbose mkzip Xonotic-$stamp-common.zip \
1347                         Xonotic/source/fteqcc/ \
1348                         Xonotic/source/qcsrc/ \
1349                         Xonotic/Docs \
1350                         Xonotic/misc \
1351                         Xonotic/fteqcc \
1352                         Xonotic/server \
1353                         Xonotic/data/font-nimbussansl-$stamp.pk3
1354                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
1355                 verbose mkzip0 Xonotic-$stamp.zip \
1356                         Xonotic/data/xonotic-$stamp-data.pk3 \
1357                         Xonotic/data/xonotic-$stamp-maps.pk3 \
1358                         Xonotic/data/xonotic-$stamp-music.pk3 \
1359                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1360                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-low.zip
1361                 verbose mkzip0 Xonotic-$stamp-low.zip \
1362                         Xonotic/data/xonotic-$stamp-data-low.pk3 \
1363                         Xonotic/data/xonotic-$stamp-maps-low.pk3 \
1364                         Xonotic/data/xonotic-$stamp-music-low.pk3
1365                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp-lowdds.zip
1366                 verbose mkzip0 Xonotic-$stamp-lowdds.zip \
1367                         Xonotic/data/xonotic-$stamp-data-lowdds.pk3 \
1368                         Xonotic/data/xonotic-$stamp-maps-lowdds.pk3 \
1369                         Xonotic/data/xonotic-$stamp-music-low.pk3
1370                 verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
1371                 verbose mkzip0 Xonotic-$stamp-high.zip \
1372                         Xonotic/data/xonotic-$stamp-data-raw.pk3 \
1373                         Xonotic/data/xonotic-$stamp-maps-raw.pk3 \
1374                         Xonotic/data/xonotic-$stamp-music.pk3 \
1375                         Xonotic/data/xonotic-$stamp-nexcompat.pk3
1376                 ;;
1377         release)
1378                 verbose "$SELF" release-prepare
1379                 verbose "$SELF" release-maps
1380                 verbose "$SELF" release-engine
1381                 verbose "$SELF" release-qc
1382                 verbose "$SELF" release-pack-needsx11
1383                 verbose "$SELF" release-zip
1384                 ;;
1385
1386         *)
1387                 echo "Usage:"
1388                 echo "  $SELF admin-merge [<branch>]"
1389                 echo "  $SELF branch <branch>"
1390                 echo "  $SELF branch <remote> <branch> [<srcbranch>]"
1391                 echo "  $SELF branches"
1392                 echo "  $SELF checkout|switch <branch>"
1393                 echo "  $SELF checkout|switch <remote>/<branch>"
1394                 echo "  $SELF clean [-m] [-f | -fu | -fU] [-r] [-D]"
1395                 echo "  $SELF clean --reclone"
1396                 echo "  $SELF compile [-c]"
1397                 echo "  $SELF each|foreach [-k] command..."
1398                 echo "  $SELF fix_upstream_rebase"
1399                 echo "  $SELF merge"
1400                 echo "  $SELF push|commit [-s]"
1401                 echo "  $SELF release"
1402                 echo "  $SELF restore-patches"
1403                 echo "  $SELF run [sdl|glx|wgl|agl|dedicated] options..."
1404                 echo "  $SELF save-patches"
1405                 echo "  $SELF update-maps"
1406                 echo "  $SELF update|pull [-N]"
1407                 ;;
1408 esac