Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CA9D384F46 for ; Sat, 8 Jul 2023 04:35:31 +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 iUqoWBcx7_Mu for ; Sat, 8 Jul 2023 04:35:31 +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 3F59E84F45 for ; Sat, 8 Jul 2023 04:35:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 389E8FBDB; Sat, 8 Jul 2023 04:35:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688790931104190" MIME-Version: 1.0 Date: Sat, 8 Jul 2023 04:35:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/converters/py-charset-normalizer To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230708043531.389E8FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688790931104190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Jul 8 04:35:31 UTC 2023 Modified Files: pkgsrc/converters/py-charset-normalizer: Makefile distinfo Log Message: py-charset-normalizer: updated to 3.2.0 3.2.0 Changed - Typehint for function `from_path` no longer enforce `PathLike` as its first argument - Minor improvement over the global detection reliability Added - Introduce function `is_binary` that relies on main capabilities, and optimized to detect binaries - Propagate `enable_fallback` argument throughout `from_bytes`, `from_path`, and `from_fp` that allow a deeper control over the detection (default True) - Explicit support for Python 3.12 Fixed - Edge case detection failure where a file would contain 'very-long' camel cased word To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/converters/py-charset-normalizer/Makefile \ pkgsrc/converters/py-charset-normalizer/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688790931104190 Content-Disposition: inline Content-Length: 1824 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/py-charset-normalizer/Makefile diff -u pkgsrc/converters/py-charset-normalizer/Makefile:1.14 pkgsrc/converters/py-charset-normalizer/Makefile:1.15 --- pkgsrc/converters/py-charset-normalizer/Makefile:1.14 Mon Apr 24 10:30:04 2023 +++ pkgsrc/converters/py-charset-normalizer/Makefile Sat Jul 8 04:35:31 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2023/04/24 10:30:04 adam Exp $ +# $NetBSD: Makefile,v 1.15 2023/07/08 04:35:31 adam Exp $ -DISTNAME= charset-normalizer-3.1.0 +DISTNAME= charset-normalizer-3.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= converters python MASTER_SITES= ${MASTER_SITE_PYPI:=c/charset-normalizer/} Index: pkgsrc/converters/py-charset-normalizer/distinfo diff -u pkgsrc/converters/py-charset-normalizer/distinfo:1.14 pkgsrc/converters/py-charset-normalizer/distinfo:1.15 --- pkgsrc/converters/py-charset-normalizer/distinfo:1.14 Mon Apr 24 10:30:04 2023 +++ pkgsrc/converters/py-charset-normalizer/distinfo Sat Jul 8 04:35:31 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.14 2023/04/24 10:30:04 adam Exp $ +$NetBSD: distinfo,v 1.15 2023/07/08 04:35:31 adam Exp $ -BLAKE2s (charset-normalizer-3.1.0.tar.gz) = ee442ba12c04e1449d4318967f0b7b53c4f6c72642a006df52def9a21b2d15c6 -SHA512 (charset-normalizer-3.1.0.tar.gz) = 4a0a728fb0247e438693efb5d4b759548c82c9011850f0ab3d5844973efa0810d49b460b05a39448049c020a8619f28632278f1f540c89e49b656a8e32cdfdc1 -Size (charset-normalizer-3.1.0.tar.gz) = 95987 bytes +BLAKE2s (charset-normalizer-3.2.0.tar.gz) = 196da0f4c21efcba88e92c65587c03c2ecb9d20c5bb059c3d9892ea2ef23939d +SHA512 (charset-normalizer-3.2.0.tar.gz) = 0e3967b489561394ca848c1fe7dfaa72a330a3f645e9386c1d2d2dc8c2e35a34a8186e6f3377eda2aed503a3e7e626fe116d7b34c2f4a3fd8446a4c1a8fb74cc +Size (charset-normalizer-3.2.0.tar.gz) = 97063 bytes --_----------=_1688790931104190--