Received: by mail.netbsd.org (Postfix, from userid 605) id 3039C84EF3; Sun, 24 Mar 2019 10:39:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A098D84DCD for ; Sun, 24 Mar 2019 10:39:48 +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 wNUrGaWyYGzh for ; Sun, 24 Mar 2019 10:39:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 199D984EF5 for ; Sun, 24 Mar 2019 10:39:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 17920FB16; Sun, 24 Mar 2019 10:39:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1553423988151840" MIME-Version: 1.0 Date: Sun, 24 Mar 2019 10:39:48 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-peewee To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190324103948.17920FB16@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. --_----------=_1553423988151840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sun Mar 24 10:39:48 UTC 2019 Modified Files: pkgsrc/databases/py-peewee: Makefile distinfo Log Message: py-peewee: updated to 3.9.3 3.9.3 * Added cross-database support for NULLS FIRST/LAST when specifying the ordering for a query. Previously this was only supported for Postgres. Peewee will now generate an equivalent CASE statement for Sqlite and MySQL. * Added [EXCLUDED](http://docs.peewee-orm.com/en/latest/peewee/api.html#EXCLUDED) helper for referring to the EXCLUDED namespace used with INSERT...ON CONFLICT queries, when referencing values in the conflicting row data. * Added helper method to the model Metadata class for setting the table name at run-time. Setting the Model._meta.table_name directly may have appeared to work in some situations, but could lead to subtle bugs. The new API is Model._meta.set_table_name(). * Enhanced helpers for working with Peewee interactively, [see doc](http://docs.peewee-orm.com/en/latest/peewee/interactive.html). * Fix cache invalidation bug in DataSet that was originally reported on the sqlite-web project. * New example script implementing a [hexastore] To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 pkgsrc/databases/py-peewee/Makefile cvs rdiff -u -r1.47 -r1.48 pkgsrc/databases/py-peewee/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1553423988151840 Content-Disposition: inline Content-Length: 1748 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-peewee/Makefile diff -u pkgsrc/databases/py-peewee/Makefile:1.53 pkgsrc/databases/py-peewee/Makefile:1.54 --- pkgsrc/databases/py-peewee/Makefile:1.53 Wed Mar 6 18:36:13 2019 +++ pkgsrc/databases/py-peewee/Makefile Sun Mar 24 10:39:47 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.53 2019/03/06 18:36:13 adam Exp $ +# $NetBSD: Makefile,v 1.54 2019/03/24 10:39:47 adam Exp $ -DISTNAME= peewee-3.9.2 +DISTNAME= peewee-3.9.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=p/peewee/} Index: pkgsrc/databases/py-peewee/distinfo diff -u pkgsrc/databases/py-peewee/distinfo:1.47 pkgsrc/databases/py-peewee/distinfo:1.48 --- pkgsrc/databases/py-peewee/distinfo:1.47 Wed Mar 6 18:36:13 2019 +++ pkgsrc/databases/py-peewee/distinfo Sun Mar 24 10:39:47 2019 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.47 2019/03/06 18:36:13 adam Exp $ +$NetBSD: distinfo,v 1.48 2019/03/24 10:39:47 adam Exp $ -SHA1 (peewee-3.9.2.tar.gz) = 6f1baed2e87ad8f3f74e73b621d3970ffcdb85e0 -RMD160 (peewee-3.9.2.tar.gz) = ee00ca108c776b49b2f8fb69ef20378c4b879e74 -SHA512 (peewee-3.9.2.tar.gz) = 942fa9079cb21ce6fb3da5c86087c1195865b82c5efd75f2cdccc89b9bc5ecb314f166da10da7dde32d4f744e02f130526d287b1102e3b804fdd8a53d085cc69 -Size (peewee-3.9.2.tar.gz) = 2228493 bytes +SHA1 (peewee-3.9.3.tar.gz) = 26b88f4b8566a38ee0267b47636fc2f843933ccc +RMD160 (peewee-3.9.3.tar.gz) = 617505562a0a7ce4662a926dda3d89eb40ba3bce +SHA512 (peewee-3.9.3.tar.gz) = f190fa45541d7f0e4c133693f2b6b709bdfe62c1806aa0dcaf874a708e100c7cb8302f94c637437008353204726921973b9f39f6ab716666853d20eaf808ffc3 +Size (peewee-3.9.3.tar.gz) = 2232112 bytes SHA1 (patch-setup.py) = 2d4d9fde18df606b584dffe04aa9da22de3e4dcc --_----------=_1553423988151840--