aboutsummaryrefslogtreecommitdiff
path: root/merge.upstream.sh
blob: 5c54da2b9cbea3f0bedf51106c5559c88a454615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Copyright (C) 2014 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the 'License');
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an 'AS IS' BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

function get_remote_revision() {
  local repo_url=$1
  # echo "svn info $repo_url | grep \"Revision: \" | sed \"s/Revision: //\""
  echo `svn info $repo_url | grep "Revision: " | sed "s/Revision: //"`
}

valgrind_svn_url="svn://svn.valgrind.org/valgrind/trunk"
vex_svn_url="svn://svn.valgrind.org/vex/trunk"

current_dir=`realpath \`dirname $0\``
valgrind_dir=$current_dir/main
vex_dir=$valgrind_dir/VEX

valgrind_revision=`cat $current_dir/upstream.revs.txt | grep "val: " | sed "s/val: //"`
vex_revision=`cat $current_dir/upstream.revs.txt | grep "vex: " | sed "s/vex: //"`

echo "Current revisions (from upstream.revs.txt): "
echo "  valgrind: $valgrind_revision"
echo "  vex     : $vex_revision"

if [ -z valgrind_revision  -o -z vex_revision ]; then
  echo "Error: File upstream.revs.txt file does not exist or has invalid format"
  echo "Expecting 'val: <revision number>' and 'vex: <revision number>'"
  exit -1
fi

upstream_valgrind_revision=$(get_remote_revision $valgrind_svn_url)
upstream_vex_revision=$(get_remote_revision $vex_svn_url)

echo "Upstream revisions: "
echo "  valgrind: $upstream_valgrind_revision"
echo "  vex     : $upstream_vex_revision"

if [ $upstream_valgrind_revision -gt $valgrind_revision ]; then
  echo "Merging valgrind... (in $valgrind_dir)" | tee $current_dir/merge.log
  cd $valgrind_dir
  svn diff -r$valgrind_revision:$upstream_valgrind_revision $valgrind_svn_url | patch -Ep0 | tee -a $current_dir/merge.log
fi

if [ $upstream_vex_revision -gt $vex_revision ]; then
  echo "Merging vex... (in $vex_dir)" | tee -a $current_dir/merge.log
  cd $vex_dir
  svn diff -r$vex_revision:$upstream_vex_revision $vex_svn_url | patch -Ep0 | tee -a $current_dir/merge.log
fi

echo "val: $upstream_valgrind_revision" > $current_dir/upstream.revs.txt
echo "vex: $upstream_vex_revision" >> $current_dir/upstream.revs.txt

echo "Done: please do not forget to"
echo " 1. Check $current_dir/merge.log for possible merge issues"
echo " 2. Test the build and make adjustments to $current_dir/main/Android.mk if neccessary"