Received: by mail.netbsd.org (Postfix, from userid 605) id 0422F84DC7; Mon, 2 Sep 2019 07:52:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7CFD184DA6 for ; Mon, 2 Sep 2019 07:52:50 +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 4WSh_IBF8MLr for ; Mon, 2 Sep 2019 07:52:50 +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 EC00784D86 for ; Mon, 2 Sep 2019 07:52:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D9173FBF4; Mon, 2 Sep 2019 07:52:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1567410769180240" MIME-Version: 1.0 Date: Mon, 2 Sep 2019 07:52:49 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-furl To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190902075249.D9173FBF4@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. --_----------=_1567410769180240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Sep 2 07:52:49 UTC 2019 Modified Files: pkgsrc/www/py-furl: Makefile distinfo Log Message: py-furl: updated to 2.0.0 Furl v2.0.0 Added: All URL components (scheme, host, path, etc) to furl()'s constructor as keyword arguments. E.g. f = furl(scheme='http', host='host', path='/lolsup'). Changed: furl.truediv() and Path.truediv() now mirror Pathlib.truediv()'s behavior and return a new instance. The original instance is no longer modified. Old behavior: f = furl('1'); f / '2' -> str(f) == '1'. New behavior: f = furl('1'); f /= '2' -> str(f) == '1/2'. Fixed: Path.load() now accepts Path instances, e.g. f.path.load(Path('hi')). Removed: Support for Python 2.6, which reached EOL on 2013-10-29. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/www/py-furl/Makefile cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-furl/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1567410769180240 Content-Disposition: inline Content-Length: 1570 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-furl/Makefile diff -u pkgsrc/www/py-furl/Makefile:1.17 pkgsrc/www/py-furl/Makefile:1.18 --- pkgsrc/www/py-furl/Makefile:1.17 Mon Sep 24 10:10:31 2018 +++ pkgsrc/www/py-furl/Makefile Mon Sep 2 07:52:49 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2018/09/24 10:10:31 adam Exp $ +# $NetBSD: Makefile,v 1.18 2019/09/02 07:52:49 adam Exp $ -DISTNAME= furl-1.2.1 +DISTNAME= furl-2.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=f/furl/} Index: pkgsrc/www/py-furl/distinfo diff -u pkgsrc/www/py-furl/distinfo:1.10 pkgsrc/www/py-furl/distinfo:1.11 --- pkgsrc/www/py-furl/distinfo:1.10 Mon Sep 24 10:10:31 2018 +++ pkgsrc/www/py-furl/distinfo Mon Sep 2 07:52:49 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.10 2018/09/24 10:10:31 adam Exp $ +$NetBSD: distinfo,v 1.11 2019/09/02 07:52:49 adam Exp $ -SHA1 (furl-1.2.1.tar.gz) = 857b365fc4c2715920516de4546e6ec8eec95b78 -RMD160 (furl-1.2.1.tar.gz) = ebe98f3c1533a84fafba1f6f2f36024b3aa6a31b -SHA512 (furl-1.2.1.tar.gz) = 85f2e7f691190f0bdf36d004a7f3f73a138f877cb7432699891b55b2afca7b8b72ecf274d8ebc71264c2b77601616f0ff1d02f62b38872cfd09c8ca6f9fb7f40 -Size (furl-1.2.1.tar.gz) = 24755 bytes +SHA1 (furl-2.0.0.tar.gz) = 085a1d628cb29880a01cc589b805812ecd7318fc +RMD160 (furl-2.0.0.tar.gz) = f36ed555f034429e90068c0ad24aa6f937c8151d +SHA512 (furl-2.0.0.tar.gz) = 748ab52ee6745aec6c3dfe203f2ce73ef64ffa2f43d05df43c3d8fde58964bdabf8d690869f65696d934e2e78a7d10c4021ea33ea3d02a0e58e5119426d6b47c +Size (furl-2.0.0.tar.gz) = 42732 bytes --_----------=_1567410769180240--