]> git.xonotic.org Git - xonotic/xonotic.git/blob - all
try forcing the mingw target on win32
[xonotic/xonotic.git] / all
1 #!/bin/sh
2 # vim: filetype=zsh
3
4 set -e
5
6 d00=`pwd`
7 while ! [ -f ./all ]; do
8         if [ x"`pwd`" = x"/" ]; then
9                 echo "Cannot find myself."
10                 echo "Please run this script with the working directory inside a Xonotic checkout."
11                 exit 1
12         fi
13         cd ..
14 done
15 d0=`pwd`
16 SELF="$d0/all"
17
18 # If we are on WINDOWS:
19 case "$0" in
20         all|*/all)
21                 case "`uname`" in
22                         MINGW*|Win*)
23                                 # Windows hates users. So this script has to copy itself elsewhere first...
24                                 tname=
25                                 cp "$SELF" ../all.xonotic.sh
26                                 export WE_HATE_OUR_USERS=1
27                                 exec ../all.xonotic.sh "$@"
28                                 ;;
29                 esac
30                 ;;
31 esac
32
33 msg()
34 {
35         echo "\e[1m$*\e[m"
36 }
37
38 checksum()
39 {
40         if [ -x /usr/bin/md5sum ]; then
41                 /usr/bin/md5sum "$@"
42         elif [ -x /bin/md5sum ]; then
43                 /bin/md5sum "$@"
44         elif [ -x /usr/bin/cksum ]; then
45                 /usr/bin/cksum "$@"
46         else
47                 echo "NOCHECKSUM"
48         fi
49 }
50
51 self=`checksum "$SELF"`
52 checkself()
53 {
54         self_new=`checksum "$SELF"`
55         if [ x"$self" != x"$self_new" ]; then
56                 msg "./all has changed."
57                 if [ -z "$XONOTIC_FORBID_RERUN_ALL" ]; then
58                         msg "Rerunning the requested operation to make sure."
59                         export XONOTIC_FORBID_RERUN_ALL=1
60                         exec "$SELF" "$@"
61                 else
62                         msg "Please try $SELF update, and then retry your requested operation."
63                         exit 1
64                 fi
65         fi
66         return 0
67 }
68
69 verbose()
70 {
71         msg "+ $*"
72         "$@"
73 }
74
75 visible_repo_name()
76 {
77         case "$1" in
78                 .)
79                         echo "the root directory"
80                         ;;
81                 *)
82                         echo "\"$1\""
83                         ;;
84         esac
85 }
86
87 check_mergeconflict()
88 {
89         if git ls-files -u | grep ' 1   '; then
90                 echo
91                 echo "MERGE CONFLICT."
92                 echo "change into the \"$1\" project directory, and then:"
93                 echo "- edit the files mentioned above with your favorite editor,"
94                 echo "  and fix the conflicts (marked with <<<<<<< blocks)"
95                 echo "- for binary files, you can select the files using"
96                 echo "  git checkout --ours or git checkout --theirs"
97                 echo "- when done with a file, 'git add' the file"
98                 echo "- when done, 'git commit'"
99                 echo
100                 exit 1
101         fi
102 }
103
104 enter()
105 {
106         $2 cd "$1"
107         check_mergeconflict "$1"
108 }
109
110 repos_urls="
111 .                             |                                                   | master
112 data/xonotic-data.pk3dir      |                                                   | master
113 data/xonotic-maps.pk3dir      |                                                   | master
114 data/xonotic-music.pk3dir     |                                                   | master
115 data/xonotic-nexcompat.pk3dir |                                                   | master
116 mediasource                   |                                                   | master
117 darkplaces                    |                                                   | div0-stable
118 fteqcc                        | git://github.com/Blub/qclib.git                   | master
119 div0-gittools                 | git://git.icculus.org/divverent/div0-gittools.git | master
120 netradiant                    |                                                   | master
121 "
122 # todo: in darkplaces, change repobranch to div0-stable
123
124 repos=`echo "$repos_urls" | grep . | cut -d '|' -f 1 | tr -d ' '`
125
126 base=`git config remote.origin.url`
127 base=${base%xonotic.git}
128
129 repourl()
130 {
131         t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 2 | tr -d ' '`
132         if [ -n "$t" ]; then
133                 case "$t" in
134                         *://*)
135                                 echo "$t"
136                                 ;;
137                         *)
138                                 echo "$base$t"
139                                 ;;
140                 esac
141         else
142                 if [ x"$1" = x"." ]; then
143                         echo "$base""xonotic.git"
144                 else
145                         echo "$base${1##*/}.git"
146                 fi
147         fi
148 }
149
150 repobranch()
151 {
152         t=`echo "$repos_urls" | grep "^$1 " | cut -d '|' -f 3 | tr -d ' '`
153         if [ -n "$t" ]; then
154                 echo "$t"
155         else
156                 echo "master"
157         fi
158 }
159
160 repos=`for d in $repos; do
161         p="${d%dir}"
162         if [ x"$p" = x"$d" ] || [ -d "$d" ] || ! [ -f "$p" ]; then
163                 echo "$d"
164         fi
165 done`
166
167 if [ "$#" = 0 ]; then
168         set -- help
169 fi
170 cmd=$1
171 shift
172
173 case "$cmd" in
174         update|pull)
175                 for d in $repos; do
176                         url=`repourl "$d"`
177                         branch=`repobranch "$d"`
178                         if [ -d "$d0/$d" ]; then
179                                 enter "$d0/$d" verbose
180                                 verbose git config remote.origin.url "$url"
181                                 verbose git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
182                                         # TODO remove this line later
183
184                                 verbose git config core.autocrlf false
185                                 verbose git config core.safecrlf false # we don't NEED that...
186
187                                 r=`git symbolic-ref HEAD`
188                                 r=${r#refs/heads/}
189                                 if git config branch.$r.remote >/dev/null 2>&1; then
190                                         if ! verbose git pull; then
191                                                 check_mergeconflict "$d"
192                                                 echo "Pulling failed. Press ENTER to continue, or Ctrl-C to abort."
193                                                 read -r DUMMY
194                                         fi
195                                 fi
196
197                                 cd "$d00"
198                                 checkself "$cmd" "$@"
199                                 cd "$d0/$d"
200                                 verbose git remote prune origin
201                                 cd "$d0"
202                         else
203                                 verbose git clone "$url" "$d0/$d"
204                                 enter "$d0/$d" verbose
205                                 verbose git checkout "$branch"
206                                 cd "$d0"
207                         fi
208                 done
209                 ;;
210         checkout|switch)
211                 remote=$1
212                 branch=$2
213                 if [ -z "$branch" ]; then
214                         branch=$remote
215                         remote=origin
216                 fi
217                 exists=false
218                 for d in $repos; do
219                         enter "$d0/$d" verbose
220                         if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then
221                                 exists=true
222                                 verbose git checkout "$branch"
223                         elif git rev-parse "refs/remotes/$remote/$branch" >/dev/null 2>&1; then
224                                 exists=true
225                                 verbose git checkout --track -b "$branch" "$remote/$branch"
226                         else
227                                 verbose git checkout "`repobranch "$d"`"
228                         fi
229                         cd "$d00"
230                         checkself "$cmd" "$@"
231                         cd "$d0"
232                 done
233                 if ! $exists; then
234                         echo "The requested branch was not found in any repository."
235                 fi
236                 exec "$SELF" branch
237                 ;;
238         branch)
239                 remote=$1
240                 branch=$2
241                 srcbranch=$3
242                 if [ -z "$branch" ]; then
243                         branch=$remote
244                         remote=origin
245                 fi
246                 if [ -z "$branch" ]; then
247                         for d in $repos; do
248                                 enter "$d0/$d"
249                                 r=`git symbolic-ref HEAD`
250                                 r=${r#refs/heads/}
251                                 echo "$d is at $r"
252                                 cd "$d0"
253                         done
254                 else
255                         for d in $repos; do
256                                 dv=`visible_repo_name "$d"`
257                                 enter "$d0/$d" verbose
258                                 a=
259                                 if git rev-parse "refs/heads/$branch" >/dev/null 2>&1; then
260                                         echo "Already having this branch in $dv."
261                                 else
262                                         while [ x"$a" != x"y" -a x"$a" != x"n" ]; do
263                                                 echo "Branch in $dv?"
264                                                 read -r a
265                                         done
266                                         if [ x"$a" = x"y" ]; then
267                                                 if [ -n "$srcbranch" ]; then
268                                                         b=$srcbranch
269                                                 else
270                                                         b="`repobranch "$d"`"
271                                                 fi
272                                                 # TODO do this without pushing
273                                                 verbose git push "$remote" "$b":"$branch"
274                                                 verbose git checkout --track -b "$branch" "$remote/$branch"
275                                         fi
276                                 fi
277                                 cd "$d0"
278                         done
279                         "$SELF" branch
280                 fi
281                 ;;
282         branches)
283                 for d in $repos; do
284                         enter "$d0/$d"
285                         echo "In $d:"
286                         git branch -a -v -v | cut -c 3- | while read -r BRANCH REV UPSTREAM TEXT; do
287                                 case "$UPSTREAM" in
288                                         \[*)
289                                                 UPSTREAM=${UPSTREAM#\[}
290                                                 UPSTREAM=${UPSTREAM%\]}
291                                                 UPSTREAM=${UPSTREAM%:*}
292                                                 ;;
293                                         *)
294                                                 TEXT="$UPSTREAM $TEXT"
295                                                 UPSTREAM=
296                                                 ;;
297                                 esac
298                                 if [ x"$REV" = x"->" ]; then
299                                         continue
300                                 fi
301                                 BRANCH=${BRANCH#remotes/}
302                                 echo -n "  $BRANCH"
303                                 if [ -n "$UPSTREAM" ]; then
304                                         echo -n " (tracking $UPSTREAM)"
305                                 fi
306                                 #echo " $TEXT"
307                                 echo
308                         done
309                 done
310                 ;;
311         branches_short)
312                 for d in $repos; do
313                         cd "$d0/$d" # am in a pipe, shouldn't use enter
314                         git branch -a -v -v | cut -c 3- | sed "s,^,$d ,"
315                         cd "$d0"
316                 done | {
317                         branches_list=
318                         # branches_repos_*=
319                         while read -r d BRANCH REV UPSTREAM TEXT; do
320                                 case "$UPSTREAM" in
321                                         \[*)
322                                                 UPSTREAM=${UPSTREAM#\[}
323                                                 UPSTREAM=${UPSTREAM%\]}
324                                                 UPSTREAM=${UPSTREAM%:*}
325                                                 ;;
326                                         *)
327                                                 TEXT="$UPSTREAM $TEXT"
328                                                 UPSTREAM=
329                                                 ;;
330                                 esac
331                                 if [ x"$REV" = x"->" ]; then
332                                         continue
333                                 fi
334                                 BRANCH=${BRANCH#remotes/}
335                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
336                                 branches_list="$branches_list $BRANCH" # TEH SORT MAKEZ IT UNIEQ
337                                 eval "r=\$branches_repos_$ID"
338                                 r="$r $d:$UPSTREAM"
339                                 eval "branches_repos_$ID=\$r"
340                         done
341                         echo -n "$branches_list" | xargs -n 1 echo | sort -u | while IFS= read -r BRANCH; do
342                                 ID=`echo "$BRANCH" | tr -c "A-Za-z0-9." "_"`
343                                 eval "r=\$branches_repos_$ID"
344                                 echo "$BRANCH: $r"
345                         done
346                 }
347                 ;;
348         merge)
349                 for d in $repos; do
350                         dv=`visible_repo_name "$d"`
351                         enter "$d0/$d" verbose
352                         r=`git symbolic-ref HEAD`
353                         r=${r#refs/heads/}
354                         if git log HEAD..origin/"`repobranch "$d"`" | grep .; then
355                                 # we have uncommitted changes
356                                 a=
357                                 while [ x"$a" != x"y" -a x"$a" != x"n" ]; do
358                                         echo "Could merge from \"`repobranch "$d"`\" into \"$r\" in $dv. Do it?"
359                                         read -r a
360                                 done
361                                 if [ x"$a" = x"y" ]; then
362                                         if ! verbose git merge origin/"`repobranch "$d"`"; then
363                                                 check_mergeconflict "$d"
364                                                 exit 1 # this should ALWAYS be fatal
365                                         fi
366                                 fi
367                         fi
368                         cd "$d0"
369                 done
370                 ;;
371         push|commit)
372                 submit=$1
373                 for d in $repos; do
374                         dv=`visible_repo_name "$d"`
375                         enter "$d0/$d" verbose
376                         r=`git symbolic-ref HEAD`
377                         r=${r#refs/heads/}
378                         if git diff HEAD | grep .; then
379                                 # we have uncommitted changes
380                                 a=
381                                 while [ x"$a" != x"y" -a x"$a" != x"n" ]; do
382                                         echo "Uncommitted changes in \"$r\" in $dv. Commit?"
383                                         read -r a
384                                 done
385                                 if [ x"$a" = x"y" ]; then
386                                         verbose git commit -a
387                                 fi
388                         fi
389                         rem=`git config "branch.$r.remote" || echo origin`
390                         if { git log "$rem/$r".."$r" || git log origin/"`repobranch "$d"`".."$r"; } | grep .; then
391                                 a=
392                                 while [ x"$a" != x"y" -a x"$a" != x"n" ]; do
393                                         echo "Push \"$r\" in $dv?"
394                                         read -r a
395                                 done
396                                 if [ x"$a" = x"y" ]; then
397                                         verbose git push "$rem" HEAD
398                                 fi
399                         fi
400                         if [ x"$submit" = x"-s" ]; then
401                                 case "$r" in
402                                         */*)
403                                                 verbose git push "$rem" HEAD:"${r%%/*}/finished/${r#*/}"
404                                                 ;;
405                                 esac
406                         fi
407                         cd "$d0"
408                 done
409                 ;;
410         compile)
411                 if [ -n "$WE_HATE_OUR_USERS" ]; then
412                         TARGETS="sv-debug cl-debug"
413                 else
414                         TARGETS="sv-debug cl-debug sdl-debug"
415                 fi
416                 case "$1" in
417                         -c)
418                                 clean=true
419                                 shift
420                                 ;;
421                         *)
422                                 clean=false
423                                 ;;
424                 esac
425                 case "$1" in
426                         sdl)
427                                 TARGETS="sdl-debug"
428                                 shift
429                                 ;;
430                         glx|agl|wgl)
431                                 TARGETS="cl-debug"
432                                 shift
433                                 ;;
434                         dedicated)
435                                 TARGETS="sv-debug"
436                                 shift
437                                 ;;
438                 esac
439                 if [ -z "$MAKEFLAGS" ]; then
440                         if [ -f /proc/cpuinfo ]; then
441                                 ncpus=$((`grep -c '^processor   :' /proc/cpuinfo`+0))
442                                 if [ $ncpus -gt 1 ]; then
443                                         MAKEFLAGS=-j$ncpus
444                                 fi
445                         fi
446                         case "`uname`" in
447                                 Linux|*BSD)
448                                         MAKEFLAGS="$MAKEFLAGS DP_LINK_TO_LIBJPEG=1"
449                                         ;;
450                         esac
451                         if [ -n "$WE_HATE_OUR_USERS" ]; then
452                                 MAKEFLAGS="$MAKEFLAGS DP_MAKE_TARGET=mingw"
453                         fi
454                 fi
455                 enter "$d0/fteqcc" verbose
456                 if $clean; then
457                         verbose make $MAKEFLAGS clean
458                 fi
459                 verbose make $MAKEFLAGS
460                 enter "$d0/data/xonotic-data.pk3dir" verbose
461                 if $clean; then
462                         verbose make $MAKEFLAGS clean
463                 fi
464                 verbose make FTEQCC="$d0/fteqcc/fteqcc.bin" "$@" $MAKEFLAGS
465                 enter "$d0/darkplaces" verbose
466                 if $clean; then
467                         verbose make $MAKEFLAGS clean
468                 fi
469                 for T in $TARGETS; do
470                         verbose make $MAKEFLAGS "$@" "$T"
471                 done
472                 ;;
473         run)
474                 if [ -n "$WE_HATE_OUR_USERS" ]; then
475                         client=
476                         export PATH="$d0/misc/buildfiles/w32:$PATH"
477                 elif [ x"`uname`" = x"Darwin" ]; then
478                         export DYLD_LIBRARY_PATH="$d0/misc/buildfiles/osx/Nexuiz.app/Contents/MacOS"
479                         client=-sdl
480                 else
481                         client=-sdl
482                 fi
483                 case "$1" in
484                         sdl|glx|agl|dedicated)
485                                 client=-$1
486                                 shift
487                                 ;;
488                         wgl)
489                                 client=
490                                 shift
491                                 ;;
492                 esac
493                 if ! [ -x "darkplaces/darkplaces$client" ]; then
494                         if [ -x "darkplaces/darkplaces$client.exe" ]; then
495                                 client=$client.exe
496                         else
497                                 echo "Client darkplaces/darkplaces$client not found, aborting"
498                                 exit 1
499                         fi
500                 fi
501                 set -- "darkplaces/darkplaces$client" -nexuiz -customgamename Xonotic -customgamedirname1 data -customgamedirname2 "" -customgamescreenshotname xonotic -customgameuserdirname xonotic "$@"
502                 if [ -n "$USE_GDB" ]; then
503                         set -- gdb --args "$@"
504                 fi
505                 "$@"
506                 ;;
507         each|foreach)
508                 for d in $repos; do
509                         enter "$d0/$d" verbose
510                         verbose "$@"
511                         cd "$d0"
512                 done
513                 ;;
514         save-patches)
515                 outfile=$1
516                 patchdir=`mktemp -d -t save-patches.XXXXXX`
517                 for d in $repos; do
518                         enter "$d0/$d" verbose
519                         git branch -v -v | cut -c 3- | {
520                                 i=0
521                                 while read -r BRANCH REV UPSTREAM TEXT; do
522                                         case "$UPSTREAM" in
523                                                 \[*)
524                                                         UPSTREAM=${UPSTREAM#\[}
525                                                         UPSTREAM=${UPSTREAM%\]}
526                                                         UPSTREAM=${UPSTREAM%:*}
527                                                         TRACK=true
528                                                         ;;
529                                                 *)
530                                                         UPSTREAM=origin/"`repobranch "$d"`"
531                                                         TRACK=false
532                                                         ;;
533                                         esac
534                                         if [ x"$REV" = x"->" ]; then
535                                                 continue
536                                         fi
537                                         if git format-patch -o "$patchdir/$i" "$UPSTREAM".."$BRANCH"; then
538                                                 echo "$d" > "$patchdir/$i/info.txt"
539                                                 echo "$BRANCH" >> "$patchdir/$i/info.txt"
540                                                 echo "$UPSTREAM" >> "$patchdir/$i/info.txt"
541                                                 echo "$TRACK" >> "$patchdir/$i/info.txt"
542                                                 i=$(($i+1))
543                                         else
544                                                 rm -rf "$patchdir/$i"
545                                         fi
546                                 done
547                         }
548                 done
549                 ( cd "$patchdir" && tar cvzf - . ) > "$outfile"
550                 rm -rf "$patchdir"
551                 ;;
552         restore-patches)
553                 infile=$1
554                 patchdir=`mktemp -d -t restore-patches.XXXXXX`
555                 ( cd "$patchdir" && tar xvzf - ) < "$infile"
556                 # detach the head
557                 for P in "$patchdir"/*/info.txt; do
558                         D=${P%/info.txt}
559                         exec 3<"$P"
560                         read -r d <&3
561                         read -r BRANCH <&3
562                         read -r UPSTREAM <&3
563                         read -r TRACK <&3
564                         verbose git checkout HEAD^0
565                         verbose git branch -D "$BRANCH"
566                         if [ x"$TRACK" = x"true" ]; then
567                                 verbose git checkout --track -b "$BRANCH" "$UPSTREAM"
568                         else
569                                 verbose git branch -b "$BRANCH" "$UPSTREAM"
570                         fi
571                         verbose git am "$D"
572                 done
573                 rm -rf "$patchdir"
574                 ;;
575         admin-merge)
576                 if [ "$#" = 1 ]; then
577                         set -- "${1%%/*}" "${1#*/}"
578                 fi
579                 for d in $repos; do
580                         enter "$d0/$d" verbose
581                         git rev-parse "$1/$2" || continue
582                         # 1. review
583                         {
584                                 git log HEAD.."$1/$2"
585                                 git diff HEAD..."$1/$2"
586                         } | less
587                         a=
588                         while [ x"$a" != x"y" -a x"$a" != x"n" ]; do
589                                 echo "Merge \"$1/$2\" into `git symbolic-ref HEAD` of $d?"
590                                 read -r a
591                         done
592                         if [ x"$a" = x"y" ]; then
593                                 git merge "$1/$2"
594                                 cd "$d0"
595                                 a=
596                                 if ! "$SELF" compile; then
597                                         a=n
598                                 fi
599                                 cd "$d0/$d"
600                                 while [ x"$a" != x"y" -a x"$a" != x"n" ]; do
601                                         echo "Still merge \"$1/$2\" into `git symbolic-ref HEAD` of $d? Maybe you want to test first."
602                                         read -r a
603                                 done
604                                 if [ x"$a" = x"y" ]; then
605                                         git push origin HEAD
606                                         git push "$1" :"$2"
607                                 else
608                                         git reset --hard HEAD@{1}
609                                 fi
610                         fi
611                 done
612                 ;;
613         *)
614                 echo "Usage:"
615                 echo "  $SELF pull"
616                 echo "  $SELF merge"
617                 echo "  $SELF push [-s]"
618                 echo "  $SELF branches"
619                 echo "  $SELF branch [<remote>] <branchname>"
620                 echo "  $SELF branch <remote> <branchname> <srcbranchname>"
621                 echo "  $SELF checkout [<remote>] <branchname>"
622                 echo "  $SELF compile [-c] [<client>] <options>"
623                 echo "  $SELF run [<client>] <options>"
624                 echo "  $SELF each <command>"
625                 ;;
626 esac