Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6390484D14 for ; Wed, 13 Sep 2023 19:38:49 +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 roCGt4bNhWNF for ; Wed, 13 Sep 2023 19:38:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C97F784CCF for ; Wed, 13 Sep 2023 19:38:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C0076FBDB; Wed, 13 Sep 2023 19:38:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1694633928102710" MIME-Version: 1.0 Date: Wed, 13 Sep 2023 19:38:48 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/archivers/py-brotli To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230913193848.C0076FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1694633928102710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Sep 13 19:38:48 UTC 2023 Modified Files: pkgsrc/archivers/py-brotli: Makefile distinfo Log Message: py-brotli: updated to 1.1.0 1.1.0 Added decoder: BrotliDecoderAttachDictionary decoder: BrotliDecoderOnFinish callback behind BROTLI_REPORTING decoder: BrotliDecoderSetMetadataCallbacks encoder: BrotliEncoderPrepareDictionary, BrotliEncoderDestroyPreparedDictionary, BrotliEncoderAttachPreparedDictionary decoder: BrotliEncoderOnFinish callback behind BROTLI_REPORTING common: BrotliSharedDictionaryCreateInstance, BrotliSharedDictionaryDestroyInstance, BrotliSharedDictionaryAttach CLI: --dictionary option java: encoder wrapper: Parameters.mode java: Brotli{Input|Output}Stream.attachDictionary java: wrapper: partial byte array input typescript: decoder (transpiled from Java) Removed build: BROTLI_BUILD_PORTABLE option Fixed java: JNI decoder failed sometimes on power of 2 payloads Improved java / js: smaller decoder footprint decoder: faster decoding encoder: faster encoding encoder: smaller stack frames To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/archivers/py-brotli/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/archivers/py-brotli/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1694633928102710 Content-Disposition: inline Content-Length: 1692 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/py-brotli/Makefile diff -u pkgsrc/archivers/py-brotli/Makefile:1.3 pkgsrc/archivers/py-brotli/Makefile:1.4 --- pkgsrc/archivers/py-brotli/Makefile:1.3 Tue Jan 4 20:52:30 2022 +++ pkgsrc/archivers/py-brotli/Makefile Wed Sep 13 19:38:48 2023 @@ -1,11 +1,9 @@ -# $NetBSD: Makefile,v 1.3 2022/01/04 20:52:30 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2023/09/13 19:38:48 adam Exp $ -DISTNAME= Brotli-1.0.9 +DISTNAME= Brotli-1.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} -PKGREVISION= 1 CATEGORIES= archivers python MASTER_SITES= ${MASTER_SITE_PYPI:=b/brotli/} -EXTRACT_SUFX= .zip MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://github.com/google/brotli Index: pkgsrc/archivers/py-brotli/distinfo diff -u pkgsrc/archivers/py-brotli/distinfo:1.4 pkgsrc/archivers/py-brotli/distinfo:1.5 --- pkgsrc/archivers/py-brotli/distinfo:1.4 Fri Nov 19 09:49:42 2021 +++ pkgsrc/archivers/py-brotli/distinfo Wed Sep 13 19:38:48 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.4 2021/11/19 09:49:42 adam Exp $ +$NetBSD: distinfo,v 1.5 2023/09/13 19:38:48 adam Exp $ -BLAKE2s (Brotli-1.0.9.zip) = 0c2a8965cf4682b69d769d34125dcf0f1bbba0acb243fad793f54e1016545348 -SHA512 (Brotli-1.0.9.zip) = f5faf1ef0b80a2c34ca036e1536ecba8e16ed23c27bebf434e981fbed48e704179aa1be6eae3a82c5958c6d239b0ecf8a7b05dbc8e2e3233d0fc791f32c590d3 -Size (Brotli-1.0.9.zip) = 510202 bytes +BLAKE2s (Brotli-1.1.0.tar.gz) = bf5e9f564bd25b1d2565e9c04416b1bcefa8c67d8f7bdb97a8dd6e33b4bbe04a +SHA512 (Brotli-1.1.0.tar.gz) = af48fb2c00e05090c607385f0fcdec2aa813bec0214fb428a250740f1adb9a4b7bdfa46cb44aa450e524badc0334f9760bc4327a42b0254205884556343587ce +Size (Brotli-1.1.0.tar.gz) = 7372270 bytes --_----------=_1694633928102710--