File tree Expand file tree Collapse file tree 3 files changed +38
-5
lines changed
Expand file tree Collapse file tree 3 files changed +38
-5
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ GNU_ROFF=YesPlease'
1616rm -f version
1717case ` hostname` in
1818hera.kernel.org)
19- narch=' x86_64 i386'
19+ narch=' x86_64 i386 i686 '
2020 arch=x86_64 ;;
21- wing-fc* |fc* .siamese.dyndns.org)
21+ wing-fc* |fc* .siamese.dyndns.org|fc * )
2222 eval $( rpm --showrc | sed -ne '
2323 s/^-14: dist[ ]*\./dist=/p
24- s/^-14: _build_arch [ ]*/arch=/p
24+ s/^-11= _target_cpu [ ]*/arch=/p
2525 ' ) &&
2626 test -n " $dist " && test -n " $arch " || exit 1
2727 ;;
@@ -32,7 +32,7 @@ esac &&
3232echo " * Building $THIS " &&
3333make $J git > ./:all.log 2>&1 &&
3434V=` ./git --version | sed -e ' s/git version //' ` &&
35- make $d rpm >> ./:all.log 2>&1 &&
35+ NEEDS_CRYPTO_WITH_SSL=YesPlease make $d rpm >> ./:all.log 2>&1 &&
3636case " $narch " in
3737' ' )
3838 # This is not the primary build machine.
Original file line number Diff line number Diff line change 33
44use strict;
55
6+ my %reverts = (' next' => {
7+ map { $_ => 1 } qw(
8+ c9bb83f
9+ 8f6d1e2
10+ 477e5a8
11+ cc17e9f
12+ 07b74a9
13+ e4b5259
14+ 76c7727
15+ 7e7b4f7
16+ 44d3770
17+ 107880a
18+ 02f9c7c
19+ a9ef3e3
20+ ) });
21+
22+ %reverts = ();
23+
624sub phrase_these {
725 my (@u ) = sort @_ ;
826 my @d = ();
@@ -163,7 +181,9 @@ sub get_commit {
163181 };
164182 }
165183 my $co = $commit {$sha1 };
166- $co -> {' branch' }{$branch } = 1;
184+ if (!exists $reverts {$branch }{$sha1 }) {
185+ $co -> {' branch' }{$branch } = 1;
186+ }
167187 next if (exists $base {$branch });
168188 push @{$topic {$branch }{' log' }}, $sha1 ;
169189 }
@@ -211,6 +231,7 @@ sub get_commit {
211231 }
212232 for my $tip (split (' ' , $tips )) {
213233 my $co = $commit {$tip };
234+ next unless ($co -> {' branch' }{' next' });
214235 $co -> {' merged' } = " (merged to 'next' on $date at $commit )" ;
215236 }
216237 }
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ # Feed whats-cooking to find who are involved
3+
4+ sed -ne ' s|\(.* \)*\* \([a-z][a-z]/[a-z0-9][-_a-z0-9]*\) ([-0-9]*) [0-9]* commit.*|\2|p' |
5+ while read topic
6+ do
7+ git log --format=" %an <%ae>" --no-merges " $topic " ^master
8+ done |
9+ sort -u |
10+ sed -e ' /Junio C Hamano/d' -e ' s/.*/ &,/' -e ' $s/,$//'
11+
12+
You can’t perform that action at this time.
0 commit comments