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 01997138331 for ; Tue, 1 May 2018 20:43:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 456BFE07D8; Tue, 1 May 2018 20:43:05 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 1F377E07D8 for ; Tue, 1 May 2018 20:43:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 0265F335C75 for ; Tue, 1 May 2018 20:43:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67D7E2A3 for ; Tue, 1 May 2018 20:43:02 +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: <1525206374.9064bd8d7b83adb0b39e8ce4592e4299e3cc313c.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: 9064bd8d7b83adb0b39e8ce4592e4299e3cc313c X-VCS-Branch: master Date: Tue, 1 May 2018 20:43:02 +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: e433c26a-90d6-496a-ba03-93aeb28a9f8e X-Archives-Hash: 6d60c935c0d16ec1be0d98889a1fb8e0 commit: 9064bd8d7b83adb0b39e8ce4592e4299e3cc313c Author: Zac Medico gentoo org> AuthorDate: Tue May 1 20:26:14 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue May 1 20:26:14 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=9064bd8d Updates for portage-2.3.32 release NEWS | 4 ++++ RELEASE-NOTES | 23 +++++++++++++++++++++++ setup.py | 2 +- 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index f71cc33f7..3839b8bfb 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ News (mainly features/major bug fixes) +portage-2.3.32 +---------------- +* EAPI 7 support. + portage-2.3.29 ---------------- * Portage API consumers can use asyncio with portage's internal event diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 7d1e1681d..45a7df50b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,29 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-2.3.32 +================================== +* Bug Fixes: + - Bug 317337 cross BDEPEND, BROOT, SYSROOT, etc + - Bug 403697 waitpid TypeError: an integer is required + - Bug 614104 AbstractPollTask._unregister_if.. event loop recursion + - Bug 614108 _LockProcess.unlock event loop recursion + - Bug 614110 BinpkgFetcher.lock event loop recursion + - Bug 614112 EbuildBuildDir.lock event loop recursion + - Bug 649276 surface key refresh exceptions early + - Bug 653638 emerge --config exit status is 0 after pkg_config calls die + - Bug 653810 EbuildFetcher._get_uri_map() event loop recursion + - Bug 653844 EbuildBuild._start() event loop recursion + - Bug 653848 EbuildMerge._merge_exit event loop recursion + - Bug 653856 use run_until_complete for asyncio compat + - Bug 653946 ManifestScheduler._iter_tasks() event loop recursion + - Bug 654038 FetchIterator.__iter__ event loop recursion + - Bug 654224 Larry's tail looks wrong + - Bug 654276 AbstractChildWatcher.add_child_handler asyncio compat + - Bug 654382 AbstractEventLoop add_reader/writer asyncio compat + - Bug 654472 Please implement EAPI 7 + + portage-2.3.31 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index 57acb7338..6111a5582 100755 --- a/setup.py +++ b/setup.py @@ -663,7 +663,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '2.3.31', + version = '2.3.32', url = 'https://wiki.gentoo.org/wiki/Project:Portage', author = 'Gentoo Portage Development Team', author_email = 'dev-portage@gentoo.org',