summaryrefslogtreecommitdiffstats
path: root/quilt/refresh.in
blob: 0b7dfabebbe8ca0b2ca80458bdf4c96cf0b9d8a0 (plain) (blame)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#! @BASH@

#  This script is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License version 2 as
#  published by the Free Software Foundation.
#
#  See the COPYING and AUTHORS files for more details.

# Read in library functions
if [ "$(type -t patch_file_name)" != function ]
then
	if ! [ -r @SCRIPTS@/patchfns ]
	then
		echo "Cannot read library @SCRIPTS@/patchfns" >&2
		exit 1
	fi
	. @SCRIPTS@/patchfns
fi

usage()
{
	echo $"Usage: quilt refresh [-p n] [-f] [--no-timestamps] [--backup] [patch]"
	
	if [ x$1 = x-h ]
	then
		echo $"
Refreshes the specified patch, or the topmost patch by default.
Documentation that comes before the actual patch in the patch file is
retained.

It is possible to refresh patches that are not on top.  If any patches
on top of the patch to refresh modify the same files, the script aborts
by default.  Patches can still be refreshed with -f.  In that case this
script will print a warning for each shadowed file, changes by more
recent patches will be ignored, and only changes in files that have not
been modified by any more recent patches will end up in the specified
patch.

-p n	Create a -p n style patch (-p0 or -p1 supported).

-u, -U num, -c, -C num
	Create a unified diff (-u, -U) with num lines of context. Create
	a context diff (-c, -C) with num lines of context. The number of
	context lines defaults to 3.

--no-timestamps
	Do not include file timestamps in patch headers.
	
-f	Enforce refreshing of a patch that is not on top.

--backup
	Create a backup copy of the old version of a patch as patch~."
		exit 0
	else
		exit 1
	fi
}

die ()
{
	local status=$1
	[ -n "$tmpfile" ] && rm -f $tmpfile
	[ -n "$tmpfile2" ] && rm -f $tmpfile2
	exit $status
}

options=`getopt -o p:uU:cC:fh --long no-timestamps,backup -- "$@"`

if [ $? -ne 0 ]
then
	usage
fi

eval set -- "$options"

opt_format=-u
while true
do
	case "$1" in
	-p)
		opt_strip_level=$2
		shift 2 ;;
	-f)
		opt_force=1
		shift ;;
	-u|-c)
		opt_format=$1
		shift ;;
	-U|-C)
		opt_format="$1 $2"
		shift 2 ;;
	-h)
		usage -h ;;
	--no-timestamps)
		QUILT_NO_DIFF_TIMESTAMPS=1
		shift ;;
	--backup)
		QUILT_BACKUP=1
		shift ;;
	--)
		shift
		break ;;
	esac
done

if [ $# -eq 1 ]
then
	opt_patch=$1
elif [ $# -gt 1 ]
then
	usage
fi

QUILT_DIFF_OPTS="$QUILT_DIFF_OPTS $opt_format"

if [ -n "$opt_patch" ]
then
	if ! patch=$(find_patch $opt_patch)
	then
		echo $"Patch $opt_patch is not in series" >&2
		exit 1
	fi
	if ! is_applied "$patch"
	then
		echo $"Patch $patch is not applied" >&2
		exit 1
	fi
else
	patch=$(top_patch)
	if [ -z "$patch" ]
	then
		echo $"No patches applied" >&2
		exit 1
	fi
fi

if [ -z "$opt_strip_level" ]
then
	opt_strip_level=$(patch_strip_level $patch)
fi
if [ $opt_strip_level -gt 1 ]
then
	echo $"Cannot refresh patches with -p$opt_strip_level, please specify -p0 or -p1 instead" >&2
	exit 1
fi

trap "die 1" SIGTERM

tmpfile=$(gen_tempfile)

for file in $(files_in_patch_ordered $patch)
do
	old_file=$(backup_file_name $patch $file)
	next_patch=$(next_patch_for_file $patch $file)
	if [ -z "$next_patch" ]
	then
		new_file=$file
	else
		new_file=$(backup_file_name $next_patch $file)
		files_were_shadowed=1
	fi
	if ! diff_file $file $old_file $new_file >> $tmpfile
	then
		echo $"Diff failed, aborting." >&2
		die 1
	fi

	if [ -n "$files_were_shadowed" -a -z "$opt_force" ]
	then
		echo $"More recent patches modify files in $patch. Enforce refresh with -f." >&2
		die 1
	fi
done

if ! [ -s $tmpfile ]
then
	echo $"Nothing in patch $patch" >&2
	die 1
fi

patch_file=$(patch_file_name $patch)

trap "" SIGINT

if ! tmpfile2=$(gen_tempfile)
then
	die 1
fi

mkdir -p $(dirname $patch_file)

if ! cat_file $patch_file \
     | patch_description > $tmpfile2 || \
   ! cat $tmpfile >> $tmpfile2
then
	die 1
fi

if [ -e $patch_file ] && \
   @DIFF@ -q $patch_file $tmpfile2 > /dev/null
then
	echo $"Patch $patch is unchanged"
	exit 0
fi

if ( [ -n "$QUILT_BACKUP" -a -e $patch_file ] && \
     ! cp $patch_file $patch_file~ ) || \
   ! cat_to_file $patch_file < $tmpfile2
then
	die 1
fi

touch $QUILT_PC/$patch/.timestamp

rm -f $QUILT_PC/$patch~refresh
echo $"Refreshed patch $patch"
if ! change_db_strip_level -p$opt_strip_level $patch
then
	die 1
fi
die 0
### Local Variables:
### mode: shell-script
### End:
# vim:filetype=sh