From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1669531-garchives=archives.gentoo.org@lists.gentoo.org> 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 83F91158083 for <garchives@archives.gentoo.org>; Wed, 11 Sep 2024 01:27:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 793FEE29C3; Wed, 11 Sep 2024 01:27:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 5D051E29C3 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Sep 2024 01:27:55 +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 89207342FA6 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Sep 2024 01:27:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDFF114D0 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Sep 2024 01:27:52 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1726018026.bbaef0e4db083656d22a195c10f1b45bcb9ea656.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: bbaef0e4db083656d22a195c10f1b45bcb9ea656 X-VCS-Branch: master Date: Wed, 11 Sep 2024 01:27:52 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d5fe24eb-b2de-4ba1-b93d-ef3e460d73dc X-Archives-Hash: d51164d01b57059430d6fae251a96a48 commit: bbaef0e4db083656d22a195c10f1b45bcb9ea656 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Sep 11 01:27:06 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Sep 11 01:27:06 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=bbaef0e4 NEWS: update Bug: https://bugs.gentoo.org/933499 Signed-off-by: Sam James <sam <AT> gentoo.org> NEWS | 41 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index b21cd406a3..2de6866ca7 100644 --- a/NEWS +++ b/NEWS @@ -10,10 +10,23 @@ portage-3.0.66 (UNRELEASED) -------------- Features: +* binrepos.conf: Support custom download location (bug #934784). + + In binrepos.conf, 'location' can now be set to choose the location + for fetched binpkgs from a particular remote repository. + * emerge: Make bare --root-deps option install build-time dependencies to ROOT as well as / for all EAPIs rather than instead of / for EAPI 6 and below (bug #435066). -* Show length of merge-wait queue as part of the status display + +* Show length of merge-wait queue as part of the status display. + +* src: Allow GIL to be disabled for Whirlpool C extension (bug #934220). + +* ELF: Recognise BPF (bug #937485). + +* portage.util.compression_probe: Handle lack of ctypes (libffi) for + bootstrapping purposes. Bug fixes: * ebuild: Handle Bash 5.2's change in behavior which enables the shopt @@ -21,6 +34,9 @@ Bug fixes: working ebuilds. Future EAPIs will need to adjust the logic added by this change. See bug #907061. +* doebuild.spawn: Fix hang with FEATURES="network-sandbox-proxy" in consumers + like gentoolkit (bug #937384). + * make.globals: add bcachefs_effective.* and bcachefs.* to PORTAGE_XATTR_EXCLUDE * vartree, movefile: Warn when rewriting a symlink (bug #934514). @@ -34,6 +50,29 @@ Bug fixes: * unpack: Don't display "Unpacking ..." message for skipped files. Match file extensions case-sensitively in old EAPIs, fixes PMS compliance. +* sync: zipflie: Fix installing module. + +* ebuild: Improve 'maintainer mode' QA check. + +* emerge-webrsync: Honour sync-webrsync-verify-signature attribute. + +* dispatch-conf: Don't use SHELL (bug #910560). + +* phase-functions: Fix QA_SONAME_NO_SYMLINK so it accepts regex (bug #924953). + +* ebuild.5: Improve QA_PREBUILT docs. + +* install-qa-check.d: 90gcc-warnings: Handle color in logs for build.log too. + +Cleanups: +* tar_safe_extract: Port to Python 3.14 (bug #933433). + +* Drop unnecessary f-string use. + +* Improve detection of xtrace (debugging). + +* eapi.py: Use attrs rather than hardcoding / repeating EAPI properties. + portage-3.0.65 (2024-06-04) --------------