home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _54dd65488dd7a692ee3e633ccbc753b6 < prev    next >
Text File  |  2000-03-15  |  54KB  |  1,505 lines

  1. #!/usr/bin/perl
  2.  
  3. use Getopt::Long;
  4. use File::Basename;
  5. use Config;
  6. use strict;
  7.  
  8. use PPM;
  9.  
  10. $PPM::VERSION = "1.1.3";
  11.  
  12. my $usage = <<'EOT';
  13.     usage: ppm genconfig
  14.            ppm help [command]
  15.            ppm install [--location=location] package1 [... packageN]
  16.            ppm query [--case|nocase] [--searchtag=abstract|author|title] PATTERN
  17.            ppm remove package1 [... packageN]
  18.            ppm search [--case|nocase] [--location=location] [--searchtag=abstract|author|title] PATTERN
  19.            ppm set [option]
  20.            ppm verify [--location=location] [--upgrade] [--force] [package1 ... packageN]
  21.            ppm version
  22.            ppm [--location=location]
  23.  
  24. EOT
  25.  
  26. my %help;
  27.  
  28. $help{'set'} = <<'EOT';
  29.     set
  30.         - Displays current settings.
  31.     set build DIRECTORY
  32.         - Changes the package build directory.
  33.     set case [Yes|No]
  34.         - Set case-sensitive searches.
  35.     set clean [Yes|No]
  36.         - Set removal of temporary files from package's build area
  37.           following successful installation.
  38.     set confirm [Yes|No]
  39.         - Sets confirmation of 'install', 'remove' and 'upgrade'.
  40.     set force_install [Yes|No]
  41.         - Continue installing a package if a dependency cannot be installed.
  42.     set more NUMBER
  43.         - Pause after displaying 'NUMBER' lines.  Specifying '0' turns
  44.           off paging capability.
  45.     set repository /remove NAME
  46.         - Removes the repository 'NAME' from the list of repositories.
  47.     set repository NAME LOCATION
  48.         - Adds a repository to the list of PPD repositories for this session.
  49.           'NAME' is the name by which this repository will be referred;
  50.           'LOCATION' is a URL or directory name.
  51.     set root DIRECTORY
  52.         - Changes install root directory for this session.
  53.     set save
  54.         - Save current options as defaults.
  55.     set trace
  56.         - Tracing level--default is 1, maximum is 4, 0 indicates
  57.           no tracing.
  58.     set tracefile
  59.         - File to contain tracing information, default is 'PPM.LOG'.
  60.     set verbose [Yes|No]
  61.         - Display additional package information for 'query' and
  62.           'search' commands.
  63. EOT
  64.  
  65. # Need to do this here, because the user's config file is probably
  66. # hosed.
  67. if ($#ARGV == 0 && $ARGV[0] eq 'genconfig') {
  68.     &genconfig;
  69.     exit 0;
  70. }
  71.  
  72. my %options = PPM::GetPPMOptions();
  73. use vars qw ($location $Ignorecase $clean $confirm $force_install $root $build_dir $more $trace $tracefile $verbose);
  74. *Ignorecase = \$options{'IGNORECASE'};
  75. *clean = \$options{'CLEAN'};
  76. *confirm = \$options{'CONFIRM'};
  77. *force_install = \$options{'FORCE_INSTALL'};
  78. *root = \$options{'ROOT'};
  79. *build_dir = \$options{'BUILDDIR'};
  80. *more = \$options{'MORE'};
  81. *trace = \$options{'TRACE'};
  82. *tracefile = \$options{'TRACEFILE'};
  83. *verbose = \$options{'VERBOSE'};
  84.  
  85. my $moremsg = "[Press return to continue]";
  86. my $interactive = 0;
  87.  
  88. $help{'help'} = <<'EOT';
  89. Commands:
  90.     exit              - leave the program.
  91.     help [command]    - prints this screen, or help on 'command'.
  92.     install PACKAGES  - installs specified PACKAGES.
  93.     quit              - leave the program.
  94.     query [options]   - query information about installed packages.
  95.     remove PACKAGES   - removes the specified PACKAGES from the system.
  96.     search [options]  - search information about available packages.
  97.     set [options]     - set/display current options.
  98.     verify [options]  - verifies current install is up to date.
  99.  
  100. EOT
  101.  
  102. $help{'search'} = <<'EOT';
  103.     search [PATTERN]
  104.     search /abstract [PATTERN]
  105.     search /author [PATTERN]
  106.     search /title [PATTERN]
  107.     search /location LOCATION [PATTERN]
  108.  
  109.     Searches for available packages.  With no arguments, will display
  110.     a list of all available packages. If a regular expression 'PATTERN'
  111.     is supplied, only packages matching the pattern will be displayed.
  112.     If the '/abstract', '/author' or '/title' argument is specified,
  113.     the respective field of the package will be searched.  If the
  114.     '/location' option is specified, matching packages from that
  115.     URL or directory will be listed.
  116.  
  117. EOT
  118.  
  119. $help{'install'} = <<'EOT';
  120.     install PACKAGE
  121.     install /location LOCATION PACKAGE
  122.  
  123.     Installs the specified 'PACKAGE' onto the system.  If the '/location'
  124.     option is specified, the package will be looked for at that URL
  125.     or directory.
  126.  
  127. EOT
  128.  
  129. $help{'remove'} = <<'EOT';
  130.     remove PACKAGE
  131.  
  132.     Removes the specified 'PACKAGE' from the system.
  133.  
  134. EOT
  135.  
  136. $help{'genconfig'} = <<'EOT';
  137.     genconfig
  138.  
  139.     This command will print a valid PPM config file (ppm.xml) to 
  140.     STDOUT.  This can be useful if the PPM config file ever gets 
  141.     damaged leaving PPM unusable.  If required, this command should 
  142.     be run from a shell prompt:
  143.  
  144.         C:\Perl\site\lib> ppm genconfig > ppm.xml
  145.  
  146. EOT
  147.  
  148. $help{'query'} = <<'EOT';
  149.     query [PATTERN]
  150.     query /abstract [PATTERN]
  151.     query /author [PATTERN]
  152.     query /title [PATTERN]
  153.  
  154.     Queries information about installed packages. With no arguments, will
  155.     display a list of all installed packages. If a regular expression
  156.     'PATTERN' is supplied, only packages matching the pattern will be
  157.     displayed.  If the '/abstract', '/author' or '/title' argument is
  158.     specified, the respective field of the package will be searched.
  159.  
  160. EOT
  161.  
  162. $help{'verify'} = <<'EOT';
  163.     verify [packages]
  164.     verify /upgrade [/force] [packages]
  165.     verify /location LOCATION [packages]
  166.  
  167.     Verifies that the currently installed 'packages' are up to date.
  168.     If 'packages' is not specified, all installed packages are verified.
  169.     If the '/upgrade' option is specified, any packages for which an
  170.     upgrade is available will be upgraded.  If the '/location' option
  171.     is specified, upgrades will be looked for at the specified URL
  172.     or directory.
  173.  
  174. EOT
  175.  
  176. my %repositories = PPM::ListOfRepositories();
  177.  
  178. if ($#ARGV == -1 || ($#ARGV == 0 && $ARGV[0] =~ /^--location/)) {
  179.     my $prompt = 'PPM> ';
  180.     $interactive = 1;
  181.     GetOptions("location=s" => \$location);
  182.  
  183.     print "PPM interactive shell ($PPM::VERSION) - type 'help' for available commands.\n";
  184.     $| = 1;
  185.     while () {
  186.         print $prompt;
  187.         last unless defined ($_ = <> );
  188.         chomp;
  189.         s/^\s+//;
  190.         my @line = split(/\s+/, $_);
  191.         my $cmd = shift @line;
  192.         next if /^$/;
  193.  
  194.         # exit/quit
  195.         if (command($cmd, "qu|it") or command($cmd, "|exit")) {
  196.             print "Quit!\n";
  197.             last;
  198.         }
  199.         # help
  200.         elsif (command($cmd, "|help")) {
  201.             if (defined $line[0] && $help{$line[0]}) {
  202.                 print $help{$line[0]};
  203.             }
  204.             else {
  205.                 print $help{'help'};
  206.             }
  207.         }
  208.         # query
  209.         elsif (command($cmd, "qu|ery")) {
  210.             my $package;
  211.             my %summary = InstalledPackageProperties();
  212.             if (defined $line[0]) {
  213.                 my $searchtag;
  214.                 if ($line[0] =~ /^\/(abstract|author|title)$/i) {
  215.                     $searchtag = uc $1;
  216.                     shift @line;
  217.                 }
  218.                 my $RE = shift @line;
  219.                 eval { $RE =~ /$RE/ };
  220.                 if ($@) {
  221.                     print "'$RE': invalid regular expression.\n";
  222.                     next;
  223.                 }
  224.                 $RE = "(?i)$RE" if $Ignorecase eq "Yes";
  225.                 foreach(keys %summary) {
  226.                     if (defined $searchtag) {
  227.                         delete $summary{$_} unless $summary{$_}{$searchtag} =~ /$RE/;
  228.                     }
  229.                     else {
  230.                         delete $summary{$_} unless /$RE/;
  231.                     }
  232.                 }
  233.             }
  234.             print_formatted(1, %summary);
  235.         }
  236.         # install
  237.         elsif (command($cmd, "in|stall")) {
  238.             my $package;
  239.             local $location = $location;
  240.             if (defined $line[0]) {
  241.                 if ($line[0] =~ /^\/location$/i) {
  242.                     shift @line;
  243.                     $location = shift @line;
  244.                 }
  245.             }
  246.             if (!@line) {
  247.                 print "Package not specified.\n";
  248.                 next;
  249.             }
  250.             foreach $package (@line) {
  251.                 $package =~ s/::/-/g;
  252.                 if ($confirm eq "Yes") {
  253.                     print "Install package \'$package?\' (y/N): ";
  254.                     next if (<> ne "y\n");
  255.                 }
  256.                 print "Retrieving package \'$package\'...\n";
  257.                 if(!InstallPackage("package" => $package, "location" => $location)) {
  258.                     print "Error installing package '$package': $PPM::PPMERR\n";
  259.                 }
  260.             }
  261.         }
  262.         # remove
  263.         elsif (command($cmd, "|remove")) {
  264.             my $package;
  265.             if (!@line) {
  266.                 print "Package not specified.\n";
  267.                 next;
  268.             }
  269.             foreach $package (@line) {
  270.                 if ($confirm eq "Yes") {
  271.                     print "Remove package \'$package?\' (y/N): ";
  272.                     next if (<> ne "y\n");
  273.                 }
  274.                 if (!RemovePackage("package" => $package)) {
  275.                     print "Error removing $package: $PPM::PPMERR\n";
  276.                 }
  277.             }
  278.         }
  279.         # search
  280.         elsif (command($cmd, "se|arch")) {
  281.             my ($package, %summary, $searchtag);
  282.             local $location = $location;
  283.             while (defined $line[0]) {
  284.                 if ($line[0] =~ /^\/(abstract|author|title)$/i) {
  285.                     $searchtag = uc $1;
  286.                     shift @line;
  287.                 }
  288.                 elsif ($line[0] =~ /^\/location$/i) {
  289.                     shift @line;
  290.                     $location = shift @line;
  291.                 }
  292.                 else { last; }
  293.             }
  294.             my $searchRE = $line[0];
  295.             %summary = search_PPDs("location" => $location, "searchtag" => $searchtag, 
  296.                         "searchRE" => $searchRE, "ignorecase" => $Ignorecase);
  297.             foreach (keys %summary) {
  298.                 print "Packages available from $_:\n";
  299.                 print_formatted(2, %{$summary{$_}});
  300.             }
  301.         }
  302.         # set
  303.         elsif (command($cmd, "se|t")) {
  304.             set(@line);
  305.         }
  306.         # verify
  307.         elsif (command($cmd, "|verify")) {
  308.             my $upgrade;
  309.         my $force;
  310.             local $location = $location;
  311.             while (defined $line[0]) {
  312.                 if ($line[0] =~ /^\/upgrade$/i) {
  313.                     $upgrade = 1;
  314.                     shift @line;
  315.                     next;
  316.                 }
  317.                 if ($line[0] =~ /^\/force$/i) {
  318.                     $force = 1;
  319.                     shift @line;
  320.                     next;
  321.                 }
  322.                 if ($line[0] =~ /^\/location$/i) {
  323.                     shift @line;
  324.                     $location = shift @line;
  325.                     next;
  326.                 }
  327.                 last;
  328.             }
  329.             if ($upgrade && $confirm eq "Yes") {
  330.                 print "Upgrade package" . ($#line == 0 ? " $line[0]" : "s") . "? (y/N): ";
  331.                 next if (<> ne "y\n");
  332.             }
  333.             verify_packages("packages" => \@line, "location" => $location, "upgrade" => $upgrade, "force" => $force);
  334.         }
  335.         else {
  336.             print "Unknown or ambiguous command '$cmd'; type 'help' for commands.\n";
  337.         }
  338.     }
  339. }
  340. elsif ($ARGV[0] eq 'help') {
  341. $help{'install'} = <<'EOT';
  342.     install [--location=location] PACKAGE
  343.  
  344.     Installs the specified 'PACKAGE' onto the system.  If 'location' is
  345.     not specified, the default locations in the PPM data file will be
  346.     used to locate the package.
  347.  
  348. EOT
  349.  
  350. $help{'search'} = <<'EOT';
  351.     search [--case|nocase] [--location=location] [PATTERN]
  352.     search [--case|nocase] [--location=location] --searchtag=abstract [PATTERN]
  353.     search [--case|nocase] [--location=location] --searchtag=author [PATTERN]
  354.     search [--case|nocase] [--location=location] --searchtag=title [PATTERN]
  355.  
  356.     Searches for available packages.  With no arguments, will display
  357.     a list of all available packages. If a regular expression 'PATTERN'
  358.     is supplied, only packages matching the pattern will be displayed.
  359.     If the 'abstract', 'author' or 'title' --searchtag argument is
  360.     specified, the respective field of the package will be searched.
  361.     If 'location' is not specified, the repository locations in the PPM
  362.     data file will be searched.  '--case' or '--nocase' may be used to
  363.     request case-sensitive or case-insensitive searches, respectively.
  364.  
  365. EOT
  366.  
  367. $help{'query'} = <<'EOT';
  368.     query [PATTERN]
  369.     query [--case|nocase] --searchtag=abstract [PATTERN]
  370.     query [--case|nocase] --searchtag=author [PATTERN]
  371.     query [--case|nocase] --searchtag=title [PATTERN]
  372.  
  373.     Queries information about installed packages. With no arguments, will
  374.     display a list of all installed packages. If a regular expression
  375.     'PATTERN' is supplied, only packages matching the pattern will
  376.     be displayed.  If the 'abstract', 'author' or 'title' --searchtag
  377.     argument is specified, the respective field of the package will
  378.     be searched.  '--case' or '--nocase' may be used to request
  379.     case-sensitive or case-insensitive searches, respectively.
  380.  
  381. EOT
  382.  
  383. $help{'verify'} = <<'EOT';
  384.     verify [--location=location] [packages]
  385.     verify --upgrade [--force] [--location=location] [packages]
  386.  
  387.     Verifies that the currently installed 'packages' are up to date.
  388.     If 'packages' is not specified, all installed packages are verified.
  389.     If the '--upgrade' option is specified, any packages for which
  390.     an upgrade is available will be upgraded.  If 'location' is not
  391.     specified, the repository locations in the PPM data file will be
  392.     searched. If the '--force' option is specified packages will be 
  393.     reinstalled regardless of whether they are out of date or not.
  394.  
  395. EOT
  396.  
  397.     shift;
  398.     if (defined $ARGV[0] && $help{$ARGV[0]}) {
  399.         print $help{$ARGV[0]};
  400.     }
  401.     else {
  402.         print $usage;
  403.     }
  404. }
  405. elsif ($ARGV[0] eq 'version') {
  406.     print $PPM::VERSION;
  407. }
  408. elsif ($ARGV[0] eq 'set') {
  409.     shift;
  410.     if (set(@ARGV) == 0) {
  411.         PPM::SetPPMOptions("options" => \%options, "save" => 1);
  412.     }
  413. }
  414. elsif ($ARGV[0] eq 'install') {
  415.     my ($package);
  416.  
  417.     shift;
  418.     GetOptions("location=s" => \$location);
  419.  
  420.     $package = shift;
  421.     if (!defined $package && -d "blib" && -f "Makefile") {
  422.         if(!InstallPackage("location" => $location)) {
  423.             print "Error installing blib: $PPM::PPMERR\n";
  424.         }
  425.     }
  426.     while ($package) {
  427.         $package =~ s/::/-/g;
  428.         if(!InstallPackage("package" => $package, "location" => $location)) {
  429.             print "Error installing package '$package': $PPM::PPMERR\n";
  430.         }
  431.         $package = shift;
  432.     }
  433. }
  434. elsif ($ARGV[0] eq 'remove') {
  435.     shift;
  436.  
  437.     my $package = shift;
  438.  
  439.     while ($package) {
  440.         if (!RemovePackage("package" => $package)) {
  441.             print "Error removing $package: $PPM::PPMERR\n";
  442.         }
  443.         $package = shift;
  444.     }
  445. }
  446. elsif ($ARGV[0] eq 'verify') {
  447.     my ($upgrade, $force, $package, @packages);
  448.  
  449.     shift;
  450.     GetOptions("force" => \$force, "location=s" => \$location, "upgrade" => \$upgrade);
  451.  
  452.     verify_packages("packages" => \@ARGV, "location" => $location, "upgrade" => $upgrade, "force" => $force);
  453. }
  454. elsif ($ARGV[0] eq 'query') {
  455.     my ($case, $nocase, $searchtag, $searchRE, $package);
  456.     shift;
  457.     GetOptions("nocase" => \$nocase, "case" => \$case,
  458.                 "searchtag=s" => \$searchtag );
  459.     $searchRE = shift;
  460.     eval { $searchRE =~ /$searchRE/ };
  461.     if ($@) {
  462.         print "'$searchRE': invalid regular expression.\n";
  463.         exit 1;
  464.     }
  465.     if (!defined $nocase) {
  466.         if (!defined $case) {
  467.             $nocase = $Ignorecase;  # use the default setting
  468.         }
  469.     }
  470.     if (defined $searchtag) {
  471.         if (!$searchtag =~ /^(abstract|author|title)$/i) {
  472.             print $usage;
  473.             exit 1;
  474.         }
  475.         $searchtag = uc $searchtag;
  476.     }
  477.     $searchRE = "(?i)$searchRE" if $nocase eq "Yes";
  478.     my %summary = InstalledPackageProperties();
  479.     foreach(keys %summary) {
  480.         if ($searchtag) {
  481.            delete $summary{$_} unless $summary{$_}{$searchtag} =~ /$searchRE/;
  482.         }
  483.         else {
  484.            delete $summary{$_} unless /$searchRE/;
  485.         }
  486.     }
  487.     print_formatted(1, %summary);
  488. }
  489. elsif ($ARGV[0] eq 'search') {
  490.     my ($case, $nocase, $searchtag, $searchRE, %summary);
  491.     shift;
  492.     GetOptions("nocase" => \$nocase, "case" => \$case,
  493.                 "location=s" => \$location, "searchtag=s" => \$searchtag );
  494.     $searchRE = shift;
  495.     eval { $searchRE =~ /$searchRE/ };
  496.     if ($@) {
  497.         print "'$searchRE': invalid regular expression.\n";
  498.         next;
  499.     }
  500.     if (defined $case) {
  501.         $nocase = "No";
  502.     }
  503.     elsif (defined $nocase) {
  504.         $nocase = "Yes";
  505.     }
  506.     else {
  507.         $nocase = $Ignorecase;
  508.     }
  509.     if (defined $searchtag) {
  510.         if ($searchtag !~ /^(abstract|author|title)$/i) {
  511.             print $usage;
  512.             exit 1;
  513.         }
  514.         $searchtag = uc $searchtag;
  515.     }
  516.     %summary = search_PPDs("location" => $location, "searchtag" => $searchtag, 
  517.                 "searchRE" => $searchRE, "ignorecase" => $nocase);
  518.     foreach (keys %summary) {
  519.         print "Packages available from $_:\n";
  520.         print_formatted(2, %{$summary{$_}});
  521.     }
  522. }
  523. else {
  524.     print $usage;
  525.     exit 1;
  526. }
  527.  
  528. exit 0;
  529.  
  530. sub more
  531. {
  532.     my ($lines) = shift @_;
  533.     if (++$$lines >= $more) {
  534.         print $moremsg;
  535.         $_ = <>;
  536.         $$lines = 1;
  537.     }
  538. }
  539.  
  540. # This nasty piece of business splits $pattern into a required prefix 
  541. # and a "match any of this substring" suffix.  E.g. "in|stall" will
  542. # match a $cmd of "ins", "inst", ..., "install".
  543. sub command
  544. {
  545.     my ($cmd, $pattern) = @_;
  546.     my @pattern = split(/\|/, $pattern);
  547.     my @optchars = split(//, $pattern[1]);
  548.     # build up a "foo(b|ba|bar)" string
  549.     $pattern = "$pattern[0](";
  550.     $pattern[1] = shift @optchars;
  551.     $pattern[1] .= "|$pattern[1]$_" foreach @optchars;
  552.     $pattern .= "$pattern[1])";
  553.     return ($cmd =~ /^${pattern}$/i);
  554. }
  555.  
  556. # This routine prints the output for query and search
  557. # in a nicely formatted way, if $verbose is set.
  558. sub print_formatted
  559. {
  560.     my ($lines, %summary) = @_;
  561.     my $package;
  562.  
  563.     if (!$verbose) {
  564.         foreach $package (sort keys %summary) {
  565.             print "$package\n";
  566.             &more(\$lines) if $more;
  567.         }
  568.         return;
  569.     }
  570.  
  571.     my ($maxname, $maxversion) = (0, 0);
  572.     # find the longest package name and version strings, so we can
  573.     # format them nicely
  574.     $maxname < length($_) and $maxname = length($_) for keys %summary;
  575.     foreach $package (keys %summary) {
  576.         $summary{$package}{'VERSION'} =~ s/(,0)*$//;
  577.         $summary{$package}{'VERSION'} =~ tr/,/./;
  578.         $maxversion = length $summary{$package}{'VERSION'} > $maxversion ? length $summary{$package}{'VERSION'} : $maxversion;
  579.     }
  580.     my $columns = $ENV{COLUMNS} ? $ENV{COLUMNS} : 80;
  581.     my $namefield = "@" . "<" x ($maxname - 1);
  582.     my $versionfield = "@" . "<" x ($maxversion - 1);
  583.     my $abstractfield = "^" . "<" x ($columns - (6 + $maxname + $maxversion));
  584.     my $abstractpad = " " x ($maxname + $maxversion + 3);
  585.  
  586.     foreach $package (sort keys %summary) {
  587.         # Avoid "Format STDOUT redefined..." warning in Perl 5.6
  588.         no warnings;
  589.  
  590.         eval "format STDOUT = \n"
  591.                    . "$namefield [$versionfield] $abstractfield\n"
  592.                    . '$package, $summary{$package}{VERSION}, $summary{$package}{ABSTRACT}'
  593.                    . "\n"
  594.                    . "$abstractpad $abstractfield~~\n"
  595.                    . '$summary{$package}{ABSTRACT}' 
  596.                    . "\n"
  597.                    . ".\n";
  598.  
  599.         my $diff = $-;
  600.         write;
  601.         $diff -= $-;
  602.         $lines += ($diff - 1) if $diff > 1;
  603.         &more(\$lines) if $more;
  604.     }
  605. }
  606.  
  607. sub set
  608. {
  609.     my ($option) = shift @_;
  610.     my $rc = 0;
  611.     if (defined $option) {
  612.         my ($value) = shift @_;
  613.         if (command($option, "r|epository")) {
  614.             if ($value =~ /\/remove/i) {
  615.                 $value = shift @_;
  616.                 while (@_) {
  617.                     $value .= " " . shift @_;
  618.                 }
  619.                 if (!defined $value) {
  620.                     print "Location not specified.\n";
  621.                     $rc = 1;
  622.                 }
  623.                 else {
  624.                     PPM::RemoveRepository("repository" => $value);
  625.                     %repositories = PPM::ListOfRepositories();
  626.                 }
  627.             }
  628.             else {
  629.                 my $location = shift @_;
  630.                 if (!defined $value || !defined $location) {
  631.                     print "Repository not specified.\n";
  632.                     $rc = 1;
  633.                 }
  634.                 else {
  635.                     PPM::AddRepository("repository" => $value,
  636.                                        "location" => $location);
  637.                     %repositories = PPM::ListOfRepositories();
  638.                 }
  639.             }
  640.         }
  641.         else {
  642.             if (command($option, "c|onfirm")) {
  643.                 if (defined $value) {
  644.                     if ($value =~ /^Yes$/) { $confirm = $value; }
  645.                     elsif ($value =~ /^No$/) { $confirm = $value; }
  646.                     else {
  647.                         print "Value must be 'Yes' or 'No'.\n";
  648.                         $rc = 1;
  649.                         return $rc;
  650.                     }
  651.                 }
  652.                 else { $confirm = $confirm eq "Yes" ? "No" : "Yes"; }
  653.                 print "Commands will " . ($confirm eq "Yes" ? "" : "not ") . "be confirmed.\n";
  654.             }
  655.             elsif (command($option, "|save")) {
  656.                 PPM::SetPPMOptions("options" => \%options, "save" => 1);
  657.                 return $rc;
  658.             }
  659.             elsif (command($option, "c|ase")) {
  660.                 if (defined $value) {
  661.                     # N.B. These are reversed.
  662.                     if ($value =~ /^Yes$/) { $Ignorecase = "No"; }
  663.                     elsif ($value =~ /^No$/) { $Ignorecase = "Yes"; }
  664.                     else {
  665.                         print "Value must be 'Yes' or 'No'.\n";
  666.                         $rc = 1;
  667.                         return $rc;
  668.                     }
  669.                 }
  670.                 else { $Ignorecase = $Ignorecase eq "Yes" ? "No" : "Yes"; }
  671.                 print "Case-" . ($Ignorecase eq "Yes" ? "in" : "") . "sensitive searches will be performed.\n";
  672.             }
  673.             elsif (command($option, "r|oot")) {
  674.                 my $old_root;
  675.                 if (!defined $value) {
  676.                     print "Directory not specified.\n";
  677.                     $rc = 1;
  678.                 }
  679.                 elsif(!($old_root = PPM::chroot("location" => $value))) {
  680.                     print "$PPM::PPMERR";
  681.                     $rc = 1;
  682.                 }
  683.                 else {
  684.                     $root = $value;
  685.                     print "Root is now $value [was $old_root].\n";
  686.                 }
  687.             }
  688.             elsif (command($option, "|build")) {
  689.                 if (!defined $value) {
  690.                     print "Directory not specified.\n";
  691.                     $rc = 1;
  692.                 }
  693.                 elsif (-d $value) {
  694.                     $build_dir = $value;
  695.                     print "Build directory is now $value.\n";
  696.                 }
  697.                 else {
  698.                     print "Directory '$value' does not exist.\n";
  699.                     $rc = 1;
  700.                 }
  701.             }
  702.             elsif (command($option, "|force_install")) {
  703.                 if (defined $value) {
  704.                     if ($value =~ /^Yes$/) { $force_install = $value; }
  705.                     elsif ($value =~ /^No$/) { $force_install = $value; }
  706.                     else {
  707.                         print "Value must be 'Yes' or 'No'.\n";
  708.                         $rc = 1;
  709.                         return $rc;
  710.                     }
  711.                 }
  712.                 else { $force_install = $force_install eq "Yes" ? "No" : "Yes"; }
  713.                 print "Package installations will " .
  714.                       ($force_install eq "Yes" ? "" : "not ") .
  715.                       "continue if a dependency cannot be installed.\n";
  716.             }
  717.             elsif (command($option, "c|lean")) {
  718.                 if (defined $value) {
  719.                     if ($value =~ /^Yes$/) { $clean = $value; }
  720.                     elsif ($value =~ /^No$/) { $clean = $value; }
  721.                     else {
  722.                         print "Value must be 'Yes' or 'No'.\n";
  723.                         $rc = 1;
  724.                         return $rc;
  725.                     }
  726.                 }
  727.                 else { $clean = $clean eq "Yes" ? "No" : "Yes"; }
  728.                 print "Temporary files will " . ($clean eq "Yes" ? "" : "not ") . "be deleted.\n";
  729.             }
  730.             elsif (command($option, "|more")) {
  731.                 if (defined $value && $value =~ /^\d+$/) {
  732.                     $more = $value;
  733.                 }
  734.                 else {
  735.                     print "Numeric value must be given.\n";
  736.                     $rc = 1;
  737.                     return $rc;
  738.                 }
  739.                 print "Screens will " . ($more > 0 ? "pause after $more lines.\n" : "not pause.\n");
  740.             }
  741.             elsif (command($option, "trace|file")) {
  742.                 if (!defined $value) {
  743.                     print "Filename not specified.\n";
  744.                     $rc = 1;
  745.                 }
  746.                 $tracefile = $value;
  747.                 print "Tracing info will be written to $tracefile.\n";
  748.             }
  749.             elsif (command($option, "trace")) {
  750.                 if (defined $value && $value =~ /^\d+$/ && $value >= 0 && $value <= 4) {
  751.                     $trace = $value;
  752.                 }
  753.                 else {
  754.                     print "Numeric value between 0 and 4 must be given.\n";
  755.                     $rc = 1;
  756.                     return $rc;
  757.                 }
  758.                 print "Tracing info will " . ($trace > 0 ? "be written to $tracefile.\n" : "not be written.\n");
  759.             }
  760.             elsif (command($option, "|verbose")) {
  761.                 if (defined $value) {
  762.                     if ($value =~ /^(Yes|1)$/i) { $verbose = 1; }
  763.                     elsif ($value =~ /^(No|0)$/i) { $verbose = 0; }
  764.                     else {
  765.                         print "Invalid setting: must be 'Yes/No' or '1/0'.\n";
  766.                         $rc = 1;
  767.                         return $rc;
  768.                     }
  769.                 }
  770.                 else { $verbose = $verbose eq "1" ? "0" : "1"; }
  771.                 print "Query/search results will " . ($verbose ? "" : "not ") . "be verbose.\n";
  772.             }
  773.             else {
  774.                 print "Unknown or ambiguous option '$option'; see 'help set' for available options.\n";
  775.                 $rc = 1;
  776.             }
  777.             if (!$rc) {
  778.                 PPM::SetPPMOptions("options" => \%options);
  779.             }
  780.         }
  781.     }
  782.     else {
  783.         print "Commands will " . ($confirm eq "Yes" ? "" : "not ") . "be confirmed.\n";
  784.         print "Temporary files will " . ($clean eq "Yes" ? "" : "not ") . "be deleted.\n";
  785.         print "Case-" . ($Ignorecase eq "Yes" ? "in" : "") . "sensitive searches will be performed.\n";
  786.         print "Package installations will " . ($force_install eq "Yes" ? "" : "not ") . "continue if a dependency cannot be installed.\n";
  787.         print "Tracing info will " . (($trace && $trace > 0 )? "be written to '$tracefile'.\n" : "not be written.\n");
  788.         print "Screens will " . ($more > 0 ? "pause after $more lines.\n" : "not pause.\n");
  789.         print "Query/search results will " . ($verbose ? "" : "not ") . "be verbose.\n";
  790.         if (defined $location) { print "Current PPD repository: $location\n"; }
  791.         else {
  792.             print "Current PPD repository paths:\n";
  793.             my $location;
  794.             foreach $_ (keys %repositories) {
  795.                 print "\t$_: $repositories{$_}\n";
  796.             }
  797.         }
  798.         if (defined $root) { print "Packages will be installed under: $root\n"; }
  799.         if (defined $build_dir) { print "Packages will be built under: $build_dir\n"; }
  800.     }
  801.     return $rc;
  802. }
  803.  
  804. sub search_PPDs
  805. {
  806.     my (%argv) = @_;
  807.     my (%packages, $arg, $ignorecase, $searchtag, $searchRE);
  808.     local $location = $location;
  809.     foreach $arg (keys %argv) {
  810.         if ($arg eq 'location') { $location = $argv{$arg}; }
  811.         if ($arg eq 'searchtag') { $searchtag = $argv{$arg}; }
  812.         if ($arg eq 'ignorecase') { $ignorecase = $argv{$arg}; }
  813.         if ($arg eq 'searchRE' && defined $argv{$arg}) {
  814.             $searchRE = $argv{$arg};
  815.             eval { $searchRE =~ /$searchRE/ };
  816.             if ($@) {
  817.                 print "'$searchRE': invalid regular expression.\n";
  818.                 return;
  819.             }
  820.             $searchRE = "(?i)$searchRE" if $ignorecase eq "Yes";
  821.         }
  822.     }
  823.     if (!defined $ignorecase) {
  824.         $ignorecase = $Ignorecase;
  825.     }
  826.     my (%ppds, $loc, $package);
  827.     %ppds = PPM::RepositoryPackages("location" => $location);
  828.     foreach $loc (keys %ppds) {
  829.         next if $#{$ppds{$loc}} == -1;
  830.         # see if a summary file is available
  831.         my %summary = RepositorySummary("location" => $loc);
  832.         if (%summary) {
  833.             foreach $package (keys %{$summary{$loc}}) {
  834.                 next if (defined $searchtag && $summary{$loc}{$package}{$searchtag} !~ /$searchRE/);
  835.                 next if (!defined $searchtag && defined $searchRE && $package !~ /$searchRE/);
  836.                 $packages{$loc}{$package} = \%{$summary{$loc}{$package}};
  837.             }
  838.         }
  839.         else {
  840.             # No summary: oh my, nothing but 'Net
  841.             foreach $package (@{$ppds{$loc}}) {
  842.                 my %package_details = RepositoryPackageProperties("package" => $package, "location" => $loc);
  843.                 next unless %package_details;
  844.                 next if (defined $searchtag && $package_details{$searchtag} !~ /$searchRE/);
  845.                 next if (!defined $searchtag && defined $searchRE && $package !~ /$searchRE/);
  846.                 $packages{$loc}{$package} = \%package_details;
  847.             }
  848.         }
  849.     }
  850.     return %packages;
  851. }
  852.  
  853. sub verify_packages
  854. {
  855.     my (%argv) = @_;
  856.     my ($arg, @packages, $upgrade, $force);
  857.     local $location = $location;
  858.     foreach $arg (keys %argv) {
  859.         if ($arg eq 'packages') { @packages = @{$argv{$arg}}; }
  860.         if ($arg eq 'location') { $location = $argv{$arg}; }
  861.         if ($arg eq 'upgrade') { $upgrade = $argv{$arg}; }
  862.         if ($arg eq 'force') { $force = $argv{$arg}; }
  863.     }
  864.     my ($package);
  865.  
  866.     if (!defined $packages[0]) {
  867.         my ($i, %info);
  868.  
  869.         @packages = ();
  870.         %info = QueryInstalledPackages();
  871.         foreach $i (keys %info) {
  872.             push @packages, $i;
  873.         }
  874.     }
  875.  
  876.     $package = shift @packages;
  877.  
  878.     # for each specified package
  879.     while ($package) {
  880.         my $status = VerifyPackage("package" => $package, "location" => $location, "upgrade" => $upgrade, "force" => $force);
  881.         if (defined $status) {
  882.             if ($status eq "0") {
  883.                 print "Package \'$package\' is up to date.\n";
  884.             }
  885.             elsif ($upgrade) {
  886.                 print "Package $package upgraded to version $status\n";
  887.             }
  888.             else {
  889.                 print "An upgrade to package \'$package\' is available.\n";
  890.             }
  891.         }
  892.         else {
  893.             print "Error verifying $package: $PPM::PPMERR\n";
  894.         }
  895.         $package = shift @packages;
  896.     }
  897. }
  898.  
  899. sub genconfig
  900. {
  901. my $PerlDir = $Config{'prefix'};
  902. print <<"EOF";
  903. <PPMCONFIG>
  904.     <PPMVER>1,1,3,0</PPMVER>
  905.     <PLATFORM CPU="x86" OSVALUE="$Config{'osname'}" OSVERSION="0,0,0,0" />
  906.     <OPTIONS BUILDDIR="$ENV{'TEMP'}" CLEAN="Yes" CONFIRM="Yes" FORCEINSTALL="Yes" IGNORECASE="Yes" MORE="0" ROOT="$PerlDir" TRACE="0" TRACEFILE="PPM.LOG" VERBOSE="1" />
  907.     <REPOSITORY LOCATION="soap://www.activestate.com/cgibin/SOAP/ppmserver.plex?class=PPM::SOAPServer" NAME="ActiveState Package Repository" SUMMARYFILE="fetch_summary"/>
  908.     <PPMPRECIOUS>PPM;Archive-Tar;Compress-Zlib;libwww-perl;XML-Parser;XML-Element;MIME-Base64;HTML-Parser;libwin32</PPMPRECIOUS>
  909.  
  910. <PACKAGE NAME="PPM">
  911. <LOCATION>http://www.activestate.com/packages</LOCATION>
  912. <INSTPACKLIST>$PerlDir/lib/auto/PPM/.packlist</INSTPACKLIST>
  913. <INSTROOT>$PerlDir</INSTROOT>
  914. <INSTDATE>Fri Oct  2 16:14:32 1998</INSTDATE>
  915. <INSTPPD>
  916. <SOFTPKG NAME="PPM" VERSION="1,1,3,0">
  917. <TITLE>PPM</TITLE>
  918. <ABSTRACT>Perl Package Manager: locate, install, upgrade software packages.</ABSTRACT>
  919. <AUTHOR>Murray Nesbitt <murray\@ActiveState.co></AUTHOR>
  920. <IMPLEMENTATION>
  921. <DEPENDENCY NAME="Compress-Zlib" VERSION="" />
  922. <DEPENDENCY NAME="libwww-perl" VERSION="" />
  923. <DEPENDENCY NAME="Archive-Tar" VERSION="" />
  924. <DEPENDENCY NAME="MIME-Base64" VERSION="" />
  925. <DEPENDENCY NAME="XML-Parser" VERSION="" />
  926. <DEPENDENCY NAME="XML-Element" VERSION="" />
  927. <CODEBASE HREF="x86/PPM.tar.gz" />
  928. <INSTALL />
  929. <UNINSTALL />
  930. </IMPLEMENTATION>
  931. </SOFTPKG>
  932. </INSTPPD>
  933. </PACKAGE>
  934.  
  935. <PACKAGE NAME="Archive-Tar">
  936. <LOCATION>http://www.activestate.com/packages</LOCATION>
  937. <INSTPACKLIST>$PerlDir/site/lib/auto/Archive/Tar/.packlist</INSTPACKLIST>
  938. <INSTROOT>$PerlDir</INSTROOT>
  939. <INSTDATE>Fri Oct  2 16:14:37 1998</INSTDATE>
  940. <INSTPPD>
  941. <SOFTPKG NAME="Archive-Tar" VERSION="0,072,0,0">
  942. <TITLE>Archive-Tar</TITLE>
  943. <ABSTRACT>module for manipulation of tar archives.</ABSTRACT>
  944. <AUTHOR>Stephen Zander <gibreel\@pobox.com></AUTHOR>
  945. <IMPLEMENTATION>
  946. <CODEBASE HREF="x86/Archive-Tar.tar.gz" />
  947. <INSTALL />
  948. <UNINSTALL />
  949. </IMPLEMENTATION>
  950. </SOFTPKG>
  951. </INSTPPD>
  952. </PACKAGE>
  953.  
  954. <PACKAGE NAME="MIME-Base64">
  955. <LOCATION>http://www.ActiveState.com/packages</LOCATION>
  956. <INSTPACKLIST>$PerlDir/site/lib/auto/MIME/Base64/.packlist</INSTPACKLIST>
  957. <INSTROOT>$PerlDir</INSTROOT>
  958. <INSTDATE>Fri Nov 13 14:05:30 1998</INSTDATE>
  959. <INSTPPD>
  960. <SOFTPKG NAME="MIME-Base64" VERSION="2,11,0,0">
  961. <TITLE>MIME-Base64</TITLE>
  962. <ABSTRACT>Encoding and decoding of base64 strings</ABSTRACT>
  963. <AUTHOR>Gisle Aas <gisle\@aas.no></AUTHOR>
  964. <IMPLEMENTATION>
  965. <CODEBASE HREF="x86/MIME-Base64.tar.gz" />
  966. <INSTALL />
  967. <UNINSTALL />
  968. </IMPLEMENTATION>
  969. </SOFTPKG>
  970. </INSTPPD>
  971. </PACKAGE>
  972.  
  973. <PACKAGE NAME="URI">
  974. <LOCATION>http://www.activestate.com/packages</LOCATION>
  975. <INSTPACKLIST>$PerlDir/site/lib/auto/URI/.packlist</INSTPACKLIST>
  976. <INSTROOT>$PerlDir</INSTROOT>
  977. <INSTDATE>Fri Oct  2 16:15:15 1998</INSTDATE>
  978. <INSTPPD>
  979. <SOFTPKG NAME="URI" VERSION="1,04,0,0">
  980. <TITLE>URI</TITLE>
  981. <ABSTRACT>Uniform Resource Identifiers (absolute and relative)</ABSTRACT>
  982. <AUTHOR>Gisle Aas <gisle\@aas.no></AUTHOR>
  983. <IMPLEMENTATION>
  984. <DEPENDENCY NAME="MIME-Base64" VERSION="" />
  985. <CODEBASE HREF="x86/URI.tar.gz" />
  986. <INSTALL />
  987. <UNINSTALL />
  988. </IMPLEMENTATION>
  989. </SOFTPKG>
  990. </INSTPPD>
  991. </PACKAGE>
  992.  
  993. <PACKAGE NAME="HTML-Parser">
  994. <LOCATION>http://www.activestate.com/packages</LOCATION>
  995. <INSTPACKLIST>$PerlDir/site/lib/auto/HTML/Parser/.packlist</INSTPACKLIST>
  996. <INSTROOT>$PerlDir</INSTROOT>
  997. <INSTDATE>Fri Oct  2 16:15:15 1998</INSTDATE>
  998. <INSTPPD>
  999. <SOFTPKG NAME="HTML-Parser" VERSION="2,23,0,0">
  1000. <TITLE>HTML-Parser</TITLE>
  1001. <ABSTRACT>SGML parser class</ABSTRACT>
  1002. <AUTHOR>Gisle Aas <gisle\@aas.no></AUTHOR>
  1003. <IMPLEMENTATION>
  1004. <CODEBASE HREF="x86/HTML-Parser.tar.gz" />
  1005. <INSTALL />
  1006. <UNINSTALL />
  1007. </IMPLEMENTATION>
  1008. </SOFTPKG>
  1009. </INSTPPD>
  1010. </PACKAGE>
  1011.  
  1012. <PACKAGE NAME="libwww-perl">
  1013. <LOCATION>http://www.activestate.com/packages</LOCATION>
  1014. <INSTPACKLIST>$PerlDir/site/lib/auto/LWP/.packlist</INSTPACKLIST>
  1015. <INSTROOT>$PerlDir</INSTROOT>
  1016. <INSTDATE>Fri Oct  2 16:15:15 1998</INSTDATE>
  1017. <INSTPPD>
  1018. <SOFTPKG NAME="libwww-perl" VERSION="5,45,0,0">
  1019. <TITLE>libwww-perl</TITLE>
  1020. <ABSTRACT>Library for WWW access in Perl</ABSTRACT>
  1021. <AUTHOR>Gisle Aas  <gisle\@aas.no></AUTHOR>
  1022. <IMPLEMENTATION>
  1023. <DEPENDENCY NAME="URI" VERSION="" />
  1024. <DEPENDENCY NAME="HTML-Parser" VERSION="" />
  1025. <CODEBASE HREF="x86/libwww-perl.tar.gz" />
  1026. <INSTALL />
  1027. <UNINSTALL />
  1028. </IMPLEMENTATION>
  1029. </SOFTPKG>
  1030. </INSTPPD>
  1031. </PACKAGE>
  1032.  
  1033. <PACKAGE NAME="XML-Element">
  1034. <LOCATION>http://www.activestate.com/packages</LOCATION>
  1035. <INSTPACKLIST>$PerlDir/site/lib/auto/XML/Element/.packlist</INSTPACKLIST>
  1036. <INSTROOT>$PerlDir</INSTROOT>
  1037. <INSTDATE>Fri Oct  2 16:16:03 1998</INSTDATE>
  1038. <INSTPPD>
  1039. <SOFTPKG NAME="XML-Element" VERSION="0,10,0,0">
  1040. <TITLE>XML-Element</TITLE>
  1041. <ABSTRACT>Base element class for XML elements</ABSTRACT>
  1042. <AUTHOR>ActiveState Tool Corporation</AUTHOR>
  1043. <IMPLEMENTATION>
  1044. <DEPENDENCY NAME="XML-Parser" VERSION="" />
  1045. <CODEBASE HREF="x86/XML-Element.tar.gz" />
  1046. <INSTALL />
  1047. <UNINSTALL />
  1048. </IMPLEMENTATION>
  1049. </SOFTPKG>
  1050. </INSTPPD>
  1051. </PACKAGE>
  1052.  
  1053. <PACKAGE NAME="XML-Parser">
  1054. <LOCATION>http://www.activestate.com/packages</LOCATION>
  1055. <INSTPACKLIST>$PerlDir/site/lib/auto/XML/Parser/.packlist</INSTPACKLIST>
  1056. <INSTROOT>$PerlDir</INSTROOT>
  1057. <INSTDATE>Fri Oct  2 16:16:03 1998</INSTDATE>
  1058. <INSTPPD>
  1059. <SOFTPKG NAME="XML-Parser" VERSION="2,27,0,0">
  1060. <TITLE>XML-Parser</TITLE>
  1061. <ABSTRACT>A Perl module for parsing XML documents</ABSTRACT>
  1062. <AUTHOR>Clark Cooper <coopercl\@sch.ge.com></AUTHOR>
  1063. <IMPLEMENTATION>
  1064. <CODEBASE HREF="x86/XML-Parser.tar.gz" />
  1065. <INSTALL />
  1066. <UNINSTALL />
  1067. </IMPLEMENTATION>
  1068. </SOFTPKG>
  1069. </INSTPPD>
  1070. </PACKAGE>
  1071.  
  1072. <PACKAGE NAME="Compress-Zlib">
  1073. <LOCATION>http://www.activestate.com/packages</LOCATION>
  1074. <INSTPACKLIST>$PerlDir/site/lib/auto/Compress/Zlib/.packlist</INSTPACKLIST>
  1075. <INSTROOT>$PerlDir</INSTROOT>
  1076. <INSTDATE>Fri Oct  2 16:16:03 1998</INSTDATE>
  1077. <INSTPPD>
  1078. <SOFTPKG NAME="Compress-Zlib" VERSION="1,03,0,0">
  1079. <TITLE>Compress-Zlib</TITLE>
  1080. <ABSTRACT>Interface to zlib compression library</ABSTRACT>
  1081. <AUTHOR>Paul Marquess <pmarquess\@bfsec.bt.co.uk></AUTHOR>
  1082. <IMPLEMENTATION>
  1083. <CODEBASE HREF="x86/Compress-Zlib.tar.gz" />
  1084. <INSTALL />
  1085. <UNINSTALL />
  1086. </IMPLEMENTATION>
  1087. </SOFTPKG>
  1088. </INSTPPD>
  1089. </PACKAGE>
  1090.  
  1091. <PACKAGE NAME="libwin32">
  1092. <LOCATION>http://www.activestate.com/packages</LOCATION>
  1093. <INSTPACKLIST>$PerlDir/site/lib/auto/Win32/.packlist</INSTPACKLIST>
  1094. <INSTROOT>$PerlDir</INSTROOT>
  1095. <INSTDATE>Fri Oct  2 16:16:03 1998</INSTDATE>
  1096. <INSTPPD>
  1097. <SOFTPKG NAME="libwin32" VERSION="0,15,1,0">
  1098. <TITLE>libwin32</TITLE>
  1099. <ABSTRACT>Win32-only extensions that provides a quick migration path for people wanting to use the core support for win32 in perl 5.004 and later.</ABSTRACT>
  1100. <AUTHOR>Gurusamy Sarathy <gsar\@activestate.com></AUTHOR>
  1101. <IMPLEMENTATION>
  1102. <CODEBASE HREF="x86/libwin32.tar.gz" />
  1103. <INSTALL />
  1104. <UNINSTALL />
  1105. </IMPLEMENTATION>
  1106. </SOFTPKG>
  1107. </INSTPPD>
  1108. </PACKAGE>
  1109.  
  1110. </PPMCONFIG>
  1111. EOF
  1112. }
  1113.  
  1114. __END__
  1115.  
  1116. =head1 NAME
  1117.  
  1118. PPM - Perl Package Manager: locate, install, upgrade software packages.
  1119.  
  1120. =head1 SYNOPSIS
  1121.  
  1122.  ppm genconfig
  1123.  ppm help [command]
  1124.  ppm install [--location=location] package1 [... packageN]
  1125.  ppm query [--case|nocase] [--searchtag=abstract|author|title] PATTERN
  1126.  ppm remove package1 [... packageN]
  1127.  ppm search [--case|nocase] [--location=location] [--searchtag=abstract|author|title] PATTERN
  1128.  ppm set [option]
  1129.  ppm verify [--location=location] [--upgrade] [--force] [package1 ... packageN]
  1130.  ppm version
  1131.  ppm [--location=location]
  1132.  
  1133. =head1 DESCRIPTION
  1134.  
  1135. ppm is a utility intended to simplify the tasks of locating, installing,
  1136. upgrading and removing software packages.  It is a front-end to the
  1137. functionality provided in PPM.pm.  It can determine if the most recent
  1138. version of a software package is installed on a system, and can install
  1139. or upgrade that package from a local or remote host.
  1140.  
  1141. ppm runs in one of two modes: an interactive shell from which commands
  1142. may be entered; and command-line mode, in which one specific action is
  1143. performed per invocation of the program.
  1144.  
  1145. ppm uses files containing an extended form of the Open Software
  1146. Description (OSD) specification for information about software packages.
  1147. These description files, which are written in Extensible Markup
  1148. Language (XML) code, are referred to as 'PPD' files.  Information about
  1149. OSD can be found at the W3C web site (at the time of this writing,
  1150. http://www.w3.org/TR/NOTE-OSD.html).  The extensions to OSD used by ppm
  1151. are documented in PPM.ppd.
  1152.  
  1153. =head1 COMMAND-LINE MODE
  1154.  
  1155. =over 4
  1156.  
  1157. =item Installing
  1158.  
  1159. ppm install [--location=location] package1 [... packageN]
  1160.  
  1161. Reads information from the PPD file (See the 'Files' section
  1162. below) for the named software package and performs an
  1163. installation.  The 'package' arguments may be either package
  1164. names ('foo'), or pathnames (P:\PACKAGES\FOO.PPD) or URLs
  1165. (HTTP://www.ActiveState.com/packages/foo.ppd) to specific PPD files.
  1166.  
  1167. In the case where a package name is specified, and the '--location'
  1168. option is not used, the function will refer to repository locations stored
  1169. in the PPM data file (see 'Files' section below) to locate the PPD file
  1170. for the requested package.
  1171.  
  1172. =item Removing
  1173.  
  1174. ppm remove package1 [... packageN]
  1175.  
  1176. Reads information from the PPD file for the named software package and
  1177. removes the package from the system.
  1178.  
  1179. =item Verifying
  1180.  
  1181. ppm verify [--location=location] [--upgrade] [--force] [package1 ... packageN]
  1182.  
  1183. Reads a PPD file for the specified package and compares the currently
  1184. installed version of the package to the version available according to
  1185. the PPD.  The PPD file is expected to be on a local directory or remote
  1186. site specified either in the PPM data file or on the command
  1187. line using the '--location' option.  The --location' argument may be
  1188. a directory location or an Internet address.  The '--upgrade' option
  1189. forces an upgrade if the installed package is not up-to-date.
  1190.  
  1191. If no packages are specified, all packages currently installed on the
  1192. system will be verified (and updated if desired).  The PPD file for each
  1193. package will initially be searched for at the location specified with the
  1194. '--location' argument, and if not found will then be searched for using
  1195. the location specified in the PPM data file.
  1196.  
  1197. =item Querying
  1198.  
  1199. ppm query [--case|nocase] PATTERN
  1200.  
  1201. Reports currently installed packages matching 'PATTERN' or all installed
  1202. packages if no 'PATTERN' is specified.
  1203.  
  1204. ppm query [--case|nocase] [--searchtag=abstract|author|title] PATTERN
  1205.  
  1206. Searches for 'PATTERN' (a regular expression) in the <ABSTRACT>, <AUTHOR>
  1207. or <TITLE> tags of all installed packages, according to the value of
  1208. the '--searchtag' option.  If a '--searchtag' value of 'abstract',
  1209. 'author' or 'title' is not provided, any occurence of 'PATTERN' in the
  1210. package name will match successfully.  A case-sensitive search will be
  1211. conducted by default, but this may be overridden by the options set in
  1212. the PPM data file, which may in turn be overridden by the '--nocase' or
  1213. '--case' option.  If a search is successful, information about the 
  1214. matching package(s) is displayed.
  1215.  
  1216. =item Searching
  1217.  
  1218. ppm search [--case|nocase] [--location=location] PATTERN
  1219.  
  1220. Displays a list of all packages matching 'PATTERN', with package
  1221. description (PPD) files available at the specified location.  'location'
  1222. may be either a remote address or a directory path.  If a location is
  1223. not specified, the repository location as specified in the PPM data file
  1224. will be used.
  1225.  
  1226. ppm search [--case|nocase] [--location=location] [--searchtag=abstract|author|title] PATTERN
  1227.  
  1228. Searches for 'PATTERN' (a regular expression) in the <ABSTRACT>, <AUTHOR>
  1229. or <TITLE> tags of all PPD files at 'location', according to the value
  1230. of the '--searchtag' option.  If a '--searchtag' value of 'abstract',
  1231. 'author' or 'title' is not provided, any occurence of 'PATTERN' in
  1232. the package name will match successfully.  'location' may be either a
  1233. remote address or a directory path, and if it is not provided, repository
  1234. locations specified in the PPM data file will be used.  A case-sensitive
  1235. search will be conducted by default, but this may be overridden by the
  1236. options set in the PPM data file, which may in turn be overridden by the
  1237. '--nocase' or '--case' option.  If a search is successful, information 
  1238. about the matching package(s) is displayed.
  1239.  
  1240. =item Summarizing
  1241.  
  1242. =item Error Recovery
  1243.  
  1244. ppm genconfig
  1245.  
  1246. This command will print a valid PPM config file (ppm.xml) to STDOUT.  This 
  1247. can be useful if the PPM config file ever gets damaged leaving PPM
  1248. unusable.
  1249.  
  1250. =back
  1251.  
  1252. =head1 INTERACTIVE MODE
  1253.  
  1254. If ppm is invoked with no command specified, it is started in interactive
  1255. mode.  If the '--location' argument is specified, it is used as the
  1256. search location, otherwise the repositories specified in the PPM data file are 
  1257. used. The available commands, which may be displayed at any time by entering
  1258. 'help', are:
  1259.  
  1260.     exit
  1261.         - Exits the program.
  1262.  
  1263.     help [command]
  1264.         - Prints a screen of available commands, or help on a specific command.
  1265.  
  1266.     install [/location LOCATION] PACKAGES
  1267.         - Installs the specified software PACKAGES.  Attempts to install
  1268.           from the URL or directory 'LOCATION' if the '/location' option
  1269.           is specfied.  See 'Installing' in the 'Command-line mode' 
  1270.           section for details.  See also: 'confirm' option.
  1271.  
  1272.     query [options] PATTERN
  1273.         - Queries information about currently installed packages.
  1274.  
  1275.         Available options:
  1276.         /abstract PATTERN
  1277.             - Searches for the regular expression 'PATTERN' in the 'abstract' section
  1278.               of all installed packages.  See also: 'case' option.
  1279.         /author PATTERN
  1280.             - Searches for the regular expression 'PATTERN' in the 'author' section
  1281.               of all installed packages.  See also: 'case' option.
  1282.         /title PATTERN
  1283.             - Searches for the regular expression 'PATTERN' in the 'title' section
  1284.               of all installed packages.  See also: 'case' option.
  1285.  
  1286.     remove PACKAGES
  1287.         - Removes the specified 'PACKAGES'.  See 'Removing' in the 'Command-line 
  1288.           mode' section for details.  See also: 'confirm' option.
  1289.  
  1290.     search [options] PATTERN
  1291.         - Searches for information about available packages.
  1292.  
  1293.         Available options:
  1294.         /abstract PATTERN
  1295.             - Searches for the regular expression 'PATTERN' in the 'abstract' section
  1296.               of all available PPD files.  See also: 'case' option.
  1297.         /author PATTERN
  1298.             - Searches for the regular expression 'PATTERN' in the 'author' section
  1299.               of all available PPD files.  See also: 'case' option.
  1300.         /title PATTERN
  1301.             - Searches for the regular expression 'PATTERN' in the 'title' section
  1302.               of all available PPD files.  See also: 'case' option.
  1303.         /location LOCATION
  1304.             - Searches for packages available from the URL or directory
  1305.               'LOCATION'.
  1306.  
  1307.     set [option value]
  1308.         - Sets or displays current options.  With no arguments, options are
  1309.           displayed.
  1310.  
  1311.           Available options:
  1312.               build DIRECTORY
  1313.                   - Changes the package build directory.
  1314.               case [Yes|No]
  1315.                   - Sets case-sensitive searches.  If one of 'Yes' or 'No is
  1316.                     not specified, the current setting is toggled.
  1317.               clean [Yes|No]
  1318.                   - Sets removal of temporary files from package's build 
  1319.                     area, on successful installation of a package.  If one of
  1320.                     'Yes' or 'No is not specified, the current setting is
  1321.                     toggled.
  1322.               confirm [Yes|No]
  1323.                   - Sets confirmation of 'install', 'remove' and 'upgrade'.
  1324.                     If one of 'Yes' or 'No is not specified, the current
  1325.                     setting is toggled.
  1326.               force_install [Yes|No]
  1327.                   - Continue installing a package even if a dependency cannot
  1328.                     be installed.
  1329.               more NUMBER
  1330.                   - Causes output to pause after NUMBER lines have been
  1331.                     displayed.  Specifying '0' turns off this capability.
  1332.               set repository /remove NAME
  1333.                   - Removes the repository 'NAME' from the list of repositories.
  1334.               set repository NAME LOCATION
  1335.                   - Adds a repository to the list of PPD repositories for this
  1336.                     session.  'NAME' is the name by which this repository will
  1337.                     be referred; 'LOCATION' is a URL or directory name.
  1338.               root DIRECTORY
  1339.                   - Changes the install root directory.  Packages will be
  1340.                     installed under this new root.
  1341.               save
  1342.                   - Saves the current options as default options for future
  1343.                     sessions.
  1344.               trace
  1345.                   - Tracing level--default is 1, maximum is 4, 0 indicates
  1346.                     no tracing.
  1347.               tracefile
  1348.                   - File to contain tracing information, default is 'PPM.LOG'.
  1349.               verbose [Yes|No]
  1350.                   - Display additional package information for 'query' and
  1351.                     'search' commands.
  1352.  
  1353.     quit
  1354.         - Exits the program.
  1355.  
  1356.     verify [/upgrade] [/force] [/location LOCATION] PACKAGE
  1357.         - Verifies that currently installed 'PACKAGE' is up to date.  If
  1358.           'PACKAGE' is not specified, all installed packages are verified.  If
  1359.           the /upgrade option is specified, any out-dated packages will be
  1360.           upgraded.  If the /location option is specified, upgrades will
  1361.           be looked for at the URL or directory 'LOCATION'.  See also: 'confirm'
  1362.           option.
  1363.  
  1364. =over 4
  1365.  
  1366. =back
  1367.  
  1368. =head1 EXAMPLES
  1369.  
  1370. =over 4
  1371.  
  1372. =item ppm
  1373.  
  1374. Starts ppm in interactive mode, using the repository locations specified
  1375. in the PPM data file.  A session might look like this:
  1376.  
  1377.     [show all available packages]
  1378.     PPM> search
  1379.     Packages available from P:\PACKAGES:
  1380.     bar [2.91 ] supplies bar methods for perl5.
  1381.     bax [0.072] module for manipulation of bax archives.
  1382.     baz [1.03 ] Interface to baz library
  1383.     foo [2.23 ] Foo parser class
  1384.     
  1385.     [list what has already been installed]
  1386.     PPM> query
  1387.     bax [0.071] module for manipulation of bax archives.
  1388.     baz [1.02 ] Interface to baz library
  1389.     
  1390.     [install a package]
  1391.     PPM> install foo
  1392.     Install package foo? (y/N): y
  1393.     [...]
  1394.     
  1395.     [toggle confirmations]
  1396.     PPM> set confirm
  1397.     Commands will not be confirmed.
  1398.     
  1399.     [see if 'baz' is up-to-date]
  1400.     PPM> verify baz
  1401.     An upgrade to package 'baz' is available.
  1402.     
  1403.     [upgrade 'baz']
  1404.     PPM> verify /upgrade baz
  1405.     [...]
  1406.     
  1407.     [forced upgrade of 'baz']
  1408.     PPM> verify /upgrade /force baz
  1409.     [...]
  1410.     
  1411.     [toggle case-sensitive searches]
  1412.     PPM> set case
  1413.     Case-sensitive searches will be performed.
  1414.     
  1415.     [display all available packages beginning with 'b']
  1416.     PPM> search ^b
  1417.     bar [2.91 ] supplies bar methods for perl5.
  1418.     bax [0.072] module for manipulation of bax archives.
  1419.     baz [1.03 ] Interface to baz library
  1420.     
  1421.     [search for installed packages containing 'baz' in the /ABSTRACT tag]
  1422.     PPM> query /abstract baz
  1423.     Matching packages found at P:\PACKAGES:
  1424.     baz [1.03 ] Interface to baz library
  1425.     PPM> quit
  1426.  
  1427. =item ppm install http://www.ActiveState.com/packages/foo.ppd
  1428.  
  1429. Installs the software package 'foo' based on the information in the PPD
  1430. obtained from the specified URL.
  1431.  
  1432. =item ppm verify --upgrade foo
  1433.  
  1434. Compares the currently installed version of the software package 'foo'
  1435. to the one available according to the PPD obtained from the location
  1436. specified for this package in the PPM data file, and upgrades
  1437. to a newer version if available.
  1438.  
  1439. =item ppm verify --location=P:\PACKAGES --upgrade foo
  1440.  
  1441. Compares the currently installed version of the software package 'foo'
  1442. to the one available according to the PPD obtained from the specified
  1443. directory, and upgrades to a newer version if available.
  1444.  
  1445. =item ppm verify --upgrade --force
  1446.  
  1447. Forces verification and reinstalls every installed package on the system, 
  1448. using upgrade locations specified in the PPM data file.
  1449.  
  1450. =item ppm search --location=http://www.ActiveState.com/packages
  1451.  
  1452. Displays the packages with PPD files available at the specified location.
  1453.  
  1454. =item ppm search --location=P:\PACKAGES --searchtag=author ActiveState
  1455.  
  1456. Searches the specified location for any package with an <AUTHOR> tag
  1457. containing the string 'ActiveState'.  On a successful search, the package
  1458. name and the matching string are displayed.
  1459.  
  1460. =back
  1461.  
  1462. =head1 ENVIRONMENT VARIABLES
  1463.  
  1464. =over 4
  1465.  
  1466. =item HTTP_proxy
  1467.  
  1468. If the environment variable 'HTTP_proxy' is set, then it will
  1469. be used as the address of a proxy server for accessing the Internet.
  1470.  
  1471. The value should be of the form: 'http://proxy:port'.
  1472.  
  1473. =back
  1474.  
  1475. =head1 FILES
  1476.  
  1477. These files are fully described in the 'Files' section of PPM:ppm.
  1478.  
  1479. =over 4
  1480.  
  1481. =item package.ppd
  1482.  
  1483. A description of a software package, in extended Open Software Description
  1484. (OSD) format.  More information on this file format can be found in
  1485. PPM::ppd.
  1486.  
  1487. =item ppm.xml - PPM data file.
  1488.  
  1489. This file is specified using the environment variable 'PPM_DAT';  if this
  1490. is not set, the file 'ppm.xml' is expected to be located in the same 
  1491. directory as this script.
  1492.  
  1493. An XML format file containing information about the local system,
  1494. specifics regarding the locations from which PPM obtains PPD files, and
  1495. the installation details for any package installed by ppm.
  1496.  
  1497. =back
  1498.  
  1499. =head1 AUTHOR
  1500.  
  1501. Murray Nesbitt, E<lt>F<murray@activestate.com>E<gt>
  1502.  
  1503. =cut
  1504.  
  1505.