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