pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/databases/p5-DBIx-Class Update from version 0.08102 to...
details: https://anonhg.NetBSD.org/pkgsrc/rev/f2b8f5ec3727
branches: trunk
changeset: 394239:f2b8f5ec3727
user: seb <seb%pkgsrc.org@localhost>
date: Sun Jun 07 13:46:36 2009 +0000
description:
Update from version 0.08102 to version 0.08103.
Pkgsrc changes:
- Adjust dependencies.
Upstream changes:
0.08103 2009-05-26 19:50:00 (UTC)
- Multiple $resultset -> count/update/delete fixes. Now any
of these operations will succeed, regardless of the complexity
of $resultset. distinct, group_by, join, prefetch are all
supported with expected results
- Return value of $rs->delete is now the storage return value
and not 1 as it used to be
- don't pass SQL functions into GROUP BY
- Remove MultiDistinctEmulation.pm, effectively deprecating
{ select => { distinct => [ qw/col1 col2/ ] } }
- Change ->count code to work correctly with DISTINCT (distinct => 1)
via GROUP BY
- Removed interpolation of bind vars for as_query - placeholders
are preserved and nested query bind variables are properly
merged in the correct order
- Refactor DBIx::Class::Storage::DBI::Sybase to automatically
load a subclass, namely Microsoft_SQL_Server.pm
(similar to DBIx::Class::Storage::DBI::ODBC)
- Refactor InflateColumn::DateTime to allow components to
circumvent DateTime parsing
- Support inflation of timestamp datatype
- Support BLOB and CLOB datatypes on Oracle
- Storage::DBI::Replicated::Balancer::Random:
added master_read_weight
- Storage::DBI::Replicated: storage opts from connect_info,
connect_info merging to replicants, hashref connect_info support,
improved trace output, other bug fixes/cleanups
- distinct => 1 with prefetch now groups by all columns
- on_connect_do accepts a single string equivalent to a one
element arrayref (RT#45159)
- DB2 limit + offset now works correctly
- Sybase now supports autoinc PKs (RT#40265)
- Prefetch on joins over duplicate relations now works
correctly (RT#28451)
- "timestamp with time zone" columns (for Pg) now get inflated with a
time zone information preserved
- MSSQL Top limit-emulation improvements (GROUP BY and subquery support)
- ResultSetColumn will not lose the joins infered from a parent
resultset prefetch
diffstat:
databases/p5-DBIx-Class/Makefile | 22 +++++++++++++---------
databases/p5-DBIx-Class/distinfo | 8 ++++----
2 files changed, 17 insertions(+), 13 deletions(-)
diffs (65 lines):
diff -r 1692a1ec5f10 -r f2b8f5ec3727 databases/p5-DBIx-Class/Makefile
--- a/databases/p5-DBIx-Class/Makefile Sun Jun 07 12:57:36 2009 +0000
+++ b/databases/p5-DBIx-Class/Makefile Sun Jun 07 13:46:36 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.8 2009/05/19 06:49:14 abs Exp $
+# $NetBSD: Makefile,v 1.9 2009/06/07 13:46:36 seb Exp $
-DISTNAME= DBIx-Class-0.08102
+DISTNAME= DBIx-Class-0.08103
PKGNAME= p5-${DISTNAME}
CATEGORIES= databases perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBIx/}
@@ -8,28 +8,32 @@
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= http://search.cpan.org/dist/DBIx-Class/
COMMENT= Extensible and flexible object <-> relational mapper
+#LICENSE= artistic OR gnu-gpl-v2
-DEPENDS+= p5-Carp-Clan>=0:../../devel/p5-Carp-Clan
+DEPENDS+= p5-Carp-Clan>=6.0:../../devel/p5-Carp-Clan
DEPENDS+= p5-Class-Accessor-Grouped>=0.08003:../../devel/p5-Class-Accessor-Grouped
DEPENDS+= p5-Class-C3>=0.20:../../devel/p5-Class-C3
DEPENDS+= p5-Class-C3-Componentised>=1.0005:../../devel/p5-Class-C3-Componentised
-DEPENDS+= p5-Class-Inspector>=0:../../devel/p5-Class-Inspector
+DEPENDS+= p5-Class-Inspector>=1.24:../../devel/p5-Class-Inspector
+DEPENDS+= p5-DBD-SQLite>=1.25:../../databases/p5-DBD-SQLite
+DEPENDS+= p5-DBI>=1.605:../../databases/p5-DBI
DEPENDS+= p5-Data-Page>=2.00:../../devel/p5-Data-Page
-DEPENDS+= p5-JSON-Any>=1.17:../../converters/p5-JSON-Any
-DEPENDS+= p5-Module-Find-[0-9]*:../../devel/p5-Module-Find
+DEPENDS+= p5-JSON-Any>=1.18:../../converters/p5-JSON-Any
+DEPENDS+= p5-Module-Find>=0.06:../../devel/p5-Module-Find
DEPENDS+= p5-MRO-Compat>=0.09:../../devel/p5-MRO-Compat
-DEPENDS+= p5-Path-Class-[0-9]*:../../devel/p5-Path-Class
-DEPENDS+= p5-SQL-Abstract>=1.51:../../databases/p5-SQL-Abstract
+DEPENDS+= p5-Module-Find>=0.06:../../devel/p5-Module-Find
+DEPENDS+= p5-Path-Class>=0.16:../../devel/p5-Path-Class
+DEPENDS+= p5-SQL-Abstract>=1.55:../../databases/p5-SQL-Abstract
DEPENDS+= p5-SQL-Abstract-Limit>=0.13:../../databases/p5-SQL-Abstract-Limit
DEPENDS+= p5-Scope-Guard>=0.03:../../devel/p5-Scope-Guard
DEPENDS+= {perl>=5.10,p5-Scalar-List-Utils>=1.19}:../../devel/p5-Scalar-List-Utils
DEPENDS+= {perl>=5.10,p5-Storable-[0-9]*}:../../devel/p5-Storable
DEPENDS+= p5-Sub-Name>=0.04:../../devel/p5-Sub-Name
-BUILD_DEPENDS+= p5-DBD-SQLite>=1.14:../../databases/p5-DBD-SQLite
BUILD_DEPENDS+= p5-Test-Simple>=0.33:../../devel/p5-Test-Simple
BUILD_DEPENDS+= p5-Test-Exception>=0:../../devel/p5-Test-Exception
BUILD_DEPENDS+= p5-Test-Deep>=0:../../devel/p5-Test-Deep
+BUILD_DEPENDS+= p5-Test-Warn>=0.11:../../devel/p5-Test-Warn
PKG_DESTDIR_SUPPORT= user-destdir
diff -r 1692a1ec5f10 -r f2b8f5ec3727 databases/p5-DBIx-Class/distinfo
--- a/databases/p5-DBIx-Class/distinfo Sun Jun 07 12:57:36 2009 +0000
+++ b/databases/p5-DBIx-Class/distinfo Sun Jun 07 13:46:36 2009 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2009/05/01 20:30:39 sno Exp $
+$NetBSD: distinfo,v 1.7 2009/06/07 13:46:36 seb Exp $
-SHA1 (DBIx-Class-0.08102.tar.gz) = 32dcc34bf20f603c31e3543b57d04c9fdfdda183
-RMD160 (DBIx-Class-0.08102.tar.gz) = dc1c8457e7e84f37ceb7300871a64c7b685d6a14
-Size (DBIx-Class-0.08102.tar.gz) = 430618 bytes
+SHA1 (DBIx-Class-0.08103.tar.gz) = a6d8c2d0372d00b317e600eb57a3fde1d11bf567
+RMD160 (DBIx-Class-0.08103.tar.gz) = 1b25e426c5bd72b7519789b482285f6f24f47355
+Size (DBIx-Class-0.08103.tar.gz) = 450300 bytes
Home |
Main Index |
Thread Index |
Old Index