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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7313D158013 for ; Mon, 27 Sep 2021 08:14:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B68EEE091F; Mon, 27 Sep 2021 08:14:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C3B3E091F for ; Mon, 27 Sep 2021 08:14:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70113342C38 for ; Mon, 27 Sep 2021 08:14:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9C059B for ; Mon, 27 Sep 2021 08:14:29 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1632730441.b3e61e8cf750365bf709bb2bc51c10476fd2652d.mgorny@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: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b3e61e8cf750365bf709bb2bc51c10476fd2652d X-VCS-Branch: master Date: Mon, 27 Sep 2021 08:14:29 +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: ee6e78ca-d860-4479-9c68-1581cfb32731 X-Archives-Hash: 6b0f3da2020ba7d6f5817d6a210d20de commit: b3e61e8cf750365bf709bb2bc51c10476fd2652d Author: Michał Górny gentoo org> AuthorDate: Mon Sep 27 08:14:01 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Sep 27 08:14:01 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b3e61e8c Prepare for 3.0.24 release Signed-off-by: Michał Górny gentoo.org> NEWS | 9 +++++++++ RELEASE-NOTES | 7 +++++++ setup.py | 2 +- 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 7b20c5e9a..58ccbe3fd 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,14 @@ News (mainly features/major bug fixes) +portage-3.0.24 +-------------- +* remove doebuild(dbkey=...) support that was deprecated since 2013. +* pass metadata internally using key=value format. +* include INHERIT key md5-cache to match pkgcore. +* reformat Portage code using black. +* fix Python 3.10 deprecation warnings. +* replace compat_coroutine use with modern async. + portage-3.0.23 -------------- * enable autogroup scheduling with pid-sandbox if possible. This should diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 2a471cc02..9cd45caac 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,13 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-3.0.24 +================================== + - Bug 814857: create a local copy of FILESDIR in order to avoid + leaking xattrs from user's repository + - Bug 811462: fix ignoring scanelf(1) exit status when generating + NEEDED* entries + portage-3.0.20 ================================== - Bug 777492: PORTAGE_NICENESS: Consider autogroup scheduling diff --git a/setup.py b/setup.py index 77fa0808c..a4105be68 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.23", + version="3.0.24", url="https://wiki.gentoo.org/wiki/Project:Portage", project_urls={ "Release Notes": "https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES",