about summary refs log tree commit diff
path: root/scripts/nix-generate-patches.in
blob: 969af916d8e61bcca1af0047a1ea37657c1a044f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! @perl@ -w @perlFlags@

use strict;
use File::Temp qw(tempdir);
use Nix::Manifest;
use Nix::GeneratePatches;

if (scalar @ARGV != 5) {
    print STDERR <<EOF;
Usage: nix-generate-patches NAR-DIR PATCH-DIR PATCH-URI OLD-MANIFEST NEW-MANIFEST

This command generates binary patches between NAR files listed in
OLD-MANIFEST and NEW-MANIFEST.  The patches are written to the
directory PATCH-DIR, and the prefix PATCH-URI is used to generate URIs
for the patches.  The patches are added to NEW-MANIFEST.  All NARs are
required to exist in NAR-DIR.  Patches are generated between
succeeding versions of packages with the same name.
EOF
    exit 1;
}

my $narPath = $ARGV[0];
my $patchesPath = $ARGV[1];
my $patchesURL = $ARGV[2];
my $srcManifest = $ARGV[3];
my $dstManifest = $ARGV[4];

my (%srcNarFiles, %srcLocalPaths, %srcPatches);
readManifest $srcManifest, \%srcNarFiles, \%srcPatches;

my (%dstNarFiles, %dstLocalPaths, %dstPatches);
readManifest $dstManifest, \%dstNarFiles, \%dstPatches;

my $tmpDir = tempdir("nix-generate-patches.XXXXXX", CLEANUP => 1, TMPDIR => 1)
    or die "cannot create a temporary directory";

generatePatches \%srcNarFiles, \%dstNarFiles, \%srcPatches, \%dstPatches,
    $narPath, $patchesPath, $patchesURL, $tmpDir;

propagatePatches \%srcPatches, \%dstNarFiles, \%dstPatches;

# Optionally add all new patches to the manifest in $NIX_ALL_PATCHES.
my $allPatchesFile = $ENV{"NIX_ALL_PATCHES"};
if (defined $allPatchesFile) {
    my (%dummy, %allPatches);
    readManifest("$patchesPath/all-patches", \%dummy, \%allPatches)
        if -f $allPatchesFile;
    copyPatches \%dstPatches, \%allPatches;
    writeManifest($allPatchesFile, {}, \%allPatches, 0);
}

writeManifest $dstManifest, \%dstNarFiles, \%dstPatches;