From c8ea5b26d24d5a4f1051730d4299c9cbb181303b Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Tue, 21 May 2002 01:44:06 +0000 Subject: [PATCH] * package-list command no longer needed ("list" does the same thing and more) --- pear/PEAR/Command/Package.php | 56 ----------------------------------- 1 file changed, 56 deletions(-) diff --git a/pear/PEAR/Command/Package.php b/pear/PEAR/Command/Package.php index 074879f075..a4c113487d 100644 --- a/pear/PEAR/Command/Package.php +++ b/pear/PEAR/Command/Package.php @@ -50,14 +50,6 @@ package.xml). 'options' => array(), 'doc' => ' Extracts information from a package file and displays it. -', - ), - 'package-list' => array( - 'summary' => 'List Files in Package', - 'function' => 'doPackageList', - 'shortcut' => 'pl', - 'options' => array(), - 'doc' => ' ', ), 'package-validate' => array( @@ -171,54 +163,6 @@ Run regression tests with PHP\'s regression testing script (run-tests.php).', return true; } - - function doPackageList($command, $options, $params) - { - // $params[0] -> the PEAR package to list its files - if (sizeof($params) != 1) { - return $this->raiseError("bad parameters, try \"help $command\""); - } - $obj = new PEAR_Common(); - - if (PEAR::isError($info = $obj->infoFromTgzFile($params[0]))) { - return $info; - } - $list =$info['filelist']; - $caption = 'Contents of ' . basename($params[0]); - $this->ui->startTable(array('caption' => $caption, - 'border' => true)); - $this->ui->tableRow(array('Package Files', 'Install Destination'), - array('bold' => true)); - foreach ($list as $file => $att) { - if (isset($att['baseinstalldir'])) { - $dest = $att['baseinstalldir'] . DIRECTORY_SEPARATOR . - $file; - } else { - $dest = $file; - } - switch ($att['role']) { - case 'test': - $dest = '-- will not be installed --'; break; - case 'doc': - $dest = $this->config->get('doc_dir') . DIRECTORY_SEPARATOR . - $dest; - break; - case 'php': - default: - $dest = $this->config->get('php_dir') . DIRECTORY_SEPARATOR . - $dest; - } - $dest = preg_replace('!/+!', '/', $dest); - $file = preg_replace('!/+!', '/', $file); - $opts = array(0 => array('wrap' => 23), - 1 => array('wrap' => 45) - ); - $this->ui->tableRow(array($file, $dest), null, $opts); - } - $this->ui->endTable(); - return true; - } - function doPackageInfo($command, $options, $params) { // $params[0] -> the PEAR package to list its information -- 2.40.0