]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/all/release.subr
Oops, actually select OS X ;)
[xonotic/xonotic.git] / misc / tools / all / release.subr
1 release_common()
2 {
3         export LC_ALL=C
4
5         release_args="$cmd $*"
6         msg "*** $release_args: start"
7         release_starttime=`date +%s`
8         release_end()
9         {
10                 release_endtime=`date +%s`
11                 release_deltatime=$(($release_endtime - $release_starttime))
12                 msg "*** $release_args: $release_deltatime seconds"
13         }
14         trap release_end EXIT
15         release_tempstarttime=$release_starttime
16         release_timereport()
17         {
18                 release_endtime=`date +%s` # RELEASE NOW!!!
19                 if [ -n "$*" ]; then
20                         release_deltatime=$(($release_endtime - $release_tempstarttime))
21                         msg "**** $release_args: $*: $release_deltatime seconds"
22                 fi
23                 release_tempstarttime=$release_endtime
24         }
25         release_git_extract_dir()
26         {
27                 release_src=$1; shift
28                 release_dst=$1; shift
29                 # try to create a hardlink
30                 if ln -f "$release_src/.git/HEAD" "$release_dst/.hardlink-test"; then
31                         rm -f "$release_dst/.hardlink-test"
32                         {
33                                 verbose cd "$release_src"
34                                 git ls-files HEAD -- "$@"
35                         } | {
36                                 while IFS= read -r F; do
37                                         case "$F" in */*) mkdir -p "$release_dst/${F%/*}" ;; esac
38                                         verbose ln -f "$release_src/$F" "$release_dst/$F"
39                                 done
40                         }
41                 else
42                         {
43                                 verbose cd "$release_src"
44                                 verbose git archive --format=tar HEAD -- "$@"
45                         } | {
46                                 verbose cd "$release_dst"
47                                 verbose tar xvf -
48                         }
49                 fi
50         }
51
52         mkzipr()
53         {
54                 archive=$1; shift
55
56                 # get rid of this hack once we have done large enough changes
57                 # to be no longer rsync compatible (and then enable the below
58                 # code)
59                 sevenzipflags=-mx=9
60                 zipflags=-9
61                 find "$@" -exec touch -d "2001-01-01 01:01:01 +0000" {} \+ # ugly hack to make the pk3 files rsync-friendly
62                 ziplist=`mktemp`
63                 find "$@" -xtype f \( -executable -or -type l \) -print | sed 's,\([./][^./]*$\),\1 \1,' | sort -k2 | cut -d\  -f1 > "$ziplist"
64                 7za a -tzip $sevenzipflags -x@"$ziplist" "$archive" "$@" || true
65                 zip         $zipflags -y   -@<"$ziplist" "$archive"      || true
66                 rm -f "$ziplist"
67
68                 #zipflags=-1r
69                 #find "$@" -exec touch -d "2001-01-01 01:01:01 +0000" {} \+ # ugly hack to make the pk3 files rsync-friendly
70                 #zip $zipflags -y "$archive" "$@" || true
71                 #advzip -4 "$archive"
72         }
73
74         mkzip()
75         {
76                 archive=$1; shift
77                 zipflags=-1ry
78                 zip $zipflags "$archive" "$@" || true
79                 advzip -z -4 "$archive"
80         }
81
82         mkzip0()
83         {
84                 archive=$1; shift
85                 zipflags=-0ry
86                 zip $zipflags "$archive" "$@" || true
87         }
88
89         getversion()
90         {
91                 gv=`grep "^gameversion " "$1/xonotic-common.cfg" | awk '{ print $2 }'`
92                 major=$(($gv / 10000))
93                 minor=$((($gv / 100) - ($major * 100)))
94                 patch=$(($gv - ($major * 10000) - ($minor * 100)))
95                 versionstr="$major.$minor.$patch"
96         }
97 }
98
99 handled=true
100 case "$cmd" in
101         # release building goes here
102         release-prepare)
103                 release_common
104                 #"$SELF" each git clean -fxd
105                 case "$RELEASETYPE" in
106                         '')
107                                 $ECHO >&2 -n "$ESC[2J$ESC[H"
108                                 msg ""
109                                 msg ""
110                                 msg ""
111                                 msg ""
112                                 msg ""
113                                 msg ""
114                                 msg "        +---------------------------------------------------------.---+"
115                                 msg "        | NOTE                                                    | X |"
116                                 msg "        +---------------------------------------------------------^---+"
117                                 msg "        |   ____                                                      |"
118                                 msg "        |  /    \  This is the official release build system.         |"
119                                 msg "        | |      | If you are not a member of the Xonotic Core Team,  |"
120                                 msg "        | | STOP | you are not supposed to use this script and should |"
121                                 msg "        | |      | instead use ./all compile to compile the engine    |"
122                                 msg "        |  \____/  and game code.                                     |"
123                                 msg "        |                                                             |"
124                                 msg "        |                      [ I understand ]                       |"
125                                 msg "        +-------------------------------------------------------------+"
126                                 sleep 10
127                                 # A LOT of build infrastructure is required:
128                                 # - vorbis-tools
129                                 # - ImageMagick
130                                 # - .ssh/config must be configured so the following
131                                 #   host names are reachable and have a compile
132                                 #   infrastructure set up:
133                                 #   - xonotic-build-linux64 (with gcc on x86_64)
134                                 #   - xonotic-build-win32 (with i686-w64-mingw32)
135                                 #   - xonotic-build-win64 (with x86_64-w64-mingw32)
136                                 #   - xonotic-build-osx (with Xcode and SDL.framework)
137                                 # - AMD Compressonator installed in WINE
138                                 # - ResEdit installed in WINE
139                                 # - a lot of other requirements you will figure out
140                                 #   while reading the error messages
141                                 # - environment variable RELEASETYPE set
142                                 # - optionally, environment variable RELEASEDATE set
143                                 #   (YYYYMMDD)
144                                 exit 1
145                                 ;;
146                         release)
147                                 msg "Building a FINISHED RELEASE"
148                                 getversion data/xonotic-data.pk3dir
149                                 verbose "$SELF" each -k git tag -m "TEMP TAG" -f "xonotic-v$versionstr"
150                                 ;;
151                         *)
152                                 msg "Building a $RELEASETYPE"
153                                 ;;
154                 esac
155                 verbose rm -rf Xonotic Xonotic*.zip
156                 verbose mkdir -p Xonotic
157                 if [ -n "$RELEASEDATE" ]; then
158                         verbose $ECHO "$RELEASEDATE" > Xonotic/stamp.txt
159                         case "$RELEASETYPE" in
160                                 release)
161                                         verbose $ECHO "${RELEASEDATE%_*}" > Xonotic/pk3stamp.txt
162                                         ;;
163                                 *)
164                                         verbose $ECHO "$RELEASEDATE" > Xonotic/pk3stamp.txt
165                                         ;;
166                         esac
167                 else
168                         verbose date +%Y%m%d > Xonotic/stamp.txt
169                         verbose date +%Y%m%d > Xonotic/pk3stamp.txt
170                 fi
171                 release_git_extract_dir "." "Xonotic" Docs misc server xonotic-linux-glx.sh xonotic-linux-sdl.sh xonotic-linux-dedicated.sh Makefile misc/buildfiles key_0.d0pk COPYING GPL-2 GPL-3
172                 (
173                         verbose cd Xonotic
174                         verbose mkdir data source source/darkplaces source/gmqcc source/d0_blind_id mapping
175                         verbose rm -rf misc/builddeps
176                         verbose mv misc/buildfiles/win32 bin32 || true
177                         verbose mv bin32/SDL.dll . || true
178                         verbose mv misc/buildfiles/win64 bin64 || true
179                         verbose mv misc/buildfiles/osx/* . || true
180                         verbose rm -rf misc/buildfiles
181                         verbose rm -rf misc/pki
182                 )
183                 release_git_extract_dir "darkplaces" "Xonotic/source/darkplaces" .
184                 release_git_extract_dir "gmqcc" "Xonotic/source/gmqcc" .
185                 release_git_extract_dir "data/xonotic-data.pk3dir" "Xonotic/source" qcsrc Makefile
186                 release_git_extract_dir "d0_blind_id" "Xonotic/source/d0_blind_id" .
187                 (
188                         verbose cd Xonotic/source/d0_blind_id
189                         verbose sh autogen.sh
190                 )
191                 rm -f Xonotic/key_15.d0pk
192                 (
193                         verbose cd Xonotic/mapping
194                         verbose wget http://www.icculus.org/netradiant/files/netradiant-1.5.0-20120301.tar.bz2
195                         verbose wget http://www.icculus.org/netradiant/files/netradiant-1.5.0-20120301-win32-7z.exe
196                         for X in *-7z.exe; do
197                                 7za x "$X"
198                                 rm -f "$X"
199                         done
200                         # TODO possibly include other tools?
201                 )
202                 ./all each git rev-parse HEAD > Xonotic/misc/git-revisions.txt
203                 ;;
204         release-compile-run)
205                 release_common
206                 host=$1
207                 buildpath=$2
208                 maketargets=$3
209                 makeflags=$4
210                 srcdir=$5
211                 depsdir=$6
212                 targetfiles=$7
213                 set -x
214                 if [ -z "$targetfiles" ]; then
215                         exit
216                 fi
217                 case " $HOSTS_THAT_ARE_DISABLED " in
218                         *\ $host\ *)
219                                 exit
220                                 ;;
221                 esac
222                 case " $HOSTS_THAT_ARE_MYSELF " in
223                         *\ $host\ *)
224                                 verbose rsync --delete -zLvaSHP "$srcdir"/ "$buildpath/"
225                                 verbose rsync --delete -zLvaSHP misc/logos/icons_ico/xonotic.ico "$buildpath"/darkplaces.ico
226                                 verbose rsync --delete -zLvaSHP "$depsdir"/*/ "$buildpath.deps/"
227                                 verbose ln -snf "$buildpath.deps" "$buildpath/.deps"
228                                 verbose eval make -C "$buildpath" clean $maketargets $makeflags
229                                 for f in $targetfiles; do
230                                         verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
231                                 done
232                                 ;;
233                         *)
234                                 verbose rsync --delete -zLvaSHP "$srcdir"/ "$host":"$buildpath/"
235                                 verbose rsync --delete -zLvaSHP misc/logos/icons_ico/xonotic.ico "$host":"$buildpath"/darkplaces.ico
236                                 verbose rsync --delete -zLvaSHP "$depsdir"/*/ "$host":"$buildpath.deps/"
237                                 verbose ssh "$host" "[ -f /etc/profile ] && . /etc/profile; [ -f ~/.profile ] && . ~/.profile; export LC_ALL=C; ln -snf $buildpath.deps $buildpath/.deps && cd $buildpath && nice -`nice` make clean $maketargets $makeflags"
238                                 for f in $targetfiles; do
239                                         verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
240                                 done
241                                 ;;
242                 esac
243                 ;;
244         release-compile)
245                 release_common
246                 suffix=$1
247                 makeflags=$2
248                 darkplaces_maketargets=$3
249                 darkplaces_files=$4
250                 host=xonotic-build-$suffix
251                 verbose "$SELF" release-compile-run "$host" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$d0/misc/builddeps/$suffix" "$darkplaces_files"
252                 ;;
253         release-getbinary)
254                 release_common
255                 binary=$1
256                 basename=${binary##*/}
257                 dpname=darkplaces${basename#xonotic}
258                 rev=`( cd "$d0/darkplaces" && git rev-parse HEAD )`
259                 verbose wget -O "$binary" "http://beta.xonotic.org/autobuild-bin/$rev/$dpname"
260                 [ -s "$binary" ] || rm -f "$binary"
261                 [ -f "$binary" ]
262                 case "$binary" in
263                         Xonotic/*osx*|Xonotic/*linux*)
264                                 chmod +x "$binary"
265                                 ;;
266                 esac
267                 ;;
268         release-engine-win32)
269                 release_common
270                 #good=true
271                 #verbose "$SELF" release-getbinary Xonotic/xonotic-x86.exe || good=false
272                 #verbose "$SELF" release-getbinary Xonotic/xonotic-x86-dedicated.exe || good=false
273                 #$good
274                 verbose "$SELF" release-compile win32 \
275                         'STRIP=: D3D=1 DP_MAKE_TARGET=mingw WIN32RELEASE=1 CC="i686-w64-mingw32-gcc -static -g1 -mstackrealign -Wl,--dynamicbase -Wl,--nxcompat -I../../../.deps/include -L../../../.deps/lib -DSUPPORTIPV6" WINDRES="i686-w64-mingw32-windres" SDL_CONFIG="../../../.deps/bin/sdl2-config" DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_ZLIB=dlopen' \
276                         release 'darkplaces.exe:Xonotic/xonotic-x86-wgl.exe darkplaces-sdl.exe:Xonotic/xonotic-x86.exe darkplaces-dedicated.exe:Xonotic/xonotic-x86-dedicated.exe'
277                 ;;
278         release-engine-win64)
279                 release_common
280                 #good=true
281                 #verbose "$SELF" release-getbinary Xonotic/xonotic.exe || good=false
282                 #verbose "$SELF" release-getbinary Xonotic/xonotic-dedicated.exe || good=false
283                 #$good
284                 verbose "$SELF" release-compile win64 \
285                         'STRIP=: D3D=1 DP_MAKE_TARGET=mingw WIN64RELEASE=1 CC="x86_64-w64-mingw32-gcc -static -g1 -Wl,--dynamicbase -Wl,--nxcompat -I../../../.deps/include -L../../../.deps/lib -DSUPPORTIPV6" WINDRES="x86_64-w64-mingw32-windres" SDL_CONFIG="../../../.deps/bin/sdl2-config" DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_ZLIB=dlopen' \
286                         release 'darkplaces.exe:Xonotic/xonotic-wgl.exe darkplaces-sdl.exe:Xonotic/xonotic.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
287                 ;;
288         release-engine-osx)
289                 release_common
290                 #good=true
291                 #verbose "$SELF" release-getbinary Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-sdl-bin || good=false
292                 #verbose "$SELF" release-getbinary Xonotic/xonotic-osx-dedicated || good=false
293                 #$good
294                 # Note: travis build script also had SDLCONFIG_MACOSX* flags; need to check if they're still needed with osxcross.
295                 verbose "$SELF" release-compile osx \
296                         'STRIP=: DP_MAKE_TARGET=macosx CC="$HOME/osxcross/out/bin/o64-clang -g1 -arch x86_64 -mmacosx-version-min=10.6 -Wl,-rpath -Wl,@loader_path/../Frameworks -Wl,-rpath -Wl,@loader_path -I../../../.deps/include -L../../../.deps/lib -DSUPPORTIPV6" SDLCONFIG_MACOSXCFLAGS="-I../../../.deps/SDL2.framework/Headers" SDLCONFIG_MACOSXLIBS="-F../../../.deps -framework SDL2 -framework Cocoa -I../../../.deps/SDL2.framework/Headers" SDLCONFIG_MACOSXSTATICLIBS="-F../../../.deps -framework SDL2 -framework Cocoa -I../../../.deps/SDL2.framework/Headers" DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_ZLIB=shared' \
297                         'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-sdl-bin darkplaces-dedicated:Xonotic/xonotic-osx-dedicated'
298                 ;;
299         release-engine-linux64)
300                 release_common
301                 #good=true
302                 #verbose "$SELF" release-getbinary Xonotic/xonotic-linux64-sdl || good=false
303                 #verbose "$SELF" release-getbinary Xonotic/xonotic-linux64-glx || good=false
304                 #verbose "$SELF" release-getbinary Xonotic/xonotic-linux64-dedicated || good=false
305                 #$good
306                 verbose "$SELF" release-compile linux64 \
307                         'STRIP=: CC="gcc -m64 -g1 -I../../../.deps/include -L../../../.deps/lib -DSUPPORTIPV6" DP_LINK_CRYPTO=shared LIB_CRYPTO="../../../.deps/lib/libd0_blind_id.a ../../../.deps/lib/libgmp.a" DP_LINK_CRYPTO_RIJNDAEL=dlopen DP_LINK_JPEG=shared LIB_JPEG=/usr/lib/x86_64-linux-gnu/libjpeg.a DP_LINK_ODE=shared CFLAGS_ODE="-DUSEODE -DLINK_TO_LIBODE -DdDOUBLE" LIB_ODE="../../../.deps/lib/libode.a -lstdc++ -pthread" DP_LINK_ZLIB=shared' \
308                         release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
309                 ;;
310         release-engine)
311                 release_common
312                 # TODO report failures here.
313                 good=false
314                 verbose "$SELF" release-engine-linux64 && good=true
315                 verbose "$SELF" release-engine-win32 && good=true
316                 verbose "$SELF" release-engine-win64 && good=true
317                 verbose "$SELF" release-engine-osx && good=true
318                 $good
319                 ;;
320         release-maps)
321                 release_common
322                 verbose "$SELF" update-maps
323                 ;;
324         release-qc)
325                 release_common
326                 verbose make -C "$d0/gmqcc" gmqcc
327                 verbose env GIT_DIR="$d0/data/xonotic-data.pk3dir/.git" make -C Xonotic/source QCC="$d0/gmqcc/gmqcc" XON_BUILDSYSTEM=1 clean qc
328                 ;;
329         release-buildpk3-transform-raw)
330                 release_common
331                 dir=$1
332                 ;;
333         release-buildpk3-transform-normal)
334                 release_common
335                 dir=$1
336                 verbose cd "$dir"
337                 # texture: convert to jpeg and dds
338                 verbose export do_jpeg=true
339                 verbose export jpeg_qual_rgb=97
340                 verbose export jpeg_qual_a=99
341                 verbose export do_dds=false
342                 verbose export do_ogg=true
343                 verbose export ogg_ogg=false
344                 verbose export del_src=true
345                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
346                 ;;
347         release-buildpk3-transform-normaldds)
348                 release_common
349                 dir=$1
350                 verbose cd "$dir"
351                 # texture: convert to jpeg and dds
352                 # music: reduce bitrate
353                 verbose export do_jpeg=false
354                 verbose export do_jpeg_if_not_dds=true
355                 verbose export jpeg_qual_rgb=95
356                 verbose export jpeg_qual_a=99
357                 verbose export do_dds=true
358                 verbose export dds_flags=
359                 verbose export do_ogg=true
360                 verbose export ogg_ogg=false
361                 verbose export del_src=true
362                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
363                 ;;
364         release-buildpk3-transform-mapping)
365                 release_common
366                 dir=$1
367                 verbose cd "$dir"
368                 # remove stuff radiant has no use for
369                 verbose find . -name \*_norm.\* -exec rm -f {} \;
370                 verbose find . -name \*_bump.\* -exec rm -f {} \;
371                 verbose find . -name \*_glow.\* -exec rm -f {} \;
372                 verbose find . -name \*_gloss.\* -exec rm -f {} \;
373                 verbose find . -name \*_pants.\* -exec rm -f {} \;
374                 verbose find . -name \*_shirt.\* -exec rm -f {} \;
375                 verbose find . -name \*_reflect.\* -exec rm -f {} \;
376                 verbose find . -not \( -name \*.tga -o -name \*.png -o -name \*.jpg \) -exec rm -f {} \;
377                 # texture: convert to jpeg and dds
378                 # music: reduce bitrate
379                 verbose export do_jpeg=true
380                 verbose export jpeg_qual_rgb=80
381                 verbose export jpeg_qual_a=97
382                 verbose export do_dds=false
383                 verbose export do_ogg=true
384                 verbose export ogg_qual=1
385                 verbose export del_src=true
386                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
387                 ;;
388         release-buildpk3)
389                 release_common
390                 src=$1
391                 dst=$2
392                 transform=$3
393                 case "$dst" in
394                         /*)
395                                 ;;
396                         */)
397                                 dst="$PWD/$dst"
398                                 ;;
399                 esac
400                 release_timereport
401                 verbose rm -rf Xonotic/temp
402                 release_timereport "deleted temp directory"
403                 verbose mkdir -p Xonotic/temp
404                 release_git_extract_dir "$src" "Xonotic/temp" .
405                 release_timereport "extracted data"
406                 verbose cd Xonotic/temp
407                 if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
408                         verbose cp ../source/progs.dat .
409                         verbose cp ../source/csprogs.dat .
410                         verbose cp ../source/menu.dat .
411                         # Include line numbers in qc errors
412                         verbose cp ../source/progs.lno .
413                         verbose cp ../source/csprogs.lno .
414                         verbose cp ../source/menu.lno .
415                         verbose rm -rf qcsrc
416                         getversion .
417                         case "$RELEASETYPE" in
418                                 release)
419                                         ;;
420                                 *)
421                                         versionstr="$versionstr$RELEASETYPE"
422                                         ;;
423                         esac
424                         if [ $gv -lt 9900 ]; then
425                                 # pre-1.0: compatible with any other pre-1.0
426                                 verbose sed "
427                                         s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
428                                         s/^gameversion_min [0-9]*/gameversion_min     0/;
429                                         s/^gameversion_max [0-9]*/gameversion_max  9999/;
430                                 " < xonotic-common.cfg > xonotic-common.cfg.new
431                         else
432                                 # >= 1.0
433                                 verbose sed "
434                                         s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
435                                         s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
436                                         s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
437                                 " < xonotic-common.cfg > xonotic-common.cfg.new
438                         fi
439                         mv xonotic-common.cfg.new xonotic-common.cfg
440                         case "$RELEASETYPE" in
441                                 release)
442                                         echo "" >> xonotic-common.cfg
443                                         echo "// nicer menu" >> xonotic-common.cfg
444                                         echo "set menu_watermark \"\"" >> xonotic-common.cfg
445                                         ;;
446                         esac
447                         (
448                                 verbose cd gfx/menu/luminos
449                                 verbose rm -f background_l2.tga background_ingame_l2.tga
450                                 verbose cp "$d0"/mediasource/gfx/menu/luminos_versionbuilder/background_l2.svg .
451                                 verbose "$d0"/mediasource/gfx/menu/luminos_versionbuilder/versionbuilder "$versionstr"
452                                 verbose rm background_l2.svg
453                         )
454                         verbose "$d0"/mediasource/gfx/luma/render-version.sh "$d0/mediasource/gfx/luma" "$PWD" "$versionstr"
455                 fi
456                 if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
457                         for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
458                                 if [ -f "$X" ]; then
459                                         verbose unzip "$X"
460                                         verbose rm -f maps/*.log maps/*.irc maps/*.lin
461                                 fi
462                         done
463                 fi
464                 verbose export git_src_repo="$d0/$src" # skip hash-object
465                 release_timereport "processed data"
466                 verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
467                 release_timereport "transformed data"
468                 find . -type f -size +4k | verbose "$d0"/misc/tools/symlink-deduplicate.sh
469                 release_timereport "deduplicated data"
470                 verbose mkzipr "../../$dst" *
471                 release_timereport "zipped data"
472                 verbose cd ../..
473                 verbose rm -rf Xonotic/temp
474                 release_timereport "deleted temp directory again"
475                 ;;
476         release-buildpk3s)
477                 release_common
478                 pk3stamp=`cat Xonotic/pk3stamp.txt`
479                 src=$1
480                 shift
481                 dst=${src%.pk3dir}
482                 case "$dst" in
483                         data/xonotic-*)
484                                 dst="data/xonotic-$pk3stamp-${dst#data/xonotic-}"
485                                 ;;
486                         *)
487                                 dst="$dst-$pk3stamp"
488                                 ;;
489                 esac
490                 while [ "$#" -gt 1 ]; do
491                         verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
492                         shift
493                         shift
494                 done
495                 ;;
496         release-pack)
497                 release_common
498                 verbose "$SELF" release-buildpk3s data/font-unifont.pk3dir      raw ''
499                 verbose "$SELF" release-buildpk3s data/font-xolonium.pk3dir     raw ''
500                 verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir             normaldds ''                    normal '-high'
501                 verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir             normaldds '' mapping '-mapping' normal '-high'
502                 verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir     raw ''
503                 verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir        normaldds ''                    normal '-high'
504                 ;;
505         release-pack-needsx11)
506                 release_common
507                 case "$DISPLAY" in
508                         '')
509                                 verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
510                                 ;;
511                         *)
512                                 verbose "$SELF" release-pack
513                                 ;;
514                 esac
515                 ;;
516         release-zip)
517                 release_common
518                 stamp=`cat Xonotic/stamp.txt`
519                 pk3stamp=`cat Xonotic/pk3stamp.txt`
520                 # exe and dll files do not need +x, so this makes them eligible for 7zip compression too
521                 chmod a-x Xonotic/*.exe Xonotic/*.dll || true
522                 # build the archives
523                 verbose mkzip Xonotic-$stamp-enginesource.zip \
524                         Xonotic/Makefile \
525                         Xonotic/source/darkplaces/ \
526                         Xonotic/COPYING Xonotic/GPL-2 Xonotic/GPL-3
527                 verbose cp Xonotic-$stamp-enginesource.zip Xonotic-$stamp-engine.zip
528                 verbose mkzip Xonotic-$stamp-engine.zip \
529                         Xonotic/*.dll \
530                         Xonotic/bin32/*.dll \
531                         Xonotic/bin64/*.dll \
532                         Xonotic/*.app \
533                         Xonotic/xonotic-* \
534                         Xonotic/xonotic.exe
535                 verbose cp Xonotic-$stamp-engine.zip Xonotic-$stamp-common.zip
536                 verbose mkzip Xonotic-$stamp-common.zip \
537                         Xonotic/source/d0_blind_id/ \
538                         Xonotic/source/gmqcc/ \
539                         Xonotic/source/qcsrc/ \
540                         Xonotic/Docs \
541                         Xonotic/misc \
542                         Xonotic/gmqcc \
543                         Xonotic/server \
544                         Xonotic/key_0.d0pk \
545                         Xonotic/data/font-unifont-$pk3stamp.pk3 \
546                         Xonotic/data/font-xolonium-$pk3stamp.pk3
547                 verbose cp Xonotic-$stamp-enginesource.zip Xonotic-$stamp-source.zip
548                 verbose mkzip Xonotic-$stamp-source.zip \
549                         Xonotic/source/d0_blind_id/ \
550                         Xonotic/source/gmqcc/ \
551                         Xonotic/source/qcsrc/ \
552                         Xonotic/misc/logos
553                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
554                 verbose mkzip0 Xonotic-$stamp.zip \
555                         Xonotic/data/xonotic-$pk3stamp-data.pk3 \
556                         Xonotic/data/xonotic-$pk3stamp-maps.pk3 \
557                         Xonotic/data/xonotic-$pk3stamp-music.pk3 \
558                         Xonotic/data/xonotic-$pk3stamp-nexcompat.pk3
559                 verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
560                 verbose mkzip0 Xonotic-$stamp-high.zip \
561                         Xonotic/data/xonotic-$pk3stamp-data-high.pk3 \
562                         Xonotic/data/xonotic-$pk3stamp-maps-high.pk3 \
563                         Xonotic/data/xonotic-$pk3stamp-music.pk3 \
564                         Xonotic/data/xonotic-$pk3stamp-nexcompat-high.pk3
565                 verbose mkzip Xonotic-$stamp-mappingsupport.zip \
566                         Xonotic/mapping
567                 verbose mkzip0 Xonotic-$stamp-mappingsupport.zip \
568                         Xonotic/data/xonotic-$pk3stamp-maps-mapping.pk3
569                 verbose mkzip gmqcc-$stamp.zip \
570                         Xonotic/gmqcc \
571                         Xonotic/source/gmqcc
572                 ;;
573         release)
574                 release_common
575                 verbose "$SELF" release-prepare
576                 verbose "$SELF" release-maps
577                 verbose "$SELF" release-engine
578                 verbose "$SELF" release-qc
579                 verbose "$SELF" release-pack
580                 verbose "$SELF" release-zip
581                 ;;
582         *)
583                 handled=false
584                 ;;
585 esac