]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/all/release.subr
Fix compiler names.
[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 "$depsdir"/*/ "$buildpath.deps/"
226                                 verbose ln -snf "$buildpath.deps" "$buildpath/.deps"
227                                 verbose eval make -C "$buildpath" clean $maketargets $makeflags
228                                 for f in $targetfiles; do
229                                         verbose mv "$buildpath/${f%:*}" "${f##*:}" || true
230                                 done
231                                 ;;
232                         *)
233                                 verbose rsync --delete -zLvaSHP "$srcdir"/ "$host":"$buildpath/"
234                                 verbose rsync --delete -zLvaSHP "$depsdir"/*/ "$host":"$buildpath.deps/"
235                                 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"
236                                 for f in $targetfiles; do
237                                         verbose rsync -zvaSHP "$host:$buildpath/${f%:*}" "${f##*:}" || true
238                                 done
239                                 ;;
240                 esac
241                 # now rebrand the binaries...
242                 for f in $targetfiles; do
243                         case "${f##*:}" in
244                                 Xonotic/xonotic*.exe)
245                                         verbose "$d0/misc/tools/change-icon-of-exe.sh" "$d0/misc/logos/icons_ico/xonotic.ico" "${f##*:}"
246                                         ;;
247                         esac
248                 done
249                 ;;
250         release-compile)
251                 release_common
252                 suffix=$1
253                 makeflags=$2
254                 darkplaces_maketargets=$3
255                 darkplaces_files=$4
256                 host=xonotic-build-$suffix
257                 verbose "$SELF" release-compile-run "$host" /tmp/Darkplaces.build."$suffix" "$darkplaces_maketargets" "$makeflags" "Xonotic/source/darkplaces" "$d0/misc/builddeps/$suffix" "$darkplaces_files"
258                 ;;
259         release-getbinary)
260                 release_common
261                 binary=$1
262                 basename=${binary##*/}
263                 dpname=darkplaces${basename#xonotic}
264                 rev=`( cd "$d0/darkplaces" && git rev-parse HEAD )`
265                 verbose wget -O "$binary" "http://beta.xonotic.org/autobuild-bin/$rev/$dpname"
266                 [ -s "$binary" ] || rm -f "$binary"
267                 [ -f "$binary" ]
268                 case "$binary" in
269                         Xonotic/*osx*|Xonotic/*linux*)
270                                 chmod +x "$binary"
271                                 ;;
272                 esac
273                 ;;
274         release-engine-win32)
275                 release_common
276                 #good=true
277                 #verbose "$SELF" release-getbinary Xonotic/xonotic-x86.exe || good=false
278                 #verbose "$SELF" release-getbinary Xonotic/xonotic-x86-dedicated.exe || good=false
279                 #$good
280                 verbose "$SELF" release-compile win32 \
281                         'STRIP=: DP_MAKE_TARGET=mingw UNAME=MINGW32 CC="i686-w64-mingw32-gcc -g1 -Wl,--dynamicbase -Wl,--nxcompat -I../../../.deps/include -L../../../.deps/lib -DUSE_WSPIAPI_H -DSUPPORTIPV6" WINDRES="i686-w64-mingw32-windres" SDL_CONFIG="../../../.deps/bin/sdl-config" DP_LINK_ZLIB=dlopen DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen WIN32RELEASE=1 D3D=1' \
282                         release 'darkplaces.exe:Xonotic/xonotic.exe darkplaces-sdl.exe:Xonotic/xonotic-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-dedicated.exe'
283                 ;;
284         release-engine-win64)
285                 release_common
286                 #good=true
287                 #verbose "$SELF" release-getbinary Xonotic/xonotic.exe || good=false
288                 #verbose "$SELF" release-getbinary Xonotic/xonotic-dedicated.exe || good=false
289                 #$good
290                 verbose "$SELF" release-compile win64 \
291                         'STRIP=: DP_MAKE_TARGET=mingw UNAME=MINGW32 CC="x86_64-w64-mingw32-gcc -g1 -Wl,--dynamicbase -Wl,--nxcompat -I../../../.deps/include -L../../../.deps/lib -DSUPPORTIPV6" WINDRES="x86_64-w64-mingw32-windres" SDL_CONFIG="../../../.deps/bin/sdl-config" DP_LINK_ZLIB=dlopen DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen WIN64RELEASE=1 D3D=1' \
292                         release 'darkplaces.exe:Xonotic/xonotic-x64.exe darkplaces-sdl.exe:Xonotic/xonotic-x64-sdl.exe darkplaces-dedicated.exe:Xonotic/xonotic-x64-dedicated.exe'
293                 ;;
294         release-engine-osx)
295                 release_common
296                 #good=true
297                 #verbose "$SELF" release-getbinary Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-sdl-bin || good=false
298                 #verbose "$SELF" release-getbinary Xonotic/xonotic-osx-dedicated || good=false
299                 #$good
300                 verbose "$SELF" release-compile osx \
301                         'STRIP=: CC="gcc -g1 -arch i386 -arch ppc -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.5.sdk -mmacosx-version-min=10.4 -I../../../.deps/include -L../../../.deps/lib -fno-reorder-blocks -DSUPPORTIPV6" DP_LINK_ZLIB=shared DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_CRYPTO=dlopen DP_LINK_CRYPTO_RIJNDAEL=dlopen' \
302                         'sv-release sdl-release' 'darkplaces-sdl:Xonotic/Xonotic.app/Contents/MacOS/xonotic-osx-sdl-bin darkplaces-dedicated:Xonotic/xonotic-osx-dedicated'
303                 ;;
304         release-engine-linux64)
305                 release_common
306                 #good=true
307                 #verbose "$SELF" release-getbinary Xonotic/xonotic-linux64-sdl || good=false
308                 #verbose "$SELF" release-getbinary Xonotic/xonotic-linux64-glx || good=false
309                 #verbose "$SELF" release-getbinary Xonotic/xonotic-linux64-dedicated || good=false
310                 #$good
311                 verbose "$SELF" release-compile linux64 \
312                         'STRIP=: CC="gcc -m64 -g1 -I../../../.deps/include -L../../../.deps/lib -DSUPPORTIPV6" LIB_JPEG=../../../.deps/lib/libjpeg.a LIB_CRYPTO="../../../.deps/lib/libd0_blind_id.a ../../../.deps/lib/libgmp.a" DP_LINK_ZLIB=shared DP_LINK_JPEG=dlopen DP_LINK_ODE=dlopen DP_LINK_CRYPTO=shared DP_LINK_CRYPTO_RIJNDAEL=dlopen' \
313                         release 'darkplaces-glx:Xonotic/xonotic-linux64-glx darkplaces-sdl:Xonotic/xonotic-linux64-sdl darkplaces-dedicated:Xonotic/xonotic-linux64-dedicated'
314                 ;;
315         release-engine)
316                 release_common
317                 # TODO report failures here.
318                 good=false
319                 verbose "$SELF" release-engine-linux64 && good=true
320                 verbose "$SELF" release-engine-win32 && good=true
321                 verbose "$SELF" release-engine-win64 && good=true
322                 #verbose "$SELF" release-engine-osx && good=true
323                 $good
324                 ;;
325         release-maps)
326                 release_common
327                 verbose "$SELF" update-maps
328                 ;;
329         release-qc)
330                 release_common
331                 verbose make -C "$d0/gmqcc" gmqcc
332                 verbose env GIT_DIR="$d0/data/xonotic-data.pk3dir/.git" make -C Xonotic/source QCC="$d0/gmqcc/gmqcc" XON_BUILDSYSTEM=1 clean qc
333                 ;;
334         release-buildpk3-transform-raw)
335                 release_common
336                 dir=$1
337                 ;;
338         release-buildpk3-transform-normal)
339                 release_common
340                 dir=$1
341                 verbose cd "$dir"
342                 # texture: convert to jpeg and dds
343                 verbose export do_jpeg=true
344                 verbose export jpeg_qual_rgb=97
345                 verbose export jpeg_qual_a=99
346                 verbose export do_dds=false
347                 verbose export do_ogg=true
348                 verbose export ogg_ogg=false
349                 verbose export del_src=true
350                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
351                 ;;
352         release-buildpk3-transform-normaldds)
353                 release_common
354                 dir=$1
355                 verbose cd "$dir"
356                 # texture: convert to jpeg and dds
357                 # music: reduce bitrate
358                 verbose export do_jpeg=false
359                 verbose export do_jpeg_if_not_dds=true
360                 verbose export jpeg_qual_rgb=95
361                 verbose export jpeg_qual_a=99
362                 verbose export do_dds=true
363                 verbose export dds_flags=
364                 verbose export do_ogg=true
365                 verbose export ogg_ogg=false
366                 verbose export del_src=true
367                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
368                 ;;
369         release-buildpk3-transform-mapping)
370                 release_common
371                 dir=$1
372                 verbose cd "$dir"
373                 # remove stuff radiant has no use for
374                 verbose find . -name \*_norm.\* -exec rm -f {} \;
375                 verbose find . -name \*_bump.\* -exec rm -f {} \;
376                 verbose find . -name \*_glow.\* -exec rm -f {} \;
377                 verbose find . -name \*_gloss.\* -exec rm -f {} \;
378                 verbose find . -name \*_pants.\* -exec rm -f {} \;
379                 verbose find . -name \*_shirt.\* -exec rm -f {} \;
380                 verbose find . -name \*_reflect.\* -exec rm -f {} \;
381                 verbose find . -not \( -name \*.tga -o -name \*.png -o -name \*.jpg \) -exec rm -f {} \;
382                 # texture: convert to jpeg and dds
383                 # music: reduce bitrate
384                 verbose export do_jpeg=true
385                 verbose export jpeg_qual_rgb=80
386                 verbose export jpeg_qual_a=97
387                 verbose export do_dds=false
388                 verbose export do_ogg=true
389                 verbose export ogg_qual=1
390                 verbose export del_src=true
391                 find . -type f -print0 | verbose xargs -0 "$d0"/misc/tools/cached-converter.sh
392                 ;;
393         release-buildpk3)
394                 release_common
395                 src=$1
396                 dst=$2
397                 transform=$3
398                 case "$dst" in
399                         /*)
400                                 ;;
401                         */)
402                                 dst="$PWD/$dst"
403                                 ;;
404                 esac
405                 release_timereport
406                 verbose rm -rf Xonotic/temp
407                 release_timereport "deleted temp directory"
408                 verbose mkdir -p Xonotic/temp
409                 release_git_extract_dir "$src" "Xonotic/temp" .
410                 release_timereport "extracted data"
411                 verbose cd Xonotic/temp
412                 if [ x"$src" = x"data/xonotic-data.pk3dir" ]; then
413                         verbose cp ../source/progs.dat .
414                         verbose cp ../source/csprogs.dat .
415                         verbose cp ../source/menu.dat .
416                         # Include line numbers in qc errors
417                         verbose cp ../source/progs.lno .
418                         verbose cp ../source/csprogs.lno .
419                         verbose cp ../source/menu.lno .
420                         verbose rm -rf qcsrc
421                         getversion .
422                         case "$RELEASETYPE" in
423                                 release)
424                                         ;;
425                                 *)
426                                         versionstr="$versionstr$RELEASETYPE"
427                                         ;;
428                         esac
429                         if [ $gv -lt 9900 ]; then
430                                 # pre-1.0: compatible with any other pre-1.0
431                                 verbose sed "
432                                         s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
433                                         s/^gameversion_min [0-9]*/gameversion_min     0/;
434                                         s/^gameversion_max [0-9]*/gameversion_max  9999/;
435                                 " < xonotic-common.cfg > xonotic-common.cfg.new
436                         else
437                                 # >= 1.0
438                                 verbose sed "
439                                         s/^set g_xonoticversion [^ ]* /set g_xonoticversion $versionstr /;
440                                         s/^gameversion_min [0-9]*/gameversion_min $(( ($gv / 100) * 100 - 100 ))/;
441                                         s/^gameversion_max [0-9]*/gameversion_max $(( ($gv / 100) * 100 + 199 ))/;
442                                 " < xonotic-common.cfg > xonotic-common.cfg.new
443                         fi
444                         mv xonotic-common.cfg.new xonotic-common.cfg
445                         case "$RELEASETYPE" in
446                                 release)
447                                         echo "" >> xonotic-common.cfg
448                                         echo "// nicer menu" >> xonotic-common.cfg
449                                         echo "set menu_watermark \"\"" >> xonotic-common.cfg
450                                         ;;
451                         esac
452                         (
453                                 verbose cd gfx/menu/luminos
454                                 verbose rm -f background_l2.tga background_ingame_l2.tga
455                                 verbose cp "$d0"/mediasource/gfx/menu/luminos_versionbuilder/background_l2.svg .
456                                 verbose "$d0"/mediasource/gfx/menu/luminos_versionbuilder/versionbuilder "$versionstr"
457                                 verbose rm background_l2.svg
458                         )
459                         verbose "$d0"/mediasource/gfx/luma/render-version.sh "$d0/mediasource/gfx/luma" "$PWD" "$versionstr"
460                 fi
461                 if [ x"$src" = x"data/xonotic-maps.pk3dir" ]; then
462                         for X in ../../data/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
463                                 if [ -f "$X" ]; then
464                                         verbose unzip "$X"
465                                         verbose rm -f maps/*.log maps/*.irc maps/*.lin
466                                 fi
467                         done
468                 fi
469                 verbose export git_src_repo="$d0/$src" # skip hash-object
470                 release_timereport "processed data"
471                 verbose "$SELF" release-buildpk3-transform-$transform "Xonotic/temp"
472                 release_timereport "transformed data"
473                 find . -type f -size +4k | verbose "$d0"/misc/tools/symlink-deduplicate.sh
474                 release_timereport "deduplicated data"
475                 verbose mkzipr "../../$dst" *
476                 release_timereport "zipped data"
477                 verbose cd ../..
478                 verbose rm -rf Xonotic/temp
479                 release_timereport "deleted temp directory again"
480                 ;;
481         release-buildpk3s)
482                 release_common
483                 pk3stamp=`cat Xonotic/pk3stamp.txt`
484                 src=$1
485                 shift
486                 dst=${src%.pk3dir}
487                 case "$dst" in
488                         data/xonotic-*)
489                                 dst="data/xonotic-$pk3stamp-${dst#data/xonotic-}"
490                                 ;;
491                         *)
492                                 dst="$dst-$pk3stamp"
493                                 ;;
494                 esac
495                 while [ "$#" -gt 1 ]; do
496                         verbose "$SELF" release-buildpk3 "$src" "Xonotic/$dst$2.pk3" "$1"
497                         shift
498                         shift
499                 done
500                 ;;
501         release-pack)
502                 release_common
503                 verbose "$SELF" release-buildpk3s data/font-unifont.pk3dir      raw ''
504                 verbose "$SELF" release-buildpk3s data/font-xolonium.pk3dir     raw ''
505                 verbose "$SELF" release-buildpk3s data/xonotic-data.pk3dir             normaldds ''                    normal '-high'
506                 verbose "$SELF" release-buildpk3s data/xonotic-maps.pk3dir             normaldds '' mapping '-mapping' normal '-high'
507                 verbose "$SELF" release-buildpk3s data/xonotic-music.pk3dir     raw ''
508                 verbose "$SELF" release-buildpk3s data/xonotic-nexcompat.pk3dir        normaldds ''                    normal '-high'
509                 ;;
510         release-pack-needsx11)
511                 release_common
512                 case "$DISPLAY" in
513                         '')
514                                 verbose startx "$SELF" release-pack -- /usr/bin/Xvfb :7
515                                 ;;
516                         *)
517                                 verbose "$SELF" release-pack
518                                 ;;
519                 esac
520                 ;;
521         release-zip)
522                 release_common
523                 stamp=`cat Xonotic/stamp.txt`
524                 pk3stamp=`cat Xonotic/pk3stamp.txt`
525                 # exe and dll files do not need +x, so this makes them eligible for 7zip compression too
526                 chmod a-x Xonotic/*.exe Xonotic/*.dll || true
527                 # build the archives
528                 verbose mkzip Xonotic-$stamp-enginesource.zip \
529                         Xonotic/Makefile \
530                         Xonotic/source/darkplaces/ \
531                         Xonotic/COPYING Xonotic/GPL-2 Xonotic/GPL-3
532                 verbose cp Xonotic-$stamp-enginesource.zip Xonotic-$stamp-engine.zip
533                 verbose mkzip Xonotic-$stamp-engine.zip \
534                         Xonotic/*.dll \
535                         Xonotic/bin32/*.dll \
536                         Xonotic/bin64/*.dll \
537                         Xonotic/*.app \
538                         Xonotic/xonotic-* \
539                         Xonotic/xonotic.exe
540                 verbose cp Xonotic-$stamp-engine.zip Xonotic-$stamp-common.zip
541                 verbose mkzip Xonotic-$stamp-common.zip \
542                         Xonotic/source/d0_blind_id/ \
543                         Xonotic/source/gmqcc/ \
544                         Xonotic/source/qcsrc/ \
545                         Xonotic/Docs \
546                         Xonotic/misc \
547                         Xonotic/gmqcc \
548                         Xonotic/server \
549                         Xonotic/key_0.d0pk \
550                         Xonotic/data/font-unifont-$pk3stamp.pk3 \
551                         Xonotic/data/font-xolonium-$pk3stamp.pk3
552                 verbose cp Xonotic-$stamp-enginesource.zip Xonotic-$stamp-source.zip
553                 verbose mkzip Xonotic-$stamp-source.zip \
554                         Xonotic/source/d0_blind_id/ \
555                         Xonotic/source/gmqcc/ \
556                         Xonotic/source/qcsrc/ \
557                         Xonotic/misc/logos
558                 verbose cp Xonotic-$stamp-common.zip Xonotic-$stamp.zip
559                 verbose mkzip0 Xonotic-$stamp.zip \
560                         Xonotic/data/xonotic-$pk3stamp-data.pk3 \
561                         Xonotic/data/xonotic-$pk3stamp-maps.pk3 \
562                         Xonotic/data/xonotic-$pk3stamp-music.pk3 \
563                         Xonotic/data/xonotic-$pk3stamp-nexcompat.pk3
564                 verbose mv Xonotic-$stamp-common.zip Xonotic-$stamp-high.zip
565                 verbose mkzip0 Xonotic-$stamp-high.zip \
566                         Xonotic/data/xonotic-$pk3stamp-data-high.pk3 \
567                         Xonotic/data/xonotic-$pk3stamp-maps-high.pk3 \
568                         Xonotic/data/xonotic-$pk3stamp-music.pk3 \
569                         Xonotic/data/xonotic-$pk3stamp-nexcompat-high.pk3
570                 verbose mkzip Xonotic-$stamp-mappingsupport.zip \
571                         Xonotic/mapping
572                 verbose mkzip0 Xonotic-$stamp-mappingsupport.zip \
573                         Xonotic/data/xonotic-$pk3stamp-maps-mapping.pk3
574                 verbose mkzip gmqcc-$stamp.zip \
575                         Xonotic/gmqcc \
576                         Xonotic/source/gmqcc
577                 ;;
578         release)
579                 release_common
580                 verbose "$SELF" release-prepare
581                 verbose "$SELF" release-maps
582                 verbose "$SELF" release-engine
583                 verbose "$SELF" release-qc
584                 verbose "$SELF" release-pack
585                 verbose "$SELF" release-zip
586                 ;;
587         *)
588                 handled=false
589                 ;;
590 esac