Fixed a case where the receiver indicates a successful update when the
[rsync/rsync.git] / support / patch-update
... / ...
CommitLineData
1#!/usr/bin/perl -w
2# This script is used to turn one or more of the "patch/*" branches
3# into one or more diffs in the "patches" directory. Pass the option
4# --gen if you want generated files in the diffs. Pass the name of
5# one or more diffs if you want to just update a subset of all the
6# diffs.
7
8use strict;
9
10die "No 'patches' directory present in the current dir.\n" unless -d 'patches';
11die "No '.git' directory present in the current dir.\n" unless -d '.git';
12
13my @extra_files;
14open(IN, '<', 'Makefile.in') or die "Couldn't open Makefile.in: $!\n";
15while (<IN>) {
16 if (s/^GENFILES=//) {
17 while (s/\\$//) {
18 $_ .= <IN>;
19 }
20 @extra_files = split(' ', $_);
21 last;
22 }
23}
24close IN;
25
26my $incl_generated_files = shift if @ARGV && $ARGV[0] eq '--gen';
27
28system "git checkout master" and exit 1;
29if ($incl_generated_files) {
30 die "'a' must not exist in the current directory.\n" if -e 'a';
31 die "'b' must not exist in the current directory.\n" if -e 'b';
32 system "make gen && rsync -a @extra_files a/" and exit 1;
33}
34my $last_touch = time;
35
36my(@patches, %local_patch);
37if (@ARGV) {
38 foreach (@ARGV) {
39 s{^(patches|patch|origin/patch)/} {};
40 s{\.diff$} {};
41 push(@patches, $_);
42 }
43 open(PIPE, '-|', 'git', 'branch', '-l') or die $!;
44} else {
45 open(PIPE, '-|', 'git', 'branch', '-a') or die $!;
46}
47while (<PIPE>) {
48 if (m# origin/patch/(.*)#) {
49 push(@patches, $1);
50 } elsif (m# patch/(.*)#) {
51 $local_patch{$1} = 1;
52 }
53}
54close PIPE;
55
56my(%parent, %description);
57foreach my $patch (@patches) {
58 my $branch = ($local_patch{$patch} ? '' : 'origin/') . "patch/$patch";
59 my $desc = '';
60 open(PIPE, '-|', 'git', 'diff', '-U1000', "master...$branch", '--', "PATCH.$patch") or die $!;
61 while (<PIPE>) {
62 next if m{^\Q+++\E b/PATCH};
63 next unless s/^[ +]//;
64 if (m#patch -p1 <patches/(\S+)\.diff# && $1 ne $patch) {
65 $parent{$patch} = $1;
66 }
67 $desc .= $_;
68 }
69 $description{$patch} = $desc;
70}
71
72my %completed;
73foreach my $patch (@patches) {
74 next if $completed{$patch}++;
75 update_patch($patch);
76}
77
78if ($incl_generated_files) {
79 system "rm -rf a b";
80}
81
82sleep 1 if $last_touch == time;
83system "git checkout master";
84
85exit;
86
87
88sub update_patch
89{
90 my($patch) = @_;
91
92 my $parent = $parent{$patch};
93 if (defined $parent) {
94 unless ($completed{$parent}++) {
95 update_patch($parent);
96 }
97 $parent = "patch/$parent";
98 } else {
99 $parent = 'master';
100 }
101
102 print "======== $patch ========\n";
103
104 sleep 1 if $incl_generated_files && $last_touch == time;
105 if ($local_patch{$patch}) {
106 system "git checkout patch/$patch" and exit 1;
107 } else {
108 system "git checkout --track -b patch/$patch origin/patch/$patch" and exit 1;
109 }
110
111 open(OUT, '>', "patches/$patch.diff") or die $!;
112 print OUT $description{$patch}, "\n";
113
114 if (system("git rebase -m $parent") != 0) {
115 print qq|"git rebase -m $parent" incomplete -- please fix.\n|;
116 $ENV{PS1} = "[$parent] patch/$patch: ";
117 system $ENV{SHELL} and exit 1;
118 }
119
120 if ($incl_generated_files) {
121 system "make gen && rsync -a @extra_files b/" and exit 1;
122 }
123 $last_touch = time;
124
125 open(PIPE, '-|', 'git', 'diff', $parent) or die $!;
126 DIFF: while (<PIPE>) {
127 while (m{^diff --git a/PATCH}) {
128 while (<PIPE>) {
129 last if m{^diff --git a/};
130 }
131 last DIFF if !defined $_;
132 }
133 next if /^index /;
134 print OUT $_;
135 }
136 close PIPE;
137
138 if ($incl_generated_files) {
139 open(PIPE, '-|', 'diff', '-up', 'a', 'b') or die $!;
140 while (<PIPE>) {
141 s/^((?:---|\+\+\+) [^\t]+)\t.*/$1/;
142 print OUT $_;
143 }
144 close PIPE;
145 }
146
147 close OUT;
148}