summaryrefslogtreecommitdiffstats
path: root/quilt/fork.in
blob: 1eeb51d6ecf63128b7cbf2d93482258a2bf402b0 (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
#! @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 fork [new_name]"
	if [ x$1 = x-h ]
	then
		echo $"
Fork the topmost patch. If new_name is missing, the name of the
forked patch will be the current patch name, followed by \"-2\".  If the
If the patch name already ends in a dash-and-number, the number is
further incremented (e.g., patch.diff, patch-2.diff).
"
		exit 0
	else
		exit 1
	fi
}

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

if [ $? -ne 0 ]
then
	usage
fi

eval set -- "$options"

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

if [ $# -gt 1 ]
then
	usage
fi

top="$(top_patch)"
if [ -z "$top" ]
then
	echo $"No patches applied" >&2
	exit 1
fi
top_file_name="$(patch_file_name $top)"

if [ $# -eq 1 ]
then
	patch_file="$1"
else
	set -- $(echo "$top" \
		 | @SED@ -e 's: :\ :g' -e 's:-\([0-9]\+\)$: \1:')
	if [ $# -eq 1 ]; then
		patch_file="$1-2"
	else
		patch_file="$1-$[$2+1]"
	fi
	ext="$(echo $top_file_name \
	       | @SED@ -e '\:\.\(diff\?\|patch\)\(\.gz\|\.bz2\|\)$:!d' \
		       -e 's:.*\(\.\(diff\?\|patch\)\(\.gz\|\.bz2\|\)\)$:\1:')"
	patch_file="$patch_file$ext"
fi

patch_file=$(echo $patch_file | @SED@ -e 's/^'"$(quote_bre $P)"'patches\///')
patch=$(stripit $patch_file)
pc_dir=".pc/$patch"

if patch_in_series $patch || \
   [ -d "$pc_dir" ] || \
   [ -e "patches/$patch_file" ]
then
	echo $"Patch $patch exists already, please choose a new name"
	exit 1
fi

if ! rename_in_db "$top" "$patch" || \
   ! rename_in_series "$top" "$patch_file" || \
   ! mv ".pc/$top" $pc_dir || \
   ! cp -p "$top_file_name" "$(patch_file_name $patch)"
then
	echo $"Fork of $top_file_name to $patch_file failed" >&2
	exit 1
fi

echo $"Fork of $top_file_name created as $(patch_file_name $patch)"

### Local Variables:
### mode: shell-script
### End:
# vim:filetype=sh