[libdbix-class-perl] branch master updated (fb0bcc2 -> 09d4913)
gregor herrmann
gregoa at debian.org
Sat Feb 15 23:08:02 UTC 2014
This is an automated email from the git hooks/post-receive script.
gregoa pushed a change to branch master
in repository libdbix-class-perl.
from fb0bcc2 releasing package libdbix-class-perl version 0.08250-2
adds e1c5969 Imported Upstream version 0.08270
new f18ed9a Merge tag 'upstream/0.08270'
new 041035d New upstream release.
new d707c07 Drop patches, all applied or fixed otherwise upstream.
new 6b502dc Update years of packaging copyright and list of copyright holders.
new 8174996 Add deprecation warning to debian/NEWS.
new ad1e799 Update versioned (build) dependencies.
new 249cf30 Remove unneeded versions in Suggests.
new cb1f43f sort&wrap d/control
new 09d4913 releasing package libdbix-class-perl version 0.08270-1
The 9 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 | 73 +++
MANIFEST | 30 +-
META.yml | 10 +-
Makefile.PL | 146 +++---
README | 14 +-
debian/NEWS | 9 +
debian/changelog | 11 +
debian/control | 67 ++-
debian/copyright | 13 +-
debian/patches/fix-doc-typos.patch | 141 ------
debian/patches/pod-error.patch | 20 -
debian/patches/series | 3 -
debian/patches/sqlite-exceptions.patch | 39 --
.../Schema/{MyDatabase/Main.pm => MyApp/Schema.pm} | 2 +-
examples/Schema/MyApp/Schema/Result/Artist.pm | 27 ++
examples/Schema/MyApp/Schema/Result/Cd.pm | 34 ++
examples/Schema/MyApp/Schema/Result/Track.pm | 29 ++
examples/Schema/MyDatabase/Main/Result/Artist.pm | 17 -
examples/Schema/MyDatabase/Main/Result/Cd.pm | 17 -
examples/Schema/MyDatabase/Main/Result/Track.pm | 16 -
examples/Schema/db/example.db | Bin 0 -> 11264 bytes
examples/Schema/db/example.sql | 35 +-
examples/Schema/insertdb.pl | 9 +-
examples/Schema/testdb.pl | 7 +-
lib/DBIx/Class.pm | 53 +--
lib/DBIx/Class/Admin.pm | 7 +-
lib/DBIx/Class/Admin/Usage.pm | 2 +-
lib/DBIx/Class/CDBICompat/ColumnsAsHash.pm | 4 +-
lib/DBIx/Class/Carp.pm | 18 -
lib/DBIx/Class/Componentised.pm | 1 +
lib/DBIx/Class/FilterColumn.pm | 2 +-
lib/DBIx/Class/FilterColumn.pod | 2 +-
lib/DBIx/Class/Manual/Component.pod | 2 +-
lib/DBIx/Class/Manual/Cookbook.pod | 22 +-
lib/DBIx/Class/Manual/DocMap.pod | 25 +-
lib/DBIx/Class/Manual/Example.pod | 62 ++-
lib/DBIx/Class/Manual/FAQ.pod | 24 +-
lib/DBIx/Class/Manual/Features.pod | 6 +-
lib/DBIx/Class/Manual/Glossary.pod | 18 +-
lib/DBIx/Class/Manual/Intro.pod | 8 +-
lib/DBIx/Class/Manual/Joining.pod | 18 +-
lib/DBIx/Class/Manual/QuickStart.pod | 194 ++++++++
lib/DBIx/Class/Optional/Dependencies.pm | 27 +-
lib/DBIx/Class/Optional/Dependencies.pod | 14 +-
lib/DBIx/Class/PK.pm | 4 +-
lib/DBIx/Class/Relationship.pm | 24 +-
lib/DBIx/Class/Relationship/Accessor.pm | 8 +-
lib/DBIx/Class/Relationship/Base.pm | 45 +-
lib/DBIx/Class/Relationship/BelongsTo.pm | 51 +-
lib/DBIx/Class/Relationship/CascadeActions.pm | 1 +
lib/DBIx/Class/Relationship/HasMany.pm | 30 +-
lib/DBIx/Class/Relationship/HasOne.pm | 72 +--
lib/DBIx/Class/Relationship/ManyToMany.pm | 7 +-
lib/DBIx/Class/ResultSet.pm | 115 +++--
lib/DBIx/Class/ResultSetColumn.pm | 46 +-
lib/DBIx/Class/ResultSource.pm | 22 +-
lib/DBIx/Class/ResultSource/RowParser.pm | 7 +-
lib/DBIx/Class/ResultSourceProxy.pm | 1 -
lib/DBIx/Class/Row.pm | 82 ++--
lib/DBIx/Class/SQLMaker.pm | 6 +-
lib/DBIx/Class/SQLMaker/ACCESS.pm | 2 +-
lib/DBIx/Class/SQLMaker/Oracle.pm | 4 +-
lib/DBIx/Class/Schema.pm | 123 ++---
lib/DBIx/Class/Schema/Versioned.pm | 2 +-
lib/DBIx/Class/Serialize/Storable.pm | 1 +
lib/DBIx/Class/Storage.pm | 18 +-
lib/DBIx/Class/Storage/BlockRunner.pm | 122 +++--
lib/DBIx/Class/Storage/DBI.pm | 250 ++++++----
lib/DBIx/Class/Storage/DBI/ADO.pm | 18 +-
.../Class/Storage/DBI/ADO/Microsoft_SQL_Server.pm | 2 +-
lib/DBIx/Class/Storage/DBI/AutoCast.pm | 2 +-
lib/DBIx/Class/Storage/DBI/Cursor.pm | 11 +-
lib/DBIx/Class/Storage/DBI/Firebird/Common.pm | 56 +++
lib/DBIx/Class/Storage/DBI/IdentityInsert.pm | 2 +-
lib/DBIx/Class/Storage/DBI/InterBase.pm | 53 ---
lib/DBIx/Class/Storage/DBI/MSSQL.pm | 2 +-
lib/DBIx/Class/Storage/DBI/ODBC/ACCESS.pm | 2 +-
lib/DBIx/Class/Storage/DBI/ODBC/Firebird.pm | 33 --
lib/DBIx/Class/Storage/DBI/Oracle/Generic.pm | 29 +-
lib/DBIx/Class/Storage/DBI/Replicated.pm | 13 +-
lib/DBIx/Class/Storage/DBI/Replicated/Balancer.pm | 2 +-
lib/DBIx/Class/Storage/DBI/Replicated/Types.pm | 8 +-
lib/DBIx/Class/Storage/DBI/SQLite.pm | 121 ++++-
lib/DBIx/Class/Storage/DBI/Sybase.pm | 3 +-
lib/DBIx/Class/Storage/DBI/Sybase/ASE.pm | 14 +-
lib/DBIx/Class/Storage/DBI/Sybase/MSSQL.pm | 1 +
.../Storage/DBI/Sybase/Microsoft_SQL_Server.pm | 1 +
lib/DBIx/Class/Storage/DBI/mysql.pm | 2 +-
lib/DBIx/Class/Storage/DBIHacks.pm | 523 ++++++++++++---------
lib/DBIx/Class/Storage/TxnScopeGuard.pm | 11 +-
lib/DBIx/Class/UTF8Columns.pm | 4 +-
lib/DBIx/Class/_Util.pm | 180 ++++++-
lib/SQL/Translator/Parser/DBIx/Class.pm | 2 +-
maint/Makefile.PL.inc/11_authortests.pl | 2 +-
maint/Makefile.PL.inc/50_redefine_makefile_flow.pl | 2 +
maint/Makefile.PL.inc/56_autogen_schema_files.pl | 40 ++
maint/Makefile.PL.inc/56_autogen_testddl.pl | 33 --
maint/gen_schema | 21 -
maint/gen_sqlite_schema_files | 62 +++
maint/travis-ci_scripts/10_before_install.bash | 130 ++++-
maint/travis-ci_scripts/20_install.bash | 70 ++-
maint/travis-ci_scripts/30_before_script.bash | 247 +++++++---
maint/travis-ci_scripts/40_script.bash | 40 +-
maint/travis-ci_scripts/50_after_success.bash | 6 +
maint/travis-ci_scripts/common.bash | 147 +++++-
.../IgnoreNonessentialDzilAutogeneratedTests.pm | 93 ++++
script/dbicadmin | 6 +-
t/100populate.t | 8 +-
t/101populate_rs.t | 2 +-
t/103many_to_many_warning.t | 3 +-
t/106dbic_carp.t | 2 +-
t/39load_namespaces_1.t | 4 +-
t/39load_namespaces_2.t | 2 +-
t/39load_namespaces_3.t | 2 +-
t/39load_namespaces_4.t | 2 +-
t/39load_namespaces_rt41083.t | 4 +-
t/51threadnodb.t | 5 +
t/51threads.t | 5 +
t/51threadtxn.t | 5 +
t/52leaks.t | 262 +++++++----
t/53lean_startup.t | 7 +-
t/54taint.t | 11 +-
t/55namespaces_cleaned.t | 10 +-
t/71mysql.t | 51 +-
t/73oracle.t | 22 +-
t/73oracle_hq.t | 195 --------
t/746mssql.t | 163 +------
t/751msaccess.t | 4 +
t/752sqlite.t | 164 ++++++-
t/84serialize.t | 6 +-
t/86sqlt.t | 21 +-
t/88result_set_column.t | 114 ++++-
t/90ensure_class_loaded.t | 11 +-
t/94versioning.t | 8 +-
t/96_is_deteministic_value.t | 2 +-
t/98savepoints.t | 2 +-
t/99dbic_sqlt_parser.t | 10 +-
t/admin/02ddl.t | 9 +-
t/admin/10script.t | 9 +-
t/inflate/datetime_mysql.t | 3 +-
t/inflate/datetime_pg.t | 5 +-
t/inflate/hri.t | 8 +
.../RtBug41083/{Schema => Result}/Foo.pm | 2 +-
t/lib/DBICNSTest/RtBug41083/Result/Foo/Sub.pm | 5 +
.../RtBug41083/{Schema_A => Result_A}/A.pm | 2 +-
t/lib/DBICNSTest/RtBug41083/Result_A/A/Sub.pm | 5 +
t/lib/DBICNSTest/RtBug41083/Schema/Foo/Sub.pm | 5 -
t/lib/DBICNSTest/RtBug41083/Schema_A/A/Sub.pm | 5 -
t/lib/DBICTest.pm | 81 +++-
t/lib/DBICTest/DynamicForeignCols/Computer.pm | 16 +
t/lib/DBICTest/DynamicForeignCols/TestComputer.pm | 39 ++
t/lib/DBICTest/RunMode.pm | 65 ++-
t/lib/DBICTest/Schema.pm | 14 +-
t/lib/DBICTest/Schema/Artist.pm | 17 +
t/lib/DBICTest/Schema/CD.pm | 13 +-
t/lib/DBICTest/Schema/CD_to_Producer.pm | 5 +-
t/lib/DBICTest/Schema/ForceForeign.pm | 3 +-
t/lib/DBICTest/Schema/Track.pm | 7 +-
t/lib/DBICTest/Schema/Year1999CDs.pm | 3 +-
t/lib/DBICTest/Schema/Year2000CDs.pm | 3 +-
t/lib/DBICTest/Util/LeakTracer.pm | 323 +++++++++++--
t/multi_create/insert_defaults.t | 7 +-
t/multi_create/standard.t | 6 +-
t/prefetch/correlated.t | 99 ++++
t/prefetch/double_prefetch.t | 2 +-
t/prefetch/grouped.t | 2 +-
t/prefetch/join_type.t | 2 +-
t/prefetch/o2m_o2m_order_by_with_limit.t | 6 +-
t/prefetch/with_limit.t | 89 +++-
t/relationship/core.t | 4 +
t/relationship/custom_with_null_in_cond.t | 45 ++
t/relationship/dynamic_foreign_columns.t | 16 +
t/relationship/update_or_create_multi.t | 7 +-
t/resultset/bind_attr.t | 3 +-
t/resultset/update_delete.t | 32 +-
t/search/distinct.t | 100 +++-
t/search/preserve_original_rs.t | 8 +-
t/search/related_has_many.t | 2 +-
t/search/related_strip_prefetch.t | 2 +-
t/search/select_chains.t | 3 +-
t/search/select_chains_unbalanced.t | 3 +-
t/sqlmaker/core.t | 3 +-
t/sqlmaker/core_quoted.t | 3 +-
t/sqlmaker/hierarchical/oracle.t | 314 +++++++++++++
t/sqlmaker/limit_dialects/mssql_torture.t | 259 ++++++++++
t/sqlmaker/msaccess.t | 76 ++-
t/sqlmaker/mysql.t | 23 +
t/sqlmaker/nest_deprec.t | 3 +-
t/sqlmaker/quotes/quotes.t | 5 +-
t/sqlmaker/quotes/quotes_newstyle.t | 5 +-
t/storage/base.t | 43 +-
t/storage/dbi_env.t | 29 ++
t/storage/deploy.t | 2 +
t/storage/error.t | 6 +-
t/storage/quote_names.t | 8 +
t/storage/replicated.t | 59 ++-
t/storage/txn.t | 5 +-
t/storage/txn_scope_guard.t | 61 +--
xt/standalone_testschema_resultclasses.t | 59 +++
199 files changed, 5040 insertions(+), 2430 deletions(-)
create mode 100644 debian/NEWS
delete mode 100644 debian/patches/fix-doc-typos.patch
delete mode 100644 debian/patches/pod-error.patch
delete mode 100644 debian/patches/series
delete mode 100644 debian/patches/sqlite-exceptions.patch
rename examples/Schema/{MyDatabase/Main.pm => MyApp/Schema.pm} (78%)
create mode 100644 examples/Schema/MyApp/Schema/Result/Artist.pm
create mode 100644 examples/Schema/MyApp/Schema/Result/Cd.pm
create mode 100644 examples/Schema/MyApp/Schema/Result/Track.pm
delete mode 100644 examples/Schema/MyDatabase/Main/Result/Artist.pm
delete mode 100644 examples/Schema/MyDatabase/Main/Result/Cd.pm
delete mode 100644 examples/Schema/MyDatabase/Main/Result/Track.pm
create mode 100644 examples/Schema/db/example.db
mode change 100644 => 100755 examples/Schema/insertdb.pl
mode change 100644 => 100755 examples/Schema/testdb.pl
create mode 100644 lib/DBIx/Class/Manual/QuickStart.pod
create mode 100644 maint/Makefile.PL.inc/56_autogen_schema_files.pl
delete mode 100644 maint/Makefile.PL.inc/56_autogen_testddl.pl
delete mode 100755 maint/gen_schema
create mode 100755 maint/gen_sqlite_schema_files
create mode 100644 maint/travis-ci_scripts/lib/TAP/Harness/IgnoreNonessentialDzilAutogeneratedTests.pm
rename t/lib/DBICNSTest/RtBug41083/{Schema => Result}/Foo.pm (72%)
create mode 100644 t/lib/DBICNSTest/RtBug41083/Result/Foo/Sub.pm
rename t/lib/DBICNSTest/RtBug41083/{Schema_A => Result_A}/A.pm (71%)
create mode 100644 t/lib/DBICNSTest/RtBug41083/Result_A/A/Sub.pm
delete mode 100644 t/lib/DBICNSTest/RtBug41083/Schema/Foo/Sub.pm
delete mode 100644 t/lib/DBICNSTest/RtBug41083/Schema_A/A/Sub.pm
create mode 100644 t/lib/DBICTest/DynamicForeignCols/Computer.pm
create mode 100644 t/lib/DBICTest/DynamicForeignCols/TestComputer.pm
create mode 100644 t/relationship/custom_with_null_in_cond.t
create mode 100644 t/relationship/dynamic_foreign_columns.t
create mode 100644 t/sqlmaker/hierarchical/oracle.t
create mode 100644 t/sqlmaker/limit_dialects/mssql_torture.t
create mode 100644 xt/standalone_testschema_resultclasses.t
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libdbix-class-perl.git
More information about the Pkg-perl-cvs-commits
mailing list