Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1F5D284EB9 for ; Thu, 31 Aug 2023 17:23:33 +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 daHNRV9Yzr2U for ; Thu, 31 Aug 2023 17:23:32 +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 4696C84E83 for ; Thu, 31 Aug 2023 17:23:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3DE8BFBDB; Thu, 31 Aug 2023 17:23:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1693502612291330" MIME-Version: 1.0 Date: Thu, 31 Aug 2023 17:23:32 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/archivers/brotli To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20230831172332.3DE8BFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1693502612291330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Aug 31 17:23:32 UTC 2023 Modified Files: pkgsrc/archivers/brotli: Makefile PLIST distinfo Removed Files: pkgsrc/archivers/brotli/patches: patch-scripts_libbrotlicommon.pc.in patch-scripts_libbrotlidec.pc.in patch-scripts_libbrotlienc.pc.in Log Message: brotli: updated to 1.1.0 v1.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.10 -r1.11 pkgsrc/archivers/brotli/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/archivers/brotli/PLIST cvs rdiff -u -r1.11 -r1.12 pkgsrc/archivers/brotli/distinfo cvs rdiff -u -r1.1 -r0 \ pkgsrc/archivers/brotli/patches/patch-scripts_libbrotlicommon.pc.in \ pkgsrc/archivers/brotli/patches/patch-scripts_libbrotlidec.pc.in \ pkgsrc/archivers/brotli/patches/patch-scripts_libbrotlienc.pc.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1693502612291330 Content-Disposition: inline Content-Length: 2893 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/brotli/Makefile diff -u pkgsrc/archivers/brotli/Makefile:1.10 pkgsrc/archivers/brotli/Makefile:1.11 --- pkgsrc/archivers/brotli/Makefile:1.10 Tue Jan 24 18:36:17 2023 +++ pkgsrc/archivers/brotli/Makefile Thu Aug 31 17:23:31 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2023/01/24 18:36:17 wiz Exp $ +# $NetBSD: Makefile,v 1.11 2023/08/31 17:23:31 adam Exp $ -DISTNAME= brotli-1.0.9 +DISTNAME= brotli-1.1.0 CATEGORIES= archivers MASTER_SITES= ${MASTER_SITE_GITHUB:=google/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/archivers/brotli/PLIST diff -u pkgsrc/archivers/brotli/PLIST:1.2 pkgsrc/archivers/brotli/PLIST:1.3 --- pkgsrc/archivers/brotli/PLIST:1.2 Sat Jan 27 12:38:19 2018 +++ pkgsrc/archivers/brotli/PLIST Thu Aug 31 17:23:31 2023 @@ -1,21 +1,19 @@ -@comment $NetBSD: PLIST,v 1.2 2018/01/27 12:38:19 mef Exp $ +@comment $NetBSD: PLIST,v 1.3 2023/08/31 17:23:31 adam Exp $ bin/brotli include/brotli/decode.h include/brotli/encode.h include/brotli/port.h +include/brotli/shared_dictionary.h include/brotli/types.h -lib/libbrotlicommon-static.a lib/libbrotlicommon.so -lib/libbrotlicommon.so.1 lib/libbrotlicommon.so.${PKGVERSION} -lib/libbrotlidec-static.a +lib/libbrotlicommon.so.1 lib/libbrotlidec.so -lib/libbrotlidec.so.1 lib/libbrotlidec.so.${PKGVERSION} -lib/libbrotlienc-static.a +lib/libbrotlidec.so.1 lib/libbrotlienc.so -lib/libbrotlienc.so.1 lib/libbrotlienc.so.${PKGVERSION} +lib/libbrotlienc.so.1 lib/pkgconfig/libbrotlicommon.pc lib/pkgconfig/libbrotlidec.pc lib/pkgconfig/libbrotlienc.pc Index: pkgsrc/archivers/brotli/distinfo diff -u pkgsrc/archivers/brotli/distinfo:1.11 pkgsrc/archivers/brotli/distinfo:1.12 --- pkgsrc/archivers/brotli/distinfo:1.11 Tue Oct 26 09:57:05 2021 +++ pkgsrc/archivers/brotli/distinfo Thu Aug 31 17:23:31 2023 @@ -1,9 +1,5 @@ -$NetBSD: distinfo,v 1.11 2021/10/26 09:57:05 nia Exp $ +$NetBSD: distinfo,v 1.12 2023/08/31 17:23:31 adam Exp $ -BLAKE2s (brotli-1.0.9.tar.gz) = 9397147178baa093eacaf976f732708a96fe4373b9ffd400908250566d18d606 -SHA512 (brotli-1.0.9.tar.gz) = b8e2df955e8796ac1f022eb4ebad29532cb7e3aa6a4b6aee91dbd2c7d637eee84d9a144d3e878895bb5e62800875c2c01c8f737a1261020c54feacf9f676b5f5 -Size (brotli-1.0.9.tar.gz) = 486984 bytes -SHA1 (patch-CMakeLists.txt) = ab1b60d2ae23e7976339c127dab7f5296c8a791b -SHA1 (patch-scripts_libbrotlicommon.pc.in) = 4544629c9e6ec539dc58624991a4a916c6232aef -SHA1 (patch-scripts_libbrotlidec.pc.in) = 54969400b302c736c97f48add611eaa471b7dbe1 -SHA1 (patch-scripts_libbrotlienc.pc.in) = d697b2fb3859c99f3815ff00072d3949e482522c +BLAKE2s (brotli-1.1.0.tar.gz) = f796b0a4446cbe78268722cd2db372315138d98471096697abb442b89ccf957e +SHA512 (brotli-1.1.0.tar.gz) = 6eb280d10d8e1b43d22d00fa535435923c22ce8448709419d676ff47d4a644102ea04f488fc65a179c6c09fee12380992e9335bad8dfebd5d1f20908d10849d9 +Size (brotli-1.1.0.tar.gz) = 511969 bytes --_----------=_1693502612291330--