]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
2489f5aa991a9e202816c0053b4bff0fc656bd3c
[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" ]; then
428                         case "`uname -r`" in
429                                 ?.*)
430                                         TARGETS="sv-debug cl-debug sdl-debug"
431                                         ;;
432                                 *)
433                                         # AGL cannot be compiled on systems with a kernel > 10.x (Snow Leopard)
434                                         TARGETS="sv-debug sdl-debug"
435                                         ;;
436                         esac
437                         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"
438                 else
439                         TARGETS="sv-debug cl-debug sdl-debug"
440                 fi
441                 case "$1" in
442                         -c)
443                                 cleandp=true
444                                 cleanqcc=true
445                                 cleanqc=true
446                                 shift
447                                 ;;
448                         -n)
449                                 cleandp=false
450                                 cleanqcc=false
451                                 cleanqc=false
452                                 shift
453                                 ;;
454                         *)
455                                 cleandp=false
456                                 cleanqcc=false
457                                 cleanqc=true # version info
458                                 ;;
459                 esac
460                 if [ -n "$1" ]; then
461                         TARGETS=
462                         for X in $1; do
463                                 case "$X" in
464                                         sdl)
465                                                 TARGETS="sdl-debug $TARGETS"
466                                                 ;;
467                                         glx|agl|wgl)
468                                                 TARGETS="cl-debug $TARGETS"
469                                                 ;;
470                                         dedicated)
471                                                 TARGETS="sv-debug $TARGETS"
472                                                 ;;
473                                 esac
474                         done
475                         shift
476                 fi
477                 if [ -z "$MAKEFLAGS" ]; then
478                         if [ -f /proc/cpuinfo ]; then
479                                 ncpus=$((`grep -c '^processor   :' /proc/cpuinfo`+0))
480                                 if [ $ncpus -gt 1 ]; then
481                                         MAKEFLAGS=-j$ncpus
482                                 fi
483                         fi
484                         case "`uname`" in
485                                 Linux|*BSD)
486                                         MAKEFLAGS="$MAKEFLAGS DP_LINK_TO_LIBJPEG=1"
487                                         ;;
488                         esac
489                         if [ -n "$WE_HATE_OUR_USERS" ]; then
490                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw"
491                         fi
492                 fi
493
494                 enter "$d0/fteqcc" verbose
495                 if $cleanqcc; then
496                         verbose make $MAKEFLAGS clean
497                 fi
498                 verbose make $MAKEFLAGS
499
500                 enter "$d0/data/xonotic-data.pk3dir" verbose
501                 if $cleanqc; then
502                         verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS clean
503                 fi
504                 verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS
505
506                 enter "$d0/darkplaces" verbose
507                 if $cleandp; then
508                         verbose make $MAKEFLAGS clean
509                 fi
510                 for T in $TARGETS; do
511                         verbose make $MAKEFLAGS "$@" "$T"
512                 done
513
514                 verbose "$SELF" update-maps
515                 ;;
516         run)
517                 if [ -n "$WE_HATE_OUR_USERS" ]; then
518                         client=
519                         export PATH="$d0/misc/buildfiles/w32:$PATH"
520                 elif [ x"`uname`" = x"Darwin" ]; then
521                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/MacOS"
522                         export DYLD_FRAMEWORK_PATH="$d0/misc/buildfiles/osx/Xonotic-SDL.app/Contents/Frameworks"
523                         client=-sdl
524                 else
525                         client=-sdl
526                 fi
527                 case "$1" in
528                         sdl|glx|agl|dedicated)
529                                 client=-$1
530                                 shift
531                                 ;;
532                         wgl)
533                                 client=
534                                 shift
535                                 ;;
536                 esac
537                 if ! [ -x "darkplaces/darkplaces$client" ]; then
538                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
539                                 client=$client.exe
540                         else
541                                 echo "Client darkplaces/darkplaces$client not found, aborting"
542                                 exit 1
543                         fi
544                 fi
545                 set -- "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic -mygames "$@"
546
547                 # if pulseaudio is running: USE IT
548                 if [ -z "$SDL_AUDIODRIVER" ] && ! [ -n "$WE_HATE_OUR_USERS" ] && ! [ x"`uname`" = x"Darwin" ]; then
549                         if ps -C pulseaudio >/dev/null; then
550                                 if ldd /usr/lib/libSDL.so 2>/dev/null | grep pulse >/dev/null; then
551                                         export SDL_AUDIODRIVER=pulse
552                                 fi
553                         fi
554                 fi
555
556                 if [ -n "$USE_GDB" ]; then
557                         set -- gdb --args "$@"
558                 fi
559                 "$@"
560                 ;;
561         each|foreach)
562                 keep_going=false
563                 if [ x"$1" = x"-k" ]; then
564                         keep_going=true
565                         shift
566                 fi
567                 for d in $repos; do
568                         if verbose cd "$d0/$d"; then
569                                 if $keep_going; then
570                                         verbose "$@" || true
571                                 else
572                                         verbose "$@"
573                                 fi
574                                 cd "$d0"
575                         fi
576                 done
577                 ;;
578         save-patches)
579                 outfile=$1
580                 patchdir=`mktemp -d -t save-patches.XXXXXX`
581                 for d in $repos; do
582                         enter "$d0/$d" verbose
583                         git branch -v -v | cut -c 3- | {
584                                 i=0
585                                 while read -r BRANCH REV UPSTREAM TEXT; do
586                                         case "$UPSTREAM" in
587                                                 \[*)
588                                                         UPSTREAM=${UPSTREAM#\[}
589                                                         UPSTREAM=${UPSTREAM%\]}
590                                                         UPSTREAM=${UPSTREAM%:*}
591                                                         TRACK=true
592                                                         ;;
593                                                 *)
594                                                         UPSTREAM=origin/"`repobranch "$d"`"
595                                                         TRACK=false
596                                                         ;;
597                                         esac
598                                         if [ x"$REV" = x"->" ]; then
599                                                 continue
600                                         fi
601                                         if git format-patch -o "$patchdir/$i" "$UPSTREAM".."$BRANCH"; then
602                                                 echo "$d" > "$patchdir/$i/info.txt"
603                                                 echo "$BRANCH" >> "$patchdir/$i/info.txt"
604                                                 echo "$UPSTREAM" >> "$patchdir/$i/info.txt"
605                                                 echo "$TRACK" >> "$patchdir/$i/info.txt"
606                                                 i=$(($i+1))
607                                         else
608                                                 rm -rf "$patchdir/$i"
609                                         fi
610                                 done
611                         }
612                 done
613                 ( cd "$patchdir" && tar cvzf - . ) > "$outfile"
614                 rm -rf "$patchdir"
615                 ;;
616         restore-patches)
617                 infile=$1
618                 patchdir=`mktemp -d -t restore-patches.XXXXXX`
619                 ( cd "$patchdir" && tar xvzf - ) < "$infile"
620                 # detach the head
621                 for P in "$patchdir"/*/info.txt; do
622                         D=${P%/info.txt}
623                         exec 3<"$P"
624                         read -r d <&3
625                         read -r BRANCH <&3
626                         read -r UPSTREAM <&3
627                         read -r TRACK <&3
628                         verbose git checkout HEAD^0
629                         verbose git branch -D "$BRANCH"
630                         if [ x"$TRACK" = x"true" ]; then
631                                 verbose git checkout --track -b "$BRANCH" "$UPSTREAM"
632                         else
633                                 verbose git branch -b "$BRANCH" "$UPSTREAM"
634                         fi
635                         verbose git am "$D"
636                 done
637                 rm -rf "$patchdir"
638                 ;;
639         admin-merge)
640                 branch=$1
641                 t=`mktemp`
642                 report=""
643                 reportecho()
644                 {
645                         report=$report"$*$LF"
646                         echo "$*"
647                 }
648                 reportecho4()
649                 {
650                         report=$report"    $*$LF"
651                         echo "    $*"
652                 }
653                 reportdo4()
654                 {
655                         o=`"$@" | sed 's/^/    /' || true`
656                         reportecho "$o"
657                 }
658                 for d in $repos; do
659                         enter "$d0/$d" verbose
660                         base="`repobranch "$d"`"
661                         reportecho "In $d:"
662                         for ref in `git for-each-ref --format='%(refname)' refs/remotes/origin/`; do
663                                 case "${ref#refs/remotes/origin/}" in
664                                         "$base")
665                                                 continue
666                                                 ;;
667                                         HEAD|master)
668                                                 continue
669                                                 ;;
670                                         */*)
671                                                 ;;
672                                         *)
673                                                 continue
674                                                 ;;
675                                 esac
676                                 if [ -n "$branch" ]; then
677                                         if [ x"$branch" != x"${ref#refs/remotes/origin/}" ]; then
678                                                 continue
679                                         fi
680                                 fi
681                                 case "$base" in
682                                         master)
683                                                 realbase=$base
684                                                 ;;
685                                         *)
686                                                 l0=`git rev-list "$base".."$ref" | wc -l`
687                                                 l1=`git rev-list master.."$ref" | wc -l`
688                                                 if [ $l0 -gt $l1 ]; then
689                                                         realbase=master
690                                                 else
691                                                         realbase=$base
692                                                 fi
693                                                 ;;
694                                 esac
695                                 reportecho "  Branch $ref:"
696                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
697                                 logdata=`git log --color "$realbase".."$ref"`
698                                 if [ -z "$logdata" ]; then
699                                         reportecho4 "--> not merging, no changes vs master"
700                                         if yesno "Branch \"$ref\" probably should get deleted. Do it?" ''; then
701                                                 git push origin :"${ref#refs/remotes/origin/}"
702                                                 reportecho4 "--> branch deleted"
703                                         fi
704                                 else
705                                         diffdata=`git diff --color --find-copies-harder --ignore-space-change "$realbase"..."$ref"`
706                                         if [ -z "$diffdata" ]; then
707                                                 reportecho4 "--> not merging, no changes vs master, branch contains redundant history"
708                                                 if yesno "Branch \"$ref\" probably should get deleted. Do it?" '{ echo "$logdata"; } | less -r'; then
709                                                         git push origin :"${ref#refs/remotes/origin/}"
710                                                         reportecho4 "--> branch deleted"
711                                                 fi
712                                         elif [ -n "$note" ]; then
713                                                 reportdo4 echo "$note"
714                                                 reportecho4 "--> not merging, already had this one rejected before"
715                                         elif yesno "Branch \"$ref\" may want to get merged. Do it?" '{ echo "$logdata"; echo "$diffdata"; } | less -r'; then
716                                                 git checkout "$realbase"
717                                                 org=`git rev-parse HEAD`
718                                                 if ! git merge "$ref" 2>&1 | tee "$t" && ! { git ls-files -u | grep ' 1   ' >/dev/null; }; then
719                                                         git reset --hard "$org"
720                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Merge failed:$LF`cat "$t"`" "$ref"
721                                                         reportdo4 cat "$t"
722                                                         reportecho4 "--> merge failed"
723                                                 elif ! "$SELF" compile -n 2>&1 | tee "$t"; then
724                                                         git reset --hard "$org"
725                                                         GIT_NOTES_REF=refs/notes/admin-merge git notes edit -m "Compile failed:$LF`cat "$t"`" "$ref"
726                                                         reportdo4 cat "$t"
727                                                         reportecho4 "--> compile failed"
728                                                 elif ! yesno "Still merge \"$ref\" into `git symbolic-ref HEAD` of $d? Maybe you want to test first."; then
729                                                         git reset --hard "$org"
730                                                         git notes edit "$ref"
731                                                         note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
732                                                         if [ x"$note" = x"del" ]; then
733                                                                 git push origin :"${ref#refs/remotes/origin/}"
734                                                                 reportecho4 "--> test failed, branch deleted"
735                                                         elif [ -n "$note" ]; then
736                                                                 reportdo4 echo "$note"
737                                                                 reportecho4 "--> test failed"
738                                                         else
739                                                                 reportecho4 "--> test failed, postponed"
740                                                         fi
741                                                 else
742                                                         echo "MERGING"
743                                                         case ",`repoflags "$d"`," in
744                                                                 *,svn,*)
745                                                                         # we do quite a mess here... luckily we know $org
746                                                                         git fetch # svn needs to be current
747                                                                         git rebase -i --onto origin/master "$org"
748                                                                         git svn dcommit --add-author-from
749                                                                         git reset --hard "$org"
750                                                                         ;;
751                                                                 *)
752                                                                         git push origin HEAD
753                                                                         ;;
754                                                         esac
755                                                         reportecho4 "--> MERGED"
756                                                         if yesno "Delete original branch \"$ref\"?"; then
757                                                                 git push origin :"${ref#refs/remotes/origin/}"
758                                                                 reportecho4 "--> branch deleted"
759                                                         fi
760                                                 fi
761                                         else
762                                                 GIT_NOTES_REF=refs/notes/admin-merge git notes edit "$ref"
763                                                 note=`GIT_NOTES_REF=refs/notes/admin-merge git notes show "$ref" 2>/dev/null || true`
764                                                 if [ x"$note" = x"del" ]; then
765                                                         git push origin :"${ref#refs/remotes/origin/}"
766                                                         reportecho4 "--> branch deleted"
767                                                 elif [ -n "$note" ]; then
768                                                         reportdo4 echo "$note"
769                                                         reportecho4 "--> rejected"
770                                                 else
771                                                         reportecho4 "--> postponed"
772                                                 fi
773                                         fi
774                                 fi
775                                 reportecho ""
776                         done
777                         reportecho ""
778                 done
779                 rm -f "$t"
780                 echo "$report" | ssh nexuiz@rm.endoftheinternet.org cat '>>' public_html/xonotic-merge-notes.txt
781                 ;;
782
783         # release building goes here
784         release-mkdir)
785                 mkdir -p Xonotic/"$1"
786                 ;;
787         release-prepare)
788 #"$SELF" each git clean -fxd
789                 mkdir -p Xonotic
790                 "$SELF" release-copy Docs/
791                 "$SELF" release-copy misc/
792                 "$SELF" release-copy server/
793                 "$SELF" release-copy xonotic-linux-glx.sh
794                 "$SELF" release-copy xonotic-linux-sdl.sh
795                 "$SELF" release-mkdir data
796                 "$SELF" release-mkdir fteqcc
797                 ;;
798         release-copy)
799                 rsync --exclude=.git -vaSHPAX "$1" Xonotic/"$1"
800                 ;;
801         release-compile-run)
802                 host=$1
803                 buildpath=$2
804                 maketargets=$3
805                 makeflags=$4
806                 srcdir=$5
807                 targetfiles=$6
808                 rsync --delete -zvaSHPAX "$srcdir"/ "$host:$buildpath/"
809                 ssh "$host" ". ~/.profile && cd $buildpath && make clean $maketargets $makeflags"
810         for f in $targetfiles; do
811                         rsync -zvaSHPAX "$host:$buildpath/${f%:*}" "${f##*:}"
812                 done
813                 ;;
814         release-compile)
815                 suffix=$1
816                 makeflags=$2
817                 fteqcc_maketargets=$3
818                 fteqcc_files=$4
819                 darkplaces_maketargets=$5
820                 darkplaces_files=$6
821                 "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/fteqcc.build."$suffix" "$fteqcc_maketargets" "$makeflags" "fteqcc" "$fteqcc_files"
822                 "$SELF" release-compile-run "xonotic-build-$suffix" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "fteqcc" "$darkplaces_files"
823                 ;;
824         release-engine-win32)
825                 rsync --exclude=.git -vaSHPAX Xonotic/misc/buildfiles/w32/* Xonotic/
826                 "$SELF" release-compile win32 \
827                         '"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"' \
828                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
829                         debug 'darkplaces.exe:xonotic.exe darkplaces-sdl.exe:xonotic-sdl.exe darkplaces-dedicated.exe:xonotic-dedicated.exe'
830                 ;;
831         release-engine-win64)
832                 rsync --exclude=.git -vaSHPAX Xonotic/misc/buildfiles/w32/* Xonotic/
833                 "$SELF" release-compile win32 \
834                         '"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"' \
835                         win 'fteqcc.exe:Xonotic/fteqcc/fteqcc.exe' \
836                         debug 'darkplaces.exe:xonotic-64.exe darkplaces-sdl.exe:xonotic-sdl-64.exe darkplaces-dedicated.exe:xonotic-dedicated-64.exe'
837                 ;;
838         release-engine-osx)
839                 rsync --exclude=.git -vaSHPAX Xonotic/misc/buildfiles/osx/* Xonotic/
840                 "$SELF" release-compile osx \
841                         '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"' \
842                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.osx' \
843                         sdl-debug 'darkplaces-sdl:Xonotic/Xonotic-SDL.app/Contents/MacOS/xonotic-osx-sdl-bin'
844                 ;;
845         release-engine-linux32)
846                 "$SELF" release-compile linux32 \
847                         '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' \
848                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux32' \
849                         debug 'darkplaces-glx:Xonotic/xonotic-linux-linux32-glx darkplaces-sdl:Xonotic/xonotic-linux-linux32-sdl darkplaces-dedicated:Xonotic/xonotic-linux-linux32-dedicated'
850                 ;;
851         release-engine-linux64)
852                 "$SELF" release-compile linux64 \
853                         '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' \
854                         all 'fteqcc.bin:Xonotic/fteqcc/fteqcc.linux64' \
855                         debug 'darkplaces-glx:Xonotic/xonotic-linux-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux-linux64-dedicated'
856                 ;;
857         release-engine)
858                 "$SELF" release-engine-win32 &
859                 "$SELF" release-engine-win64 &
860                 "$SELF" release-engine-osx &
861                 "$SELF" release-engine-linux32 &
862                 "$SELF" release-engine-linux64 &
863                 wait
864                 ;;
865         release-maps)
866                 "$SELF" update-maps
867                 for X in data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
868                         if [ -f "$X" ]; then
869                                 cd Xonotic/data/xonotic-maps.pk3dir
870                                 unzip ../../../"$X"
871                                 cd ../../..
872                         fi
873                 done
874                 ;;
875         release-finish)
876                 # version numnber and stuff like that
877                 ;;
878         release-qc)
879                 verbose make -C Xonotic/data/xonotic-data.pk3dir FTEQCC="$d0/Xonotic/fteqcc/fteqcc.linux32" FTEQCCFLAGS_WATERMARK=
880                 ;;
881         release-buildpk3-transform-raw)
882                 dir=$1
883                 ;;
884         release-buildpk3-transform-normal)
885                 dir=$1
886                 cd "$dir"
887                 # texture: convert to jpeg and dds
888                 export do_jpeg=true
889                 export jpeg_qual_rgb=95
890                 export jpeg_qual_a=99
891                 export do_dds=true
892                 export dds_flags=
893                 export do_ogg=false
894                 find textures -type f -print0 | xargs -0 "$d0"/misc/tools/cached-converter.sh
895                 ;;
896         release-buildpk3-transform-low)
897                 dir=$1
898                 cd "$dir"
899                 # texture: convert to jpeg and dds
900                 # music: reduce bitrate
901                 export do_jpeg=true
902                 export jpeg_qual_rgb=95
903                 export jpeg_qual_a=99
904                 export do_dds=false
905                 export do_ogg=true
906                 export ogg_qual=1
907                 find textures sound/cdtracks -type f -print0 | xargs -0 "$d0"/misc/tools/cached-converter.sh
908                 ;;
909         release-buildpk3)
910                 src=$1
911                 dst=$2
912                 transform=$3
913                 case "$dst" in
914                         /*)
915                                 ;;
916                         */)
917                                 dst="$PWD/$dst"
918                                 ;;
919                 esac
920                 rm -rf Xonotic/temp
921                 rsync --exclude=.git -vaSHPAX "$src"/ "Xonotic/temp"
922                 "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
923                 cd Xonotic/temp
924                 zip -9r "../../$dst" . ########### 7za a -tzip -mx=9 "../../$dst" .
925                 cd ../..
926                 rm -rf Xonotic/temp
927                 ;;
928         release-buildpk3s)
929                 src=$1
930                 shift
931                 while [ "$#" -gt 1 ]; do
932                         "$SELF" release-buildpk3 "$src" "Xonotic/${src%.pk3dir}$2.pk3" "$1"
933                         shift
934                         shift
935                 done
936                 ;;
937         release-pack)
938                 "$SELF" release-buildpk3s data/font-dejavu.pk3dir                  raw ''
939                 "$SELF" release-buildpk3s data/xonotic-data.pk3dir       normal '' raw '-raw' low '-low'
940                 "$SELF" release-buildpk3s data/xonotic-maps.pk3dir       normal '' raw '-raw' low '-low'
941                 "$SELF" release-buildpk3s data/xonotic-music.pk3dir      normal '' raw '-raw' low '-low'
942                 "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir                       low ''
943                 ;;
944         release)
945                 "$SELF" release-prepare
946                 "$SELF" release-maps
947                 "$SELF" release-finish
948                 "$SELF" release-qc
949                 "$SELF" release-pack
950                 "$SELF" release-engine
951                 ;;
952         *)
953                 echo "Usage:"
954                 echo "  $SELF pull"
955                 echo "  $SELF merge"
956                 echo "  $SELF push [-s]"
957                 echo "  $SELF branches"
958                 echo "  $SELF branch [<remote>] <branchname>"
959                 echo "  $SELF branch <remote> <branchname> <srcbranchname>"
960                 echo "  $SELF checkout [<remote>] <branchname>"
961                 echo "  $SELF compile [-c|-n] [<client>] <options>"
962                 echo "  $SELF run [<client>] <options>"
963                 echo "  $SELF each <command>"
964                 ;;
965 esac