ExtUtils::Packlist man page on MirBSD

Man page or keyword search:  
man Server   6113 pages
apropos Keyword Search (all sections)
Output format
MirBSD logo
[printable version]



ExtUtils::PacklisPerl)Programmers ReferenceExtUtils::Packlist(3p)

NAME
     ExtUtils::Packlist - manage .packlist files

SYNOPSIS
	use ExtUtils::Packlist;
	my ($pl) = ExtUtils::Packlist->new('.packlist');
	$pl->read('/an/old/.packlist');
	my @missing_files = $pl->validate();
	$pl->write('/a/new/.packlist');

	$pl->{'/some/file/name'}++;
	   or
	$pl->{'/some/other/file/name'} = { type => 'file',
					   from => '/some/file' };

DESCRIPTION
     ExtUtils::Packlist provides a standard way to manage .pack-
     list files. Functions are provided to read and write .pack-
     list files.  The original .packlist format is a simple list
     of absolute pathnames, one per line.  In addition, this
     package supports an extended format, where as well as a
     filename each line may contain a list of attributes in the
     form of a space separated list of key=value pairs.	 This is
     used by the installperl script to differentiate between
     files and links, for example.

USAGE
     The hash reference returned by the new() function can be
     used to examine and modify the contents of the .packlist.
     Items may be added/deleted from the .packlist by modifying
     the hash.	If the value associated with a hash key is a
     scalar, the entry written to the .packlist by any subsequent
     write() will be a simple filename.	 If the value is a hash,
     the entry written will be the filename followed by the
     key=value pairs from the hash.  Reading back the .packlist
     will recreate the original entries.

FUNCTIONS
     new()
	 This takes an optional parameter, the name of a .pack-
	 list.	If the file exists, it will be opened and the
	 contents of the file will be read.  The new() method
	 returns a reference to a hash.	 This hash holds an entry
	 for each line in the .packlist.  In the case of old-
	 style .packlists, the value associated with each key is
	 undef.	 In the case of new-style .packlists, the value
	 associated with each key is a hash containing the
	 key=value pairs following the filename in the .packlist.

     read()
	 This takes an optional parameter, the name of the .pack-
	 list to be read.  If no file is specified, the .packlist

perl v5.8.8		   2005-02-05				1

ExtUtils::PacklisPerl)Programmers ReferenceExtUtils::Packlist(3p)

	 specified to new() will be read.  If the .packlist does
	 not exist, Carp::croak will be called.

     write()
	 This takes an optional parameter, the name of the .pack-
	 list to be written.  If no file is specified, the .pack-
	 list specified to new() will be overwritten.

     validate()
	 This checks that every file listed in the .packlist
	 actually exists.  If an argument which evaluates to true
	 is given, any missing files will be removed from the
	 internal hash.	 The return value is a list of the miss-
	 ing files, which will be empty if they all exist.

     packlist_file()
	 This returns the name of the associated .packlist file

EXAMPLE
     Here's "modrm", a little utility to cleanly remove an
     installed module.

	 #!/usr/local/bin/perl -w

	 use strict;
	 use IO::Dir;
	 use ExtUtils::Packlist;
	 use ExtUtils::Installed;

	 sub emptydir($) {
	     my ($dir) = @_;
	     my $dh = IO::Dir->new($dir) || return(0);
	     my @count = $dh->read();
	     $dh->close();
	     return(@count == 2 ? 1 : 0);
	 }

	 # Find all the installed packages
	 print("Finding all installed modules...\n");
	 my $installed = ExtUtils::Installed->new();

perl v5.8.8		   2005-02-05				2

ExtUtils::PacklisPerl)Programmers ReferenceExtUtils::Packlist(3p)

	 foreach my $module (grep(!/^Perl$/, $installed->modules())) {
	    my $version = $installed->version($module) || "???";
	    print("Found module $module Version $version\n");
	    print("Do you want to delete $module? [n] ");
	    my $r = <STDIN>; chomp($r);
	    if ($r && $r =~ /^y/i) {
	       # Remove all the files
	       foreach my $file (sort($installed->files($module))) {
		  print("rm $file\n");
		  unlink($file);
	       }
	       my $pf = $installed->packlist($module)->packlist_file();
	       print("rm $pf\n");
	       unlink($pf);
	       foreach my $dir (sort($installed->directory_tree($module))) {
		  if (emptydir($dir)) {
		     print("rmdir $dir\n");
		     rmdir($dir);
		  }
	       }
	    }
	 }

AUTHOR
     Alan Burlison <Alan.Burlison@uk.sun.com>

perl v5.8.8		   2005-02-05				3

[top]

List of man pages available for MirBSD

Copyright (c) for man pages and the logo by the respective OS vendor.

For those who want to learn more, the polarhome community provides shell access and support.

[legal] [privacy] [GNU] [policy] [cookies] [netiquette] [sponsors] [FAQ]
Tweet
Polarhome, production since 1999.
Member of Polarhome portal.
Based on Fawad Halim's script.
....................................................................
Vote for polarhome
Free Shell Accounts :: the biggest list on the net