[commits] Horde branch master updated. 68a485649cebc4ab7af40fc4e3405ed4b5fdf833

Gunnar Wrobel p at rdus.de
Tue Mar 15 20:47:49 UTC 2011


The branch "master" has been updated.
The following is a summary of the commits.

from: adfe55b41b76350377106ad5a18197e9ce65c952

0253aaf Update the dependencies.
03cb9f3 Add testing for the sentinel.
92aa289 Extract class.
84519f2 Add optional "Release" dependency and extract git actions from packaging.
1cf86be Fix package name.
6f58da7 Handle exceptions while bootstrapping.
c55b1c4 Initial support for updating the sentinel.
a14664f Allow the sentinel handler to replace the existing sentinel and provide the means to update Application.php as well.
2b64009 Provide tools to retrieve the paths for the CHANGES and Application.php files.
fffc764 PEAR to Horde version converter.
3600d02 Deal with git postfix.
68a4856 Complete sentinel updates in the release module.

-----------------------------------------------------------------------

commit 0253aaf2badf60f2eea21a1b567685c1f15f002b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 17:54:02 2011 +0100

    Update the dependencies.
    
    I didn't see why this would depend on Core.

 framework/Release/package.xml |   30 +++++++++++++++++++++++++++++-
 1 files changed, 29 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/0253aaf2badf60f2eea21a1b567685c1f15f002b

-----------------------------------------------------------------------

commit 03cb9f3a016b7e89858901ed9963d7f0dd423c2b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 18:19:59 2011 +0100

    Add testing for the sentinel.

 framework/Release/test/Horde/Release/AllTests.php         |   45 ++++++
 framework/Release/test/Horde/Release/Autoload.php         |   24 ++++
 framework/Release/test/Horde/Release/Stub/Release.php     |    9 ++
 framework/Release/test/Horde/Release/TestCase.php         |   38 +++++
 framework/Release/test/Horde/Release/Unit/ReleaseTest.php |   91 +++++++++++++
 framework/Release/test/Horde/Release/phpunit.xml          |    8 +
 6 files changed, 215 insertions(+), 0 deletions(-)
 create mode 100644 framework/Release/test/Horde/Release/AllTests.php
 create mode 100644 framework/Release/test/Horde/Release/Autoload.php
 create mode 100644 framework/Release/test/Horde/Release/Stub/Release.php
 create mode 100644 framework/Release/test/Horde/Release/TestCase.php
 create mode 100644 framework/Release/test/Horde/Release/Unit/ReleaseTest.php
 create mode 100644 framework/Release/test/Horde/Release/phpunit.xml

http://git.horde.org/horde-git/-/commit/03cb9f3a016b7e89858901ed9963d7f0dd423c2b

-----------------------------------------------------------------------

commit 92aa28977b7c972357584fb26bf9af7ae64d2275
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 18:27:00 2011 +0100

    Extract class.

 framework/Release/lib/Horde/Release.php          |   21 ++----
 framework/Release/lib/Horde/Release/Sentinel.php |   88 ++++++++++++++++++++++
 framework/Release/package.xml                    |   49 +++++++++++-
 3 files changed, 138 insertions(+), 20 deletions(-)
 create mode 100644 framework/Release/lib/Horde/Release/Sentinel.php

http://git.horde.org/horde-git/-/commit/92aa28977b7c972357584fb26bf9af7ae64d2275

-----------------------------------------------------------------------

commit 84519f21821eed5618c2f815367f5c1961f9da7b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 18:33:01 2011 +0100

    Add optional "Release" dependency and extract git actions from packaging.

 components/lib/Components/Module/Release.php |    5 +++--
 components/lib/Components/Runner/Release.php |   16 ++++++++--------
 components/package.xml                       |   10 +++++++---
 3 files changed, 18 insertions(+), 13 deletions(-)

http://git.horde.org/horde-git/-/commit/84519f21821eed5618c2f815367f5c1961f9da7b

-----------------------------------------------------------------------

commit 1cf86be469b8a490e0024b54b005139dfa978616
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 18:42:32 2011 +0100

    Fix package name.

 framework/Release/package.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/1cf86be469b8a490e0024b54b005139dfa978616

-----------------------------------------------------------------------

commit 6f58da7be4ac931d2a6e8b089b2e5c6ca25af64d
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 18:42:49 2011 +0100

    Handle exceptions while bootstrapping.

 components/bin/horde-bootstrap |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/6f58da7be4ac931d2a6e8b089b2e5c6ca25af64d

-----------------------------------------------------------------------

commit c55b1c4fcfa196e281e46d281329093eb2ebd88b
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 20:19:36 2011 +0100

    Initial support for updating the sentinel.

 components/lib/Components/Module/Release.php |    7 +++++++
 components/lib/Components/Runner/Release.php |   12 ++++++++++++
 2 files changed, 19 insertions(+), 0 deletions(-)

http://git.horde.org/horde-git/-/commit/c55b1c4fcfa196e281e46d281329093eb2ebd88b

-----------------------------------------------------------------------

commit a14664fda11a58b3737f7b6686034a8de63db3be
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 20:57:07 2011 +0100

    Allow the sentinel handler to replace the existing sentinel and provide the means to update Application.php as well.

 framework/Release/lib/Horde/Release.php                           |    7 +-
 framework/Release/lib/Horde/Release/Sentinel.php                  |  123 ++++-
 framework/Release/package.xml                                     |    6 +-
 .../Release/test/Horde/Release/Unit/Release/SentinelTest.php      |   91 +++
 4 files changed, 194 insertions(+), 33 deletions(-)
 create mode 100644 framework/Release/test/Horde/Release/Unit/Release/SentinelTest.php

http://git.horde.org/horde-git/-/commit/a14664fda11a58b3737f7b6686034a8de63db3be

-----------------------------------------------------------------------

commit 2b640093b3726d296c78848629e45b67aad8a2b4
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 21:10:07 2011 +0100

    Provide tools to retrieve the paths for the CHANGES and Application.php files.

 framework/Release/lib/Horde/Release/Sentinel.php |   39 ++++++++++++++++++---
 1 files changed, 33 insertions(+), 6 deletions(-)

http://git.horde.org/horde-git/-/commit/2b640093b3726d296c78848629e45b67aad8a2b4

-----------------------------------------------------------------------

commit fffc7646ac074bf7253f7d1148a24c9f11cd9171
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 21:38:42 2011 +0100

    PEAR to Horde version converter.

 components/lib/Components/Helper/Version.php                      |   53 ++
 components/package.xml                                            |    6 +-
 components/test/Components/Unit/Components/Helper/VersionTest.php |  110 +++++
 3 files changed, 168 insertions(+), 1 deletions(-)
 create mode 100644 components/lib/Components/Helper/Version.php
 create mode 100644 components/test/Components/Unit/Components/Helper/VersionTest.php

http://git.horde.org/horde-git/-/commit/fffc7646ac074bf7253f7d1148a24c9f11cd9171

-----------------------------------------------------------------------

commit 3600d027dcdb7ce8b91e71169b9fdbe1ba86a0c6
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 21:44:04 2011 +0100

    Deal with git postfix.

 components/lib/Components/Helper/Version.php                      |    6 +++-
 components/test/Components/Unit/Components/Helper/VersionTest.php |    8 +++++
 2 files changed, 13 insertions(+), 1 deletions(-)

http://git.horde.org/horde-git/-/commit/3600d027dcdb7ce8b91e71169b9fdbe1ba86a0c6

-----------------------------------------------------------------------

commit 68a485649cebc4ab7af40fc4e3405ed4b5fdf833
Author: Gunnar Wrobel <p at rdus.de>
Date:   Tue Mar 15 21:46:47 2011 +0100

    Complete sentinel updates in the release module.

 components/TODO                              |    2 -
 components/lib/Components/Runner/Release.php |   66 ++++++++++++++++++++------
 2 files changed, 51 insertions(+), 17 deletions(-)

http://git.horde.org/horde-git/-/commit/68a485649cebc4ab7af40fc4e3405ed4b5fdf833




More information about the commits mailing list