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: Tue, 28 Sep 2021 08:40:43
Message-Id: 1632818406.f7d45cf535f239f9ed25cf1467c90c98992c124e.mgorny@gentoo
1 commit: f7d45cf535f239f9ed25cf1467c90c98992c124e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 28 08:40:06 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 28 08:40:06 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=f7d45cf5
7
8 Prepare for 3.0.25 release
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 NEWS | 4 ++++
13 RELEASE-NOTES | 7 +++++++
14 setup.py | 2 +-
15 3 files changed, 12 insertions(+), 1 deletion(-)
16
17 diff --git a/NEWS b/NEWS
18 index 58ccbe3fd..fa5c6ca8b 100644
19 --- a/NEWS
20 +++ b/NEWS
21 @@ -1,5 +1,9 @@
22 News (mainly features/major bug fixes)
23
24 +portage-3.0.25
25 +--------------
26 +* fix Python < 3.8 compatibility of FILESDIR copying code.
27 +
28 portage-3.0.24
29 --------------
30 * remove doebuild(dbkey=...) support that was deprecated since 2013.
31
32 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
33 index 9cd45caac..c98b6c5a9 100644
34 --- a/RELEASE-NOTES
35 +++ b/RELEASE-NOTES
36 @@ -1,6 +1,13 @@
37 Release Notes; upgrade information mainly.
38 Features/major bugfixes are listed in NEWS
39
40 +portage-3.0.25
41 +==================================
42 + - Bug 703520: output a QA notice when eend is called without
43 + an argument
44 + - Bug 815196: files copied to shadow FILESDIR are now owned
45 + by portage:portage to fix access issues
46 +
47 portage-3.0.24
48 ==================================
49 - Bug 814857: create a local copy of FILESDIR in order to avoid
50
51 diff --git a/setup.py b/setup.py
52 index a4105be68..f9933fff9 100755
53 --- a/setup.py
54 +++ b/setup.py
55 @@ -805,7 +805,7 @@ def get_data_files(regular_files, venv_files):
56
57 setup(
58 name="portage",
59 - version="3.0.24",
60 + version="3.0.25",
61 url="https://wiki.gentoo.org/wiki/Project:Portage",
62 project_urls={
63 "Release Notes": "https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES",