Lines Matching refs:packlist

85 Carp::croak("No packlist filename specified") if (! defined($packfile));
124 Carp::croak("No packlist filename specified") if (! defined($packfile));
172 ExtUtils::Packlist - manage .packlist files
177 my ($pl) = ExtUtils::Packlist->new('.packlist');
178 $pl->read('/an/old/.packlist');
180 $pl->write('/a/new/.packlist');
189 ExtUtils::Packlist provides a standard way to manage .packlist files.
190 Functions are provided to read and write .packlist files. The original
191 .packlist format is a simple list of absolute pathnames, one per line. In
200 modify the contents of the .packlist. Items may be added/deleted from the
201 .packlist by modifying the hash. If the value associated with a hash key is a
202 scalar, the entry written to the .packlist by any subsequent write() will be a
205 .packlist will recreate the original entries.
213 This takes an optional parameter, the name of a .packlist. If the file exists,
216 .packlist. In the case of old-style .packlists, the value associated with each
219 .packlist.
223 This takes an optional parameter, the name of the .packlist to be read. If
224 no file is specified, the .packlist specified to new() will be read. If the
225 .packlist does not exist, Carp::croak will be called.
229 This takes an optional parameter, the name of the .packlist to be written. If
230 no file is specified, the .packlist specified to new() will be overwritten.
234 This checks that every file listed in the .packlist actually exists. If an
241 This returns the name of the associated .packlist file
279 my $pf = $installed->packlist($module)->packlist_file();