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 BD6B4138331 for ; Wed, 28 Mar 2018 07:52:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5113E0992; Wed, 28 Mar 2018 07:52:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C4AEE0992 for ; Wed, 28 Mar 2018 07:52:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F1DF2335C9C for ; Wed, 28 Mar 2018 07:52:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCBCF1BC for ; Wed, 28 Mar 2018 07:52:11 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1522221041.4d4457f874ee7244076c4f1811782f8b880925d0.zmedico@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: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 4d4457f874ee7244076c4f1811782f8b880925d0 X-VCS-Branch: master Date: Wed, 28 Mar 2018 07:52: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-Archives-Salt: f13096b2-1fc1-4c0d-8dc6-b672280b14e6 X-Archives-Hash: d7398e6f9dfa6604993b4188d03081d9 commit: 4d4457f874ee7244076c4f1811782f8b880925d0 Author: Zac Medico gentoo org> AuthorDate: Wed Mar 28 07:09:54 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Mar 28 07:10:41 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4d4457f8 Updates for portage-2.3.25 release NEWS | 4 ++++ RELEASE-NOTES | 32 ++++++++++++++++++++++++++++++++ setup.py | 2 +- 3 files changed, 37 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index a568ae00c..ab8328229 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ News (mainly features/major bug fixes) +portage-2.3.25 +---------------- +* Experimental support for EAPI 7_pre1. + portage-2.3.20 ---------------- * Support RESTRICT=network-sandbox in ebuilds. diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 593e67aaf..13544c5ff 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,38 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-2.3.25 +================================== +* Bug Fixes: + - Bug 582140 Portage does not reduce values of USE_EXPAND variables + to IUSE_EFFECTIVE in some cases + - Bug 608564 add emerge --ignore-world option to disregard @world + when solving dependencies + - Bug 622462 emerge --autounmask tries to wrongly unmask a hardmasked + package instead of telling user to change USE conflicting flags + - Bug 631358 add emerge --changed-slot option + - Bug 647654 filter-bash-environment.py input is not buffered, it reads + 1 byte at a time + - Bug 647940 "emerge --search" fails to find a package when provided + with an exact match, $CAT/$PKG + - Bug 648062 portageq repositories_configuration does not + override PORTAGE_CONFIGROOT + - Bug 648432 File merging is ultra-slow on FreeBSD + - Bug 648790 add parallel aux_get method for things like repoman to use + - Bug 649418 security.capability extended attribute not preserved + between different filesystems + - Bug 649464 dev-util/gtk-update-icon-cache-3.22.19 - QA Notice: new + icons were found installed but GTK+ icon cache has not been updated + - Bug 649524 prepstrip: Preservation of extended attributes using + getfattr+setfattr does not preserve extended attributes outside of + user namespace + - Bug 649528 prepstrip: Preservation of extended attributes using + xattr-helper.py broken + - Bug 650754 emerge --info is broken without git installed if PORTDIR + is a git checkout and sync-type = git + - Bug 651214 {PKG_,}INSTALL_MASK support for exclusions + + portage-2.3.24 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index e3ca7f4c3..abcf53b27 100755 --- a/setup.py +++ b/setup.py @@ -663,7 +663,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '2.3.24', + version = '2.3.25', url = 'https://wiki.gentoo.org/wiki/Project:Portage', author = 'Gentoo Portage Development Team', author_email = 'dev-portage@gentoo.org',