Received: by mail.netbsd.org (Postfix, from userid 605) id B8D4184D37; Sun, 6 Sep 2020 21:27:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 41E0684D2F for ; Sun, 6 Sep 2020 21:27:06 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Yv5gXSv_jBXY for ; Sun, 6 Sep 2020 21:27:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 726C984CE2 for ; Sun, 6 Sep 2020 21:27:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AD128FB28; Sun, 6 Sep 2020 21:27:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159942762430150" MIME-Version: 1.0 Date: Sun, 6 Sep 2020 21:27:04 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/p5-DBIx-Class To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200906212704.AD128FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_159942762430150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Sep 6 21:27:04 UTC 2020 Modified Files: pkgsrc/databases/p5-DBIx-Class: Makefile distinfo Log Message: p5-DBIx-Class: update to 0.082842. 0.082842 2020-06-16 20:10 (UTC) * New Features - An on_connect rebase_sqlmaker call allowing experimentation with non-core SQL generators on a per-$schema-instance basis https://is.gd/DBIC_rebase_sqlmaker - Automatically detect and use multi-column IN on recent versions of libsqlite: ... WHERE ( foo, bar ) IN ( SELECT foo, bar FROM ... ) * Fixes - Fix silent failure to retrieve a primary key (RT#80283) or worse: returning an incorrect value (RT#115381) in case a rdbms-side autoinc column is declared as PK with the is_auto_increment attribute unset - Fix overly-aggressive condition unrolling, corrupting custom ops with array arguments (RT#132390) - Fix docs on how to properly use Moo(se) in ResultSet's, and fix a corner case of ->count not functioning properly when the old recipe was being used (GH#105) - Fix incorrect ::Storage->_ping() behavior under Sybase (RT#114214) - Work around breakage in Hash::Merge by soft-requiring Clone as part of the replicated subsystem (RT#124321) * Misc - DBIC_TRACE_PROFILE=... now uses a ::Storage::Statistics subclass DBIx::Class::Storage::Debug::PrettyTrace which properly ships as a part of this distrinbution - Switch out SQL::Abstract dependency with a slower moving dist - Remove Data::Page dependency by inlining its entirety into the core DBIx::Class::ResultSet::Pager (RT#130686) To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/databases/p5-DBIx-Class/Makefile cvs rdiff -u -r1.30 -r1.31 pkgsrc/databases/p5-DBIx-Class/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159942762430150 Content-Disposition: inline Content-Length: 3442 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/p5-DBIx-Class/Makefile diff -u pkgsrc/databases/p5-DBIx-Class/Makefile:1.47 pkgsrc/databases/p5-DBIx-Class/Makefile:1.48 --- pkgsrc/databases/p5-DBIx-Class/Makefile:1.47 Mon Aug 31 18:07:01 2020 +++ pkgsrc/databases/p5-DBIx-Class/Makefile Sun Sep 6 21:27:04 2020 @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.47 2020/08/31 18:07:01 wiz Exp $ +# $NetBSD: Makefile,v 1.48 2020/09/06 21:27:04 wiz Exp $ -DISTNAME= DBIx-Class-0.082841 +DISTNAME= DBIx-Class-0.082842 PKGNAME= p5-${DISTNAME} -PKGREVISION= 3 CATEGORIES= databases perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBIx/} @@ -17,7 +16,7 @@ DEPENDS+= p5-Class-Inspector>=1.24:../.. DEPENDS+= p5-Class-Method-Modifiers>=1.06:../../devel/p5-Class-Method-Modifiers DEPENDS+= p5-Config-Any>=0.20:../../devel/p5-Config-Any DEPENDS+= p5-Context-Preserve>=0.01:../../devel/p5-Context-Preserve -DEPENDS+= p5-Data-Page>=2.00:../../devel/p5-Data-Page +#DEPENDS+= p5-Data-Page>=2.00:../../devel/p5-Data-Page DEPENDS+= p5-Data-Compare>=1.22:../../devel/p5-Data-Compare DEPENDS+= p5-Data-Dumper-Concise>=2.020:../../devel/p5-Data-Dumper-Concise DEPENDS+= p5-Devel-GlobalDestruction>=0.09:../../devel/p5-Devel-GlobalDestruction @@ -26,8 +25,9 @@ DEPENDS+= p5-MRO-Compat>=0.12:../../deve DEPENDS+= p5-Module-Find>=0.07:../../devel/p5-Module-Find DEPENDS+= p5-Moo>=2.000:../../devel/p5-Moo DEPENDS+= p5-Path-Class>=0.18:../../devel/p5-Path-Class -DEPENDS+= p5-SQL-Abstract>=1.81:../../databases/p5-SQL-Abstract -DEPENDS+= p5-SQL-Abstract-Limit>=0.13:../../databases/p5-SQL-Abstract-Limit +#DEPENDS+= p5-SQL-Abstract>=1.81:../../databases/p5-SQL-Abstract +DEPENDS+= p5-SQL-Abstract-Classic-[0-9]*:../../databases/p5-SQL-Abstract-Classic +#DEPENDS+= p5-SQL-Abstract-Limit>=0.13:../../databases/p5-SQL-Abstract-Limit DEPENDS+= p5-Scope-Guard>=0.03:../../devel/p5-Scope-Guard DEPENDS+= p5-Sub-Name>=0.04:../../devel/p5-Sub-Name DEPENDS+= p5-Try-Tiny>=0.07:../../devel/p5-Try-Tiny @@ -50,8 +50,6 @@ USE_LANGUAGES= # empty PERL5_PACKLIST= auto/DBIx/Class/.packlist PERL5_MODULE_TYPE= Module::Install::Bundled -BUILDLINK_API_DEPENDS.p5-DBI+= p5-DBI>=1.609 - .include "../../databases/p5-DBI/buildlink3.mk" .include "../../lang/perl5/module.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/p5-DBIx-Class/distinfo diff -u pkgsrc/databases/p5-DBIx-Class/distinfo:1.30 pkgsrc/databases/p5-DBIx-Class/distinfo:1.31 --- pkgsrc/databases/p5-DBIx-Class/distinfo:1.30 Sun Feb 25 16:34:23 2018 +++ pkgsrc/databases/p5-DBIx-Class/distinfo Sun Sep 6 21:27:04 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.30 2018/02/25 16:34:23 wiz Exp $ +$NetBSD: distinfo,v 1.31 2020/09/06 21:27:04 wiz Exp $ -SHA1 (DBIx-Class-0.082841.tar.gz) = 6e24aa7207bb3d570c99c4b6296899e8ffa0dbd9 -RMD160 (DBIx-Class-0.082841.tar.gz) = 868133b8dfb1de2f47f4cee61065a5d2e38609c1 -SHA512 (DBIx-Class-0.082841.tar.gz) = a9c54c0cdb7a2dc93a4b3acb90974e6db80d5eaa95c723c0c3895c99b53be00ed182d4cdc6c5350ee7f120f29172c06494d5c647b8eb4643b91387c0ffee694b -Size (DBIx-Class-0.082841.tar.gz) = 861367 bytes +SHA1 (DBIx-Class-0.082842.tar.gz) = 454f2a498cd1ca5eee1cef55a3dfaa3b3ef17a42 +RMD160 (DBIx-Class-0.082842.tar.gz) = 7fb95fd196e098add608cba11f38b1a12a884da8 +SHA512 (DBIx-Class-0.082842.tar.gz) = c8d7149536d5c4ebbfc866b0c143454ead37fda5ddb8fa43dfe2d56c2169be0fd8a46ec3b6c7cd22cb1c93504056d5803b5250ac151507ef4205fe53495e8f18 +Size (DBIx-Class-0.082842.tar.gz) = 879377 bytes --_----------=_159942762430150--