Received: by mail.netbsd.org (Postfix, from userid 605) id AAABD84E05; Fri, 26 Jan 2018 08:06:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0B0D384DF9 for ; Fri, 26 Jan 2018 08:06:08 +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 I1rFLDT0dfrp for ; Fri, 26 Jan 2018 08:06:07 +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 8CC1884CD8 for ; Fri, 26 Jan 2018 08:06:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81641FBDE; Fri, 26 Jan 2018 08:06:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1516953967101040" MIME-Version: 1.0 Date: Fri, 26 Jan 2018 08:06:07 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-w3lib To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180126080607.81641FBDE@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. --_----------=_1516953967101040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Fri Jan 26 08:06:07 UTC 2018 Modified Files: pkgsrc/www/py-w3lib: Makefile distinfo Log Message: py-w3lib: updated to 1.19.0 1.19.0: - Add a workaround for CPython segfault (https://bugs.python.org/issue32583) which affect w3lib.encoding functions. This is technically **backwards incompatible** because it changes the way non-decodable bytes are replaced (in some cases instead of two ``\ufffd`` chars you can get one). As a side effect, the fix speeds up decoding in Python 3.4+. - Add 'encoding' parameter for w3lib.http.basic_auth_header. - Fix pypy testing setup, add pypy3 to CI. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/py-w3lib/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-w3lib/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1516953967101040 Content-Disposition: inline Content-Length: 1591 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-w3lib/Makefile diff -u pkgsrc/www/py-w3lib/Makefile:1.3 pkgsrc/www/py-w3lib/Makefile:1.4 --- pkgsrc/www/py-w3lib/Makefile:1.3 Sat Sep 30 13:27:14 2017 +++ pkgsrc/www/py-w3lib/Makefile Fri Jan 26 08:06:07 2018 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.3 2017/09/30 13:27:14 adam Exp $ +# $NetBSD: Makefile,v 1.4 2018/01/26 08:06:07 adam Exp $ -DISTNAME= w3lib-1.18.0 +DISTNAME= w3lib-1.19.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=w/w3lib/} Index: pkgsrc/www/py-w3lib/distinfo diff -u pkgsrc/www/py-w3lib/distinfo:1.2 pkgsrc/www/py-w3lib/distinfo:1.3 --- pkgsrc/www/py-w3lib/distinfo:1.2 Sat Sep 30 13:27:14 2017 +++ pkgsrc/www/py-w3lib/distinfo Fri Jan 26 08:06:07 2018 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2017/09/30 13:27:14 adam Exp $ +$NetBSD: distinfo,v 1.3 2018/01/26 08:06:07 adam Exp $ -SHA1 (w3lib-1.18.0.tar.gz) = 01a507409742aa83e8cc5f0a66817e870c7d847e -RMD160 (w3lib-1.18.0.tar.gz) = 969f9692ba05ebbd3e28ac851a6f6414e421bf9e -SHA512 (w3lib-1.18.0.tar.gz) = 5d7a3453081eae79807f6287f862b1b6af196d1f3db19c4063d1730b0e736496e3bf2c96021d4b7237cd448a52450131e2a136c776d0ca74b4222965033289e7 -Size (w3lib-1.18.0.tar.gz) = 37709 bytes +SHA1 (w3lib-1.19.0.tar.gz) = 8d4cbc9018395adc9e994d314963d7f637130d32 +RMD160 (w3lib-1.19.0.tar.gz) = 1f86ffce227b7073e1e1ebe06f6b818a8804e40b +SHA512 (w3lib-1.19.0.tar.gz) = 253a5fcbc93a6031156f43fbcf77e04654dd132a90f06bb2929ad372352514412b247d863b6fbe558553129746bc27965b7de56f80bfbcb828f0a53773b41eb7 +Size (w3lib-1.19.0.tar.gz) = 37989 bytes --_----------=_1516953967101040--