[libsql-translator-perl] branch master updated (dcf6403 -> 5e05e29)

gregor herrmann gregoa at debian.org
Tue Dec 26 20:41:10 UTC 2017


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

gregoa pushed a change to branch master
in repository libsql-translator-perl.

      from  dcf6403   update changelog
      adds  e559989   Remove explicit strictures usage
      adds  7f3f64d   Add support for optional monotonically increasing sqlite autoincrement
      adds  c1f9a59   Declare dependencies in deterministic order (RT#102859)
      adds  a1c9c64   Remove dependency on List::MoreUtils
      adds  fce0f0b   prevent debug calls with expensive arguments if debugging is not enabled
      adds  237e485   Quoted table_name wasn't being used during MySQL DROP TABLE construction
      adds  e533bcd   Improve add_trigger consistency between producers
      adds  33d693c   Add space after =cut statement
      adds  f60d4c6   Remove empty =over blocks
      adds  0e9badb   Replace sectioned links with C<> formatting
      adds  e773f3f   Add SQLite support for check constraints
      adds  84ef6e4   Fix PostgreSQL grammar parsing of UUID, time, timetz column types
      adds  eab567b   Add a DESCRIPTION to SQL::Translator::Filter::Names
      adds  4578e78   Remove empty sections
      adds  13eb146   Fix minor typos in POD
      adds  9aabed4   Add C<> formatting to code-like text elements
      adds  5b36314   Add support for USING and WHERE on indexes in PostgreSQL producer
      adds  9c05d80   Add support for USING and WHERE on indexes in PostgreSQL parser
      adds  59d5eaf   Add support for CHECK constraint in POD producer (GH#63)
      adds  1094bd3   Use Travis container infrastructure for faster builds
      adds  dd7dcde   Explicitly install CGI from CPAN on Travis
      adds  20ac7e8   Install more test deps on Travis
      adds  d5103d9   Simplify .travis.yml
      adds  fd498bb   Fix parsing quoted strings with leading spaces
      adds  2c1e8ca   Switch MySQL parser test to done_testing
      adds  13e4115   Fix parsing of MySQL column comments (RT#83380)
      adds  99fa843   Fix multi-line comments in YAML and JSON producers
      adds  31bed2c   Fix multi-line comments in PostgreSQL producer
      adds  da936d6   Minor cleanups in Producer::PostgreSQL::create_table()
      adds  9c9c169   Make PostgreSQLs max identifier length a constant
      adds  4dbac63   Remove unused reserved words list
      adds  b14cf6f   Reduce scope of file-level variables
      adds  f741008   Fix identifier quoting in PostgreSQL diff producer
      adds  d31a133   Remove or use unused variables in PostgreSQL producer
      adds  0b4b770   Fix horrendous indentation in PostGIS code
      adds  54b8ff8   Further clean up PostGIS code
      adds  6440741   Fix missing semicolons between PostGIS statements
      adds  724347d   Fix string quoting in PostGIS statements
      adds  3963e31   Fix identifier quoting in PostGIS statements
      adds  b441453   Pass $options through directly instead of $generator
      adds  e051b24   Updated MANIFEST.SKIP to include AUTHORS file.
      adds  ac8d330   Fail more gracefully on non-loadable compiled module parts
      adds  0b20d46   Work around RT#108460, intermittent postgresql-rename-table-and-field.t fail
      adds  9d430e0   Fix incorrect serial instead of bigserial in PG
      adds  913fea5   Remove duplicate entry in DBI drivers hash
      adds  c0ec0e2   Improve trigger 'scope' attribute support (RT#119997)
      adds  4384692   Only output trigger 'scope' if it's set in YAML and JSON producers
      adds  49f0f31   Fix relying on exact serialisation for JSON/YAML tests (RT#121901)
      adds  afae491   Fix running Makefile.PL without '.' in @INC
      adds  79ed8ef   release 0.11022
      adds  deb63b4   Fix error handling for Test::PostgreSQL 1.20
      adds  3cdaa7b   release 0.11023
      adds  bf266f7   New upstream version 0.11023
       new  0732bc5   Update upstream source from tag 'upstream/0.11023'
       new  381583b   Update debian/changelog
       new  9fba5fc   Update debian/upstream/metadata.
       new  fe2dd64   Update years of packaging copyright.
       new  dcc9175   Drop (build) dependency on liblist-moreutils-perl.
       new  fea0b38   Declare compliance with Debian Policy 4.1.2.
       new  afde344   Drop unneeded version constraints from some (build) dependencies.
       new  52d3277   Bump debhelper compatibility level to 9.
       new  66b66f3   debian/rules: drop removal of previously empty manpage.
       new  c1910df   Remove trailing whitespace in debian/control.
       new  b4bc6c2   debian/control: add more packages to Recommends
       new  d9dac5b   Add debian/tests/pkg-perl/smoke-files.
       new  5e05e29   releasing package libsql-translator-perl version 0.11023-1

The 13 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:
 AUTHORS                                        |  64 ++++
 Changes                                        |  31 ++
 MANIFEST                                       |   1 +
 META.yml                                       |   5 +-
 Makefile.PL                                    |   4 +-
 debian/changelog                               |  18 +-
 debian/compat                                  |   2 +-
 debian/control                                 |  19 +-
 debian/copyright                               |   2 +-
 debian/rules                                   |   8 -
 debian/tests/pkg-perl/smoke-files              |   2 +
 debian/upstream/metadata                       |   2 +-
 inc/Module/AutoInstall.pm                      |   4 +-
 inc/Module/Install.pm                          |  35 +-
 inc/Module/Install/AutoInstall.pm              |   2 +-
 inc/Module/Install/Base.pm                     |   2 +-
 inc/Module/Install/Can.pm                      |  13 +-
 inc/Module/Install/Fetch.pm                    |   2 +-
 inc/Module/Install/Include.pm                  |   2 +-
 inc/Module/Install/Makefile.pm                 |   2 +-
 inc/Module/Install/Metadata.pm                 |   2 +-
 inc/Module/Install/ReadmeFromPod.pm            |  76 +++-
 inc/Module/Install/Scripts.pm                  |   2 +-
 inc/Module/Install/Share.pm                    |   2 +-
 inc/Module/Install/Win32.pm                    |   2 +-
 inc/Module/Install/WriteAll.pm                 |   2 +-
 lib/SQL/Translator.pm                          |   6 +-
 lib/SQL/Translator/Filter/DefaultExtra.pm      |   8 +-
 lib/SQL/Translator/Filter/Globals.pm           |   2 +-
 lib/SQL/Translator/Filter/Names.pm             |  10 +-
 lib/SQL/Translator/Generator/DDL/PostgreSQL.pm |   1 +
 lib/SQL/Translator/Generator/DDL/SQLite.pm     |  18 +
 lib/SQL/Translator/Parser/DBI.pm               |   1 -
 lib/SQL/Translator/Parser/MySQL.pm             |  26 +-
 lib/SQL/Translator/Parser/Oracle.pm            |   8 +-
 lib/SQL/Translator/Parser/PostgreSQL.pm        |  30 +-
 lib/SQL/Translator/Parser/SQLServer.pm         |  12 +-
 lib/SQL/Translator/Parser/SQLite.pm            |   9 +-
 lib/SQL/Translator/Parser/XML/SQLFairy.pm      |   2 +-
 lib/SQL/Translator/Producer/DiaUml.pm          |   4 -
 lib/SQL/Translator/Producer/Diagram.pm         |   6 +-
 lib/SQL/Translator/Producer/GraphViz.pm        |   2 +-
 lib/SQL/Translator/Producer/JSON.pm            |   7 +-
 lib/SQL/Translator/Producer/Latex.pm           |   4 -
 lib/SQL/Translator/Producer/MySQL.pm           |  20 +-
 lib/SQL/Translator/Producer/POD.pm             |  38 +-
 lib/SQL/Translator/Producer/PostgreSQL.pm      | 493 +++++++++++++------------
 lib/SQL/Translator/Producer/SQLite.pm          |  15 +-
 lib/SQL/Translator/Producer/TTSchema.pm        |   2 +-
 lib/SQL/Translator/Producer/XML/SQLFairy.pm    |   4 +-
 lib/SQL/Translator/Producer/YAML.pm            |   7 +-
 lib/SQL/Translator/Role/ListAttr.pm            |   7 +-
 lib/SQL/Translator/Schema/Trigger.pm           |   3 +-
 lib/SQL/Translator/Types.pm                    |   5 +-
 lib/SQL/Translator/Utils.pm                    |  11 +-
 lib/Test/SQL/Translator.pm                     |  24 +-
 t/02mysql-parser.t                             |   7 +-
 t/09sqlt-diagram.t                             |   5 +-
 t/14postgres-parser.t                          |  61 ++-
 t/16xml-parser.t                               |   6 +-
 t/17sqlfxml-producer.t                         |   3 +-
 t/23json.t                                     |  15 +-
 t/24yaml.t                                     |  14 +-
 t/30sqlt-new-diff-mysql.t                      |   9 +
 t/30sqlt-new-diff-pgsql.t                      |  46 +--
 t/38-mysql-producer.t                          |  45 ++-
 t/46xml-to-pg.t                                |   4 +-
 t/47postgres-producer.t                        |  63 +++-
 t/56-sqlite-producer.t                         |  59 +++
 t/63-spacial-pgsql.t                           | 102 ++---
 t/data/roundtrip.xml                           |  10 +
 t/data/roundtrip_autogen.yaml                  |  22 +-
 t/data/sqlite/create.sql                       |   2 +
 t/data/xml/schema.xml                          |   4 +-
 t/postgresql-rename-table-and-field.t          |  16 +-
 75 files changed, 1035 insertions(+), 549 deletions(-)
 create mode 100644 AUTHORS
 create mode 100644 debian/tests/pkg-perl/smoke-files

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



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