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