Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id E9C2E7A16A for ; Tue, 23 May 2017 07:57:51 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 967E484DA6; Tue, 23 May 2017 07:57:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 24F0484DA6 for ; Tue, 23 May 2017 07:57:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id i00ugsOmJLiD for ; Tue, 23 May 2017 07:57:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id A493684CDC for ; Tue, 23 May 2017 07:57:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9D8D5FBE4; Tue, 23 May 2017 07:57:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_14955262703320" MIME-Version: 1.0 Date: Tue, 23 May 2017 07:57:50 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-hypothesis To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170523075750.9D8D5FBE4@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. --_----------=_14955262703320 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue May 23 07:57:50 UTC 2017 Modified Files: pkgsrc/devel/py-hypothesis: Makefile distinfo Log Message: Changes 3.10.0: Hypothesis now uses inspect.getfullargspec internally. On Python 2, there are no visible changes. On Python 3 @given and @composite now preserve annotations on the decorated function. Keyword-only arguments are now either handled correctly (e.g. @composite), or caught in validation instead of silently discarded or raising an unrelated error later (e.g. @given). To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/py-hypothesis/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/py-hypothesis/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_14955262703320 Content-Disposition: inline Content-Length: 1716 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hypothesis/Makefile diff -u pkgsrc/devel/py-hypothesis/Makefile:1.13 pkgsrc/devel/py-hypothesis/Makefile:1.14 --- pkgsrc/devel/py-hypothesis/Makefile:1.13 Sat May 20 05:36:31 2017 +++ pkgsrc/devel/py-hypothesis/Makefile Tue May 23 07:57:50 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2017/05/20 05:36:31 adam Exp $ +# $NetBSD: Makefile,v 1.14 2017/05/23 07:57:50 adam Exp $ -DISTNAME= hypothesis-3.9.0 +DISTNAME= hypothesis-3.10.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/} Index: pkgsrc/devel/py-hypothesis/distinfo diff -u pkgsrc/devel/py-hypothesis/distinfo:1.10 pkgsrc/devel/py-hypothesis/distinfo:1.11 --- pkgsrc/devel/py-hypothesis/distinfo:1.10 Sat May 20 05:36:31 2017 +++ pkgsrc/devel/py-hypothesis/distinfo Tue May 23 07:57:50 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2017/05/20 05:36:31 adam Exp $ +$NetBSD: distinfo,v 1.11 2017/05/23 07:57:50 adam Exp $ -SHA1 (hypothesis-3.9.0.tar.gz) = 56cd592ed731fdafa8a582c3de7ba6982b840d0d -RMD160 (hypothesis-3.9.0.tar.gz) = b1deffbd1818f0281e2004e81ef74cc8fb08d8f5 -SHA512 (hypothesis-3.9.0.tar.gz) = 0d6b62105719d455e7a65b176f176abac639cfa2abb512e7e3fdc62907f0b955dc13c31f22e217c8d0b36f6aa058152ba96424dc79f26ad5bb41dca58690dfa5 -Size (hypothesis-3.9.0.tar.gz) = 80050 bytes +SHA1 (hypothesis-3.10.0.tar.gz) = e91b249f34e80d1fddb49d2ce8decab07a58339e +RMD160 (hypothesis-3.10.0.tar.gz) = 2f2be0cf26b841c98e346761e1614e061ad23777 +SHA512 (hypothesis-3.10.0.tar.gz) = e6c29d3d2e0bb74dfe00058363ceaad4b4026ed83c51cc403ffb2db8ac7930f933677a9217c2227ab48a1ceaaa4d8ee94aee6797280eaf50ac76e40b3a3ceec5 +Size (hypothesis-3.10.0.tar.gz) = 80386 bytes --_----------=_14955262703320--