From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1347462-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 4C366158086 for <garchives@archives.gentoo.org>; Thu, 9 Dec 2021 08:17:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CDEC2BC004; Thu, 9 Dec 2021 08:17:49 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 35CD52BC004 for <gentoo-commits@lists.gentoo.org>; Thu, 9 Dec 2021 08:17:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 AD6BE3435A7 for <gentoo-commits@lists.gentoo.org>; Thu, 9 Dec 2021 08:17:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFDF91DC for <gentoo-commits@lists.gentoo.org>; Thu, 9 Dec 2021 08:17:44 +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: <1639037384.04d254afe2760487cd706a87986be4c6db30fd06.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: NEWS RELEASE-NOTES setup.py X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 04d254afe2760487cd706a87986be4c6db30fd06 X-VCS-Branch: master Date: Thu, 9 Dec 2021 08:17:44 +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: 006074be-2ac6-4235-b25b-e1acd65b1439 X-Archives-Hash: af95af22be72193306a9c41e711642fb commit: 04d254afe2760487cd706a87986be4c6db30fd06 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Dec 9 08:09:44 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Dec 9 08:09:44 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=04d254af Prepare for 3.0.29 release Signed-off-by: Sam James <sam <AT> gentoo.org> NEWS | 10 ++++++++++ RELEASE-NOTES | 5 +++++ setup.py | 2 +- 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 1e772fdfd..95fc4e5fa 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,15 @@ News (mainly features/major bug fixes) +portage-3.0.29 +-------------- +* check for inconsistent/missing PROVIDES during package (and binpkg) + installation. See bug 811462. +* avoid pulling in newer slots for upgrades in some cases. See bug 828136. +* enable SONAME dependencies for binpkgs by default. See bug 687956. +* add new options to allow avoiding building/using binpkgs for live ebuilds: + FEATURES="binpkg-live" and --usepkg-exclude-live. +* add emphasis in output to user patches being applied. + portage-3.0.27 -------------- * improve blocker output to make it clear which blockers diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 15ef69d9e..f9e4a9854 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,11 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-3.0.29 +================================== + - Bug 811462: fixes to detect package (and binpkg) corruption due to broken + scanelf. + portage-3.0.28 ================================== - Bug 816291: revert FILESDIR to symlink to fix SELinux regression. diff --git a/setup.py b/setup.py index db4dc4bfe..2c551e1b6 100755 --- a/setup.py +++ b/setup.py @@ -805,7 +805,7 @@ def get_data_files(regular_files, venv_files): setup( name="portage", - version="3.0.28", + version="3.0.29", url="https://wiki.gentoo.org/wiki/Project:Portage", project_urls={ "Release Notes": "https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES",