Received: by mail.netbsd.org (Postfix, from userid 605) id 6673F84D99; Fri, 12 Jan 2018 12:26:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E14D384D36 for ; Fri, 12 Jan 2018 12:26:00 +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 uLFSuCFs8lIm for ; Fri, 12 Jan 2018 12:26:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 69B5D84CE4 for ; Fri, 12 Jan 2018 12:26:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 64CFFFBDE; Fri, 12 Jan 2018 12:26:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151575996037910" MIME-Version: 1.0 Date: Fri, 12 Jan 2018 12:26:00 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-cffi To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180112122600.64CFFFBDE@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. --_----------=_151575996037910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Jan 12 12:26:00 UTC 2018 Modified Files: pkgsrc/devel/py-cffi: Makefile distinfo Log Message: py-cffi: updated to 1.11.3 v1.11.3 Fix on CPython 3.x: reading the attributes __loader__ or __spec__ from the cffi-generated lib modules gave a buggy SystemError. (These attributes are always None, and provided only to help compatibility with tools that expect them in all modules.) More Windows fixes: workaround for MSVC not supporting large literal strings in C code (from ffi.embedding_init_code(large_string)); and an issue with Py_LIMITED_API linking with python35.dll/python36.dll instead of python3.dll. Small documentation improvements. To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/py-cffi/Makefile cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/py-cffi/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151575996037910 Content-Disposition: inline Content-Length: 1837 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-cffi/Makefile diff -u pkgsrc/devel/py-cffi/Makefile:1.30 pkgsrc/devel/py-cffi/Makefile:1.31 --- pkgsrc/devel/py-cffi/Makefile:1.30 Tue Oct 10 07:44:12 2017 +++ pkgsrc/devel/py-cffi/Makefile Fri Jan 12 12:26:00 2018 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.30 2017/10/10 07:44:12 adam Exp $ +# $NetBSD: Makefile,v 1.31 2018/01/12 12:26:00 adam Exp $ -DISTNAME= cffi-1.11.2 +DISTNAME= cffi-1.11.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -CATEGORIES= devel +CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=c/cffi/} MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/py-cffi/distinfo diff -u pkgsrc/devel/py-cffi/distinfo:1.27 pkgsrc/devel/py-cffi/distinfo:1.28 --- pkgsrc/devel/py-cffi/distinfo:1.27 Tue Oct 10 07:44:12 2017 +++ pkgsrc/devel/py-cffi/distinfo Fri Jan 12 12:26:00 2018 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.27 2017/10/10 07:44:12 adam Exp $ +$NetBSD: distinfo,v 1.28 2018/01/12 12:26:00 adam Exp $ -SHA1 (cffi-1.11.2.tar.gz) = 04d2df85eb1921630b4f9206886737eb37200c19 -RMD160 (cffi-1.11.2.tar.gz) = 3db6391bfea5e142aa3c2431090e1b1da95d099b -SHA512 (cffi-1.11.2.tar.gz) = 8ccd8988bb6b4beb760abe5d8cac7cbf65a7dcfad5a535343e5961912751f426fdf6e602a983430e6aa9f56f2f623855b0cfb5ed8e5294a95d122866a4533eda -Size (cffi-1.11.2.tar.gz) = 435142 bytes +SHA1 (cffi-1.11.3.tar.gz) = d38617a59d4aa0149861d17c0e497665b1e811ee +RMD160 (cffi-1.11.3.tar.gz) = 8c7bbe2ea085926eb6c7d39e6ee20b38f757acba +SHA512 (cffi-1.11.3.tar.gz) = aa9a939e44ba09df88304a001d75d858d12f9c7c14560a5146fe7ab928075f17df2309fb5400652cfb7225879e253f1720400b636eb5b50d0113e7bb83e74b5f +Size (cffi-1.11.3.tar.gz) = 436359 bytes SHA1 (patch-testing_cffi0_test__verify.py) = 9097ed364176f968d8c5084e1bc3d3d368d92714 SHA1 (patch-testing_cffi1_test__verify1.py) = 64a0c7073a446dd4ca7cd97086646959ad4fad08 --_----------=_151575996037910--