2008-12-11 19:27:50 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# Parses list of remotes in doc/git.mdwn, configures git to use them
|
|
|
|
# all, and fetches updates from them.
|
|
|
|
|
|
|
|
my $error=0;
|
|
|
|
|
|
|
|
open (IN, "doc/git.mdwn") || die "doc/git.mdwn: $!";
|
|
|
|
while (<IN>) {
|
2009-05-21 20:35:04 +02:00
|
|
|
if (/^\*\s+\[?\[?(\w+)(?:\|\w+)?\]?\]?\s+`([^>]+)`/) {
|
2008-12-11 19:27:50 +01:00
|
|
|
# note that the remote name has to be a simple word (\w)
|
|
|
|
# for security/sanity reasons
|
|
|
|
my $remote=$1;
|
|
|
|
my $url=$2;
|
|
|
|
|
|
|
|
# check configured url to deal with it changing
|
|
|
|
my $info=`git remote show -n $remote`;
|
|
|
|
my ($oldurl)=$info=~/URL: (.*)/m;
|
2009-08-28 03:51:06 +02:00
|
|
|
my $r;
|
2008-12-11 19:27:50 +01:00
|
|
|
if ($oldurl ne $url) {
|
|
|
|
system("git remote rm $remote 2>/dev/null");
|
2009-08-28 03:51:06 +02:00
|
|
|
$r = system("git", "remote", "add", "-f", $remote, $url)
|
2008-12-11 19:27:50 +01:00
|
|
|
}
|
|
|
|
else {
|
2009-08-28 03:51:06 +02:00
|
|
|
$r = system("git", "fetch", "--no-tag", $remote);
|
2008-12-11 19:27:50 +01:00
|
|
|
}
|
2009-08-28 03:51:06 +02:00
|
|
|
|
|
|
|
if ($r != 0) {
|
|
|
|
print "$remote failed\n";
|
|
|
|
}
|
|
|
|
$error |= $r;
|
2008-12-11 19:27:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
close IN;
|
|
|
|
|
|
|
|
exit $error;
|