summaryrefslogtreecommitdiff
path: root/Master/tlpkg/archive/tlpdb2container
blob: e40473b68d454c3d44e2a62e3822c1749e80dfce (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
#!/usr/bin/env perl
# $Id: tlpdb2container 5188 2007-10-14 20:32:44Z karl $
# Copyright 2007 Norbert Preining
# This file is licensed under the GNU General Public License version 2
# or any later version.
# 
# Generate a zip file for the packages specified on the cmdline, or
# for -all

BEGIN {
  $^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;

my $opt_all = 0;
our $mydir;
my $opt_outputdir = "./archive";
my $opt_relative = 0;
my $help = 0;

TeXLive::TLUtils::process_logging_options();

GetOptions("o|outputdir=s"	=> \$opt_outputdir, 
           "a|all!"         => \$opt_all, 
           "r|relative!"    => \$opt_relative,
           "h|help|?"       => \$help) or pod2usage(1);

pod2usage(-exitstatus => 0, -verbose => 2) if $help;

my $srcsplit = 0;
my $docsplit = 0;
my $type = "lzma";

exit (&main ());

sub main
{
  # get the db.
  chomp (my $Master = `cd $mydir/../.. && pwd`);  # xx TLPDB should default
  my $tlpdb = TeXLive::TLPDB->new ("root" => "$Master");
  die("Cannot find tlpdb in $Master!\n") unless defined($tlpdb);
  my @packs;
  if ($opt_all) {
    @packs = $tlpdb->list_packages;
  } else {
    @packs = @ARGV;
  }
  # get configuration of package splitting
  $srcsplit = $tlpdb->config_src_container;
  $docsplit = $tlpdb->config_doc_container;
  my $format = $tlpdb->config_container_format;
  if (($format eq "lzma") || ($format eq "zip")) {
    $type = $format;
  } else {
    info("unknown container format specified in 00texlive.config: $format\nIgnoring and continuing with $type!\n");
  }
  # get list of packages.
  my $last = "";
  my $src_count = 0;
  for my $pkg (sort @packs) {
    next if ($pkg eq "00texlive.config");
    next if ($pkg eq "00texlive.installer");
    if ($opt_all) {
      my $first = lc (substr ($pkg, 0, 1));
      if ($first ne $last) {
        print STDERR "$first ";
        $last = $first;
      }
    }
    my $obj = $tlpdb->get_package ($pkg);
    die "$0: no TeX Live package named $pkg in $Master.\n" if ! $obj;
    if ($srcsplit) {
      my $objsrc = $obj->srcfiles_package;
      if ($objsrc) {
        $objsrc->make_container($type,$Master,$opt_outputdir,"$pkg.source",$opt_relative);
        $src_count++;
      }
    }
    if ($docsplit) {
      my $objdoc = $obj->docfiles_package;
      if ($objdoc) {
        $objdoc->make_container($type,$Master,$opt_outputdir,"$pkg.doc",$opt_relative);
        $src_count++;
      }
    }
    $obj->make_container($type,$Master,$opt_outputdir,$pkg,$opt_relative);
    $src_count++;
  }
}



__END__

=head1 NAME

tlpdb2container - generate container files (zip,tar.lzma) of a package

=head1 SYNOPSIS

tlpdb2container [OPTION]... 

=head1 OPTIONS

=over 4

=item B<-all>
build container file for all packages present in the tlpdb.

=item B<-outputdir> I<outputdir>
The location where created container files are placed, defaults to ./zip.

=item B<-relative>
Create a relative package, see TeXLive::TLPOBJ.1 for details.

=back

The standard options C<-help> and C<-debug> are also accepted.
See the tlpfiles documentation for details.

Note that the format of the containers and the splitting off of source
and documentation files are controlled by the TLPDB options saved in the
pseudo package C<00texlive.config>. Please see the documentation for TLPDB
for details.


=head1 DESCRIPTION

To distribute packages over the network and on installation media the 
packages are wrapped into container files. These container are either 
simple zip files or tar.lzma file containing all the files of the package.

B<tlpdb2container> generates container files from a TeX Live Database and the
respective installation.

=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: #