Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Mon, 27 Sep 2021 08:14:33
Message-Id: 1632730441.b3e61e8cf750365bf709bb2bc51c10476fd2652d.mgorny@gentoo
1 commit: b3e61e8cf750365bf709bb2bc51c10476fd2652d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 27 08:14:01 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 27 08:14:01 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=b3e61e8c
7
8 Prepare for 3.0.24 release
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 NEWS | 9 +++++++++
13 RELEASE-NOTES | 7 +++++++
14 setup.py | 2 +-
15 3 files changed, 17 insertions(+), 1 deletion(-)
16
17 diff --git a/NEWS b/NEWS
18 index 7b20c5e9a..58ccbe3fd 100644
19 --- a/NEWS
20 +++ b/NEWS
21 @@ -1,5 +1,14 @@
22 News (mainly features/major bug fixes)
23
24 +portage-3.0.24
25 +--------------
26 +* remove doebuild(dbkey=...) support that was deprecated since 2013.
27 +* pass metadata internally using key=value format.
28 +* include INHERIT key md5-cache to match pkgcore.
29 +* reformat Portage code using black.
30 +* fix Python 3.10 deprecation warnings.
31 +* replace compat_coroutine use with modern async.
32 +
33 portage-3.0.23
34 --------------
35 * enable autogroup scheduling with pid-sandbox if possible. This should
36
37 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
38 index 2a471cc02..9cd45caac 100644
39 --- a/RELEASE-NOTES
40 +++ b/RELEASE-NOTES
41 @@ -1,6 +1,13 @@
42 Release Notes; upgrade information mainly.
43 Features/major bugfixes are listed in NEWS
44
45 +portage-3.0.24
46 +==================================
47 + - Bug 814857: create a local copy of FILESDIR in order to avoid
48 + leaking xattrs from user's repository
49 + - Bug 811462: fix ignoring scanelf(1) exit status when generating
50 + NEEDED* entries
51 +
52 portage-3.0.20
53 ==================================
54 - Bug 777492: PORTAGE_NICENESS: Consider autogroup scheduling
55
56 diff --git a/setup.py b/setup.py
57 index 77fa0808c..a4105be68 100755
58 --- a/setup.py
59 +++ b/setup.py
60 @@ -805,7 +805,7 @@ def get_data_files(regular_files, venv_files):
61
62 setup(
63 name="portage",
64 - version="3.0.23",
65 + version="3.0.24",
66 url="https://wiki.gentoo.org/wiki/Project:Portage",
67 project_urls={
68 "Release Notes": "https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES",