summaryrefslogtreecommitdiff
path: root/databases/p5-DBIx-Class-Schema-Loader
diff options
context:
space:
mode:
authorsno <sno>2012-09-07 10:00:34 +0000
committersno <sno>2012-09-07 10:00:34 +0000
commit37cb604709d29c765577508a37a0d14bda7f50e3 (patch)
tree0ad177052f1d2fc879e95f573629096d8c008a44 /databases/p5-DBIx-Class-Schema-Loader
parent45f621e9a828923de44a31cdcf8829ff86e7820d (diff)
downloadpkgsrc-37cb604709d29c765577508a37a0d14bda7f50e3.tar.gz
Updating package for CPAN module DBIx::Class::Schema::Loader in
databases/p5-DBIx-Class-Schema-Loader from 0.07012 to 0.07031. pkgsrc changes: - adjusting dependencies according to distribution's meta information Upstream changes since 0.07012: 0.07031 2012-09-06 15:07:08 - fix 02pod.t failure due to lack of =encoding utf8 statement (patch by Marcel Gruenauer) (RT#79481) 0.07030 2012-09-06 03:27:09 - allow user to set qualify_objects=0 in multischema configurations (andrewalker) 0.07029 2012-09-05 16:41:56 - Oracle: introspect ON DELETE and DEFERRABLE FK clauses - Oracle WARNING: on_delete is now 'NO ACTION' by default, not 'CASCADE'. on_update is now 'NO ACTION' by default (Oracle does not have update rules, this was done to preserve the behavior of the schema when cross-deploying to SQLite.) is_deferrable is now 0 by default, not 1. - DB2: introspect ON DELETE/UPDATE FK clauses - DB2 WARNING: the default for on_delete/on_update is now 'NO ACTION' not 'CASCADE', the default for is_deferrable is still 1 because DB2 does not have deferrable constraints. - SQLite: introspect ON DELETE/UPDATE and DEFERRABLE FK clauses - SQLite WARNING: the default for on_delete/on_update is now 'NO ACTION' not 'CASCADE', and the default for is_deferrable is now 0 not 1. 0.07028 2012-08-30 05:32:42 - MSSQL: introspect ON DELETE/UPDATE clauses for foreign keys - MSSQL WARNING: the default for on_delete/on_update is now 'NO ACTION' not 'CASCADE'. 0.07027 2012-08-26 22:39:45 - PostgreSQL: introspect ON DELETE/UPDATE clauses for foreign keys and the DEFERRABLE clause. - PostgreSQL WARNING: the default for on_delete/on_update attributes for belongs_to relationships is now 'NO ACTION' not 'CASCADE! The default for is_deferrable is now 0 not 1. 0.07026 2012-08-26 01:01:26 - MySQL: introspect ON DELETE/UPDATE clauses for foreign keys. - MySQL WARNING: the default on_delete/on_update attributes for belongs_to relationships is now RESTRICT, *NOT* CASCADE! This is overridable via the relationship_attrs option. 0.07025 2012-06-08 22:48:05 - support SQL Server 2000 again (broken in 0.07011) - some slight optimization for SQL Server driver 0.07024 2012-05-08 15:35:16 - work around broken keyseq in DBD::Pg foreign_key_info (RT#77062) 0.07023 2012-05-05 11:44:15 - properly order FK columns when using base ::DBI loader (SineSwiper) - bump Class::Inspector dep to 1.27 due to test failures with earlier versions on perl >= 5.15.7 (RT#74236) 0.07022 2012-04-08 12:11:00 - do separate queries for default_value on Sybase ASE as some servers can't join to that table (pcmantz) (RT#74170) - set correct size for nchar/nvarchar columns for Sybase ASE, depending on @@ncharsize 0.07021 2012-04-04 23:47:34 - use ::Schema::connect instead of ::Schema::connection in make_schema_at (RT#74175) - register sources on the schema class, never the instance, regardless of how the connection is made for dynamic schemas 0.07020 2012-03-31 21:34:06 - fix some mro issues under perl 5.8 0.07019 2012-03-28 17:23:09 - fix some errors due to case issues (RT#75805) 0.07018 2012-03-27 05:55:10 - skip dbicdump tests on Win32 due to test fails (RT#75732) - fix undefined warnings for DBDs without schemas - work around ORA-24345 from $dbh->column_info - fix spelling mistake in Base POD (RT#74796) 0.07017 2012-02-07 07:23:48 - *EXPERIMENTAL* support for dumping PostgreSQL schemas inside of a transaction - use DBI table_info/column_info REMARKS field if/where available for table/column comments (SineSwiper) - better compatibility with more DBDs (SineSwiper) 0.07015 2011-12-09 10:36:17 - generate many_to_many bridges for targets of link tables 0.07014 2011-11-18 17:06:34 - fix a bug in the automatic multischema clashing moniker disambiguation code that overwrote $loader->moniker_parts 0.07013 2011-11-17 23:12:47 - automatically prefix database/schema to clashing monikers for the same table name in multischema configurations
Diffstat (limited to 'databases/p5-DBIx-Class-Schema-Loader')
-rw-r--r--databases/p5-DBIx-Class-Schema-Loader/Makefile27
-rw-r--r--databases/p5-DBIx-Class-Schema-Loader/distinfo8
2 files changed, 19 insertions, 16 deletions
diff --git a/databases/p5-DBIx-Class-Schema-Loader/Makefile b/databases/p5-DBIx-Class-Schema-Loader/Makefile
index b91d36f7d37..d3bd9942922 100644
--- a/databases/p5-DBIx-Class-Schema-Loader/Makefile
+++ b/databases/p5-DBIx-Class-Schema-Loader/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2011/11/14 09:39:38 hiramatsu Exp $
+# $NetBSD: Makefile,v 1.16 2012/09/07 10:00:34 sno Exp $
-DISTNAME= DBIx-Class-Schema-Loader-0.07012
+DISTNAME= DBIx-Class-Schema-Loader-0.07031
PKGNAME= p5-${DISTNAME}
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBIx/}
@@ -14,32 +14,35 @@ PKG_DESTDIR_SUPPORT= user-destdir
.include "options.mk"
+BUILD_DEPENDS+= p5-Config-Any-[0-9]*:../../devel/p5-Config-Any
+BUILD_DEPENDS+= p5-Config-General-[0-9]*:../../devel/p5-Config-General
BUILD_DEPENDS+= p5-DBD-SQLite>=1.29:../../databases/p5-DBD-SQLite
+BUILD_DEPENDS+= p5-DBIx-Class-IntrospectableM2M-[0-9]*:../../databases/p5-DBIx-Class-IntrospectableM2M
BUILD_DEPENDS+= {perl>=5.10.1,p5-File-Path>=2.07}:../../devel/p5-File-Path
-BUILD_DEPENDS+= p5-Moose-[0-9]*:../../devel/p5-Moose
-BUILD_DEPENDS+= p5-MooseX-NonMoose-[0-9]*:../../devel/p5-MooseX-NonMoose
+BUILD_DEPENDS+= p5-Moose>=1.1200:../../devel/p5-Moose
BUILD_DEPENDS+= p5-MooseX-MarkAsMethods>=0.13:../../devel/p5-MooseX-MarkAsMethods
+BUILD_DEPENDS+= p5-MooseX-NonMoose>=0.16:../../devel/p5-MooseX-NonMoose
BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
-BUILD_DEPENDS+= p5-Test-Kwalitee-[0-9]*:../../devel/p5-Test-Kwalitee
+# BUILD_DEPENDS+= p5-Test-Kwalitee-[0-9]*:../../devel/p5-Test-Kwalitee
BUILD_DEPENDS+= {perl>=5.12.0,p5-Test-Simple>=0.94}:../../devel/p5-Test-Simple
BUILD_DEPENDS+= p5-Test-Warn>=0.21:../../devel/p5-Test-Warn
-BUILD_DEPENDS+= p5-namespace-autoclean-[0-9]*:../../devel/p5-namespace-autoclean
+BUILD_DEPENDS+= p5-namespace-autoclean>=0.09:../../devel/p5-namespace-autoclean
DEPENDS+= p5-Carp-Clan-[0-9]*:../../devel/p5-Carp-Clan
-DEPENDS+= p5-Class-Accessor-Grouped>=0.09002:../../devel/p5-Class-Accessor-Grouped
-DEPENDS+= p5-Class-C3>=0.18:../../devel/p5-Class-C3
+DEPENDS+= p5-Class-Accessor-Grouped>=0.10002:../../devel/p5-Class-Accessor-Grouped
DEPENDS+= p5-Class-C3-Componentised>=1.0005:../../devel/p5-Class-C3-Componentised
-#DEPENDS+= p5-Class-Data-Accessor>=0.03:../../devel/p5-Class-Data-Accessor
-DEPENDS+= p5-Class-Inspector-[0-9]*:../../devel/p5-Class-Inspector
+DEPENDS+= p5-Class-Inspector>=1.27:../../devel/p5-Class-Inspector
DEPENDS+= p5-Class-Unload-[0-9]*:../../devel/p5-Class-Unload
-DEPENDS+= p5-DBIx-Class>=0.08114:../../databases/p5-DBIx-Class
+DEPENDS+= p5-DBIx-Class>=0.08127:../../databases/p5-DBIx-Class
DEPENDS+= p5-Data-Dump>=1.06:../../devel/p5-Data-Dump
DEPENDS+= {perl>=5.8.8,p5-Digest-MD5>=2.36}:../../security/p5-Digest-MD5
DEPENDS+= p5-File-Slurp>=9999.13:../../devel/p5-File-Slurp
-#DEPENDS+= p5-Lingua-EN-Inflect>=1.89:../../textproc/p5-Lingua-EN-Inflect
+DEPENDS+= p5-Hash-Merge-[0-9]*:../../devel/p5-Hash-Merge
DEPENDS+= p5-Lingua-EN-Inflect-Number>=1.1:../../textproc/p5-Lingua-EN-Inflect-Number
DEPENDS+= p5-Lingua-EN-Inflect-Phrase>=0.02:../../textproc/p5-Lingua-EN-Inflect-Phrase
+DEPENDS+= p5-Lingua-EN-Tagger>=0.20:../../textproc/p5-Lingua-EN-Tagger
DEPENDS+= p5-List-MoreUtils-[0-9]*:../../devel/p5-List-MoreUtils
+DEPENDS+= p5-MRO-Compat>=0.09:../../devel/p5-MRO-Compat
DEPENDS+= {perl>=5.10,p5-PathTools-[0-9]*}:../../devel/p5-PathTools
DEPENDS+= {perl>=5.10,p5-Scalar-List-Utils>=0}:../../devel/p5-Scalar-List-Utils
DEPENDS+= p5-Scope-Guard-[0-9]*:../../devel/p5-Scope-Guard
diff --git a/databases/p5-DBIx-Class-Schema-Loader/distinfo b/databases/p5-DBIx-Class-Schema-Loader/distinfo
index 5577fc256d3..2f15e8cee1f 100644
--- a/databases/p5-DBIx-Class-Schema-Loader/distinfo
+++ b/databases/p5-DBIx-Class-Schema-Loader/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2011/11/14 09:39:38 hiramatsu Exp $
+$NetBSD: distinfo,v 1.9 2012/09/07 10:00:34 sno Exp $
-SHA1 (DBIx-Class-Schema-Loader-0.07012.tar.gz) = 0834a49d8a37a62d51c778aeb41b7fd535bfcd23
-RMD160 (DBIx-Class-Schema-Loader-0.07012.tar.gz) = 71d1fe6b3a3a8bb7def82d7a02154c4c63ed11c8
-Size (DBIx-Class-Schema-Loader-0.07012.tar.gz) = 191040 bytes
+SHA1 (DBIx-Class-Schema-Loader-0.07031.tar.gz) = cc19aa625ddd16b6d7577163cf1056689e715d01
+RMD160 (DBIx-Class-Schema-Loader-0.07031.tar.gz) = c929e40049657d1d85b3672f78a4e7a2818fb840
+Size (DBIx-Class-Schema-Loader-0.07031.tar.gz) = 203101 bytes