Received: by mail.netbsd.org (Postfix, from userid 605) id 82D7A84DDD; Mon, 18 Sep 2017 07:01:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 08D7C84D25 for ; Mon, 18 Sep 2017 07:01:54 +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 zelGKvmsgRuJ for ; Mon, 18 Sep 2017 07:01:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8685E84D7C for ; Mon, 18 Sep 2017 07:01:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81B06FA9A; Mon, 18 Sep 2017 07:01:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1505718113253550" MIME-Version: 1.0 Date: Mon, 18 Sep 2017 07:01:53 +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: <20170918070153.81B06FA9A@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. --_----------=_1505718113253550 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Sep 18 07:01:53 UTC 2017 Modified Files: pkgsrc/lang/py-six: Makefile distinfo Log Message: py-six: update to 1.11.0 1.11.0: - Pull request 178: `with_metaclass` now properly proxies `__prepare__` to the underlying metaclass. - Pull request 191: Allow `with_metaclass` to work with metaclasses implemented in C. - Pull request 203: Add parse_http_list and parse_keqv_list to moved urllib.request. - Pull request 172 and issue 171: Add unquote_to_bytes to moved urllib.parse. - Pull request 167: Add `six.moves.getoutput`. - Pull request 80: Add `six.moves.urllib_parse.splitvalue`. - Pull request 75: Add `six.moves.email_mime_image`. - Pull request 72: Avoid creating reference cycles through tracebacks in `reraise`. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/lang/py-six/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/py-six/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1505718113253550 Content-Disposition: inline Content-Length: 1571 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.11 pkgsrc/lang/py-six/Makefile:1.12 --- pkgsrc/lang/py-six/Makefile:1.11 Mon Sep 4 18:08:24 2017 +++ pkgsrc/lang/py-six/Makefile Mon Sep 18 07:01:53 2017 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.11 2017/09/04 18:08:24 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2017/09/18 07:01:53 adam Exp $ -DISTNAME= six-1.10.0 +DISTNAME= six-1.11.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel lang python MASTER_SITES= ${MASTER_SITE_PYPI:=s/six/} Index: pkgsrc/lang/py-six/distinfo diff -u pkgsrc/lang/py-six/distinfo:1.9 pkgsrc/lang/py-six/distinfo:1.10 --- pkgsrc/lang/py-six/distinfo:1.9 Wed Nov 4 17:41:19 2015 +++ pkgsrc/lang/py-six/distinfo Mon Sep 18 07:01:53 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2015/11/04 17:41:19 agc Exp $ +$NetBSD: distinfo,v 1.10 2017/09/18 07:01:53 adam Exp $ -SHA1 (six-1.10.0.tar.gz) = 30d480d2e352e8e4c2aae042cf1bf33368ff0920 -RMD160 (six-1.10.0.tar.gz) = 9c5e84a8d2640fc98b33f62896a4f9a3f64167ee -SHA512 (six-1.10.0.tar.gz) = 9a53b7bc8f7e8b358c930eaecf91cc5639176a699830153f586780c3e6d637f1bd31349a69c383574f99da19cb3a36524e7733a318f3572b27aefb69c6409c2e -Size (six-1.10.0.tar.gz) = 29630 bytes +SHA1 (six-1.11.0.tar.gz) = 3647372a0e104e7b53bd477762392024e1083ac0 +RMD160 (six-1.11.0.tar.gz) = db622293776cc4fa176220af760dc368f9d866fb +SHA512 (six-1.11.0.tar.gz) = 33f246a2e987141e17e5edad9d3537cf3aba0cbdd0bc2a907ea52ce0d674b1474f29c3dd5cc26605fd960396054b189ca5f501708333cad234c223131483fe24 +Size (six-1.11.0.tar.gz) = 29860 bytes --_----------=_1505718113253550--