aboutsummaryrefslogtreecommitdiff
path: root/scripts/readmanifest.pm.in
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-03-18 09:43:25 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-03-18 09:43:25 +0000
commit7272c3f8178b6509e6d949b1e7538bbde49de58a (patch)
tree52d568184507669e5579e115c0601734ffd4278d /scripts/readmanifest.pm.in
parent67eff20906899e315a6fbbaab02f18326ac5afb8 (diff)
* Ignore hash conflicts in gc-releases.pl.
Diffstat (limited to 'scripts/readmanifest.pm.in')
-rw-r--r--scripts/readmanifest.pm.in11
1 files changed, 8 insertions, 3 deletions
diff --git a/scripts/readmanifest.pm.in b/scripts/readmanifest.pm.in
index 5066cdde1..f71a2f081 100644
--- a/scripts/readmanifest.pm.in
+++ b/scripts/readmanifest.pm.in
@@ -5,6 +5,7 @@ sub addPatch {
my $patches = shift;
my $storePath = shift;
my $patch = shift;
+ my $allowConflicts = shift;
$$patches{$storePath} = []
unless defined $$patches{$storePath};
@@ -18,7 +19,8 @@ sub addPatch {
$found = 1 if ($patch2->{basePath} eq $patch->{basePath});
} else {
die "conflicting hashes for URL $patch->{url}, " .
- "namely $patch2->{hash} and $patch->{hash}";
+ "namely $patch2->{hash} and $patch->{hash}"
+ unless $allowConflicts;
}
}
}
@@ -34,6 +36,8 @@ sub readManifest {
my $narFiles = shift;
my $patches = shift;
my $successors = shift;
+ my $allowConflicts = shift;
+ $allowConflicts = 0 unless defined $allowConflicts;
open MANIFEST, "<$manifest"
or die "cannot open `$manifest': $!";
@@ -100,7 +104,8 @@ sub readManifest {
$found = 1;
} else {
die "conflicting hashes for URL $url, " .
- "namely $narFile->{hash} and $hash";
+ "namely $narFile->{hash} and $hash"
+ unless $allowConflicts;
}
}
}
@@ -124,7 +129,7 @@ sub readManifest {
, basePath => $basePath, baseHash => $baseHash
, narHash => $narHash, patchType => $patchType
, hashAlgo => $hashAlgo
- };
+ }, $allowConflicts;
}
}