Begin cleanup of make-dissector-reg.py
[metze/wireshark/wip.git] / tools / git-compare-abis.sh
1 #!/bin/bash
2 #
3 # checks if Wireshark's ABI has been changes since last release (tag)
4 #
5 # Copyright 2011 Balint Reczey <balint@balintreczey.hu>
6 #
7 # Wireshark - Network traffic analyzer
8 # By Gerald Combs <gerald@wireshark.org>
9 # Copyright 1998 Gerald Combs
10 #
11 # This program is free software; you can redistribute it and/or
12 # modify it under the terms of the GNU General Public License
13 # as published by the Free Software Foundation; either version 2
14 # of the License, or (at your option) any later version.
15 #
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write to the Free Software
23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24
25 set -e
26
27 if test -z "$1"; then
28         echo "Usage:"
29         echo "$0 \"<build commands>\""
30         echo "e.g. $0 \"./autogen.sh && ./configure && make -j3 && make dumpabi\""
31         exit 1
32 fi
33
34 # build current version
35 bash -c "$1"
36
37 cd `git rev-parse --show-toplevel`
38 # we are at top level
39
40 # Stable branches with releases
41 #LAST_TAG=`git describe --tags --abbrev=0`
42 #LAST_TAG_DIR=$LAST_TAG
43
44 # Use latest commit
45 LAST_TAG=HEAD
46 LAST_TAG_DIR=master
47
48 rm -rf $LAST_TAG_DIR
49 mkdir $LAST_TAG_DIR
50 git archive $LAST_TAG | tar -x -C $LAST_TAG_DIR
51
52 # build latest tag
53 (cd $LAST_TAG_DIR && bash -c "$1")
54
55 exec tools/compare-abis.sh `pwd`/$LAST_TAG_DIR `pwd`
56