Received: by mail.netbsd.org (Postfix, from userid 605) id 032EA84D57; Wed, 6 Nov 2019 09:28:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7E90C84D28 for ; Wed, 6 Nov 2019 09:28:22 +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 nFay69QRzsH9 for ; Wed, 6 Nov 2019 09:28:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 012F984C2B for ; Wed, 6 Nov 2019 09:28:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF6C1FA93; Wed, 6 Nov 2019 09:28:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1573032501114960" MIME-Version: 1.0 Date: Wed, 6 Nov 2019 09:28:21 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang/py-six To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191106092821.EF6C1FA93@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. --_----------=_1573032501114960 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Nov 6 09:28:21 UTC 2019 Modified Files: pkgsrc/lang/py-six: Makefile distinfo Log Message: py-six: updated to 1.13.0 1.13.0 - Add `six.moves.dbm_ndbm`. - Add `six.moves.collections_abc`, which aliases the `collections` module on Python 2-3.2 and the `collections.abc` on Python 3.3 and greater. - Re-add distutils fallback in `setup.py`. - On Python 3.7, `with_metaclass` supports classes using PEP 560 features. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/py-six/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/lang/py-six/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1573032501114960 Content-Disposition: inline Content-Length: 2011 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/py-six/Makefile diff -u pkgsrc/lang/py-six/Makefile:1.14 pkgsrc/lang/py-six/Makefile:1.15 --- pkgsrc/lang/py-six/Makefile:1.14 Mon Dec 10 08:53:10 2018 +++ pkgsrc/lang/py-six/Makefile Wed Nov 6 09:28:21 2019 @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.14 2018/12/10 08:53:10 adam Exp $ +# $NetBSD: Makefile,v 1.15 2019/11/06 09:28:21 adam Exp $ -DISTNAME= six-1.12.0 +DISTNAME= six-1.13.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel lang python MASTER_SITES= ${MASTER_SITE_PYPI:=s/six/} MAINTAINER= nils@NetBSD.org -HOMEPAGE= https://pypi.python.org/pypi/six/ +HOMEPAGE= https://github.com/benjaminp/six COMMENT= Python 2 and 3 compatibility utilities LICENSE= mit @@ -15,7 +15,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9] USE_LANGUAGES= # none do-test: - cd ${WRKSRC} && py.test-${PYVERSSUFFIX} + cd ${WRKSRC} && pytest-${PYVERSSUFFIX} .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/lang/py-six/distinfo diff -u pkgsrc/lang/py-six/distinfo:1.11 pkgsrc/lang/py-six/distinfo:1.12 --- pkgsrc/lang/py-six/distinfo:1.11 Mon Dec 10 08:53:10 2018 +++ pkgsrc/lang/py-six/distinfo Wed Nov 6 09:28:21 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2018/12/10 08:53:10 adam Exp $ +$NetBSD: distinfo,v 1.12 2019/11/06 09:28:21 adam Exp $ -SHA1 (six-1.12.0.tar.gz) = 1957b44942be21822414f4dde936e6c40b687565 -RMD160 (six-1.12.0.tar.gz) = a23af7c96557f8a654def4c3d07e3bdff09ee30a -SHA512 (six-1.12.0.tar.gz) = 937728372edf1e0ac13bbd706723d0de35e015c30d0ae41f789c5ed2e3669bb0db70cdc6e036ec2d437a6c4aa0d5d1e727b6d09ac34cca7e4e92e5d3b4775151 -Size (six-1.12.0.tar.gz) = 32725 bytes +SHA1 (six-1.13.0.tar.gz) = e6c12160e3da5e164dac9846a1f171fca24e1a8c +RMD160 (six-1.13.0.tar.gz) = 61dd0979ff3a3c7c818fca2db92b3f4de68a3eb2 +SHA512 (six-1.13.0.tar.gz) = 55eb8e23e529cb0d2ab9e7c85868e695f36c8235e914b1548eb4b9fd561e4237266bf1839457f15a9513d57a343cbf8ab809d6187499300791fd9356854fcb00 +Size (six-1.13.0.tar.gz) = 33726 bytes --_----------=_1573032501114960--