From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7327158094 for ; Thu, 29 Sep 2022 21:35:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C21D4E0DE3; Thu, 29 Sep 2022 21:35:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A88A9E0DE3 for ; Thu, 29 Sep 2022 21:35:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A1043340BC1 for ; Thu, 29 Sep 2022 21:35:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5AE65E8 for ; Thu, 29 Sep 2022 21:35:11 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1664487309.ca15dca30d785e755c1144de9c39037e569e5378.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: NEWS X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ca15dca30d785e755c1144de9c39037e569e5378 X-VCS-Branch: master Date: Thu, 29 Sep 2022 21:35:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 42798247-d432-40bc-a42f-d6c25ee04512 X-Archives-Hash: a4dd71e773d9c95b1b282f44e8548886 commit: ca15dca30d785e755c1144de9c39037e569e5378 Author: Sam James gentoo org> AuthorDate: Thu Sep 29 21:35:02 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Sep 29 21:35:09 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ca15dca3 NEWS: consolidate compressor suffix fixes Signed-off-by: Sam James gentoo.org> NEWS | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/NEWS b/NEWS index 64095d920..1ea559ee5 100644 --- a/NEWS +++ b/NEWS @@ -13,11 +13,8 @@ Features: * bin: ecompress: xz: Pass -9 to xz for compression level like we do for bzip2 & gzip. -* bin: ecompress: xz: Pass -T N where N is the number of jobs from ${MAKEOPTS} - to xz for parallel compression. - -* bin: ecompress: zstd: Pass -T N where N is the number of jobs from ${MAKEOPTS} - to zstd for parallel compression. +* bin: ecompress: xz, zstd: Pass -T N where N is the number of jobs from ${MAKEOPTS} + to xz, zstd for parallel compression. Bug fixes: * emerge: Scheduler: Fix filenames for binpkgs in some cases - reuse existing @@ -32,14 +29,8 @@ Bug fixes: * bin: isolated-functions.sh: return number of CPUs in ___makeopts_jobs as default instead of 1 to match Portage's behavior on the Python side. -* bin: ecompress: zstd: Recognize .zst as a compressed file suffix for the purposes - of the internal compressed file collision check. - -* bin: ecompress: lz4: Recognize .lz4 as a compressed file suffix for the purposes - of the internal compressed file collision check. - -* bin: compress: Recognize .lzo and .lz for the internal compressed file - collision check too. +* bin: ecompress: Recognize .lz, .lzo, .lz4,, and .zst as compressed file + suffixes for the purposes of the internal compressed file collision check. * bin: ecompress: zstd: Set '-q --rm' in PORTAGE_COMPRESS_FLAGS to behave like other compressors.