Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Tue, 01 May 2018 20:43:05
Message-Id: 1525206374.9064bd8d7b83adb0b39e8ce4592e4299e3cc313c.zmedico@gentoo
1 commit: 9064bd8d7b83adb0b39e8ce4592e4299e3cc313c
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 1 20:26:14 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue May 1 20:26:14 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=9064bd8d
7
8 Updates for portage-2.3.32 release
9
10 NEWS | 4 ++++
11 RELEASE-NOTES | 23 +++++++++++++++++++++++
12 setup.py | 2 +-
13 3 files changed, 28 insertions(+), 1 deletion(-)
14
15 diff --git a/NEWS b/NEWS
16 index f71cc33f7..3839b8bfb 100644
17 --- a/NEWS
18 +++ b/NEWS
19 @@ -1,5 +1,9 @@
20 News (mainly features/major bug fixes)
21
22 +portage-2.3.32
23 +----------------
24 +* EAPI 7 support.
25 +
26 portage-2.3.29
27 ----------------
28 * Portage API consumers can use asyncio with portage's internal event
29
30 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
31 index 7d1e1681d..45a7df50b 100644
32 --- a/RELEASE-NOTES
33 +++ b/RELEASE-NOTES
34 @@ -1,6 +1,29 @@
35 Release Notes; upgrade information mainly.
36 Features/major bugfixes are listed in NEWS
37
38 +portage-2.3.32
39 +==================================
40 +* Bug Fixes:
41 + - Bug 317337 cross BDEPEND, BROOT, SYSROOT, etc
42 + - Bug 403697 waitpid TypeError: an integer is required
43 + - Bug 614104 AbstractPollTask._unregister_if.. event loop recursion
44 + - Bug 614108 _LockProcess.unlock event loop recursion
45 + - Bug 614110 BinpkgFetcher.lock event loop recursion
46 + - Bug 614112 EbuildBuildDir.lock event loop recursion
47 + - Bug 649276 surface key refresh exceptions early
48 + - Bug 653638 emerge --config exit status is 0 after pkg_config calls die
49 + - Bug 653810 EbuildFetcher._get_uri_map() event loop recursion
50 + - Bug 653844 EbuildBuild._start() event loop recursion
51 + - Bug 653848 EbuildMerge._merge_exit event loop recursion
52 + - Bug 653856 use run_until_complete for asyncio compat
53 + - Bug 653946 ManifestScheduler._iter_tasks() event loop recursion
54 + - Bug 654038 FetchIterator.__iter__ event loop recursion
55 + - Bug 654224 Larry's tail looks wrong
56 + - Bug 654276 AbstractChildWatcher.add_child_handler asyncio compat
57 + - Bug 654382 AbstractEventLoop add_reader/writer asyncio compat
58 + - Bug 654472 Please implement EAPI 7
59 +
60 +
61 portage-2.3.31
62 ==================================
63 * Bug Fixes:
64
65 diff --git a/setup.py b/setup.py
66 index 57acb7338..6111a5582 100755
67 --- a/setup.py
68 +++ b/setup.py
69 @@ -663,7 +663,7 @@ class build_ext(_build_ext):
70
71 setup(
72 name = 'portage',
73 - version = '2.3.31',
74 + version = '2.3.32',
75 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
76 author = 'Gentoo Portage Development Team',
77 author_email = 'dev-portage@g.o',