~ubuntu-dev/ubuntu/lucid/quilt/lucid-201002101907

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
Test the patch merging functionality of `quilt diff'.

	$ rm -rf d
	$ mkdir -p d/patches
	$ cd d

	$ cat > abc.txt
	< a
	< b
	< c

	$ cat > patches/series
	< a.diff
	< b.diff
	< c.diff

	$ cat > patches/a.diff
	< --- merge.orig/abc.txt
	< +++ merge/abc.txt
	< @@ -1 +1 @@
	< -a
	< +a+

	$ cat > patches/b.diff
	< --- merge.orig/abc.txt
	< +++ merge/abc.txt
	< @@ -2 +2 @@
	< -b
	< +b+

	$ cat > patches/c.diff
	< --- merge.orig/abc.txt
	< +++ merge/abc.txt
	< @@ -3 +3 @@
	< -c
	< +c+

	$ quilt push -qa
	> Applying patch %{P}a.diff
	> Applying patch %{P}b.diff
	> Applying patch %{P}c.diff
	> Now at patch %{P}c.diff

	$ quilt diff -P b.diff | grep -v "^\\(---\\|+++\\)"
	> Warning: more recent patches modify files in patch %{P}b.diff
	> Index: d/abc.txt
	> ===================================================================
	> @@ -1,3 +1,3 @@
	>  a+
	> -b
	> +b+
	>  c

	$ quilt diff --combine a.diff -P b.diff | grep -v "^\\(---\\|+++\\)"
	> Warning: more recent patches modify files in patch %{P}b.diff
	> Index: d/abc.txt
	> ===================================================================
	> @@ -1,3 +1,3 @@
	> -a
	> -b
	> +a+
	> +b+
	>  c

	$ quilt diff --combine b.diff | grep -v "^\\(---\\|+++\\)"
	> Index: d/abc.txt
	> ===================================================================
	> @@ -1,3 +1,3 @@
	>  a+
	> -b
	> -c
	> +b+
	> +c+

	$ quilt diff --combine - | grep -v "^\\(---\\|+++\\)"
	> Index: d/abc.txt
	> ===================================================================
	> @@ -1,3 +1,3 @@
	> -a
	> -b
	> -c
	> +a+
	> +b+
	> +c+

	$ cd ..
	$ rm -rf d