[libdbix-class-helpers-perl] branch master updated (7a7050c -> 8bde09a)

gregor herrmann gregoa at debian.org
Sat Sep 21 21:42:32 UTC 2013


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

gregoa pushed a change to branch master
in repository libdbix-class-helpers-perl.

      from  7a7050c   releasing package libdbix-class-helpers-perl version 2.017000-1
      adds  e3378ed   Imported Upstream version 2.018002
       new  7883a77   Merge tag 'upstream/2.018002'
       new  d431227   New upstream release.
       new  3673deb   Drop whatis.patch, merged upstream.
       new  13e796c   Update years of packaging copyright.
       new  8bde09a   releasing package libdbix-class-helpers-perl version 2.018002-1

The 5 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:
 Changes                                            |  243 +++++++++++---------
 MANIFEST                                           |    9 +
 META.json                                          |    4 +-
 META.yml                                           |    4 +-
 Makefile.PL                                        |    2 +-
 README                                             |    2 +-
 dbfile                                             |  Bin 0 -> 25600 bytes
 debian/changelog                                   |    8 +
 debian/copyright                                   |    2 +-
 debian/patches/series                              |    1 -
 debian/patches/whatis.patch                        |   28 ---
 dist.ini                                           |    4 +-
 lib/DBIx/Class/Helper/IgnoreWantarray.pm           |    8 +-
 lib/DBIx/Class/Helper/JoinTable.pm                 |    8 +-
 lib/DBIx/Class/Helper/Random.pm                    |    8 +-
 lib/DBIx/Class/Helper/ResultSet.pm                 |   20 +-
 .../Class/Helper/ResultSet/AutoRemoveColumns.pm    |    7 +-
 .../Helper/ResultSet/CorrelateRelationship.pm      |    7 +-
 lib/DBIx/Class/Helper/ResultSet/IgnoreWantarray.pm |    7 +-
 lib/DBIx/Class/Helper/ResultSet/Me.pm              |   21 +-
 lib/DBIx/Class/Helper/ResultSet/NoColumns.pm       |    7 +-
 lib/DBIx/Class/Helper/ResultSet/Random.pm          |    7 +-
 lib/DBIx/Class/Helper/ResultSet/RemoveColumns.pm   |    7 +-
 lib/DBIx/Class/Helper/ResultSet/ResultClassDWIM.pm |    7 +-
 lib/DBIx/Class/Helper/ResultSet/SearchOr.pm        |    7 +-
 lib/DBIx/Class/Helper/ResultSet/SetOperations.pm   |    7 +-
 lib/DBIx/Class/Helper/ResultSet/Shortcut.pm        |   73 ++++--
 .../Class/Helper/ResultSet/Shortcut/AddColumns.pm  |    7 +-
 .../Class/Helper/ResultSet/Shortcut/Columns.pm     |    7 +-
 .../Class/Helper/ResultSet/Shortcut/Distinct.pm    |    7 +-
 .../Class/Helper/ResultSet/Shortcut/GroupBy.pm     |    7 +-
 lib/DBIx/Class/Helper/ResultSet/Shortcut/HRI.pm    |    7 +-
 .../ResultSet/Shortcut/{Rows.pm => HasRows.pm}     |   15 +-
 .../ResultSet/Shortcut/{Rows.pm => Limit.pm}       |   15 +-
 .../Class/Helper/ResultSet/Shortcut/OrderBy.pm     |    7 +-
 .../Helper/ResultSet/Shortcut/OrderByMagic.pm      |   58 +++++
 .../ResultSet/Shortcut/{Rows.pm => Prefetch.pm}    |   11 +-
 lib/DBIx/Class/Helper/ResultSet/Shortcut/Rows.pm   |    7 +-
 lib/DBIx/Class/Helper/ResultSet/Union.pm           |    7 +-
 lib/DBIx/Class/Helper/ResultSet/VirtualView.pm     |   11 +-
 lib/DBIx/Class/Helper/Row/JoinTable.pm             |    7 +-
 lib/DBIx/Class/Helper/Row/NumifyGet.pm             |    7 +-
 lib/DBIx/Class/Helper/Row/OnColumnChange.pm        |    7 +-
 lib/DBIx/Class/Helper/Row/ProxyResultSetMethod.pm  |   18 +-
 lib/DBIx/Class/Helper/Row/ProxyResultSetUpdate.pm  |   11 +-
 lib/DBIx/Class/Helper/Row/RelationshipDWIM.pm      |    7 +-
 lib/DBIx/Class/Helper/Row/SelfResultSet.pm         |    7 +-
 lib/DBIx/Class/Helper/Row/StorageValues.pm         |    7 +-
 lib/DBIx/Class/Helper/Row/SubClass.pm              |    7 +-
 lib/DBIx/Class/Helper/Row/ToJSON.pm                |    7 +-
 lib/DBIx/Class/Helper/Schema/GenerateSource.pm     |    7 +-
 lib/DBIx/Class/Helper/Schema/LintContents.pm       |    7 +-
 lib/DBIx/Class/Helper/Schema/QuoteNames.pm         |   11 +-
 lib/DBIx/Class/Helper/SubClass.pm                  |    8 +-
 lib/DBIx/Class/Helper/VirtualView.pm               |   12 +-
 lib/DBIx/Class/Helpers.pm                          |    7 +-
 lib/DBIx/Class/Helpers/Util.pm                     |    7 +-
 t/bug-1.t                                          |   12 +
 t/lib/ParentRS.pm                                  |    9 +
 t/lib/RS.pm                                        |    7 +
 t/lib/ddl.sql                                      |    2 +-
 t/resultset/attribute-accessors.t                  |   52 ++++-
 t/resultset/me.t                                   |   18 ++
 t/row/numifyget.t                                  |    4 +-
 t/schema/lint-contents.t                           |    2 +-
 65 files changed, 548 insertions(+), 376 deletions(-)
 create mode 100644 dbfile
 delete mode 100644 debian/patches/series
 delete mode 100644 debian/patches/whatis.patch
 copy lib/DBIx/Class/Helper/ResultSet/Shortcut/{Rows.pm => HasRows.pm} (59%)
 copy lib/DBIx/Class/Helper/ResultSet/Shortcut/{Rows.pm => Limit.pm} (59%)
 create mode 100644 lib/DBIx/Class/Helper/ResultSet/Shortcut/OrderByMagic.pm
 copy lib/DBIx/Class/Helper/ResultSet/Shortcut/{Rows.pm => Prefetch.pm} (60%)
 create mode 100644 t/bug-1.t
 create mode 100644 t/lib/ParentRS.pm
 create mode 100644 t/lib/RS.pm
 create mode 100644 t/resultset/me.t

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



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