Received: by mail.netbsd.org (Postfix, from userid 605) id 810A284D6E; Wed, 3 Apr 2019 09:29:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0631184D5B for ; Wed, 3 Apr 2019 09:29:55 +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 LM2DzIzD65OV for ; Wed, 3 Apr 2019 09:29:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 67D5184D28 for ; Wed, 3 Apr 2019 09:29:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 613E1FB16; Wed, 3 Apr 2019 09:29:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1554283794111970" MIME-Version: 1.0 Date: Wed, 3 Apr 2019 09:29:54 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-soupsieve To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190403092954.613E1FB16@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. --_----------=_1554283794111970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Apr 3 09:29:54 UTC 2019 Modified Files: pkgsrc/www/py-soupsieve: Makefile distinfo Log Message: py-soupsieve: updated to 1.9.0 1.9.0: NEW: Allow :contains() to accept a list of text to search for. NEW: Add new escape function for escaping CSS identifiers. NEW: Deprecate comments and icomments functions in the API to ensure Soup Sieve focuses only in CSS selectors. comments and icomments will most likely be removed in 2.0. NEW: Add Python 3.8 support. FIX: Don't install test files when installing the soupsieve package. FIX: Improve efficiency of :contains() comparison. FIX: Null characters should translate to the Unicode REPLACEMENT CHARACTER (U+FFFD) according to the specification. This applies to CSS escaped NULL characters as well. FIX: Escaped EOF should translate to U+FFFD outside of CSS strings. In a string, they should just be ignored, but as there is no case where we could resolve such a string and still have a valid selector, string handling remains the same. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/www/py-soupsieve/Makefile \ pkgsrc/www/py-soupsieve/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1554283794111970 Content-Disposition: inline Content-Length: 1710 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-soupsieve/Makefile diff -u pkgsrc/www/py-soupsieve/Makefile:1.5 pkgsrc/www/py-soupsieve/Makefile:1.6 --- pkgsrc/www/py-soupsieve/Makefile:1.5 Tue Feb 19 09:43:56 2019 +++ pkgsrc/www/py-soupsieve/Makefile Wed Apr 3 09:29:54 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.5 2019/02/19 09:43:56 adam Exp $ +# $NetBSD: Makefile,v 1.6 2019/04/03 09:29:54 adam Exp $ -DISTNAME= soupsieve-1.8 +DISTNAME= soupsieve-1.9 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=s/soupsieve/} Index: pkgsrc/www/py-soupsieve/distinfo diff -u pkgsrc/www/py-soupsieve/distinfo:1.5 pkgsrc/www/py-soupsieve/distinfo:1.6 --- pkgsrc/www/py-soupsieve/distinfo:1.5 Tue Feb 19 09:43:56 2019 +++ pkgsrc/www/py-soupsieve/distinfo Wed Apr 3 09:29:54 2019 @@ -1,7 +1,6 @@ -$NetBSD: distinfo,v 1.5 2019/02/19 09:43:56 adam Exp $ +$NetBSD: distinfo,v 1.6 2019/04/03 09:29:54 adam Exp $ -SHA1 (soupsieve-1.8.tar.gz) = 9a46a1c6e4a582cb7009efd32830752d1f79d77c -RMD160 (soupsieve-1.8.tar.gz) = 7dd3b868f13744ca0ccd33c5da0343974a336e5d -SHA512 (soupsieve-1.8.tar.gz) = abdcbb6a13563e7afadd3056141587fdc3d7d644e346f789bca0a16242d860219e462491b0c624b287300af960fb8e3f85c79f5137580939a9fc8c3d6961478c -Size (soupsieve-1.8.tar.gz) = 88211 bytes -SHA1 (patch-setup.py) = 064975ebb17816c90522890ae74c3c66daef26a5 +SHA1 (soupsieve-1.9.tar.gz) = 89c4f6eb10ca7ca0f1a39cda2b4780023ac49995 +RMD160 (soupsieve-1.9.tar.gz) = 8f631ce5838525c3eae06cb24f5a4f11ff2e1eb0 +SHA512 (soupsieve-1.9.tar.gz) = 3ab5ec03afefb2b4a677cf4d7d3d8f7b04f8da471051dbb6c7c3db91b72ac1d8b1adaeaa954087302cb87d37d898fb745e1420275c5ad5a9dfc8cda4c5e02806 +Size (soupsieve-1.9.tar.gz) = 91366 bytes --_----------=_1554283794111970--