summaryrefslogtreecommitdiffstats
path: root/lib/touched-by-patch
blob: bdfc296c0727bad0d3cb9af0ce5ac384af996b23 (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
#! /bin/bash
# Extract names of new files from a patch, print them out

#  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.

usage()
{
	echo "Usage: touched-by-patch [-p num] patchname"
	exit 1
}

options=`getopt -o p:h -- "$@"`

if [ $? -ne 0 ]
then
	usage
fi

eval set -- "$options"

while true
do
	case "$1" in
	-p)
		opt_p=$2
		shift 2 ;;
	-h)
		usage ;;
	--)
		shift
		break ;;
	esac
done

if [ $# -ne 1 ]
then
	usage
fi

patch_file=$1
[ -z "$opt_p" ] && opt_p=1

case "$patch_file" in
*.bz2)
	command="bzip2 -cd $patch_file";;
*.gz)
	command="gzip -cd $patch_file";;
*)
	command="cat $patch_file";;
esac

# Neither `+++' nor `---' works for all patches; patch looks at the
# file system to determine which file name to use.

eval $command \
|  awk '/^\+\+\+[ \t]/ {
	sub(/^\+\+\+[ \t]/, "")
	sub(/[ \t].*/, "")
	sub(/^\/dev\/null/, "")
	for (i=0; i<'$opt_p'; i++)
		sub(/^[^\/]*\//, "")
	print
	}' \
| sort \
| uniq