Skip to content

Commit 2b9d6c0

Browse files
committed
DoKernelOrg: Update for FC13
1 parent 56f3db0 commit 2b9d6c0

File tree

3 files changed

+38
-5
lines changed

3 files changed

+38
-5
lines changed

DoKernelOrg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ GNU_ROFF=YesPlease'
1616
rm -f version
1717
case `hostname` in
1818
hera.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 &&
3232
echo "* Building $THIS" &&
3333
make $J git >./:all.log 2>&1 &&
3434
V=`./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 &&
3636
case "$narch" in
3737
'')
3838
# This is not the primary build machine.

cook

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33

44
use 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+
624
sub 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
}

people

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+

0 commit comments

Comments
 (0)