source: git/make_release @ 66a9df7

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since 66a9df7 was 66a9df7, checked in by Olly Betts <olly@…>, 11 years ago

make_release: Prefer a hand-installed 2.9 mingw build of wx to a
packaged 2.8 build.

  • Property mode set to 100755
File size: 2.7 KB
Line 
1#! /bin/sh
2
3set -e
4
5rel=yes
6if test x"$1" = x-t ; then
7   rel=
8   shift
9fi
10
11if test x"$rel" = xyes ; then
12  # Check there are no uncommitted changes.
13  if git commit -a --dry-run >/dev/null 2>/dev/null ; then
14    echo 'There are uncommitted changes - please rectify'
15    echo 'If you just want to test, run with option -t'
16    exit 1
17  fi
18
19  test ! -f Makefile || make distclean
20  cp -u /usr/share/misc/config.guess .
21  cp -u /usr/share/misc/config.sub .
22  autoreconf --force -i
23  ./configure CC=gcc CXX=g++
24  make distcheck
25  # FIXME: setting c89 doesn't define unix and suppresses getc_unlocked().
26  # Tell the preprocessor to be C89 - this makes it reject // comments
27  # FIXME -Werror makes configure explode CFLAGS="-Werror -Wp,-std=c89"
28  # FIXME   CXXFLAGS="-Werror"
29else
30  make dist
31fi
32
33# Perform mingw build on a clean unpacked source tree from the release tarball
34# so that (a) we don't need to "make distclean" on the source tree and (b) we
35# ensure that any files required to build the mingw version and installer
36# package are actually shipped in the source tarball.
37tarball=`ls -1t survex-1*.tar.gz|head -n1`
38tardir=`basename "$tarball" .tar.gz`
39rm -rf "$tardir"
40tar xf "$tarball"
41cd "$tardir"
42
43test -n "$build_platform" || build_platform=`sh config.guess`
44SAVE_PATH=$PATH
45for wxc in \
46  /usr/i586-mingw32msvc/lib/wx/config/i586-mingw32msvc-msw-unicode-static-2.9 \
47  /usr/lib/wx/config/i586-mingw32msvc-msw-unicode-release-static-2.8 \
48  /usr/lib/wx/config/i686-w64-mingw32-msw-unicode-release-static-2.8 \
49  "" ; do
50  if test -z "$wxc" ; then
51    echo "wx-config for mingw not found" >&2
52    exit 1
53  fi
54  if test -x "$wxc" ; then
55    CC=`$wxc --cc`
56    CXX=`$wxc --cxx`
57    break
58  fi
59done
60case $CC in
61  *i586-mingw32msvc-gcc)
62    # debian mingw32 package
63    PATH=/usr/i586-mingw32msvc/bin:$PATH
64    ;;
65  *i386-mingw32msvc-gcc)
66    # debian mingw32 package
67    PATH=/usr/i386-mingw32msvc/bin:$PATH
68    ;;
69esac
70
71# Passing -Werror to configure causes AC_CHECK_FUNCS to fail, so pass it to
72# make instead.
73./configure --host=mingw32 --build="$build_platform" CC="$CC" CXX="$CXX" CXXFLAGS="-fno-strict-aliasing -Werror" WX_CONFIG="$wxc" LDFLAGS='-s -static'
74make CFLAGS=-Werror
75make mingw_iss
76PATH=$SAVE_PATH
77
78mv survex-win32-*.exe ..
79cd ..
80
81if test x"$rel" = xyes ; then
82  rm -rf "$tardir"
83fi
84
85VERSION=`sed 's/^VERSION *= *//p;d' Makefile`
86FILES="survex-$VERSION.tar.gz survex-win32-$VERSION.exe"
87echo "SHA1 checksums:"
88sha1sum $FILES
89echo
90
91echo "To tag this release and upload it to the webserver, run:"
92echo git tag -m"'Tagging $VERSION'" "$VERSION"
93
94HOST=atreus.tartarus.org
95echo ssh "$HOST" mkdir /srv/www/survex.com/software/"$VERSION"
96echo scp $FILES "$HOST":/srv/www/survex.com/software/"$VERSION"
Note: See TracBrowser for help on using the repository browser.