Hello community,

here is the log from the commit of package php5-pear-phpunit-PHP_Timer for 
openSUSE:Factory checked in at 2012-02-29 14:10:10
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/php5-pear-phpunit-PHP_Timer (Old)
 and      /work/SRC/openSUSE:Factory/.php5-pear-phpunit-PHP_Timer.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "php5-pear-phpunit-PHP_Timer", Maintainer is ""

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/php5-pear-phpunit-PHP_Timer/php5-pear-phpunit-PHP_Timer.changes
  2011-12-21 12:18:47.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.php5-pear-phpunit-PHP_Timer.new/php5-pear-phpunit-PHP_Timer.changes
     2012-02-29 14:10:11.000000000 +0100
@@ -4,0 +5,2 @@
+-------------------------------------------------------------------
+Mon Dec  5 21:29:43 UTC 2011 - [email protected]
@@ -5,0 +8,2 @@
+- Updated to version 1.0.2 
+ - $_SERVER['REQUEST_TIME_FLOAT'] is used when available

Old:
----
  PHP_Timer-1.0.0.tgz

New:
----
  PHP_Timer-1.0.2.tgz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ php5-pear-phpunit-PHP_Timer.spec ++++++
--- /var/tmp/diff_new_pack.1wN937/_old  2012-02-29 14:10:15.000000000 +0100
+++ /var/tmp/diff_new_pack.1wN937/_new  2012-02-29 14:10:15.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package php5-pear-phpunit-PHP_Timer
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,14 +16,15 @@
 #
 
 
+
 Name:           php5-pear-phpunit-PHP_Timer
 %define pear_name  PHP_Timer
 %define pear_sname php_timer
 Summary:        Utility class for timing
+Version:        1.0.2
+Release:        1
 License:        BSD-3-Clause
 Group:          Development/Libraries/PHP
-Version:        1.0.0
-Release:        0
 Source0:        http://pear.phpunit.de/get/%{pear_name}-%{version}.tgz
 Url:            http://pear.phpunit.de/
 Requires:       php5-pear-channel-phpunit
@@ -95,5 +96,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root)
+%{_docdir}/%{pear_name}
 
 %changelog

++++++ PHP_Timer-1.0.0.tgz -> PHP_Timer-1.0.2.tgz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PHP_Timer-1.0.0/PHP/Timer.php 
new/PHP_Timer-1.0.0/PHP/Timer.php
--- old/PHP_Timer-1.0.0/PHP/Timer.php   2010-05-08 18:26:35.000000000 +0200
+++ new/PHP_Timer-1.0.0/PHP/Timer.php   1970-01-01 01:00:00.000000000 +0100
@@ -1,139 +0,0 @@
-<?php
-/**
- * PHP_Timer
- *
- * Copyright (c) 2010, Sebastian Bergmann <[email protected]>.
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- *   * Redistributions of source code must retain the above copyright
- *     notice, this list of conditions and the following disclaimer.
- *
- *   * Redistributions in binary form must reproduce the above copyright
- *     notice, this list of conditions and the following disclaimer in
- *     the documentation and/or other materials provided with the
- *     distribution.
- *
- *   * Neither the name of Sebastian Bergmann nor the names of his
- *     contributors may be used to endorse or promote products derived
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
- * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
- * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
- * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
- * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
- * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- *
- * @package    PHP
- * @subpackage Timer
- * @author     Sebastian Bergmann <[email protected]>
- * @copyright  2010 Sebastian Bergmann <[email protected]>
- * @license    http://www.opensource.org/licenses/bsd-license.php  BSD License
- * @link       http://github.com/sebastianbergmann/php-timer
- * @since      File available since Release 1.0.0
- */
-
-/**
- * Utility class for timing.
- *
- * @package    PHP
- * @subpackage Timer
- * @author     Sebastian Bergmann <[email protected]>
- * @copyright  2002-2010 Sebastian Bergmann <[email protected]>
- * @license    http://www.opensource.org/licenses/bsd-license.php  BSD License
- * @version    Release: 1.0.0
- * @link       http://github.com/sebastianbergmann/php-timer
- * @since      Class available since Release 1.0.0
- */
-class PHP_Timer
-{
-    protected static $startTimes = array();
-
-    /**
-     * Starts the timer.
-     */
-    public static function start()
-    {
-        array_push(self::$startTimes, microtime(TRUE));
-    }
-
-    /**
-     * Stops the timer and returns the elapsed time.
-     *
-     * @return float
-     */
-    public static function stop()
-    {
-        return microtime(TRUE) - array_pop(self::$startTimes);
-    }
-
-    /**
-     * Formats the elapsed time as a string.
-     *
-     * @param  float $time
-     * @return string
-     */
-    public static function secondsToTimeString($time)
-    {
-        $buffer = '';
-
-        $hours   = sprintf('%02d', ($time >= 3600) ? floor($time / 3600) : 0);
-        $minutes = sprintf(
-                     '%02d',
-                     ($time >= 60)   ? floor($time /   60) - 60 * $hours : 0
-                   );
-        $seconds = sprintf('%02d', $time - 60 * 60 * $hours - 60 * $minutes);
-
-        if ($hours == 0 && $minutes == 0) {
-            $seconds = sprintf('%1d', $seconds);
-
-            $buffer .= $seconds . ' second';
-
-            if ($seconds != '1') {
-                $buffer .= 's';
-            }
-        } else {
-            if ($hours > 0) {
-                $buffer = $hours . ':';
-            }
-
-            $buffer .= $minutes . ':' . $seconds;
-        }
-
-        return $buffer;
-    }
-
-    /**
-     * Formats the elapsed time since the start of the request as a string.
-     *
-     * @return string
-     */
-    public static function timeSinceStartOfRequest()
-    {
-        return self::secondsToTimeString(time() - $_SERVER['REQUEST_TIME']);
-    }
-
-    /**
-     * Returns the resources (time, memory) of the request as a string.
-     *
-     * @return string
-     */
-    public static function resourceUsage()
-    {
-        return sprintf(
-          'Time: %s, Memory: %4.2fMb',
-          self::timeSinceStartOfRequest(),
-          memory_get_peak_usage(TRUE) / 1048576
-        );
-    }
-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PHP_Timer-1.0.2/ChangeLog.markdown 
new/PHP_Timer-1.0.2/ChangeLog.markdown
--- old/PHP_Timer-1.0.2/ChangeLog.markdown      1970-01-01 01:00:00.000000000 
+0100
+++ new/PHP_Timer-1.0.2/ChangeLog.markdown      2011-09-07 13:38:14.000000000 
+0200
@@ -0,0 +1,9 @@
+PHP_Timer 1.0
+=============
+
+This is the list of changes for the PHP_Timer 1.0 release series.
+
+PHP_Timer 1.0.1
+---------------
+
+* No changes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PHP_Timer-1.0.2/LICENSE new/PHP_Timer-1.0.2/LICENSE
--- old/PHP_Timer-1.0.2/LICENSE 1970-01-01 01:00:00.000000000 +0100
+++ new/PHP_Timer-1.0.2/LICENSE 2011-09-07 13:38:14.000000000 +0200
@@ -0,0 +1,33 @@
+PHP_Timer
+
+Copyright (c) 2010-2011, Sebastian Bergmann <[email protected]>.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+ * Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+ * Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in
+   the documentation and/or other materials provided with the
+   distribution.
+
+ * Neither the name of Sebastian Bergmann nor the names of his
+   contributors may be used to endorse or promote products derived
+   from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PHP_Timer-1.0.2/PHP/Timer/Autoload.php 
new/PHP_Timer-1.0.2/PHP/Timer/Autoload.php
--- old/PHP_Timer-1.0.2/PHP/Timer/Autoload.php  1970-01-01 01:00:00.000000000 
+0100
+++ new/PHP_Timer-1.0.2/PHP/Timer/Autoload.php  2011-09-07 13:38:14.000000000 
+0200
@@ -0,0 +1,75 @@
+<?php
+/**
+ * PHP_Timer
+ *
+ * Copyright (c) 2010-2011, Sebastian Bergmann <[email protected]>.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ *   * Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ *
+ *   * Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in
+ *     the documentation and/or other materials provided with the
+ *     distribution.
+ *
+ *   * Neither the name of Sebastian Bergmann nor the names of his
+ *     contributors may be used to endorse or promote products derived
+ *     from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @package    PHP
+ * @subpackage Timer
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2010-2011 Sebastian Bergmann <[email protected]>
+ * @license    http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @link       http://github.com/sebastianbergmann/php-timer
+ * @since      File available since Release 1.1.0
+ */
+
+function php_timer_autoload($class = NULL) {
+    static $classes = NULL;
+    static $path = NULL;
+
+    if ($classes === NULL) {
+        $classes = array(
+          'php_timer' => '/Timer.php'
+        );
+
+        $path = dirname(dirname(__FILE__));
+    }
+
+    if ($class === NULL) {
+        $result = array(__FILE__);
+
+        foreach ($classes as $file) {
+            $result[] = $path . $file;
+        }
+
+        return $result;
+    }
+
+    $cn = strtolower($class);
+
+    if (isset($classes[$cn])) {
+        require $path . $classes[$cn];
+    }
+}
+
+spl_autoload_register('php_timer_autoload');
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PHP_Timer-1.0.2/PHP/Timer.php 
new/PHP_Timer-1.0.2/PHP/Timer.php
--- old/PHP_Timer-1.0.2/PHP/Timer.php   1970-01-01 01:00:00.000000000 +0100
+++ new/PHP_Timer-1.0.2/PHP/Timer.php   2011-09-07 13:38:14.000000000 +0200
@@ -0,0 +1,153 @@
+<?php
+/**
+ * PHP_Timer
+ *
+ * Copyright (c) 2010-2011, Sebastian Bergmann <[email protected]>.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ *   * Redistributions of source code must retain the above copyright
+ *     notice, this list of conditions and the following disclaimer.
+ *
+ *   * Redistributions in binary form must reproduce the above copyright
+ *     notice, this list of conditions and the following disclaimer in
+ *     the documentation and/or other materials provided with the
+ *     distribution.
+ *
+ *   * Neither the name of Sebastian Bergmann nor the names of his
+ *     contributors may be used to endorse or promote products derived
+ *     from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
+ * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+ * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+ * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+ * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ *
+ * @package    PHP
+ * @subpackage Timer
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2010-2011 Sebastian Bergmann <[email protected]>
+ * @license    http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @link       http://github.com/sebastianbergmann/php-timer
+ * @since      File available since Release 1.0.0
+ */
+
+/**
+ * Utility class for timing.
+ *
+ * @package    PHP
+ * @subpackage Timer
+ * @author     Sebastian Bergmann <[email protected]>
+ * @copyright  2010-2011 Sebastian Bergmann <[email protected]>
+ * @license    http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @version    Release: 1.0.2
+ * @link       http://github.com/sebastianbergmann/php-timer
+ * @since      Class available since Release 1.0.0
+ */
+class PHP_Timer
+{
+    /**
+     * @var array
+     */
+    protected static $startTimes = array();
+
+    /**
+     * @var float
+     */
+    public static $requestTime;
+
+    /**
+     * Starts the timer.
+     */
+    public static function start()
+    {
+        array_push(self::$startTimes, microtime(TRUE));
+    }
+
+    /**
+     * Stops the timer and returns the elapsed time.
+     *
+     * @return float
+     */
+    public static function stop()
+    {
+        return microtime(TRUE) - array_pop(self::$startTimes);
+    }
+
+    /**
+     * Formats the elapsed time as a string.
+     *
+     * @param  float $time
+     * @return string
+     */
+    public static function secondsToTimeString($time)
+    {
+        $buffer = '';
+
+        $hours   = sprintf('%02d', ($time >= 3600) ? floor($time / 3600) : 0);
+        $minutes = sprintf(
+                     '%02d',
+                     ($time >= 60)   ? floor($time /   60) - 60 * $hours : 0
+                   );
+        $seconds = sprintf('%02d', $time - 60 * 60 * $hours - 60 * $minutes);
+
+        if ($hours == 0 && $minutes == 0) {
+            $seconds = sprintf('%1d', $seconds);
+
+            $buffer .= $seconds . ' second';
+
+            if ($seconds != '1') {
+                $buffer .= 's';
+            }
+        } else {
+            if ($hours > 0) {
+                $buffer = $hours . ':';
+            }
+
+            $buffer .= $minutes . ':' . $seconds;
+        }
+
+        return $buffer;
+    }
+
+    /**
+     * Formats the elapsed time since the start of the request as a string.
+     *
+     * @return string
+     */
+    public static function timeSinceStartOfRequest()
+    {
+        return self::secondsToTimeString(time() - self::$requestTime);
+    }
+
+    /**
+     * Returns the resources (time, memory) of the request as a string.
+     *
+     * @return string
+     */
+    public static function resourceUsage()
+    {
+        return sprintf(
+          'Time: %s, Memory: %4.2fMb',
+          self::timeSinceStartOfRequest(),
+          memory_get_peak_usage(TRUE) / 1048576
+        );
+    }
+}
+
+if (isset($_SERVER['REQUEST_TIME'])) {
+    PHP_Timer::$requestTime = $_SERVER['REQUEST_TIME'];
+} else {
+    PHP_Timer::$requestTime = time();
+}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/PHP_Timer-1.0.2/README.markdown 
new/PHP_Timer-1.0.2/README.markdown
--- old/PHP_Timer-1.0.2/README.markdown 1970-01-01 01:00:00.000000000 +0100
+++ new/PHP_Timer-1.0.2/README.markdown 2011-09-07 13:38:14.000000000 +0200
@@ -0,0 +1,23 @@
+PHP_Timer
+=========
+
+Installation
+------------
+
+PHP_Timer should be installed using the [PEAR 
Installer](http://pear.php.net/). This installer is the backbone of PEAR, which 
provides a distribution system for PHP packages, and is shipped with every 
release of PHP since version 4.3.0.
+
+The PEAR channel (`pear.phpunit.de`) that is used to distribute PHP_Timer 
needs to be registered with the local PEAR environment:
+
+    sb@ubuntu ~ % pear channel-discover pear.phpunit.de
+    Adding Channel "pear.phpunit.de" succeeded
+    Discovery of channel "pear.phpunit.de" succeeded
+
+This has to be done only once. Now the PEAR Installer can be used to install 
packages from the PHPUnit channel:
+
+    sb@vmware ~ % pear install phpunit/PHP_Timer
+    downloading PHP_Timer-1.0.0.tgz ...
+    Starting to download PHP_Timer-1.0.0.tgz (2,536 bytes)
+    ....done: 2,536 bytes
+    install ok: channel://pear.phpunit.de/PHP_Timer-1.0.0
+
+After the installation you can find the PHP_Timer source files inside your 
local PEAR directory; the path is usually `/usr/lib/php/PHP`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package.sig new/package.sig
--- old/package.sig     2010-05-08 18:26:41.000000000 +0200
+++ new/package.sig     2011-09-07 13:38:25.000000000 +0200
@@ -1,7 +1,7 @@
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.10 (GNU/Linux)
 
-iEYEABECAAYFAkvlkMEACgkQaGfFFLhbXWl01gCfWKmmUaZgrPtYU23t7JIEvEfz
-AlYAn3FPXMOW/8NWq2AIDvEM6GtfZ7bh
-=0M2x
+iEYEABECAAYFAk5nV7EACgkQaGfFFLhbXWl0IQCfWT/2Uw7HqTgWfa7r4WQ/7tMD
+gk4AnArN3rLfZqj/UwHBGmgMPebI+Lki
+=LjcT
 -----END PGP SIGNATURE-----
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/package.xml new/package.xml
--- old/package.xml     2010-05-08 18:26:35.000000000 +0200
+++ new/package.xml     2011-09-07 13:38:14.000000000 +0200
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<package packagerversion="1.9.0" version="2.0" 
xmlns="http://pear.php.net/dtd/package-2.0"; 
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0                       
http://pear.php.net/dtd/tasks-1.0.xsd                       
http://pear.php.net/dtd/package-2.0                       
http://pear.php.net/dtd/package-2.0.xsd";>
+<package packagerversion="1.9.4" version="2.0" 
xmlns="http://pear.php.net/dtd/package-2.0"; 
xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0                       
http://pear.php.net/dtd/tasks-1.0.xsd                       
http://pear.php.net/dtd/package-2.0                       
http://pear.php.net/dtd/package-2.0.xsd";>
  <name>PHP_Timer</name>
  <channel>pear.phpunit.de</channel>
  <summary>Utility class for timing</summary>
@@ -10,10 +10,10 @@
   <email>[email protected]</email>
   <active>yes</active>
  </lead>
- <date>2010-05-08</date>
- <time>18:26:35</time>
+ <date>2011-09-07</date>
+ <time>11:38:14</time>
  <version>
-  <release>1.0.0</release>
+  <release>1.0.2</release>
   <api>1.0.0</api>
  </version>
  <stability>
@@ -26,9 +26,15 @@
  </notes>
  <contents>
   <dir name="/">
-   <file baseinstalldir="/" md5sum="0f3e1c315c9ad0eb1c38348f7826dad4" 
name="PHP/Timer.php" role="php">
+   <file baseinstalldir="/" md5sum="373bbb5f3fce44d82646b25cdf58e7dd" 
name="PHP/Timer/Autoload.php" role="php">
     <tasks:replace from="@package_version@" to="version" type="package-info" />
    </file>
+   <file baseinstalldir="/" md5sum="f69722829638a2d1fabdab4dd2b6c854" 
name="PHP/Timer.php" role="php">
+    <tasks:replace from="@package_version@" to="version" type="package-info" />
+   </file>
+   <file baseinstalldir="/" md5sum="a3f8a544a1b539cee54a07e3ec7afa5d" 
name="ChangeLog.markdown" role="doc" />
+   <file baseinstalldir="/" md5sum="ee64ef6972cbb7aff5bf2211726fd750" 
name="LICENSE" role="doc" />
+   <file baseinstalldir="/" md5sum="5bfbe245c2c30b5f6e140f930a96e4c6" 
name="README.markdown" role="doc" />
   </dir>
  </contents>
  <dependencies>
@@ -37,7 +43,7 @@
     <min>5.2.7</min>
    </php>
    <pearinstaller>
-    <min>1.9.0</min>
+    <min>1.9.2</min>
    </pearinstaller>
   </required>
  </dependencies>

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to