ExtUtils::Packlist



ExtUtils::Packlist

NAME
SYNOPSIS
DESCRIPTION
USAGE
FUNCTIONS
EXAMPLE
AUTHOR
POD ERRORS

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 .packlist files. Functions are provided to read and write .packlist 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 .packlist. 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 .packlist to be read. If no file is specified, the .packlist 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 .packlist to be written. If no file is specified, the .packlist 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 missing 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();
    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>

POD ERRORS

Hey! The above document had some coding errors, which are explained below:
Around line 39:

=back without =over






Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.