From 518e2139783b812077fd7a1aad3584455a0f1fe7 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Jun 09 2014 09:05:31 +0000 Subject: import php55-php-pear-1.9.4-10.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4381a85 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +SOURCES/Console_Getopt-1.3.1.tgz +SOURCES/Archive_Tar-1.3.11.tgz +SOURCES/Structures_Graph-1.0.4.tgz +SOURCES/PEAR-1.9.4.tgz +SOURCES/XML_Util-1.2.1.tgz diff --git a/.php55-php-pear.metadata b/.php55-php-pear.metadata new file mode 100644 index 0000000..08feae6 --- /dev/null +++ b/.php55-php-pear.metadata @@ -0,0 +1,5 @@ +8f9ac495728ee9ba87edd109c3946f11ee72bc08 SOURCES/Console_Getopt-1.3.1.tgz +a07ecdacdb180816be941550a8c4dbeeb4bbb110 SOURCES/Archive_Tar-1.3.11.tgz +00f5c2aefad0c3f6490e5ca95da87828e64ebc57 SOURCES/Structures_Graph-1.0.4.tgz +7c4e88ae5064827507b2c9ae0108eb5972d900db SOURCES/PEAR-1.9.4.tgz +8072216577fb9ad684f15e0388ab0b1c0b57e2d4 SOURCES/XML_Util-1.2.1.tgz diff --git a/README.md b/README.md deleted file mode 100644 index ce46a88..0000000 --- a/README.md +++ /dev/null @@ -1,5 +0,0 @@ -\ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/install-pear.php b/SOURCES/install-pear.php new file mode 100644 index 0000000..facb6ee --- /dev/null +++ b/SOURCES/install-pear.php @@ -0,0 +1,333 @@ +getLayers(); +foreach ($config_layers as $layer) { + if ($layer == 'default') continue; + $config->removeLayer($layer); +} +$keys = $config->getKeys(); +if ($debug) { + $config->set('verbose', 5, 'default'); +} else { + $config->set('verbose', 0, 'default'); +} +// PEAR executables +if (!empty($bin_dir)) { + $config->set('bin_dir', $bin_dir, 'default'); +} + +// Cache files +if (!empty($cache_dir)) { + $config->set('cache_dir', $cache_dir, 'default'); +} + +// Config files +if (!empty($cfg_dir)) { + $config->set('cfg_dir', $cfg_dir, 'default'); +} + +// Web files +if (!empty($www_dir)) { + $config->set('www_dir', $www_dir, 'default'); +} + +// Downloaded files +if (!empty($download_dir)) { + $config->set('download_dir', $download_dir, 'default'); +} + +// Temporary files +if (!empty($temp_dir)) { + $config->set('temp_dir', $temp_dir, 'default'); +} + +// Documentation files +if (!empty($doc_dir)) { + $config->set('doc_dir', $doc_dir, 'default'); +} + +// Data files +if (!empty($data_dir)) { + $config->set('data_dir', $data_dir, 'default'); +} + +// Unit tests +if (!empty($test_dir)) { + $config->set('test_dir', $test_dir, 'default'); +} + +// User supplied a dir prefix +if (!empty($with_dir)) { + $ds = DIRECTORY_SEPARATOR; + $config->set('php_dir', $with_dir, 'default'); + // Metadata + if (!empty($metadata_dir)) { + $config->set('metadata_dir', $metadata_dir, 'default'); + } + if (empty($doc_dir)) { + $config->set('doc_dir', $with_dir . $ds . 'doc', 'default'); + } + if (empty($data_dir)) { + $config->set('data_dir', $with_dir . $ds . 'data', 'default'); + } + if (empty($test_dir)) { + $config->set('test_dir', $with_dir . $ds . 'test', 'default'); + } + if (empty($www_dir)) { + $config->set('www_dir', $with_dir . $ds . 'htdocs', 'default'); + } + if (empty($cfg_dir)) { + $config->set('cfg_dir', $with_dir . $ds . 'cfg', 'default'); + } + if (!is_writable($config->get('cache_dir'))) { + include_once 'System.php'; + $cdir = System::mktemp(array('-d', 'pear')); + if (PEAR::isError($cdir)) { + $ui->outputData("[PEAR] cannot make new temporary directory: " . $cdir); + die(1); + } + $oldcachedir = $config->get('cache_dir'); + $config->set('cache_dir', $cdir); + } +} + +// PHP executable +if (!empty($php_bin)) { + $config->set('php_bin', $php_bin); +} + +// PHP prefix +if (isset($prefix)) { + if ($prefix != 'a') { + if ($prefix[0] == 'a') { + $prefix = substr($prefix, 1); + } + $config->set('php_prefix', $prefix, 'system'); + } +} + +// PHP suffix +if (isset($suffix)) { + if ($suffix != 'a') { + if ($suffix[0] == 'a') { + $suffix = substr($suffix, 1); + } + $config->set('php_suffix', $suffix, 'system'); + } +} + +/* Print PEAR Conf (useful for debuging do NOT REMOVE) */ +if ($debug) { + sort($keys); + foreach ($keys as $key) { + echo $key . ' ' . + $config->getPrompt($key) . ": " . $config->get($key, null, 'default') . "\n"; + } + if ($debug == 2) { // extreme debugging + exit; + } +} +// end print + +$php_dir = $config->get('php_dir'); +$options = array(); +$options['upgrade'] = true; +$install_root = getenv('INSTALL_ROOT'); +if (!empty($install_root)) { + $options['packagingroot'] = $install_root; + $reg = &new PEAR_Registry($options['packagingroot'], false, false, $metadata_dir); +} else { + $reg = $config->getRegistry('default'); +} + +$ui = PEAR_Frontend::singleton('PEAR_Frontend_CLI'); +if (PEAR::isError($ui)) { + die($ui->getMessage()); +} +$installer = new PEAR_Installer($ui); +$pkg = new PEAR_PackageFile($config, $debug); + +foreach ($install_files as $package => $instfile) { + $info = $pkg->fromAnyFile($instfile, PEAR_VALIDATE_INSTALLING); + if (PEAR::isError($info)) { + if (is_array($info->getUserInfo())) { + foreach ($info->getUserInfo() as $err) { + $ui->outputData(sprintf("[PEAR] %s: %s", $package, $err['message'])); + } + } + $ui->outputData(sprintf("[PEAR] %s: %s", $package, $info->getMessage())); + continue; + } + $new_ver = $info->getVersion(); + $downloaderpackage = new PEAR_Downloader_Package($installer); + $err = $downloaderpackage->initialize($instfile); + if (PEAR::isError($err)) { + $ui->outputData(sprintf("[PEAR] %s: %s", $package, $err->getMessage())); + continue; + } + if ($reg->packageExists($package)) { + $old_ver = $reg->packageInfo($package, 'version'); + if (version_compare($new_ver, $old_ver, 'gt')) { + $installer->setOptions($options); + $dp = array($downloaderpackage); + $installer->setDownloadedPackages($dp); + $err = $installer->install($downloaderpackage, $options); + if (PEAR::isError($err)) { + $ui->outputData(sprintf("[PEAR] %s: %s", $package, $err->getMessage())); + continue; + } + $ui->outputData(sprintf("[PEAR] %-15s- upgraded: %s", $package, $new_ver)); + } else { + if ($force) { + $options['force'] = true; + $installer->setOptions($options); + $dp = array($downloaderpackage); + $installer->setDownloadedPackages($dp); + $err = $installer->install($downloaderpackage, $options); + if (PEAR::isError($err)) { + $ui->outputData(sprintf("[PEAR] %s: %s", $package, $err->getMessage())); + continue; + } + $ui->outputData(sprintf("[PEAR] %-15s- installed: %s", $package, $new_ver)); + } else { + $ui->outputData(sprintf("[PEAR] %-15s- already installed: %s", $package, $old_ver)); + } + } + } else { + $options['nodeps'] = true; + $installer->setOptions($options); + $dp = array($downloaderpackage); + $installer->setDownloadedPackages($dp); + $err = $installer->install($downloaderpackage, $options); + if (PEAR::isError($err)) { + $ui->outputData(sprintf("[PEAR] %s: %s", $package, $err->getMessage())); + continue; + } + $ui->outputData(sprintf("[PEAR] %-15s- installed: %s", $package, $new_ver)); + } + if ($package == 'PEAR') { + if (is_file($ufile = $config->getConfFile('user'))) { + $ui->outputData('Warning! a PEAR user config file already exists from ' . + 'a previous PEAR installation at ' . + "'$ufile'. You may probably want to remove it."); + } + $config->set('verbose', 1, 'default'); + if (isset($oldcachedir)) { + $config->set('cache_dir', $oldcachedir); + } + $data = array(); + foreach ($config->getKeys() as $key) { + $data[$key] = $config->get($key); + } + $cnf_file = $config->getConfFile('system'); + if (!empty($install_root)) { + $cnf_file = $install_root . DIRECTORY_SEPARATOR . $cnf_file; + } + $config->writeConfigFile($cnf_file, 'system', $data); + $ui->outputData('Wrote PEAR system config file at: ' . $cnf_file); + $ui->outputData('You may want to add: ' . $config->get('php_dir') . ' to your php.ini include_path'); + } +} +?> diff --git a/SOURCES/macros.pear b/SOURCES/macros.pear new file mode 100644 index 0000000..71aacc6 --- /dev/null +++ b/SOURCES/macros.pear @@ -0,0 +1,36 @@ +# +# Define full path to pear/pecl commands to be used in scriptlets: +# +%@SCL@__pear @BINDIR@/pear +%@SCL@__pecl @BINDIR@/pecl + +# +# Define PEAR directories used in php-pear-* spec files +# +%pear_phpdir %(%{__pear} config-get php_dir 2> /dev/null || echo undefined) +%pear_docdir %(%{__pear} config-get doc_dir 2> /dev/null || echo undefined) +%pear_testdir %(%{__pear} config-get test_dir 2> /dev/null || echo undefined) +%pear_datadir %(%{__pear} config-get data_dir 2> /dev/null || echo undefined) +%pear_cfgdir %(%{__pear} config-get cfg_dir 2> /dev/null || echo undefined) +%pear_wwwdir %(%{__pear} config-get www_dir 2> /dev/null || echo undefined) +%@SCL@pear_metadir %(%{__pear} config-get metadata_dir 2> /dev/null || echo undefined) + +# +# Define PECL directories used in php-pecl-* spec files: +# +%pecl_phpdir %(%{__pecl} config-get php_dir 2> /dev/null || echo undefined) +%pecl_docdir %(%{__pecl} config-get doc_dir 2> /dev/null || echo undefined) +%pecl_testdir %(%{__pecl} config-get test_dir 2> /dev/null || echo undefined) +%pecl_datadir %(%{__pecl} config-get data_dir 2> /dev/null || echo undefined) + +# +# Define XML directories to store package registration information: +# +%@SCL@pear_xmldir @VARDIR@/lib/pear/pkgxml +%@SCL@pecl_xmldir @VARDIR@/lib/pear/pkgxml + +# +# Define macros to be used in scriplets for php-pecl-* spec files: +# +%pecl_install %{__pecl} install --nodeps --soft --force --register-only --nobuild +%pecl_uninstall %{__pecl} uninstall --nodeps --ignore-errors --register-only diff --git a/SOURCES/pear.sh b/SOURCES/pear.sh new file mode 100644 index 0000000..36be863 --- /dev/null +++ b/SOURCES/pear.sh @@ -0,0 +1,12 @@ +#!/bin/sh +exec /usr/bin/php -C -q \ + -d include_path=/usr/share/pear \ + -d date.timezone=UTC \ + -d output_buffering=1 \ + -d variables_order=EGPCS \ + -d safe_mode=0 \ + -d register_argc_argv="On" \ + -d open_basedir="" \ + -d auto_prepend_file="" \ + -d auto_append_file="" \ + /usr/share/pear/pearcmd.php "$@" diff --git a/SOURCES/peardev.sh b/SOURCES/peardev.sh new file mode 100644 index 0000000..340c31b --- /dev/null +++ b/SOURCES/peardev.sh @@ -0,0 +1,13 @@ +#!/bin/sh +exec /usr/bin/php -C -q \ + -d memory_limit="-1" \ + -d include_path=/usr/share/pear \ + -d date.timezone=UTC \ + -d output_buffering=1 \ + -d variables_order=EGPCS \ + -d safe_mode=0 \ + -d register_argc_argv="On" \ + -d open_basedir="" \ + -d auto_prepend_file="" \ + -d auto_append_file="" \ + /usr/share/pear/pearcmd.php "$@" diff --git a/SOURCES/pecl.sh b/SOURCES/pecl.sh new file mode 100644 index 0000000..58cbdc5 --- /dev/null +++ b/SOURCES/pecl.sh @@ -0,0 +1,9 @@ +#!/bin/sh +exec /usr/bin/php -C -q \ + -d include_path=/usr/share/pear \ + -d date.timezone=UTC \ + -d output_buffering=1 \ + -d variables_order=EGPCS \ + -d safe_mode=0 \ + -d register_argc_argv="On" \ + /usr/share/pear/peclcmd.php "$@" diff --git a/SOURCES/php-pear-1.9.4-restcache.patch b/SOURCES/php-pear-1.9.4-restcache.patch new file mode 100644 index 0000000..361309b --- /dev/null +++ b/SOURCES/php-pear-1.9.4-restcache.patch @@ -0,0 +1,21 @@ + +Workaround for: + + https://bugzilla.redhat.com/show_bug.cgi?id=747361 + +--- REST.php.restcache ++++ REST.php +@@ -234,6 +234,13 @@ + } + } + ++ if (!is_writeable($cache_dir)) { ++ // If writing to the cache dir is not going to work, silently do nothing. ++ // An ugly hack, but retains compat with PEAR 1.9.1 where many commands ++ // work fine as non-root user (w/out write access to default cache dir). ++ return true; ++ } ++ + if ($cacheid === null && $nochange) { + $cacheid = unserialize(implode('', file($cacheidfile))); + } diff --git a/SOURCES/php-pear-metadata.patch b/SOURCES/php-pear-metadata.patch new file mode 100644 index 0000000..137edcc --- /dev/null +++ b/SOURCES/php-pear-metadata.patch @@ -0,0 +1,244 @@ +diff -up PEAR/Command/Install.php.metadata PEAR/Command/Install.php +--- PEAR/Command/Install.php.metadata 2011-07-07 00:11:24.000000000 +0200 ++++ PEAR/Command/Install.php 2012-09-26 16:02:29.829393773 +0200 +@@ -556,7 +556,13 @@ Run post-installation scripts in package + $packrootphp_dir = $this->installer->_prependPath( + $this->config->get('php_dir', null, 'pear.php.net'), + $options['packagingroot']); +- $instreg = new PEAR_Registry($packrootphp_dir); // other instreg! ++ $metadata_dir = $this->config->get('metadata_dir', null, 'pear.php.net'); ++ if ($metadata_dir) { ++ $metadata_dir = $this->installer->_prependPath( ++ $metadata_dir, ++ $options['packagingroot']); ++ } ++ $instreg = new PEAR_Registry($packrootphp_dir, false, false, $metadata_dir); // other instreg! + + if ($this->config->get('verbose') > 2) { + $this->ui->outputData('using package root: ' . $options['packagingroot']); +diff -up PEAR/Config.php.metadata PEAR/Config.php +--- PEAR/Config.php.metadata 2011-07-07 00:11:24.000000000 +0200 ++++ PEAR/Config.php 2012-09-26 16:02:29.831393779 +0200 +@@ -87,6 +87,13 @@ if (getenv('PHP_PEAR_INSTALL_DIR')) { + } + } + ++// Default for metadata_dir ++if (getenv('PHP_PEAR_METADATA_DIR')) { ++ define('PEAR_CONFIG_DEFAULT_METADATA_DIR', getenv('PHP_PEAR_METADATA_DIR')); ++} else { ++ define('PEAR_CONFIG_DEFAULT_METADATA_DIR', ''); ++} ++ + // Default for ext_dir + if (getenv('PHP_PEAR_EXTENSION_DIR')) { + define('PEAR_CONFIG_DEFAULT_EXT_DIR', getenv('PHP_PEAR_EXTENSION_DIR')); +@@ -398,6 +405,13 @@ class PEAR_Config extends PEAR + 'prompt' => 'PEAR directory', + 'group' => 'File Locations', + ), ++ 'metadata_dir' => array( ++ 'type' => 'directory', ++ 'default' => PEAR_CONFIG_DEFAULT_METADATA_DIR, ++ 'doc' => 'directory where metadata files are installed (registry, filemap, channels, ...)', ++ 'prompt' => 'PEAR metadata directory', ++ 'group' => 'File Locations', ++ ), + 'ext_dir' => array( + 'type' => 'directory', + 'default' => PEAR_CONFIG_DEFAULT_EXT_DIR, +@@ -647,7 +661,9 @@ class PEAR_Config extends PEAR + $this->configuration['default'][$key] = $info['default']; + } + +- $this->_registry['default'] = &new PEAR_Registry($this->configuration['default']['php_dir']); ++ $this->_registry['default'] = &new PEAR_Registry( ++ $this->configuration['default']['php_dir'], false, false, ++ $this->configuration['default']['metadata_dir']); + $this->_registry['default']->setConfig($this, false); + $this->_regInitialized['default'] = false; + //$GLOBALS['_PEAR_Config_instance'] = &$this; +@@ -754,7 +770,9 @@ class PEAR_Config extends PEAR + $this->configuration[$layer] = $data; + $this->_setupChannels(); + if (!$this->_noRegistry && ($phpdir = $this->get('php_dir', $layer, 'pear.php.net'))) { +- $this->_registry[$layer] = &new PEAR_Registry($phpdir); ++ $this->_registry[$layer] = &new PEAR_Registry( ++ $phpdir, false, false, ++ $this->get('metadata_dir', $layer, 'pear.php.net')); + $this->_registry[$layer]->setConfig($this, false); + $this->_regInitialized[$layer] = false; + } else { +@@ -911,7 +929,9 @@ class PEAR_Config extends PEAR + + $this->_setupChannels(); + if (!$this->_noRegistry && ($phpdir = $this->get('php_dir', $layer, 'pear.php.net'))) { +- $this->_registry[$layer] = &new PEAR_Registry($phpdir); ++ $this->_registry[$layer] = &new PEAR_Registry( ++ $phpdir, false, false, ++ $this->get('metadata_dir', $layer, 'pear.php.net')); + $this->_registry[$layer]->setConfig($this, false); + $this->_regInitialized[$layer] = false; + } else { +@@ -1604,7 +1624,9 @@ class PEAR_Config extends PEAR + + if (!is_object($this->_registry[$layer])) { + if ($phpdir = $this->get('php_dir', $layer, 'pear.php.net')) { +- $this->_registry[$layer] = &new PEAR_Registry($phpdir); ++ $this->_registry[$layer] = &new PEAR_Registry( ++ $phpdir, false, false, ++ $this->get('metadata_dir', $layer, 'pear.php.net')); + $this->_registry[$layer]->setConfig($this, false); + $this->_regInitialized[$layer] = false; + } else { +@@ -2087,8 +2109,9 @@ class PEAR_Config extends PEAR + if ($layer == 'ftp' || !isset($this->_registry[$layer])) { + continue; + } +- $this->_registry[$layer] = +- &new PEAR_Registry($this->get('php_dir', $layer, 'pear.php.net')); ++ $this->_registry[$layer] = &new PEAR_Registry( ++ $this->get('php_dir', $layer, 'pear.php.net'), false, false, ++ $this->get('metadata_dir', $layer, 'pear.php.net')); + $this->_registry[$layer]->setConfig($this, false); + $this->_regInitialized[$layer] = false; + } +diff -up PEAR/DependencyDB.php.metadata PEAR/DependencyDB.php +--- PEAR/DependencyDB.php.metadata 2011-07-07 00:11:24.000000000 +0200 ++++ PEAR/DependencyDB.php 2012-09-26 16:02:29.832393782 +0200 +@@ -122,8 +122,11 @@ class PEAR_DependencyDB + + $this->_registry = &$this->_config->getRegistry(); + if (!$depdb) { +- $this->_depdb = $this->_config->get('php_dir', null, 'pear.php.net') . +- DIRECTORY_SEPARATOR . '.depdb'; ++ $dir = $this->_config->get('metadata_dir', null, 'pear.php.net'); ++ if (!$dir) { ++ $dir = $this->_config->get('php_dir', null, 'pear.php.net'); ++ } ++ $this->_depdb = $dir . DIRECTORY_SEPARATOR . '.depdb'; + } else { + $this->_depdb = $depdb; + } +@@ -766,4 +769,4 @@ class PEAR_DependencyDB + ); + } + } +-} +\ Pas de fin de ligne à la fin du fichier ++} +diff -up PEAR/Installer.php.metadata PEAR/Installer.php +--- PEAR/Installer.php.metadata 2011-07-07 00:11:24.000000000 +0200 ++++ PEAR/Installer.php 2012-09-26 16:03:15.079556967 +0200 +@@ -1162,15 +1162,6 @@ class PEAR_Installer extends PEAR_Downlo + + $pkgname = $pkg->getName(); + $channel = $pkg->getChannel(); +- if (isset($this->_options['packagingroot'])) { +- $regdir = $this->_prependPath( +- $this->config->get('php_dir', null, 'pear.php.net'), +- $this->_options['packagingroot']); +- +- $packrootphp_dir = $this->_prependPath( +- $this->config->get('php_dir', null, $channel), +- $this->_options['packagingroot']); +- } + + if (isset($options['installroot'])) { + $this->config->setInstallRoot($options['installroot']); +@@ -1182,7 +1173,21 @@ class PEAR_Installer extends PEAR_Downlo + $this->config->setInstallRoot(false); + $this->_registry = &$this->config->getRegistry(); + if (isset($this->_options['packagingroot'])) { +- $installregistry = &new PEAR_Registry($regdir); ++ $regdir = $this->_prependPath( ++ $this->config->get('php_dir', null, 'pear.php.net'), ++ $this->_options['packagingroot']); ++ ++ $metadata_dir = $this->config->get('metadata_dir', null, 'pear.php.net'); ++ if ($metadata_dir) { ++ $metadata_dir = $this->_prependPath( ++ $metadata_dir, ++ $this->_options['packagingroot']); ++ } ++ $packrootphp_dir = $this->_prependPath( ++ $this->config->get('php_dir', null, $channel), ++ $this->_options['packagingroot']); ++ ++ $installregistry = &new PEAR_Registry($regdir, false, false, $metadata_dir); + if (!$installregistry->channelExists($channel, true)) { + // we need to fake a channel-discover of this channel + $chanobj = $this->_registry->getChannel($channel, true); +@@ -1820,4 +1825,4 @@ class PEAR_Installer extends PEAR_Downlo + } + + // }}} +-} +\ Pas de fin de ligne à la fin du fichier ++} +diff --git a/PEAR/Registry.php b/PEAR/Registry.php +index 3a7bbb1..17de529 100644 +--- PEAR/Registry.php ++++ PEAR/Registry.php +@@ -132,23 +132,26 @@ class PEAR_Registry extends PEAR + * @access public + */ + function PEAR_Registry($pear_install_dir = PEAR_INSTALL_DIR, $pear_channel = false, +- $pecl_channel = false) ++ $pecl_channel = false, $pear_metadata_dir = '') + { + parent::PEAR(); +- $this->setInstallDir($pear_install_dir); ++ $this->setInstallDir($pear_install_dir, $pear_metadata_dir); + $this->_pearChannel = $pear_channel; + $this->_peclChannel = $pecl_channel; + $this->_config = false; + } + +- function setInstallDir($pear_install_dir = PEAR_INSTALL_DIR) ++ function setInstallDir($pear_install_dir = PEAR_INSTALL_DIR, $pear_metadata_dir = '') + { + $ds = DIRECTORY_SEPARATOR; + $this->install_dir = $pear_install_dir; +- $this->channelsdir = $pear_install_dir.$ds.'.channels'; +- $this->statedir = $pear_install_dir.$ds.'.registry'; +- $this->filemap = $pear_install_dir.$ds.'.filemap'; +- $this->lockfile = $pear_install_dir.$ds.'.lock'; ++ if (!$pear_metadata_dir) { ++ $pear_metadata_dir = $pear_install_dir; ++ } ++ $this->channelsdir = $pear_metadata_dir.$ds.'.channels'; ++ $this->statedir = $pear_metadata_dir.$ds.'.registry'; ++ $this->filemap = $pear_metadata_dir.$ds.'.filemap'; ++ $this->lockfile = $pear_metadata_dir.$ds.'.lock'; + } + + function hasWriteAccess() +@@ -181,7 +184,7 @@ class PEAR_Registry extends PEAR + { + $this->_config = &$config; + if ($resetInstallDir) { +- $this->setInstallDir($config->get('php_dir')); ++ $this->setInstallDir($config->get('php_dir'), $config->get('metadata_dir')); + } + } + +@@ -328,9 +331,9 @@ class PEAR_Registry extends PEAR + $this->_dependencyDB = &PEAR_DependencyDB::singleton($this->_config); + if (PEAR::isError($this->_dependencyDB)) { + // attempt to recover by removing the dep db +- if (file_exists($this->_config->get('php_dir', null, 'pear.php.net') . ++ if (file_exists($this->_config->get('metadata_dir', null, 'pear.php.net') . + DIRECTORY_SEPARATOR . '.depdb')) { +- @unlink($this->_config->get('php_dir', null, 'pear.php.net') . ++ @unlink($this->_config->get('metadata_dir', null, 'pear.php.net') . + DIRECTORY_SEPARATOR . '.depdb'); + } + +@@ -2328,4 +2331,4 @@ class PEAR_Registry extends PEAR + } + return $ret; + } +-} +\ No newline at end of file ++} diff --git a/SOURCES/strip.php b/SOURCES/strip.php new file mode 100644 index 0000000..5c5216b --- /dev/null +++ b/SOURCES/strip.php @@ -0,0 +1,35 @@ + \ No newline at end of file diff --git a/SPECS/php-pear.spec b/SPECS/php-pear.spec new file mode 100644 index 0000000..d535ed2 --- /dev/null +++ b/SPECS/php-pear.spec @@ -0,0 +1,550 @@ +%{?scl:%scl_package php-pear} +%{!?scl:%global pkg_name %{name}} +%{!?scl:%global _root_sysconfdir %{_sysconfdir}} + +%global peardir %{_datadir}/pear +%global metadir %{_localstatedir}/lib/pear + +%global getoptver 1.3.1 +%global arctarver 1.3.11 +# https://pear.php.net/bugs/bug.php?id=19367 +# Structures_Graph 1.0.4 - incorrect FSF address +%global structver 1.0.4 +%global xmlutil 1.2.1 + +# Tests are only run with rpmbuild --with tests +# Can't be run in mock / koji because PEAR is the first package +%global with_tests %{?_with_tests:1}%{!?_with_tests:0} + +Summary: PHP Extension and Application Repository framework +Name: %{?scl_prefix}php-pear +Version: 1.9.4 +Release: 10%{?dist} +Epoch: 1 +# PEAR, Archive_Tar, XML_Util are BSD +# Console_Getopt is PHP +# Structures_Graph is LGPLv2+ +License: BSD and PHP and LGPLv2+ +Group: Development/Languages +URL: http://pear.php.net/package/PEAR +Source0: http://download.pear.php.net/package/PEAR-%{version}.tgz +# wget https://raw.github.com/pear/pear-core/master/install-pear.php +Source1: install-pear.php +Source3: strip.php +Source10: pear.sh +Source11: pecl.sh +Source12: peardev.sh +Source13: macros.pear +Source21: http://pear.php.net/get/Archive_Tar-%{arctarver}.tgz +Source22: http://pear.php.net/get/Console_Getopt-%{getoptver}.tgz +Source23: http://pear.php.net/get/Structures_Graph-%{structver}.tgz +Source24: http://pear.php.net/get/XML_Util-%{xmlutil}.tgz +# From RHEL: ignore REST cache creation failures as non-root user (#747361) +# TODO See https://github.com/pear/pear-core/commit/dfef86e05211d2abc7870209d69064d448ef53b3#PEAR/REST.php +Patch0: php-pear-1.9.4-restcache.patch +# Relocate Metadata +Patch1: php-pear-metadata.patch + +BuildArch: noarch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRequires: %{?scl_prefix}php-cli >= 5.1.0-1, %{?scl_prefix}php-xml, gnupg +%if %{with_tests} +BuildRequires: %{?scl_prefix}php-pear(pear.phpunit.de/PHPUnit) +%endif + +Provides: %{?scl_prefix}php-pear(Console_Getopt) = %{getoptver} +Provides: %{?scl_prefix}php-pear(Archive_Tar) = %{arctarver} +Provides: %{?scl_prefix}php-pear(PEAR) = %{version} +Provides: %{?scl_prefix}php-pear(Structures_Graph) = %{structver} +Provides: %{?scl_prefix}php-pear(XML_Util) = %{xmlutil} +Obsoletes: %{?scl_prefix}php-pear-XML-Util < %{xmlutil}-%{release} +Provides: %{?scl_prefix}php-pear-XML-Util = %{xmlutil}-%{release} + +Requires: %{?scl_prefix}php-cli +# phpci detected extension +# PEAR (date, spl always builtin): +Requires: %{?scl_prefix}php-ftp +Requires: %{?scl_prefix}php-pcre +Requires: %{?scl_prefix}php-posix +Requires: %{?scl_prefix}php-tokenizer +Requires: %{?scl_prefix}php-xml +Requires: %{?scl_prefix}php-zlib +# Console_Getopt: pcre +# Archive_Tar: pcre, posix, zlib +Requires: %{?scl_prefix}php-bz2 +# Structures_Graph: none +# XML_Util: pcre +# optional: overload and xdebug + + +%description +PEAR is a framework and distribution system for reusable PHP +components. This package contains the basic PEAR components. + +%prep +%setup -cT + +# Create a usable PEAR directory (used by install-pear.php) +for archive in %{SOURCE0} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24} +do + tar xzf $archive --strip-components 1 || tar xzf $archive --strip-path 1 + file=${archive##*/} + [ -f LICENSE ] && mv LICENSE LICENSE-${file%%-*} + [ -f README ] && mv README README-${file%%-*} + + tar xzf $archive 'package*xml' + [ -f package2.xml ] && mv package2.xml ${file%%-*}.xml \ + || mv package.xml ${file%%-*}.xml +done +cp %{SOURCE1} . + +# apply patches on used PEAR during install +%patch1 -p0 -b .metadata + + +%build +# This is an empty build section. + +%install +rm -rf $RPM_BUILD_ROOT + +export PHP_PEAR_SYSCONF_DIR=%{_sysconfdir} +export PHP_PEAR_SIG_KEYDIR=%{_sysconfdir}/pearkeys +export PHP_PEAR_SIG_BIN=%{_root_bindir}/gpg +export PHP_PEAR_INSTALL_DIR=%{peardir} + +# 1.4.11 tries to write to the cache directory during installation +# so it's not possible to set a sane default via the environment. +# The ${PWD} bit will be stripped via relocate.php later. +export PHP_PEAR_CACHE_DIR=${PWD}%{_localstatedir}/cache/php-pear +export PHP_PEAR_TEMP_DIR=/var/tmp + +install -d $RPM_BUILD_ROOT%{peardir} \ + $RPM_BUILD_ROOT%{_localstatedir}/cache/php-pear \ + $RPM_BUILD_ROOT%{_localstatedir}/www/html \ + $RPM_BUILD_ROOT%{_localstatedir}/lib/pear/pkgxml \ + $RPM_BUILD_ROOT%{_root_sysconfdir}/rpm \ + $RPM_BUILD_ROOT%{_sysconfdir}/pear + +export INSTALL_ROOT=$RPM_BUILD_ROOT + +%{_bindir}/php --version + +%{_bindir}/php -dmemory_limit=64M -dshort_open_tag=0 -dsafe_mode=0 \ + -d 'error_reporting=E_ALL&~E_DEPRECATED' -ddetect_unicode=0 \ + install-pear.php --force \ + --dir %{peardir} \ + --cache %{_localstatedir}/cache/php-pear \ + --config %{_sysconfdir}/pear \ + --bin %{_bindir} \ + --www %{_localstatedir}/www/html \ + --doc %{_docdir}/pear \ + --test %{_datadir}/tests/pear \ + --data %{_datadir}/pear-data \ + --metadata %{metadir} \ + %{SOURCE0} %{SOURCE21} %{SOURCE22} %{SOURCE23} %{SOURCE24} + +# Replace /usr/bin/* with simple scripts: +install -m 755 %{SOURCE10} $RPM_BUILD_ROOT%{_bindir}/pear +install -m 755 %{SOURCE11} $RPM_BUILD_ROOT%{_bindir}/pecl +install -m 755 %{SOURCE12} $RPM_BUILD_ROOT%{_bindir}/peardev +for exe in pear pecl peardev; do + sed -e 's:/usr:%{_prefix}:' \ + -i $RPM_BUILD_ROOT%{_bindir}/$exe +done + +# Sanitize the pear.conf +%{_bindir}/php %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf ext_dir >new-pear.conf +%{_bindir}/php %{SOURCE3} new-pear.conf http_proxy > $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf + +%{_bindir}/php -r "print_r(unserialize(substr(file_get_contents('$RPM_BUILD_ROOT%{_sysconfdir}/pear.conf'),17)));" + +install -m 644 -c %{SOURCE13} \ + $RPM_BUILD_ROOT%{_root_sysconfdir}/rpm/macros.%{name} + +sed -e 's/@SCL@/%{?scl:%{scl}_}/' \ + -e 's:@VARDIR@:%{_localstatedir}:' \ + -e 's:@BINDIR@:%{_bindir}:' \ + -i $RPM_BUILD_ROOT%{_root_sysconfdir}/rpm/macros.%{name} +cat $RPM_BUILD_ROOT%{_root_sysconfdir}/rpm/macros.%{name} + +# apply patches on installed PEAR tree +pushd $RPM_BUILD_ROOT%{peardir} + pushd PEAR + %__patch -s --no-backup --fuzz 0 -p0 < %{PATCH0} + popd + %__patch -s --no-backup --fuzz 0 -p0 < %{PATCH1} +popd + +# Why this file here ? +rm -rf $RPM_BUILD_ROOT/.depdb* $RPM_BUILD_ROOT/.lock $RPM_BUILD_ROOT/.channels $RPM_BUILD_ROOT/.filemap + +# Need for re-registrying XML_Util +install -m 644 *.xml $RPM_BUILD_ROOT%{_localstatedir}/lib/pear/pkgxml + +# make the cli commands available in standard root for SCL build +%if 0%{?scl:1} +#install -m 755 -d $RPM_BUILD_ROOT%{_root_bindir} +#ln -s %{_bindir}/pear $RPM_BUILD_ROOT%{_root_bindir}/%{scl_prefix}pear +%endif + + +%check +# Check that no bogus paths are left in the configuration, or in +# the generated registry files. +grep $RPM_BUILD_ROOT $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1 +grep %{_libdir} $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1 +grep '"/tmp"' $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1 +grep /usr/local $RPM_BUILD_ROOT%{_sysconfdir}/pear.conf && exit 1 +grep -rl $RPM_BUILD_ROOT $RPM_BUILD_ROOT && exit 1 + + +%if %{with_tests} +cd $RPM_BUILD_ROOT%{pear_phpdir}/test/Structures_Graph/tests +phpunit \ + -d date.timezone=UTC \ + -d include_path=.:$RPM_BUILD_ROOT%{pear_phpdir}:%{pear_phpdir}: \ + AllTests || exit 1 + +cd $RPM_BUILD_ROOT%{pear_phpdir}/test/XML_Util/tests +phpunit \ + -d date.timezone=UTC \ + -d include_path=.:$RPM_BUILD_ROOT%{pear_phpdir}:%{pear_phpdir}: \ + AllTests || exit 1 +%else +echo 'Test suite disabled (missing "--with tests" option)' +%endif + + +%clean +rm -rf $RPM_BUILD_ROOT +rm new-pear.conf + + +%pre +# Manage relocation of metadata, before update to pear +if [ -d %{peardir}/.registry -a ! -d %{metadir}/.registry ]; then + mkdir -p %{metadir} + mv -f %{peardir}/.??* %{metadir} +fi + + +%post +# force new value as pear.conf is (noreplace) +current=$(%{_bindir}/pear config-get test_dir system) +if [ "$current" != "%{_datadir}/tests/pear" ]; then +%{_bindir}/pear config-set \ + test_dir %{_datadir}/tests/pear \ + system >/dev/null || : +fi + +current=$(%{_bindir}/pear config-get data_dir system) +if [ "$current" != "%{_datadir}/pear-data" ]; then +%{_bindir}/pear config-set \ + data_dir %{_datadir}/pear-data \ + system >/dev/null || : +fi + +current=$(%{_bindir}/pear config-get metadata_dir system) +if [ "$current" != "%{metadir}" ]; then +%{_bindir}/pear config-set \ + metadata_dir %{metadir} \ + system >/dev/null || : +fi + + +%triggerpostun -- %{?scl_prefix}php-pear-XML-Util +# re-register extension unregistered during postun of obsoleted php-pear-XML-Util +%{_bindir}/pear install --nodeps --soft --force --register-only \ + %{_localstatedir}/lib/pear/pkgxml/XML_Util.xml >/dev/null || : + + +%files +%defattr(-,root,root,-) +%{peardir} +%dir %{metadir} +%{metadir}/.channels +%verify(not mtime size md5) %{metadir}/.depdb +%verify(not mtime) %{metadir}/.depdblock +%verify(not mtime size md5) %{metadir}/.filemap +%verify(not mtime) %{metadir}/.lock +%{metadir}/.registry +%{metadir}/pkgxml +%{_bindir}/* +%config(noreplace) %{_sysconfdir}/pear.conf +%{_root_sysconfdir}/rpm/macros.%{name} +%dir %{_localstatedir}/cache/php-pear +%dir %{_localstatedir}/www/html +%dir %{_sysconfdir}/pear +%doc README* LICENSE* +%dir %{_docdir}/pear +%doc %{_docdir}/pear/* +%dir %{_datadir}/tests +%{_datadir}/tests/pear +%{_datadir}/pear-data +%if 0%{?scl:1} +%dir %{_localstatedir}/www +#%{_root_bindir}/%{scl_prefix}pear +%endif + + +%changelog +* Tue Feb 4 2014 Remi Collet 1:1.9.4-10 +- expand all macros #1058639 + +* Tue Sep 24 2013 Remi Collet 1:1.9.4-8 +- relocate RPM macro #1008846 + +* Thu May 23 2013 Remi Collet 1:1.9.4-7 +- remove wrappers in /usr/bin (#966509) + +* Mon May 6 2013 Remi Collet 1:1.9.4-6 +- don't verify metadata file content (#959425) + +* Thu Apr 25 2013 Remi Collet 1:1.9.4-5 +- update Archive_Tar to 1.3.11 +- add explicit requires on all needed extensions (phpci) +- fix pecl launcher (need ini to be parsed for some + extensions going to be build as shared, mainly simplexml) +- move metadata to /var/lib/pear +- own %%{_localstatedir}/www (#956529) +- update config only if needed in %%post +- remove %%config flag for macros.pear + +* Tue Oct 23 2012 Remi Collet 1:1.9.4-3 +- provides pear command in standard root (scl) + +* Wed Oct 3 2012 Remi Collet 1:1.9.4-2 +- rename, but don't relocate macros.pear + +* Wed Oct 3 2012 Remi Collet 1:1.9.4-1 +- initial spec rewrite for scl build + +* Wed Sep 26 2012 Remi Collet 1:1.9.4-12 +- drop relocate stuff, no more needed + +* Sun Aug 19 2012 Remi Collet 1:1.9.4-11 +- move data to /usr/share/pear-data +- provides all package.xml + +* Wed Aug 15 2012 Remi Collet 1:1.9.4-10 +- enforce test_dir on update + +* Mon Aug 13 2012 Remi Collet 1:1.9.4-9 +- move tests to /usr/share/tests/pear +- move pkgxml to /var/lib/pear +- remove XML_RPC +- refresh installer + +* Fri Jul 20 2012 Fedora Release Engineering - 1:1.9.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Apr 11 2012 Remi Collet 1:1.9.4-7 +- Update Archive_Tar to 1.3.10 + +* Wed Apr 04 2012 Remi Collet 1:1.9.4-6 +- fix Obsoletes version for XML_Util (#226295) +- add link to upstream bug - please Provides LICENSE file + https://pear.php.net/bugs/bug.php?id=19368 +- add link to upstream bug - Incorrect FSF address + https://pear.php.net/bugs/bug.php?id=19367 + +* Mon Feb 27 2012 Remi Collet 1:1.9.4-5 +- Update Archive_Tar to 1.3.9 +- add patch from RHEL (Joe Orton) +- fix install-pear.php URL (with our patch for doc_dir applied) + +* Sat Jan 14 2012 Fedora Release Engineering - 1:1.9.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Sat Oct 15 2011 Remi Collet 1:1.9.4-3 +- update Archive_Tar to 1.3.8 +- allow to build with "tests" option + +* Sat Aug 27 2011 Remi Collet 1:1.9.4-2 +- update to XML_RPC-1.5.5 + +* Thu Jul 07 2011 Remi Collet 1:1.9.4-1 +- update to 1.9.4 + +* Fri Jun 10 2011 Remi Collet 1:1.9.3-2 +- fix pecl launcher + +* Fri Jun 10 2011 Remi Collet 1:1.9.3-1 +- update to 1.9.3 +- sync options in launcher (pecl, pear, peardev) with upstream + +* Wed Mar 16 2011 Remi Collet 1:1.9.2-3 +- move %%{pear_docdir} to %%{_docdir}/pear + https://fedorahosted.org/fpc/ticket/69 + +* Tue Mar 8 2011 Remi Collet 1:1.9.2-2 +- update Console_Getopt to 1.3.1 (no change) + +* Mon Feb 28 2011 Remi Collet 1:1.9.2-1 +- update to 1.9.2 (bug + security fix) + http://pear.php.net/advisory-20110228.txt + +* Wed Feb 09 2011 Fedora Release Engineering - 1:1.9.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sun Dec 12 2010 Remi Collet 1:1.9.1-6 +- update Console_Getopt to 1.3.0 +- don't require php-devel (#657812) +- update install-pear.php + +* Tue Oct 26 2010 Remi Collet 1:1.9.1-5 +- update Structures_Graph to 1.0.4 + +* Fri Sep 10 2010 Joe Orton - 1:1.9.1-4 +- ship LICENSE file for XML_RPC + +* Fri Sep 10 2010 Joe Orton - 1:1.9.1-3 +- require php-devel (without which pecl doesn't work) + +* Mon Jul 05 2010 Remi Collet 1:1.9.1-2 +- update to XML_RPC-1.5.4 + +* Thu May 27 2010 Remi Collet 1:1.9.1-1 +- update to 1.9.1 + +* Thu Apr 29 2010 Remi Collet 1:1.9.0-5 +- update to Archive_Tar-1.3.7 (only metadata fix) + +* Tue Mar 09 2010 Remi Collet 1:1.9.0-4 +- update to Archive_Tar-1.3.6 + +* Sat Jan 16 2010 Remi Collet 1:1.9.0-3 +- update to XML_RPC-1.5.3 +- fix licenses (multiple) +- provide bundled LICENSE files + +* Fri Jan 01 2010 Remi Collet 1:1.9.0-2 +- update to Archive_Tar-1.3.5, Structures_Graph-1.0.3 + +* Sat Sep 05 2009 Remi Collet 1:1.9.0-1 +- update to PEAR 1.9.0, XML_RPC 1.5.2 + +* Sun Jul 26 2009 Fedora Release Engineering - 1:1.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Sat May 30 2009 Remi Collet 1:1.8.1-1 +- update to 1.8.1 +- Update install-pear.php script (1.39) +- add XML_Util + +* Thu Feb 26 2009 Fedora Release Engineering - 1:1.7.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun May 18 2008 Remi Collet 1:1.7.2-2 +- revert to install-pear.php script 1.31 (for cfg_dir) + +* Sun May 18 2008 Remi Collet 1:1.7.2-1 +- update to 1.7.2 +- Update install-pear.php script (1.32) + +* Tue Mar 11 2008 Tim Jackson 1:1.7.1-2 +- Set cfg_dir to be %%{_sysconfdir}/pear (and own it) +- Update install-pear.php script +- Add %%pear_cfgdir and %%pear_wwwdir macros + +* Sun Feb 3 2008 Remi Collet 1:1.7.1-1 +- update to 1.7.1 + +* Fri Feb 1 2008 Remi Collet 1:1.7.0-1 +- update to 1.7.0 + +* Thu Oct 4 2007 Joe Orton 1:1.6.2-2 +- require php-cli not php + +* Sun Sep 9 2007 Remi Collet 1:1.6.2-1 +- update to 1.6.2 +- remove patches merged upstream +- Fix : "pear install" hangs on non default channel (#283401) + +* Tue Aug 21 2007 Joe Orton 1:1.6.1-2 +- fix License + +* Thu Jul 19 2007 Remi Collet 1:1.6.1-1 +- update to PEAR-1.6.1 and Console_Getopt-1.2.3 + +* Thu Jul 19 2007 Remi Collet 1:1.5.4-5 +- new SPEC using install-pear.php instead of install-pear-nozlib-1.5.4.phar + +* Mon Jul 16 2007 Remi Collet 1:1.5.4-4 +- update macros.pear (without define) + +* Mon Jul 16 2007 Joe Orton 1:1.5.4-3 +- add pecl_{un,}install macros to macros.pear (from Remi) + +* Fri May 11 2007 Joe Orton 1:1.5.4-2 +- update to 1.5.4 + +* Tue Mar 6 2007 Joe Orton 1:1.5.0-3 +- add redundant build section (#226295) +- BR php-cli not php (#226295) + +* Mon Feb 19 2007 Joe Orton 1:1.5.0-2 +- update builtin module provides (Remi Collet, #226295) +- drop patch 0 + +* Thu Feb 15 2007 Joe Orton 1:1.5.0-1 +- update to 1.5.0 + +* Mon Feb 5 2007 Joe Orton 1:1.4.11-4 +- fix Group, mark pear.conf noreplace (#226295) + +* Mon Feb 5 2007 Joe Orton 1:1.4.11-3 +- use BuildArch not BuildArchitectures (#226925) +- fix to use preferred BuildRoot (#226925) +- strip more buildroot-relative paths from *.reg +- force correct gpg path in default pear.conf + +* Thu Jan 4 2007 Joe Orton 1:1.4.11-2 +- update to 1.4.11 + +* Fri Jul 14 2006 Joe Orton 1:1.4.9-4 +- update to XML_RPC-1.5.0 +- really package macros.pear + +* Thu Jul 13 2006 Joe Orton 1:1.4.9-3 +- require php-cli +- add /etc/rpm/macros.pear (Christopher Stone) + +* Wed Jul 12 2006 Jesse Keating - 1:1.4.9-2.1 +- rebuild + +* Mon May 8 2006 Joe Orton 1:1.4.9-2 +- update to 1.4.9 (thanks to Remi Collet, #183359) +- package /usr/share/pear/.pkgxml (#190252) +- update to XML_RPC-1.4.8 +- bundle the v3.0 LICENSE file + +* Tue Feb 28 2006 Joe Orton 1:1.4.6-2 +- set cache_dir directory, own /var/cache/php-pear + +* Mon Jan 30 2006 Joe Orton 1:1.4.6-1 +- update to 1.4.6 +- require php >= 5.1.0 (#178821) + +* Fri Dec 30 2005 Tim Jackson 1:1.4.5-6 +- Patches to fix "pear makerpm" + +* Wed Dec 14 2005 Joe Orton 1:1.4.5-5 +- set default sig_keydir to /etc/pearkeys +- remove ext_dir setting from /etc/pear.conf (#175673) + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Tue Dec 6 2005 Joe Orton 1:1.4.5-4 +- fix virtual provide for PEAR package (#175074) + +* Sun Dec 4 2005 Joe Orton 1:1.4.5-3 +- fix /usr/bin/{pecl,peardev} (#174882) + +* Thu Dec 1 2005 Joe Orton 1:1.4.5-2 +- add virtual provides (#173806) + +* Wed Nov 23 2005 Joe Orton 1.4.5-1 +- initial build (Epoch: 1 to allow upgrade from php-pear-5.x)