cellog Wed Aug 17 17:30:46 2005 EDT Modified files: (Branch: PHP_5_1) /php-src/pear/PEAR Remote.php /php-src/pear go-pear-list.php package-PEAR.xml Log: re-enable XML_RPC 1.4.0 http://cvs.php.net/diff.php/php-src/pear/PEAR/Remote.php?r1=1.50.4.1&r2=1.50.4.2&ty=u Index: php-src/pear/PEAR/Remote.php diff -u php-src/pear/PEAR/Remote.php:1.50.4.1 php-src/pear/PEAR/Remote.php:1.50.4.2 --- php-src/pear/PEAR/Remote.php:1.50.4.1 Thu Aug 11 12:43:25 2005 +++ php-src/pear/PEAR/Remote.php Wed Aug 17 17:30:45 2005 @@ -16,7 +16,7 @@ // | Author: Stig Bakken <[EMAIL PROTECTED]> | // +----------------------------------------------------------------------+ // -// $Id: Remote.php,v 1.50.4.1 2005/08/11 16:43:25 rasmus Exp $ +// $Id: Remote.php,v 1.50.4.2 2005/08/17 21:30:45 cellog Exp $ require_once 'PEAR.php'; require_once 'PEAR/Config.php'; @@ -115,9 +115,9 @@ $this->saveCache($_args, $result); }; return $result; - } else { - return $this->raiseError("For this remote PEAR operation you need to load the xmlrpc extension"); } + if ([EMAIL PROTECTED]("XML/RPC.php")) { + return $this->raiseError("For this remote PEAR operation you need to install the XML_RPC package"); array_shift($args); $server_host = $this->config->get('master_server'); $username = $this->config->get('username'); http://cvs.php.net/diff.php/php-src/pear/go-pear-list.php?r1=1.15.2.2&r2=1.15.2.3&ty=u Index: php-src/pear/go-pear-list.php diff -u php-src/pear/go-pear-list.php:1.15.2.2 php-src/pear/go-pear-list.php:1.15.2.3 --- php-src/pear/go-pear-list.php:1.15.2.2 Tue Aug 16 07:35:45 2005 +++ php-src/pear/go-pear-list.php Wed Aug 17 17:30:46 2005 @@ -3,14 +3,14 @@ * that will be used to create the PEAR folder * in the windows snapshot. * See win32/build/mkdist.php for more details - * $Id: go-pear-list.php,v 1.15.2.2 2005/08/16 11:35:45 edink Exp $ + * $Id: go-pear-list.php,v 1.15.2.3 2005/08/17 21:30:46 cellog Exp $ */ $packages = array( // required packages for the installer -"PEAR" => "1.3.5", +"PEAR" => "1.3.6", "XML_RPC" => "1.4.0", "Console_Getopt" => "1.2", -"Archive_Tar" => "1.3.1", +"Archive_Tar" => "1.3.2", // required packages for the web frontend "PEAR_Frontend_Web" => "0.4", http://cvs.php.net/diff.php/php-src/pear/package-PEAR.xml?r1=1.108.2.1&r2=1.108.2.2&ty=u Index: php-src/pear/package-PEAR.xml diff -u php-src/pear/package-PEAR.xml:1.108.2.1 php-src/pear/package-PEAR.xml:1.108.2.2 --- php-src/pear/package-PEAR.xml:1.108.2.1 Thu Aug 11 12:43:25 2005 +++ php-src/pear/package-PEAR.xml Wed Aug 17 17:30:46 2005 @@ -19,7 +19,7 @@ <maintainer> <user>ssb</user> <role>lead</role> - <name>Stig Sæther Bakken</name> + <name>Stig Bakken</name> <email>[EMAIL PROTECTED]</email> </maintainer> <maintainer> @@ -48,14 +48,12 @@ </maintainer> </maintainers> <release> - <version>1.3.5</version> - <date>2005-02-18</date> + <version>1.3.6</version> + <date>2005-08-16</date> <state>stable</state> <license>PHP License</license> <notes> - * fix Bug #3505: pecl can't install PDO - * enhance pear run-tests dramatically - * fix Bug #3506: pear install should export the pear version into the environment + * Bump XML_RPC dependency to 1.4.0 </notes> <provides type="class" name="OS_Guess" /> <provides type="class" name="System" /> @@ -124,13 +122,25 @@ <dep type="php" rel="ge" version="4.2"/> <dep type="pkg" rel="ge" version="1.1">Archive_Tar</dep> <dep type="pkg" rel="ge" version="1.2">Console_Getopt</dep> - <dep type="ext" rel="has">xmlrpc</dep> + <dep type="pkg" rel="ge" version="1.4.0">XML_RPC</dep> <dep type="ext" rel="has">xml</dep> <dep type="ext" rel="has">pcre</dep> + <dep type="ext" rel="has" optional="yes">xmlrpc</dep> </deps> </release> <changelog> <release> + <version>1.3.5</version> + <date>2005-02-18</date> + <state>stable</state> + <license>PHP License</license> + <notes> + * fix Bug #3505: pecl can't install PDO + * enhance pear run-tests dramatically + * fix Bug #3506: pear install should export the pear version into the environment + </notes> + </release> + <release> <version>1.3.1</version> <date>2004-04-06</date> <state>stable</state>
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php