Received: by mail.netbsd.org (Postfix, from userid 605) id 1FDCA84DAE; Wed, 16 Aug 2017 18:07:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A3B0C84D49 for ; Wed, 16 Aug 2017 18:07:32 +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 xyI7GrDk8hMs for ; Wed, 16 Aug 2017 18:07:32 +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 2B7A184D23 for ; Wed, 16 Aug 2017 18:07:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 224E6FAD0; Wed, 16 Aug 2017 18:07:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1502906852163540" MIME-Version: 1.0 Date: Wed, 16 Aug 2017 18:07:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-wrapt To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170816180732.224E6FAD0@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. --_----------=_1502906852163540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Aug 16 18:07:32 UTC 2017 Modified Files: pkgsrc/devel/py-wrapt: Makefile distinfo Log Message: Version 1.10.11 Bugs Fixed * When wrapping a @classmethod in a class used as a base class, when the method was called via the derived class type, the base class type was being passed for the cls argument instead of the derived class type through which the call was made. New Features * The C extension can be disabled at runtime by setting the environment variable WRAPT_DISABLE_EXTENSIONS. This may be necessary where there is currently a difference in behaviour between pure Python implementation and C extension and the C extension isn't having the desired result. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-wrapt/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-wrapt/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1502906852163540 Content-Disposition: inline Content-Length: 1623 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-wrapt/Makefile diff -u pkgsrc/devel/py-wrapt/Makefile:1.4 pkgsrc/devel/py-wrapt/Makefile:1.5 --- pkgsrc/devel/py-wrapt/Makefile:1.4 Sun Jul 30 22:32:16 2017 +++ pkgsrc/devel/py-wrapt/Makefile Wed Aug 16 18:07:31 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2017/07/30 22:32:16 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2017/08/16 18:07:31 adam Exp $ -DISTNAME= wrapt-1.10.10 +DISTNAME= wrapt-1.10.11 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=w/wrapt/} Index: pkgsrc/devel/py-wrapt/distinfo diff -u pkgsrc/devel/py-wrapt/distinfo:1.2 pkgsrc/devel/py-wrapt/distinfo:1.3 --- pkgsrc/devel/py-wrapt/distinfo:1.2 Wed Jun 7 14:42:26 2017 +++ pkgsrc/devel/py-wrapt/distinfo Wed Aug 16 18:07:31 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2017/06/07 14:42:26 ryoon Exp $ +$NetBSD: distinfo,v 1.3 2017/08/16 18:07:31 adam Exp $ -SHA1 (wrapt-1.10.10.tar.gz) = 6be4f1bb50db879863f4247692360eb830a3eb33 -RMD160 (wrapt-1.10.10.tar.gz) = e78fc011d2bacff5010e63fbdc68f6aa473b0fb3 -SHA512 (wrapt-1.10.10.tar.gz) = 4cb43eeadb49727dcd74cccd5b2e593bce1c9510904fa431be7d494563e73ea0e7dbbd00f23a48c1a2b7f3bf7c29ccc001ac1dab18e8dd1e5638184f6acb52ae -Size (wrapt-1.10.10.tar.gz) = 27257 bytes +SHA1 (wrapt-1.10.11.tar.gz) = 64e4ab57330818c89bcd416a61dd892ccaaea9b0 +RMD160 (wrapt-1.10.11.tar.gz) = 351af35eda7ebdc61ab4bf11139d7331c628f2e4 +SHA512 (wrapt-1.10.11.tar.gz) = 75f171af7882de9ca8b8700b580004fadf6df9a1c4565c4a15c151c477c5e5e9f6f3bd81a26be97442bbcd93855d9831b566ea23a6574c72b9fdbab41e689c8d +Size (wrapt-1.10.11.tar.gz) = 27402 bytes --_----------=_1502906852163540--