2004-03-15 15:23:53 +00:00
|
|
|
#! @perl@ -w -I@libexecdir@/nix
|
2003-07-10 13:41:28 +00:00
|
|
|
|
2003-08-15 10:13:41 +00:00
|
|
|
use strict;
|
2003-10-16 16:29:57 +00:00
|
|
|
use POSIX qw(tmpnam);
|
2003-12-05 11:25:38 +00:00
|
|
|
use readmanifest;
|
2003-08-15 09:39:33 +00:00
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
my $tmpdir;
|
|
|
|
do { $tmpdir = tmpnam(); }
|
|
|
|
until mkdir $tmpdir, 0777;
|
|
|
|
|
|
|
|
my $manifest = "$tmpdir/manifest";
|
2003-07-10 15:11:48 +00:00
|
|
|
|
2004-12-20 16:38:50 +00:00
|
|
|
END { unlink $manifest; rmdir $tmpdir; }
|
2003-10-16 16:29:57 +00:00
|
|
|
|
2005-01-25 17:08:52 +00:00
|
|
|
my $binDir = $ENV{"NIX_BIN_DIR"};
|
|
|
|
$binDir = "@bindir@" unless defined $binDir;
|
|
|
|
|
|
|
|
my $libexecDir = $ENV{"NIX_LIBEXEC_DIR"};
|
|
|
|
$libexecDir = "@libexecdir@" unless defined $libexecDir;
|
|
|
|
|
2005-02-01 17:50:48 +00:00
|
|
|
my $stateDir = $ENV{"NIX_STATE_DIR"};
|
|
|
|
$stateDir = "@localstatedir@/nix" unless defined $stateDir;
|
2005-01-25 17:08:52 +00:00
|
|
|
|
2003-07-10 15:24:50 +00:00
|
|
|
|
2005-02-08 13:00:39 +00:00
|
|
|
# Prevent access problems in shared-stored installations.
|
|
|
|
umask 0022;
|
|
|
|
|
|
|
|
|
2003-12-05 11:25:38 +00:00
|
|
|
# Obtain URLs either from the command line or from a configuration file.
|
2004-12-16 15:31:50 +00:00
|
|
|
my %narFiles;
|
|
|
|
my %patches;
|
2003-12-05 11:25:38 +00:00
|
|
|
my %successors;
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
sub processURL {
|
2003-11-24 11:11:40 +00:00
|
|
|
my $url = shift;
|
2004-12-13 13:47:38 +00:00
|
|
|
|
|
|
|
$url =~ s/\/$//;
|
|
|
|
print "obtaining list of Nix archives at $url...\n";
|
|
|
|
|
|
|
|
system("@curl@ --fail --silent --show-error --location --max-redirs 20 " .
|
|
|
|
"'$url' > '$manifest'") == 0
|
|
|
|
or die "curl failed: $?";
|
2004-12-20 16:38:50 +00:00
|
|
|
|
2005-02-25 16:12:52 +00:00
|
|
|
if (readManifest($manifest, \%narFiles, \%patches, \%successors) < 3) {
|
|
|
|
die "manifest `$url' is too old (i.e., for Nix <= 0.7)\n";
|
|
|
|
}
|
2004-12-20 16:38:50 +00:00
|
|
|
|
|
|
|
my $baseName = "unnamed";
|
|
|
|
if ($url =~ /\/([^\/]+)\/[^\/]+$/) { # get the forelast component
|
|
|
|
$baseName = $1;
|
|
|
|
}
|
|
|
|
|
2005-01-25 17:08:52 +00:00
|
|
|
my $hash = `$binDir/nix-hash --flat '$manifest'`
|
2004-12-20 16:38:50 +00:00
|
|
|
or die "cannot hash `$manifest'";
|
|
|
|
chomp $hash;
|
|
|
|
|
2005-02-01 17:50:48 +00:00
|
|
|
my $finalPath = "$stateDir/manifests/$baseName-$hash.nixmanifest";
|
2004-12-20 16:38:50 +00:00
|
|
|
|
2005-02-08 11:40:19 +00:00
|
|
|
system("mv -f '$manifest' '$finalPath'") == 0
|
2004-12-20 16:38:50 +00:00
|
|
|
or die "cannot move `$manifest' to `$finalPath";
|
2003-11-24 11:11:40 +00:00
|
|
|
}
|
2004-12-13 13:47:38 +00:00
|
|
|
|
2004-12-16 14:31:49 +00:00
|
|
|
while (@ARGV) {
|
|
|
|
my $url = shift @ARGV;
|
|
|
|
processURL $url;
|
2003-07-10 15:11:48 +00:00
|
|
|
}
|
2003-07-10 15:24:50 +00:00
|
|
|
|
2003-12-05 11:25:38 +00:00
|
|
|
|
2004-12-16 15:31:50 +00:00
|
|
|
my $size = scalar (keys %narFiles);
|
2004-06-21 09:51:23 +00:00
|
|
|
print "$size store paths in manifest\n";
|
2003-12-05 11:25:38 +00:00
|
|
|
|
2003-08-05 11:14:24 +00:00
|
|
|
|
|
|
|
# Register all substitutes.
|
|
|
|
print STDERR "registering substitutes...\n";
|
2004-06-21 09:51:23 +00:00
|
|
|
|
2005-09-21 17:06:06 +00:00
|
|
|
my $pid = open(WRITE, "|$binDir/nix-store --register-substitutes")
|
2004-06-21 09:51:23 +00:00
|
|
|
or die "cannot run nix-store";
|
|
|
|
|
2004-12-16 15:31:50 +00:00
|
|
|
foreach my $storePath (keys %narFiles) {
|
|
|
|
my $narFileList = $narFiles{$storePath};
|
|
|
|
foreach my $narFile (@{$narFileList}) {
|
|
|
|
print WRITE "$storePath\n";
|
2005-02-09 12:57:13 +00:00
|
|
|
print WRITE "$narFile->{deriver}\n";
|
2005-01-25 17:08:52 +00:00
|
|
|
print WRITE "$libexecDir/nix/download-using-manifests.pl\n";
|
2004-12-20 16:38:50 +00:00
|
|
|
print WRITE "0\n";
|
2005-01-25 17:08:52 +00:00
|
|
|
my @references = split " ", $narFile->{references};
|
|
|
|
my $count = scalar @references;
|
|
|
|
print WRITE "$count\n";
|
|
|
|
foreach my $reference (@references) {
|
|
|
|
print WRITE "$reference\n";
|
|
|
|
}
|
2004-12-16 15:31:50 +00:00
|
|
|
}
|
2003-12-04 14:38:31 +00:00
|
|
|
}
|
2003-07-10 20:13:32 +00:00
|
|
|
|
2005-09-21 17:06:06 +00:00
|
|
|
close WRITE or die "nix-store failed: $?";
|