Received: by mail.netbsd.org (Postfix, from userid 605) id 25DF884D3B; Thu, 1 Nov 2018 13:05:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2681584D04 for ; Thu, 1 Nov 2018 13:05:38 +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 Bab17O9sYXeF for ; Thu, 1 Nov 2018 13:05:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 60F4F84C8D for ; Thu, 1 Nov 2018 13:05:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5A32AFBEE; Thu, 1 Nov 2018 13:05:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1541077537135480" MIME-Version: 1.0 Date: Thu, 1 Nov 2018 13:05:37 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases/py-alembic To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20181101130537.5A32AFBEE@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. --_----------=_1541077537135480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: adam Date: Thu Nov 1 13:05:37 UTC 2018 Modified Files: pkgsrc/databases/py-alembic: Makefile distinfo Log Message: py-alembic: updated to 1.0.2 1.0.2: [bug] [autogenerate] The system=True flag on Column, used primarily in conjunction with the Postgresql “xmin” column, now renders within the autogenerate render process, allowing the column to be excluded from DDL. Additionally, adding a system=True column to a model will produce no autogenerate diff as this column is implicitly present in the database. [bug] [mssql] Fixed issue where usage of the SQL Server mssql_include option within a Operations.create_index() would raise a KeyError, as the additional column(s) need to be added to the table object used by the construct internally. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/databases/py-alembic/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/databases/py-alembic/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1541077537135480 Content-Disposition: inline Content-Length: 1695 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-alembic/Makefile diff -u pkgsrc/databases/py-alembic/Makefile:1.9 pkgsrc/databases/py-alembic/Makefile:1.10 --- pkgsrc/databases/py-alembic/Makefile:1.9 Thu Oct 18 10:15:18 2018 +++ pkgsrc/databases/py-alembic/Makefile Thu Nov 1 13:05:37 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2018/10/18 10:15:18 adam Exp $ +# $NetBSD: Makefile,v 1.10 2018/11/01 13:05:37 adam Exp $ -DISTNAME= alembic-1.0.1 +DISTNAME= alembic-1.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=a/alembic/} Index: pkgsrc/databases/py-alembic/distinfo diff -u pkgsrc/databases/py-alembic/distinfo:1.8 pkgsrc/databases/py-alembic/distinfo:1.9 --- pkgsrc/databases/py-alembic/distinfo:1.8 Thu Oct 18 10:15:18 2018 +++ pkgsrc/databases/py-alembic/distinfo Thu Nov 1 13:05:37 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2018/10/18 10:15:18 adam Exp $ +$NetBSD: distinfo,v 1.9 2018/11/01 13:05:37 adam Exp $ -SHA1 (alembic-1.0.1.tar.gz) = 49df56a0e5e36dff602df2bd22be888cf726a400 -RMD160 (alembic-1.0.1.tar.gz) = 5a8ed5acfaee65bb1619b68e1d5e612091b5bfd1 -SHA512 (alembic-1.0.1.tar.gz) = 79215923f2cffb576e79ac1b3193b978263f58a0f0d5464b1c71519ed4e4d936661074975a3b1b95b991dcb96dcd9bb99e028c20015cd69dd82a5fa7af4a1f00 -Size (alembic-1.0.1.tar.gz) = 1019676 bytes +SHA1 (alembic-1.0.2.tar.gz) = a8928477d520a60ed539a07e877604bd80900788 +RMD160 (alembic-1.0.2.tar.gz) = ae11c755f4a7db39ef44f9fba78afe085ab00aac +SHA512 (alembic-1.0.2.tar.gz) = 111a61195df092f76e54ebaf30d30b9c47fc178421aa8dd94ccd9a24159ba93930110378fe4ef5c25379c83dbeb6f287713ca29fe5b149498ca8b8192c27c689 +Size (alembic-1.0.2.tar.gz) = 1021161 bytes --_----------=_1541077537135480--