]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
1f939e9e66fbee40e9d1716f9915fff87aa38d8e
[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 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 "\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"
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                 | git://git.icculus.org/divverent/div0-gittools.git | master      |
121 netradiant                    |                                                   | master      |
122 "
123 # todo: in darkplaces, change repobranch to div0-stable
124
125 repos=`echo "$repos_urls" | grep . | cut -d '|' -f 1 | tr -d ' '`
126
127 base=`git config remote.origin.url`
128 case "$base" in
129         */xonotic.git)
130                 base=${base%xonotic.git}
131                 ;;
132         *)
133                 echo "The main repo is not xonotic.git, what have you done?"
134                 exit 1
135                 ;;
136 esac
137
138 repourl()
139 {
140         repo_t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 2 | tr -d ' '`
141         if [ -n "$repo_t" ]; then
142                 case "$repo_t" in
143                         *://*)
144                                 echo "$repo_t"
145                                 ;;
146                         *)
147                                 echo "$base$repo_t"
148                                 ;;
149                 esac
150         else
151                 if [ x"$1" = x"." ]; then
152                         echo "$base""xonotic.git"
153                 else
154                         echo "$base${1##*/}.git"
155                 fi
156         fi
157 }
158
159 repobranch()
160 {
161         repo_t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 3 | tr -d ' '`
162         if [ -n "$repo_t" ]; then
163                 echo "$repo_t"
164         else
165                 echo "master"
166         fi
167 }
168
169 repoflags()
170 {
171         echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 4 | tr -d ' '
172 }
173
174 repos=`for d in $repos; do
175         p="${d%dir}"
176         if [ x"$p" = x"$d" ] || [ -d "$d" ] || ! { [ -f "$d.no" ] || [ -f "$p" ]; }; then
177                 echo "$d"
178         fi
179 done`
180
181 if [ "$#" = 0 ]; then
182         set -- help
183 fi
184 cmd=$1
185 shift
186
187 case "$cmd" in
188         update|pull)
189                 allow_pull=true
190                 if [ x"$1" = x"-N" ]; then
191                         allow_pull=false
192                 fi
193                 for d in $repos; do
194                         url=`repourl "$d"`
195                         branch=`repobranch "$d"`
196                         if [ -d "$d0/$d" ]; then
197                                 if $allow_pull; then
198                                         enter "$d0/$d" verbose
199                                         verbose git config remote.origin.url "$url"
200                                         verbose git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
201
202                                         r=`git symbolic-ref HEAD`
203                                         r=${r#refs/heads/}
204                                         if git config branch.$r.remote >/dev/null 2>&1; then
205                                                 if ! verbose git pull; then
206                                                         check_mergeconflict "$d"
207                                                         echo "Pulling failed. Press ENTER to continue, or Ctrl-C to abort."
208                                                         read -r DUMMY
209                                                 fi
210                                         fi
211
212                                         cd "$d00"
213                                         checkself "$cmd" "$@"
214                                         cd "$d0/$d"
215                                         verbose git remote prune origin
216                                         cd "$d0"
217                                 fi
218                         else
219                                 verbose git clone "$url" "$d0/$d"
220                                 enter "$d0/$d" verbose
221                                 if [ "$branch" != "master" ]; then
222                                         verbose git checkout --track -b "$branch" origin/"$branch"
223                                 fi
224                                 cd "$d0"
225                         fi
226                 done
227                 ;;
228         update-maps)
229                 misc/tools/xonotic-map-compiler-autobuild download
230                 ;;
231         checkout|switch)
232                 remote=$1
233                 branch=$2
234                 if [ -z "$branch" ]; then
235                         case "$remote" in
236                                 origin/*)
237                                         branch=${remote#origin/}
238                                         remote=origin
239                                         ;;
240                                 *)
241                                         branch=$remote
242                                         remote=origin
243                                         ;;
244                         esac
245                 fi
246                 exists=false
247                 for d in $repos; do
248                         enter "$d0/$d" verbose
249                         b=$branch
250                         if [ -n "$b" ] && git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
251                                 exists=true
252                                 verbose git checkout "$b"
253                         elif [ -n "$b" ] && git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
254                                 exists=true
255                                 verbose git checkout --track -b "$b" "$remote/$b"
256                         else
257                                 b=`repobranch "$d"`
258                                 if git rev-parse "refs/heads/$b" >/dev/null 2>&1; then
259                                         exists=true
260                                         verbose git checkout "$b"
261                                 elif git rev-parse "refs/remotes/$remote/$b" >/dev/null 2>&1; then
262                                         exists=true
263                                         verbose git checkout --track -b "$b" "$remote/$b"
264                                 else
265                                         echo "WTF? Not even branch $b doesn't exist in $d"
266                                         exit 1
267                                 fi
268                         fi
269                         cd "$d00"
270                         checkself "$cmd" "$@"
271                         cd "$d0"
272                 done
273                 if ! $exists; then
274                         echo "The requested branch was not found in any repository."
275                 fi
276                 exec "$SELF" branch
277                 ;;
278         branch)
279                 remote=$1
280                 branch=$2
281                 srcbranch=$3
282                 if [ -z "$branch" ]; then
283                         branch=$remote
284                         remote=origin
285                 fi
286                 if [ -z "$branch" ]; then
287                         for d in $repos; do
288                                 enter "$d0/$d"
289                                 r=`git symbolic-ref HEAD`
290                                 r=${r#refs/heads/}
291                                 echo "$d is at $r"
292                                 cd "$d0"
293                         done
294                 else
295                         for d in $repos; do
296                                 dv=`visible_repo_name "$d"`
297                                 enter "$d0/$d" verbose
298                                 if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then
299                                         echo "Already having this branch in $dv."
300                                 else
301                                         if yesno "Branch in $dv?"; then
302                                                 if [ -n "$srcbranch" ]; then
303                                                         b=$srcbranch
304                                                 else
305                                                         b=origin/"`repobranch "$d"`"
306                                                         verbose git fetch origin || true
307                                                 fi
308                                                 # TODO do this without pushing
309                                                 verbose git checkout -b "$branch" "$b"
310                                                 verbose git config "branch.$branch.remote" "$remote"
311                                                 verbose git config "branch.$branch.merge" "refs/heads/$branch"
312                                         fi
313                                 fi
314                                 cd "$d0"
315                         done
316                         "$SELF" branch
317                 fi
318                 ;;
319         branches)
320                 for d in $repos; do
321                         cd "$d0/$d" # am in a pipe, shouldn't use enter
322                         git branch -a -v -v | cut -c 3- | sed "s,^,$d ,"
323                         cd "$d0"
324                 done | {
325                         branches_list=
326                         # branches_repos_*=
327                         while read -r d BRANCH REV UPSTREAM TEXT; do
328                                 if [ x"$BRANCH" = x"`repobranch "$d"`" ]; then
329                                         continue
330                                 fi
331                                 case "$UPSTREAM" in
332                                         \[*)
333                                                 UPSTREAM=${UPSTREAM#\[}
334                                                 UPSTREAM=${UPSTREAM%\]}
335                                                 UPSTREAM=${UPSTREAM%:*}
336                                                 ;;
337                                         *)
338                                                 TEXT="$UPSTREAM $TEXT"
339                                                 UPSTREAM=
340                                                 ;;
341                                 esac
342                                 if [ x"$REV" = x"->" ]; then
343                                         continue
344                                 fi
345                                 BRANCH=${BRANCH#remotes/}
346                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
347                                 branches_list="$branches_list $BRANCH" # TEH SORT MAKEZ IT UNIEQ
348                                 eval "r=\$branches_repos_$ID"
349                                 case "$UPSTREAM" in
350                                         '')
351                                                 r="$r $d"
352                                                 ;;
353                                         *)
354                                                 r="$r $d:$UPSTREAM"
355                                                 ;;
356                                 esac
357                                 eval "branches_repos_$ID=\$r"
358                         done
359                         echo -n "$branches_list" | xargs -n 1 echo | sort -u | while IFS= read -r BRANCH; do
360                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
361                                 eval "r=\$branches_repos_$ID"
362                                 printf "%-60s %s\n" "$BRANCH" "$r"
363                                 #echo "$BRANCH: $r"
364                         done
365                 }
366                 ;;
367         merge)
368                 for d in $repos; do
369                         dv=`visible_repo_name "$d"`
370                         enter "$d0/$d" verbose
371                         r=`git symbolic-ref HEAD`
372                         r=${r#refs/heads/}
373                         if git log HEAD..origin/"`repobranch "$d"`" | grep .; then
374                                 # we have uncommitted changes
375                                 if yesno "Could merge from \"`repobranch "$d"`\" into \"$r\" in $dv. Do it?"; then
376                                         if ! verbose git merge origin/"`repobranch "$d"`"; then
377                                                 check_mergeconflict "$d"
378                                                 exit 1 # this should ALWAYS be fatal
379                                         fi
380                                 fi
381                         fi
382                         cd "$d0"
383                 done
384                 ;;
385         push|commit)
386                 submit=$1
387                 for d in $repos; do
388                         dv=`visible_repo_name "$d"`
389                         enter "$d0/$d" verbose
390                         r=`git symbolic-ref HEAD`
391                         r=${r#refs/heads/}
392                         diffdata=`git diff --color HEAD`
393                         if [ -n "$diffdata" ]; then
394                                 # we have uncommitted changes
395                                 if yesno "Uncommitted changes in \"$r\" in $dv. Commit?" 'echo "$diffdata" | less -r'; then
396                                         verbose git commit -a
397                                 fi
398                         fi
399                         rem=`git config "branch.$r.remote" || echo origin`
400                         bra=`git config "branch.$r.merge" || echo "$r"`
401                         upstream="$rem/$bra"
402                         if ! git rev-parse "$upstream" >/dev/null 2>&1; then
403                                 upstream="origin/`repobranch "$d"`"
404                         fi
405                         logdata=`git log --color "$upstream".."$r"`
406                         if [ -n "$logdata" ]; then
407                                 if yesno "Push \"$r\" in $dv?" 'echo "$logdata" | less -r'; then
408                                         verbose git push "$rem" HEAD
409                                 fi
410                         fi
411                         if [ x"$submit" = x"-s" ]; then
412                                 case "$r" in
413                                         */*)
414                                                 verbose git push "$rem" HEAD:"${bra%%/*}/finished/${bra#*/}"
415                                                 ;;
416                                 esac
417                         fi
418                         cd "$d0"
419                 done
420                 ;;
421         compile)
422                 if [ -n "$WE_HATE_OUR_USERS" ]; then
423                         TARGETS="sv-debug cl-debug"
424                         if [ -z "$CC" ]; then
425                                 export CC=gcc
426                         fi
427                 elif [ x"`uname`" = x"Darwin" ] && [ x"`uname -r`" = x"10.3.0" ]; then
428                         TARGETS="sv-debug sdl-debug"
429                         # AGL is broken in Snow Leopard, so default to SDL.
430                         if  [ x"`uname -r`" != x"10.3.0" ]; then
431                                 TARGETS="$TARGETS cl-debug"
432                         fi
433                         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"
434                 else
435                         TARGETS="sv-debug cl-debug sdl-debug"
436                 fi
437                 case "$1" in
438                         -c)
439                                 cleandp=true
440                                 cleanqcc=true
441                                 cleanqc=true
442                                 shift
443                                 ;;
444                         -n)
445                                 cleandp=false
446                                 cleanqcc=false
447                                 cleanqc=false
448                                 shift
449                                 ;;
450                         *)
451                                 cleandp=false
452                                 cleanqcc=false
453                                 cleanqc=true # version info
454                                 ;;
455                 esac
456                 if [ -n "$1" ]; then
457                         TARGETS=
458                         for X in $1; do
459                                 case "$X" in
460                                         sdl)
461                                                 TARGETS="sdl-debug $TARGETS"
462                                                 ;;
463                                         glx|agl|wgl)
464                                                 TARGETS="cl-debug $TARGETS"
465                                                 ;;
466                                         dedicated)
467                                                 TARGETS="sv-debug $TARGETS"
468                                                 ;;
469                                 esac
470                         done
471                         shift
472                 fi
473                 if [ -z "$MAKEFLAGS" ]; then
474                         if [ -f /proc/cpuinfo ]; then
475                                 ncpus=$((`grep -c '^processor   :' /proc/cpuinfo`+0))
476                                 if [ $ncpus -gt 1 ]; then
477                                         MAKEFLAGS=-j$ncpus
478                                 fi
479                         fi
480                         case "`uname`" in
481                                 Linux|*BSD)
482                                         MAKEFLAGS="$MAKEFLAGS DP_LINK_TO_LIBJPEG=1"
483                                         ;;
484                         esac
485                         if [ -n "$WE_HATE_OUR_USERS" ]; then
486                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw"
487                         fi
488                 fi
489
490                 enter "$d0/fteqcc" verbose
491                 if $cleanqcc; then
492                         verbose make $MAKEFLAGS clean
493                 fi
494                 verbose make $MAKEFLAGS
495
496                 enter "$d0/data/xonotic-data.pk3dir" verbose
497                 if $cleanqc; then
498                         verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS clean
499                 fi
500                 verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS
501
502                 enter "$d0/darkplaces" verbose
503                 if $cleandp; then
504                         verbose make $MAKEFLAGS clean
505                 fi
506                 for T in $TARGETS; do
507                         verbose make $MAKEFLAGS "$@" "$T"
508                 done
509
510                 verbose "$SELF" update-maps
511                 ;;
512         run)
513                 if [ -n "$WE_HATE_OUR_USERS" ]; then
514                         client=
515                         export PATH="$d0/misc/buildfiles/w32:$PATH"
516                 elif [ x"`uname`" = x"Darwin" ]; then
517                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/MacOS"
518                         export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
519                         client=-sdl
520                 else
521                         client=-sdl
522                 fi
523                 case "$1" in
524                         sdl|glx|agl|dedicated)
525                                 client=-$1
526                                 shift
527                                 ;;
528                         wgl)
529                                 client=
530                                 shift
531                                 ;;
532                 esac
533                 if ! [ -x "darkplaces/darkplaces$client" ]; then
534                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
535                                 client=$client.exe
536                         else
537                                 echo "Client darkplaces/darkplaces$client not found, aborting"
538                                 exit 1
539                         fi
540                 fi
541                 set -- "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic -mygames "$@"
542
543                 # if pulseaudio is running: USE IT
544                 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
545                         if ps -C pulseaudio >/dev/null; then
546                                 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
547                                         export SDL_AUDIODRIVER=pulse
548                                 fi
549                         fi
550                 fi
551
552                 if [ -n "$USE_GDB" ]; then
553                         set -- gdb --args "$@"
554                 fi
555                 "$@"
556                 ;;
557         each|foreach)
558                 keep_going=false
559                 if [ x"$1" = x"-k" ]; then
560                         keep_going=true
561                         shift
562                 fi
563                 for d in $repos; do
564                         if verbose cd "$d0/$d"; then
565                                 if $keep_going; then
566                                         verbose "$@" || true
567                                 else
568                                         verbose "$@"
569                                 fi
570                                 cd "$d0"
571                         fi
572                 done
573                 ;;
574         save-patches)
575                 outfile=$1
576                 patchdir=`mktemp -d -t save-patches.XXXXXX`
577                 for d in $repos; do
578                         enter "$d0/$d" verbose
579                         git branch -v -v | cut -c 3- | {
580                                 i=0
581                                 while read -r BRANCH REV UPSTREAM TEXT; do
582                                         case "$UPSTREAM" in
583                                                 \[*)
584                                                         UPSTREAM=${UPSTREAM#\[}
585                                                         UPSTREAM=${UPSTREAM%\]}
586                                                         UPSTREAM=${UPSTREAM%:*}
587                                                         TRACK=true
588                                                         ;;
589                                                 *)
590                                                         UPSTREAM=origin/"`repobranch "$d"`"
591                                                         TRACK=false
592                                                         ;;
593                                         esac
594                                         if [ x"$REV" = x"->" ]; then
595                                                 continue
596                                         fi
597                                         if git format-patch -o "$patchdir/$i" "$UPSTREAM".."$BRANCH"; then
598                                                 echo "$d" > "$patchdir/$i/info.txt"
599                                                 echo "$BRANCH" >> "$patchdir/$i/info.txt"
600                                                 echo "$UPSTREAM" >> "$patchdir/$i/info.txt"
601                                                 echo "$TRACK" >> "$patchdir/$i/info.txt"
602                                                 i=$(($i+1))
603                                         else
604                                                 rm -rf "$patchdir/$i"
605                                         fi
606                                 done
607                         }
608                 done
609                 ( cd "$patchdir" && tar cvzf - . ) > "$outfile"
610                 rm -rf "$patchdir"
611                 ;;
612         restore-patches)
613                 infile=$1
614                 patchdir=`mktemp -d -t restore-patches.XXXXXX`
615                 ( cd "$patchdir" && tar xvzf - ) < "$infile"
616                 # detach the head
617                 for P in "$patchdir"/*/info.txt; do
618                         D=${P%/info.txt}
619                         exec 3<"$P"
620                         read -r d <&3
621                         read -r BRANCH <&3
622                         read -r UPSTREAM <&3
623                         read -r TRACK <&3
624                         verbose git checkout HEAD^0
625                         verbose git branch -D "$BRANCH"
626                         if [ x"$TRACK" = x"true" ]; then
627                                 verbose git checkout --track -b "$BRANCH" "$UPSTREAM"
628                         else
629                                 verbose git branch -b "$BRANCH" "$UPSTREAM"
630                         fi
631                         verbose git am "$D"
632                 done
633                 rm -rf "$patchdir"
634                 ;;
635         admin-merge)
636                 branch=$1
637                 t=`mktemp`
638                 report=""
639                 reportecho()
640                 {
641                         report=$report"$*$LF"
642                         echo "$*"
643                 }
644                 reportecho4()
645                 {
646                         report=$report"    $*$LF"
647                         echo "    $*"
648                 }
649                 reportdo4()
650                 {
651                         o=`"$@" | sed 's/^/    /' || true`
652                         reportecho "$o"
653                 }
654                 for d in $repos; do
655                         enter "$d0/$d" verbose
656                         base="`repobranch "$d"`"
657                         reportecho "In $d:"
658                         for ref in `git for-each-ref --format='%(refname)' refs/remotes/origin/`; do
659                                 case "${ref#refs/remotes/origin/}" in
660                                         "$base")
661                                                 continue
662                                                 ;;
663                                         HEAD|master)
664                                                 continue
665                                                 ;;
666                                         */*)
667                                                 ;;
668                                         *)
669                                                 continue
670                                                 ;;
671                                 esac
672                                 if [ -n "$branch" ]; then
673                                         if [ x"$branch" != x"${ref#refs/remotes/origin/}" ]; then
674                                                 continue
675                                         fi
676                                 fi
677                                 case "$base" in
678                                         master)
679                                                 realbase=$base
680                                                 ;;
681                                         *)
682                                                 l0=`git rev-list "$base".."$ref" | wc -l`
683                                                 l1=`git rev-list master.."$ref" | wc -l`
684                                                 if [ $l0 -gt $l1 ]; then
685                                                         realbase=master
686                                                 else
687                                                         realbase=$base
688                                                 fi
689                                                 ;;
690                                 esac
691                                 reportecho "  Branch $ref:"
692                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
693                                 logdata=`git log --color "$realbase".."$ref"`
694                                 if [ -z "$logdata" ]; then
695                                         reportecho4 "--> not merging, no changes vs master"
696                                         if yesno "Branch \"$ref\" probably should get deleted. Do it?" ''; then
697                                                 git push origin :"${ref#refs/remotes/origin/}"
698                                                 reportecho4 "--> branch deleted"
699                                         fi
700                                 else
701                                         diffdata=`git diff --color --find-copies-harder --ignore-space-change "$realbase"..."$ref"`
702                                         if [ -z "$diffdata" ]; then
703                                                 reportecho4 "--> not merging, no changes vs master, branch contains redundant history"
704                                                 if yesno "Branch \"$ref\" probably should get deleted. Do it?" '{ echo "$logdata"; } | less -r'; then
705                                                         git push origin :"${ref#refs/remotes/origin/}"
706                                                         reportecho4 "--> branch deleted"
707                                                 fi
708                                         elif [ -n "$note" ]; then
709                                                 reportdo4 echo "$note"
710                                                 reportecho4 "--> not merging, already had this one rejected before"
711                                         elif yesno "Branch \"$ref\" may want to get merged. Do it?" '{ echo "$logdata"; echo "$diffdata"; } | less -r'; then
712                                                 git checkout "$realbase"
713                                                 org=`git rev-parse HEAD`
714                                                 if ! git merge "$ref" 2>&1 | tee "$t" && ! { git ls-files -u | grep ' 1   ' >/dev/null; }; then
715                                                         git reset --hard "$org"
716                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Merge failed:$LF`cat "$t"`" "$ref"
717                                                         reportdo4 cat "$t"
718                                                         reportecho4 "--> merge failed"
719                                                 elif ! "$SELF" compile -n 2>&1 | tee "$t"; then
720                                                         git reset --hard "$org"
721                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Compile failed:$LF`cat "$t"`" "$ref"
722                                                         reportdo4 cat "$t"
723                                                         reportecho4 "--> compile failed"
724                                                 elif ! yesno "Still merge \"$ref\" into `git symbolic-ref HEAD` of $d? Maybe you want to test first."; then
725                                                         git reset --hard "$org"
726                                                         git notes edit "$ref"
727                                                         note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
728                                                         if [ x"$note" = x"del" ]; then
729                                                                 git push origin :"${ref#refs/remotes/origin/}"
730                                                                 reportecho4 "--> test failed, branch deleted"
731                                                         elif [ -n "$note" ]; then
732                                                                 reportdo4 echo "$note"
733                                                                 reportecho4 "--> test failed"
734                                                         else
735                                                                 reportecho4 "--> test failed, postponed"
736                                                         fi
737                                                 else
738                                                         echo "MERGING"
739                                                         case ",`repoflags "$d"`," in
740                                                                 *,svn,*)
741                                                                         # we do quite a mess here... luckily we know $org
742                                                                         git fetch # svn needs to be current
743                                                                         git rebase -i --onto origin/master "$org"
744                                                                         git svn dcommit --add-author-from
745                                                                         git reset --hard "$org"
746                                                                         ;;
747                                                                 *)
748                                                                         git push origin HEAD
749                                                                         ;;
750                                                         esac
751                                                         reportecho4 "--> MERGED"
752                                                         if yesno "Delete original branch \"$ref\"?"; then
753                                                                 git push origin :"${ref#refs/remotes/origin/}"
754                                                                 reportecho4 "--> branch deleted"
755                                                         fi
756                                                 fi
757                                         else
758                                                 GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
759                                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
760                                                 if [ x"$note" = x"del" ]; then
761                                                         git push origin :"${ref#refs/remotes/origin/}"
762                                                         reportecho4 "--> branch deleted"
763                                                 elif [ -n "$note" ]; then
764                                                         reportdo4 echo "$note"
765                                                         reportecho4 "--> rejected"
766                                                 else
767                                                         reportecho4 "--> postponed"
768                                                 fi
769                                         fi
770                                 fi
771                                 reportecho ""
772                         done
773                         reportecho ""
774                 done
775                 rm -f "$t"
776                 echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
777                 ;;
778
779         # release building goes here
780         release-mkdir)
781                 mkdir -p Xonotic/"$1"
782                 ;;
783         release-prepare)
784 #"$SELF" each git clean -fxd
785                 mkdir -p Xonotic
786                 "$SELF" release-copy Docs/
787                 "$SELF" release-copy misc/
788                 "$SELF" release-copy server/
789                 "$SELF" release-copy xonotic-linux-glx.sh
790                 "$SELF" release-copy xonotic-linux-sdl.sh
791                 "$SELF" release-mkdir data
792                 "$SELF" release-mkdir fteqcc
793                 ;;
794         release-copy)
795                 rsync --exclude=.git -vaSHPAX "$1" Xonotic/"$1"
796                 ;;
797         release-compile-run)
798                 host=$1
799                 buildpath=$2
800                 maketargets=$3
801                 makeflags=$4
802                 srcdir=$5
803                 targetfiles=$6
804                 rsync --delete -zvaSHPAX "$srcdir"/ "$host:$buildpath/"
805                 ssh "$host" ". ~/.profile && cd $buildpath && make clean $maketargets $makeflags"
806         for f in $targetfiles; do
807                         rsync -zvaSHPAX "$host:$buildpath/${f%:*}" "${f##*:}"
808                 done
809                 ;;
810         release-compile)
811                 suffix=$1
812                 makeflags=$2
813                 fteqcc_maketargets=$3
814                 fteqcc_files=$4
815                 darkplaces_maketargets=$5
816                 darkplaces_files=$6
817                 "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "fteqcc" "$fteqcc_files"
818                 "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "fteqcc" "$darkplaces_files"
819                 ;;
820         release-engine-win32)
821                 rsync --exclude=.git -vaSHPAX Xonotic/misc/buildfiles/w32/* Xonotic/
822                 "$SELF" release-compile win32 \
823                         '"DP_MAKE_TARGET=mingw CC="i586-mingw32msvc-gcc -Wl,--dynamicbase -Wl,--nxcompat -g -DSUPPORTDIRECTX -DUSE_WSPIAPI_H -I$HOME/dp.win32/include -L$HOME/db.win32/lib" WINDRES="i586-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win32/bin/sdl-config"' \
824                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
825                         debug 'darkplaces.exe:xonotic.exe darkplaces-sdl.exe:xonotic-sdl.exe darkplaces-dedicated.exe:xonotic-dedicated.exe'
826                 ;;
827         release-engine-win64)
828                 rsync --exclude=.git -vaSHPAX Xonotic/misc/buildfiles/w32/* Xonotic/
829                 "$SELF" release-compile win32 \
830                         '"DP_MAKE_TARGET=mingw CC="amd64-mingw32msvc-gcc -Wl,--dynamicbase -Wl,--nxcompat -g -DSUPPORTDIRECTX -DUSE_WSPIAPI_H -I$HOME/dp.win64/include -L$HOME/db.win64/lib" WINDRES="amd64-mingw32msvc-windres" SDL_CONFIG="$HOME/dp.win64/bin/sdl-config"' \
831                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
832                         debug 'darkplaces.exe:xonotic-64.exe darkplaces-sdl.exe:xonotic-sdl-64.exe darkplaces-dedicated.exe:xonotic-dedicated-64.exe'
833                 ;;
834         release-engine-osx)
835                 rsync --exclude=.git -vaSHPAX Xonotic/misc/buildfiles/osx/* Xonotic/
836                 "$SELF" release-compile osx \
837                         'CC="gcc -g -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.5 -I$HOME/dp.osx/include -L$HOME/dp.osx/lib"' \
838                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
839                         sdl-debug 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin'
840                 ;;
841         release-engine-linux32)
842                 "$SELF" release-compile linux32 \
843                         '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 DP_LINK_TO_LIBJPEG=1' \
844                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
845                         debug 'darkplaces-glx:Xonotic/xonotic-linux-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux-linux32-dedicated'
846                 ;;
847         release-engine-linux64)
848                 "$SELF" release-compile linux64 \
849                         '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 DP_LINK_TO_LIBJPEG=1' \
850                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
851                         debug 'darkplaces-glx:Xonotic/xonotic-linux-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux-linux64-dedicated'
852                 ;;
853         release-engine)
854                 "$SELF" release-engine-win32 &
855                 "$SELF" release-engine-win64 &
856                 "$SELF" release-engine-osx &
857                 "$SELF" release-engine-linux32 &
858                 "$SELF" release-engine-linux64 &
859                 wait
860                 ;;
861         release-maps)
862                 "$SELF" update-maps
863                 for X in data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
864                         if [ -f "$X" ]; then
865                                 cd Xonotic/data/xonotic-maps.pk3dir
866                                 unzip ../../../"$X"
867                                 cd ../../..
868                         fi
869                 done
870                 ;;
871         release-finish)
872                 # version numnber and stuff like that
873                 ;;
874         release-qc)
875                 verbose make -C Xonotic/data/xonotic-data.pk3dir FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" FTEQCCFLAGS_WATERMARK=
876                 ;;
877         release-buildpk3-transform-raw)
878                 dir=$1
879                 ;;
880         release-buildpk3-transform-normal)
881                 dir=$1
882                 cd "$dir"
883                 # texture: convert to jpeg and dds
884                 export do_jpeg=true
885                 export jpeg_qual_rgb=95
886                 export jpeg_qual_a=99
887                 export do_dds=true
888                 export dds_flags=
889                 export do_ogg=false
890                 find textures -type f -print0 | xargs -0 "$d0"/misc/tools/cached-converter.sh
891                 ;;
892         release-buildpk3-transform-low)
893                 dir=$1
894                 cd "$dir"
895                 # texture: convert to jpeg and dds
896                 # music: reduce bitrate
897                 export do_jpeg=true
898                 export jpeg_qual_rgb=95
899                 export jpeg_qual_a=99
900                 export do_dds=false
901                 export do_ogg=true
902                 export ogg_qual=1
903                 find textures sound/cdtracks -type f -print0 | xargs -0 "$d0"/misc/tools/cached-converter.sh
904                 ;;
905         release-buildpk3)
906                 src=$1
907                 dst=$2
908                 transform=$3
909                 case "$dst" in
910                         /*)
911                                 ;;
912                         */)
913                                 dst="$PWD/$dst"
914                                 ;;
915                 esac
916                 rm -rf Xonotic/temp
917                 rsync --exclude=.git -vaSHPAX "$src"/ "Xonotic/temp"
918                 "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
919                 cd Xonotic/temp
920                 zip -9r "../../$dst" . ########### 7za a -tzip -mx=9 "../../$dst" .
921                 cd ../..
922                 rm -rf Xonotic/temp
923                 ;;
924         release-buildpk3s)
925                 src=$1
926                 shift
927                 while [ "$#" -gt 1 ]; do
928                         "$SELF" release-buildpk3 "$src" "Xonotic/${src%.pk3dir}$2.pk3" "$1"
929                         shift
930                         shift
931                 done
932                 ;;
933         release-pack)
934                 "$SELF" release-buildpk3s data/font-dejavu.pk3dir                  raw ''
935                 "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low'
936                 "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low'
937                 "$SELF" release-buildpk3s data/xonotic-music.pk3dir      normal '' raw '-raw' low '-low'
938                 "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
939                 ;;
940         release)
941                 "$SELF" release-prepare
942                 "$SELF" release-maps
943                 "$SELF" release-finish
944                 "$SELF" release-qc
945                 "$SELF" release-pack
946                 "$SELF" release-engine
947                 ;;
948         *)
949                 echo "Usage:"
950                 echo "  $SELF pull"
951                 echo "  $SELF merge"
952                 echo "  $SELF push [-s]"
953                 echo "  $SELF branches"
954                 echo "  $SELF branch [<remote>] <branchname>"
955                 echo "  $SELF branch <remote> <branchname> <srcbranchname>"
956                 echo "  $SELF checkout [<remote>] <branchname>"
957                 echo "  $SELF compile [-c|-n] [<client>] <options>"
958                 echo "  $SELF run [<client>] <options>"
959                 echo "  $SELF each <command>"
960                 ;;
961 esac