1 | # !kmk_ash
|
---|
2 | # $Id: backport-merge.sh 84270 2020-05-12 09:20:36Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # Script for merging a backport from trunk.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2020 Oracle Corporation
|
---|
9 | #
|
---|
10 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | # available from http://www.virtualbox.org. This file is free software;
|
---|
12 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | # General Public License (GPL) as published by the Free Software
|
---|
14 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | #
|
---|
18 |
|
---|
19 | #
|
---|
20 | # Determin script dir so we can source the common bits.
|
---|
21 | #
|
---|
22 | MY_SED=kmk_sed
|
---|
23 | MY_SCRIPT_DIR=`echo "$0" | "${MY_SED}" -e 's|\\\|/|g' -e 's|^\(.*\)/[^/][^/]*$|\1|'` # \ -> / is for windows.
|
---|
24 | if test "${MY_SCRIPT_DIR}" = "$0"; then
|
---|
25 | MY_SCRIPT_DIR=`pwd -L`
|
---|
26 | else
|
---|
27 | MY_SCRIPT_DIR=`cd "${MY_SCRIPT_DIR}"; pwd -L` # pwd is built into kmk_ash.
|
---|
28 | fi
|
---|
29 |
|
---|
30 | #
|
---|
31 | # This does a lot.
|
---|
32 | #
|
---|
33 | MY_SCRIPT_NAME="backport-merge.sh"
|
---|
34 | . "${MY_SCRIPT_DIR}/backport-common.sh"
|
---|
35 |
|
---|
36 | #
|
---|
37 | # Check that the branch is clean if first revision.
|
---|
38 | #
|
---|
39 | if test -n "${MY_FIRST_REV}"; then
|
---|
40 | MY_STATUS=`"${MY_SVN}" status -q "${MY_BRANCH_DIR}"`
|
---|
41 | if test -n "${MY_STATUS}"; then
|
---|
42 | echo "error: Branch already has changes pending..."
|
---|
43 | "${MY_SVN}" status -q "${MY_BRANCH_DIR}"
|
---|
44 | exit 1;
|
---|
45 | fi
|
---|
46 | test -z "${MY_DEBUG}" || echo "debug: Found no pending changes on branch."
|
---|
47 | fi
|
---|
48 |
|
---|
49 | #
|
---|
50 | # Update branch if requested.
|
---|
51 | #
|
---|
52 | if test -n "${MY_UPDATE_FIRST}"; then
|
---|
53 | if ! "${MY_SVN}" update "${MY_BRANCH_DIR}" --ignore-externals; then
|
---|
54 | echo "error: branch updating failed..."
|
---|
55 | exit 1;
|
---|
56 | fi
|
---|
57 | test -z "${MY_DEBUG}" || echo "debug: Updated the branch."
|
---|
58 | fi
|
---|
59 |
|
---|
60 | #
|
---|
61 | # Do the merging.
|
---|
62 | #
|
---|
63 | MY_DONE_REVS=
|
---|
64 | MY_FAILED_REV=
|
---|
65 | MY_TODO_REVS=
|
---|
66 | test -n "${MY_DEBUG}" && echo "MY_REVISIONS=${MY_REVISIONS}"
|
---|
67 | for MY_REV in ${MY_REVISIONS};
|
---|
68 | do
|
---|
69 | MY_MERGE_ARGS=
|
---|
70 | if test -z "${MY_FAILED_REV}"; then
|
---|
71 | echo "***"
|
---|
72 | echo "*** Merging r${MY_REV} ..."
|
---|
73 | echo "***"
|
---|
74 | if [ -n "${MY_FORCE}" ]; then
|
---|
75 | MY_MERGE_ARGS="$MY_MERGE_ARGS --ignore-ancestry"
|
---|
76 | fi
|
---|
77 | if "${MY_SVN}" merge ${MY_MERGE_ARGS} "${MY_TRUNK_DIR}" "${MY_BRANCH_DIR}" -c ${MY_REV}; then
|
---|
78 | # Check for conflict.
|
---|
79 | MY_CONFLICTS=`"${MY_SVN}" status "${MY_BRANCH_DIR}" | "${MY_SED}" -n -e '/^C/p'`
|
---|
80 | if test -z "${MY_CONFLICTS}"; then
|
---|
81 | if test -z "${MY_DONE_REVS}"; then
|
---|
82 | MY_DONE_REVS=${MY_REV}
|
---|
83 | else
|
---|
84 | MY_DONE_REVS="${MY_DONE_REVS} ${MY_REV}"
|
---|
85 | fi
|
---|
86 | else
|
---|
87 | echo '!!!'" Have conflicts after merging ${MY_REV}."
|
---|
88 | MY_FAILED_REV=${MY_REV}
|
---|
89 | fi
|
---|
90 | else
|
---|
91 | echo '!!!'" Failed merging r${MY_REV}."
|
---|
92 | MY_FAILED_REV=${MY_REV}
|
---|
93 | fi
|
---|
94 | else
|
---|
95 | if test -z "${MY_TODO_REVS}"; then
|
---|
96 | MY_TODO_REVS=${MY_REV}
|
---|
97 | else
|
---|
98 | MY_TODO_REVS="${MY_TODO_REVS} ${MY_REV}"
|
---|
99 | fi
|
---|
100 | fi
|
---|
101 | done
|
---|
102 |
|
---|
103 | if test -z "${MY_FAILED_REV}"; then
|
---|
104 | echo "* Successfully merged all revision (${MY_DONE_REVS})."
|
---|
105 | exit 0;
|
---|
106 | fi
|
---|
107 | if test -n "${MY_DONE_REVS}"; then
|
---|
108 | echo "* Successfully merged: ${MY_DONE_REVS}"
|
---|
109 | fi
|
---|
110 | if test -n "${MY_TODO_REVS}"; then
|
---|
111 | echo "* Revisions left todo: ${MY_TODO_REVS}"
|
---|
112 | fi
|
---|
113 | exit 1;
|
---|