[sqitch] branch master updated (09adc1d -> 2e5a676)

zeha at debian.org zeha at debian.org
Sun Sep 28 15:01:05 UTC 2014


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

zeha pushed a change to branch master
in repository sqitch.

      from  09adc1d   update changelog
      adds  768e391   Imported Upstream version 0.996
       new  1477b6e   Merge tag 'upstream/0.996'
       new  b3770e5   Remove upstream applied patch
       new  8a75c20   Update dependencies for new upstream version
       new  2e5a676   Release to unstable

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Build.PL                                           |   34 +-
 Changes                                            |   41 +
 MANIFEST                                           |   10 +-
 META.json                                          |   34 +-
 META.yml                                           |   32 +-
 README                                             |    4 +-
 README.md                                          |   10 +-
 debian/changelog                                   |    8 +-
 debian/control                                     |   37 +-
 debian/patches/digest-sha.patch                    |  187 ---
 debian/patches/series                              |    1 -
 dist/sqitch.spec                                   |   84 +-
 etc/templates/deploy/{oracle.tmpl => vertica.tmpl} |    0
 etc/templates/revert/{oracle.tmpl => vertica.tmpl} |    0
 etc/templates/verify/{oracle.tmpl => vertica.tmpl} |    0
 lib/App/Sqitch.pm                                  |  101 +-
 lib/App/Sqitch/Command.pm                          |   14 +-
 lib/App/Sqitch/Command/add.pm                      |   55 +-
 lib/App/Sqitch/Command/bundle.pm                   |   37 +-
 lib/App/Sqitch/Command/checkout.pm                 |   10 +-
 lib/App/Sqitch/Command/config.pm                   |   14 +-
 lib/App/Sqitch/Command/deploy.pm                   |   42 +-
 lib/App/Sqitch/Command/help.pm                     |    4 +-
 lib/App/Sqitch/Command/init.pm                     |   52 +-
 lib/App/Sqitch/Command/log.pm                      |   68 +-
 lib/App/Sqitch/Command/plan.pm                     |   56 +-
 lib/App/Sqitch/Command/rebase.pm                   |   21 +-
 lib/App/Sqitch/Command/revert.pm                   |   53 +-
 lib/App/Sqitch/Command/rework.pm                   |   33 +-
 lib/App/Sqitch/Command/show.pm                     |   15 +-
 lib/App/Sqitch/Command/status.pm                   |   34 +-
 lib/App/Sqitch/Command/tag.pm                      |   14 +-
 lib/App/Sqitch/Command/target.pm                   |   27 +-
 lib/App/Sqitch/Command/verify.pm                   |   33 +-
 lib/App/Sqitch/Config.pm                           |   12 +-
 lib/App/Sqitch/DateTime.pm                         |    2 +-
 lib/App/Sqitch/Engine.pm                           |   73 +-
 lib/App/Sqitch/Engine/firebird.pm                  |   65 +-
 lib/App/Sqitch/Engine/mysql.pm                     |   70 +-
 lib/App/Sqitch/Engine/oracle.pm                    |   34 +-
 lib/App/Sqitch/Engine/pg.pm                        |   52 +-
 lib/App/Sqitch/Engine/sqlite.pm                    |   34 +-
 lib/App/Sqitch/Engine/vertica.pm                   |  547 ++++++++
 lib/App/Sqitch/Engine/vertica.sql                  |   75 ++
 lib/App/Sqitch/ItemFormatter.pm                    |   16 +-
 lib/App/Sqitch/Plan.pm                             |   59 +-
 lib/App/Sqitch/Plan/Blank.pm                       |   11 +-
 lib/App/Sqitch/Plan/Change.pm                      |  117 +-
 lib/App/Sqitch/Plan/Depend.pm                      |   33 +-
 lib/App/Sqitch/Plan/Line.pm                        |   34 +-
 lib/App/Sqitch/Plan/LineList.pm                    |    2 +-
 lib/App/Sqitch/Plan/Pragma.pm                      |   20 +-
 lib/App/Sqitch/Plan/Tag.pm                         |   43 +-
 lib/App/Sqitch/Role/DBIEngine.pm                   |   43 +-
 lib/App/Sqitch/Role/RevertDeployCommand.pm         |   65 +-
 lib/App/Sqitch/Types.pm                            |  191 +++
 lib/App/Sqitch/X.pm                                |   30 +-
 lib/LocaleData/de/LC_MESSAGES/App-Sqitch.mo        |  Bin 463 -> 463 bytes
 lib/LocaleData/fr/LC_MESSAGES/App-Sqitch.mo        |  Bin 14059 -> 14059 bytes
 lib/sqitch-add.pod                                 |    4 +-
 lib/sqitch-checkout.pod                            |   15 +-
 lib/sqitch-config.pod                              |   15 +
 lib/sqitch-deploy.pod                              |    4 +-
 lib/sqitch-init.pod                                |   38 +-
 lib/sqitch-rebase.pod                              |    9 +
 lib/sqitch-revert.pod                              |   12 +-
 lib/sqitch-show.pod                                |    4 +-
 lib/sqitch-verify.pod                              |    4 +-
 lib/sqitchtutorial-firebird.pod                    |    2 +
 lib/sqitchtutorial-mysql.pod                       |    2 +
 lib/sqitchtutorial-oracle.pod                      |    4 +-
 lib/sqitchtutorial-sqlite.pod                      |    2 +
 lib/sqitchtutorial-vertica.pod                     | 1382 ++++++++++++++++++++
 lib/sqitchtutorial.pod                             |    3 +-
 t/base.t                                           |    6 +-
 t/change.t                                         |   10 +-
 t/checkout.t                                       |   75 +-
 t/command.t                                        |   11 +-
 t/deploy.t                                         |    6 +-
 t/engine.t                                         |   29 +-
 t/firebird.t                                       |   63 +-
 t/item_formatter.t                                 |    3 +-
 t/lib/App/Sqitch/Command/bad.pm                    |    2 +-
 t/lib/App/Sqitch/Command/good.pm                   |    4 +-
 t/lib/App/Sqitch/Engine/good.pm                    |    2 +-
 t/mysql.t                                          |   54 +-
 t/pg.t                                             |    5 +-
 t/plan.t                                           |   51 +-
 t/rebase.t                                         |   79 +-
 t/revert.t                                         |   35 +-
 t/tag.t                                            |   10 +-
 t/vertica.t                                        |  353 +++++
 t/x.t                                              |    2 -
 xt/release/pod-spelling.t                          |    4 +
 94 files changed, 4019 insertions(+), 1078 deletions(-)
 delete mode 100644 debian/patches/digest-sha.patch
 copy etc/templates/deploy/{oracle.tmpl => vertica.tmpl} (100%)
 copy etc/templates/revert/{oracle.tmpl => vertica.tmpl} (100%)
 copy etc/templates/verify/{oracle.tmpl => vertica.tmpl} (100%)
 create mode 100644 lib/App/Sqitch/Engine/vertica.pm
 create mode 100644 lib/App/Sqitch/Engine/vertica.sql
 create mode 100644 lib/App/Sqitch/Types.pm
 create mode 100644 lib/sqitchtutorial-vertica.pod
 create mode 100644 t/vertica.t

-- 
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