[sqitch] 03/13: Merge tag 'upstream/0.9991'

gregor herrmann gregoa at debian.org
Thu May 14 20:34:30 UTC 2015


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to branch master
in repository sqitch.

commit 4e0b3f7984a1de7dda5dac16f8088debd9be5493
Merge: 06b979c 454fead
Author: gregor herrmann <gregoa at debian.org>
Date:   Thu May 14 22:10:37 2015 +0200

    Merge tag 'upstream/0.9991'
    
    Upstream version 0.9991

 Build.PL                                           |   8 +-
 Changes                                            | 272 +++++-
 LICENSE                                            |   2 +-
 MANIFEST                                           |  36 +-
 META.json                                          |  24 +-
 META.yml                                           |   7 +-
 README                                             |   6 +-
 README.md                                          |  17 +-
 dist/sqitch.spec                                   |  22 +-
 etc/templates/deploy/firebird.tmpl                 |   2 +-
 etc/templates/deploy/mysql.tmpl                    |   2 +-
 etc/templates/deploy/oracle.tmpl                   |   2 +-
 etc/templates/deploy/pg.tmpl                       |   2 +-
 etc/templates/deploy/sqlite.tmpl                   |   2 +-
 etc/templates/deploy/vertica.tmpl                  |   2 +-
 etc/templates/revert/firebird.tmpl                 |   2 +-
 etc/templates/revert/mysql.tmpl                    |   2 +-
 etc/templates/revert/oracle.tmpl                   |   2 +-
 etc/templates/revert/pg.tmpl                       |   2 +-
 etc/templates/revert/sqlite.tmpl                   |   2 +-
 etc/templates/revert/vertica.tmpl                  |   2 +-
 etc/templates/verify/firebird.tmpl                 |   2 +-
 etc/templates/verify/mysql.tmpl                    |   2 +-
 etc/templates/verify/oracle.tmpl                   |   2 +-
 etc/templates/verify/pg.tmpl                       |   2 +-
 etc/templates/verify/sqlite.tmpl                   |   2 +-
 etc/templates/verify/vertica.tmpl                  |   2 +-
 etc/tools/upgrade-registry-to-mysql-5.5.0.sql      |  43 +
 etc/tools/upgrade-registry-to-mysql-5.6.4.sql      |  15 +
 inc/Module/Build/Sqitch.pm                         |   2 +
 lib/App/Sqitch.pm                                  | 232 +-----
 lib/App/Sqitch/Command.pm                          | 276 +++++-
 lib/App/Sqitch/Command/add.pm                      | 167 +++-
 lib/App/Sqitch/Command/bundle.pm                   | 194 +++--
 lib/App/Sqitch/Command/checkout.pm                 |  47 +-
 lib/App/Sqitch/Command/config.pm                   |   4 +-
 lib/App/Sqitch/Command/deploy.pm                   |  31 +-
 lib/App/Sqitch/Command/engine.pm                   | 509 +++++++++++
 lib/App/Sqitch/Command/help.pm                     |  30 +-
 lib/App/Sqitch/Command/init.pm                     | 112 +--
 lib/App/Sqitch/Command/log.pm                      |  22 +-
 lib/App/Sqitch/Command/plan.pm                     |  10 +-
 lib/App/Sqitch/Command/rebase.pm                   |  33 +-
 lib/App/Sqitch/Command/revert.pm                   |  31 +-
 lib/App/Sqitch/Command/rework.pm                   | 183 ++--
 lib/App/Sqitch/Command/show.pm                     |   9 +-
 lib/App/Sqitch/Command/status.pm                   |  60 +-
 lib/App/Sqitch/Command/tag.pm                      | 109 ++-
 lib/App/Sqitch/Command/target.pm                   | 197 +++--
 lib/App/Sqitch/Command/upgrade.pm                  | 147 ++++
 lib/App/Sqitch/Command/verify.pm                   |  33 +-
 lib/App/Sqitch/Config.pm                           |  12 +-
 lib/App/Sqitch/DateTime.pm                         |   4 +-
 lib/App/Sqitch/Engine.pm                           | 368 ++++----
 lib/App/Sqitch/Engine/Upgrade/firebird-1.0.sql     |  44 +
 lib/App/Sqitch/Engine/Upgrade/mysql-1.0.sql        |  20 +
 lib/App/Sqitch/Engine/Upgrade/oracle-1.0.sql       |  36 +
 lib/App/Sqitch/Engine/Upgrade/pg-1.0.sql           |  28 +
 lib/App/Sqitch/Engine/Upgrade/sqlite-1.0.sql       |  62 ++
 lib/App/Sqitch/Engine/Upgrade/vertica-1.0.sql      |  13 +
 lib/App/Sqitch/Engine/firebird.pm                  | 146 ++--
 lib/App/Sqitch/Engine/firebird.sql                 | 269 ++----
 lib/App/Sqitch/Engine/mysql.pm                     | 129 ++-
 lib/App/Sqitch/Engine/mysql.sql                    |  22 +-
 lib/App/Sqitch/Engine/oracle.pm                    | 113 +--
 lib/App/Sqitch/Engine/oracle.sql                   |  33 +-
 lib/App/Sqitch/Engine/pg.pm                        |  85 +-
 lib/App/Sqitch/Engine/pg.sql                       |  27 +-
 lib/App/Sqitch/Engine/sqlite.pm                    |  43 +-
 lib/App/Sqitch/Engine/sqlite.sql                   |  10 +-
 lib/App/Sqitch/Engine/vertica.pm                   | 132 +--
 lib/App/Sqitch/Engine/vertica.sql                  |  10 +
 lib/App/Sqitch/ItemFormatter.pm                    |   4 +-
 lib/App/Sqitch/Plan.pm                             |  55 +-
 lib/App/Sqitch/Plan/Blank.pm                       |   4 +-
 lib/App/Sqitch/Plan/Change.pm                      |  36 +-
 lib/App/Sqitch/Plan/ChangeList.pm                  |  12 +-
 lib/App/Sqitch/Plan/Depend.pm                      |   6 +-
 lib/App/Sqitch/Plan/Line.pm                        |  16 +-
 lib/App/Sqitch/Plan/LineList.pm                    |   4 +-
 lib/App/Sqitch/Plan/Pragma.pm                      |   4 +-
 lib/App/Sqitch/Plan/Tag.pm                         |   4 +-
 lib/App/Sqitch/Role/DBIEngine.pm                   |  95 ++-
 lib/App/Sqitch/Role/RevertDeployCommand.pm         |   4 +-
 lib/App/Sqitch/Target.pm                           | 773 +++++++++++++++++
 lib/App/Sqitch/Types.pm                            |  28 +-
 lib/App/Sqitch/X.pm                                |   4 +-
 lib/LocaleData/de/LC_MESSAGES/App-Sqitch.mo        | Bin 463 -> 463 bytes
 lib/LocaleData/fr/LC_MESSAGES/App-Sqitch.mo        | Bin 14059 -> 13385 bytes
 lib/sqitch-add-usage.pod                           |   6 +-
 lib/sqitch-add.pod                                 | 155 +++-
 lib/sqitch-bundle-usage.pod                        |   2 +-
 lib/sqitch-bundle.pod                              |  83 +-
 lib/sqitch-checkout-usage.pod                      |   2 +-
 lib/sqitch-checkout.pod                            |   4 +-
 lib/sqitch-config-usage.pod                        |   2 +-
 lib/sqitch-config.pod                              |  55 +-
 lib/sqitch-configuration.pod                       | 731 ++++++++++++++++
 lib/sqitch-deploy-usage.pod                        |   2 +-
 lib/sqitch-deploy.pod                              |  15 +-
 lib/sqitch-engine-usage.pod                        |  25 +
 lib/sqitch-engine.pod                              | 206 +++++
 lib/sqitch-environment.pod                         |  60 ++
 lib/sqitch-help-usage.pod                          |   5 +-
 lib/sqitch-help.pod                                |  26 +-
 lib/sqitch-init.pod                                |  42 +-
 lib/sqitch-log-usage.pod                           |   4 +-
 lib/sqitch-log.pod                                 |   4 +-
 lib/sqitch-passwords.pod                           | 200 +++++
 lib/sqitch-plan-usage.pod                          |   4 +-
 lib/sqitch-rebase-usage.pod                        |   2 +-
 lib/sqitch-rebase.pod                              |   4 +-
 lib/sqitch-revert-usage.pod                        |   2 +-
 lib/sqitch-revert.pod                              |   4 +-
 lib/sqitch-rework-usage.pod                        |   4 +-
 lib/sqitch-rework.pod                              |  70 +-
 lib/sqitch-status-usage.pod                        |   2 +-
 lib/sqitch-status.pod                              |   6 +-
 lib/sqitch-tag-usage.pod                           |   5 +-
 lib/sqitch-tag.pod                                 | 115 ++-
 lib/sqitch-target-usage.pod                        |  18 +-
 lib/sqitch-target.pod                              | 123 ++-
 lib/sqitch-upgrade-usage.pod                       |  11 +
 lib/sqitch-upgrade.pod                             |  35 +
 lib/sqitch-verify-usage.pod                        |   2 +-
 lib/sqitch-verify.pod                              |   4 +-
 lib/sqitch.pod                                     |  89 +-
 lib/sqitchchanges.pod                              |   2 +-
 lib/sqitchcommands.pod                             |  96 +--
 lib/sqitchguides.pod                               |  26 +
 lib/sqitchtutorial-firebird.pod                    |  34 +-
 lib/sqitchtutorial-mysql.pod                       |  75 +-
 lib/sqitchtutorial-oracle.pod                      |  64 +-
 lib/sqitchtutorial-sqlite.pod                      |  32 +-
 lib/sqitchtutorial-vertica.pod                     |  44 +-
 lib/sqitchtutorial.pod                             |  64 +-
 lib/sqitchusage.pod                                |  39 +-
 t/add.t                                            | 371 +++++++--
 t/add_change.conf                                  |   2 +
 t/base.t                                           | 235 +-----
 t/blank.t                                          |   6 +-
 t/bundle.t                                         | 220 ++++-
 t/change.t                                         |  53 +-
 t/changelist.t                                     | 114 +--
 t/checkout.t                                       |  41 +-
 t/command.t                                        | 194 ++++-
 t/config.t                                         | 134 ++-
 t/configuration.t                                  |   5 +-
 t/core.conf                                        |   2 +
 t/core_target.conf                                 |   2 +
 t/dburi.t                                          | 126 ---
 t/depend.t                                         |  13 +-
 t/deploy.t                                         |  54 +-
 t/engine.conf                                      |  20 +
 t/engine.t                                         | 271 ++++--
 t/engine_cmd.t                                     | 443 ++++++++++
 t/firebird.t                                       |  80 +-
 t/help.t                                           |  18 +-
 t/init.t                                           | 141 ++--
 t/lib/DBIEngineTest.pm                             | 192 ++++-
 .../lib/upgradable_registries}/firebird.sql        |  29 +
 .../lib/upgradable_registries}/mysql.sql           |  18 +-
 .../lib/upgradable_registries}/oracle.sql          |  23 +-
 .../Engine => t/lib/upgradable_registries}/pg.sql  |  23 +-
 .../lib/upgradable_registries}/sqlite.sql          |   7 +
 .../lib/upgradable_registries}/vertica.sql         |   9 +
 t/linelist.t                                       |   6 +-
 t/local.conf                                       |  10 +-
 t/log.t                                            |  51 +-
 t/multiplan.conf                                   |  11 +
 t/mysql.t                                          | 129 ++-
 t/options.t                                        |   6 +-
 t/oracle.t                                         | 164 ++--
 t/pg.t                                             | 122 ++-
 t/plan.t                                           |  81 +-
 t/plan_command.t                                   |  23 +-
 t/plans/dos.plan                                   |   8 +
 t/pragma.t                                         |   6 +-
 t/rebase.t                                         |  64 +-
 t/revert.t                                         |  56 +-
 t/rework.t                                         | 646 +++++++++++++-
 t/show.t                                           |  10 +-
 t/sqitch.conf                                      |   3 +-
 t/sqlite.t                                         | 153 ++--
 t/status.t                                         | 109 ++-
 t/tag.t                                            |   9 +-
 t/tag_cmd.t                                        | 240 +++++-
 t/target.t                                         | 927 +++++++++++++--------
 t/{target.t => target_cmd.t}                       | 207 ++++-
 t/templates.conf                                   |   3 -
 t/upgrade.t                                        |  96 +++
 t/user.conf                                        |  13 +-
 t/verify.t                                         |  37 +-
 t/vertica.t                                        | 116 ++-
 xt/release/pod-spelling.t                          |   7 +
 195 files changed, 10479 insertions(+), 3866 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/sqitch.git



More information about the Pkg-perl-cvs-commits mailing list