summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin/tl-fix-container-infos
blob: cd2e03778fbe51e2bf6bf80e25d144aec1ee62af (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#!/usr/bin/env perl
# Copyright 2008, 2009 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
# 
# Updates/fixes the sizes and md5sums of all containers in a tlpdb.

BEGIN {
  $vc_id = '$Id$';
  $^W = 1;
  ($mydir = $0) =~ s,/[^/]*$,,;
  unshift (@INC, "$mydir/..");
}

use strict;
use TeXLive::TLConfig;
use TeXLive::TLPOBJ;
use TeXLive::TLPDB;
use TeXLive::TLUtils;
use Getopt::Long;
use Pod::Usage;
use File::Path;

our ($mydir, $vc_id);
my $opt_location = ".";
my $opt_nosetup = 0;
my $opt_version = 0;
my $opt_help = 0;

TeXLive::TLUtils::process_logging_options();
GetOptions(
  "location=s"  => \$opt_location, 
  "no-setup"    => \$opt_nosetup,
  "version"	=> \$opt_version,
  "help|?"      => \$opt_help) or pod2usage(1);

pod2usage("-exitstatus" => 0, "-verbose" => 2) if $opt_help;
if ($opt_version) { print "$vc_id\n"; exit 0; } 

exit (&main());


sub main {
  chomp(my $Master = `cd $mydir/../.. && pwd`);

  # check that we have a target db.
  if (! -r "$opt_location/tlpkg/texlive.tlpdb") {
    die "$0: Cannot load tlpdb from output directory $opt_location"
  }

  # get source db, same hierarchy from which we are being run.
  my $tlpdb = TeXLive::TLPDB->new("root" => $opt_location);
  die "cannot find tlpdb in $opt_location" unless defined($tlpdb);
  my @packs = $tlpdb->list_packages;

  # get configuration of package splitting
  my $srcsplit = $tlpdb->config_src_container;
  my $docsplit = $tlpdb->config_doc_container;
  my $format = $tlpdb->config_container_format;

  my $opt_containerdir = "$opt_location/$TeXLive::TLConfig::Archive";

  # set up the programs.
  if ($opt_nosetup) {
    # do a minimal setup
    $::progs{'xz'} = "xz";
    $::progs{'tar'} = "tar";
  } else {
    # do a full setup
    my $ret = &TeXLive::TLUtils::setup_programs("$Master/tlpkg/installer");
    if ($ret == -1) {
      tlwarn("$0: no xzdec for $::_platform_, aborting.\n");
      exit 1;
    }
    if (!$ret) {
      tlwarn("$0: binaries could not be set up, aborting.\n");
      exit 1;
    }
  }

  # get list of packages.
  PACKS: for my $pkg (sort $tlpdb->list_packages) {
    next if $pkg =~ /00texlive/;
    my $obj = $tlpdb->get_package ($pkg);
    die "no package $pkg in master $Master, goodbye"
      if ! $obj;

    #debug("updating $pkg containers ...\n");
    info("updating $pkg containers ...\n");
    $obj = do_containers($obj, $srcsplit, $docsplit);
    # replace with the new one where md5sum and size is changed
    $tlpdb->add_tlpobj($obj);
  }
  $tlpdb->save;
  system("xz --force -k -z $opt_location/tlpkg/texlive.tlpdb");

  return 0;
}


sub do_containers {
  my ($obj, $dosrc, $dodoc) = @_;
  my $fbase = "$opt_location/archive/" . $obj->name;
  my ($a, $b) = do_size_md ("${fbase}.tar.xz");
  $obj->containersize($a);
  $obj->containermd5($b);
  if ($dosrc && $obj->srcfiles) {
    ($a, $b) = do_size_md ("${fbase}.source.tar.xz");
    $obj->srccontainersize($a);
    $obj->srccontainermd5($b);
  }
  if ($dodoc && $obj->docfiles) {
    ($a, $b) = do_size_md ("${fbase}.doc.tar.xz");
    $obj->doccontainersize($a);
    $obj->doccontainermd5($b);
  }
  return($obj);
}

sub do_size_md {
  my $f = shift;
  my $size = (stat $f)[7];
  my $md = TeXLive::TLUtils::tlmd5($f);
  return($size, $md);
}

__END__

=head1 NAME

tl-fix-container-infos - updates/adds size and md5 info for the containers

=head1 SYNOPSIS

tl-fix-container-infos [I<option>]...

=head1 OPTIONS

=over 4

=item B<-location> I</container/dir>

The directory of containers to be updated, usually with a previous set
of containers to be compared against; default is C<.>.

=item B<-no-setup>

Does not try to setup the various programs, but uses I<xz> and I<tar>
from the current path.

=item B<--help>

Display this documentation and exit.

=item B<--version>

Display version information and exit.

=back

The standard options B<-q>, B<-v>, and B<-logfile>=I<file> are also
accepted; see the C<process_logging_options> function in
L<TeXLive::TLUtils> for details.

The format of the containers and the splitting of source and
documentation files are controlled by the TLPDB options in the
pseudo-package C<00texlive.config>.  See L<TeXLive::TLPDB>.


=head1 DESCRIPTION

This program adds (or updates) {,src,doc}container{size,md5} entries for
all packages found in the location given by C<--location> (default C<.>).

=head1 AUTHORS AND COPYRIGHT

This script and its documentation were written for the TeX Live
distribution (L<http://tug.org/texlive>) and both are licensed under the
GNU General Public License Version 2 or later.

=cut

### Local Variables:
### perl-indent-level: 2
### tab-width: 2
### indent-tabs-mode: nil
### End:
# vim:set tabstop=2 expandtab: #