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, 08 Sep 2020 03:52:02
Message-Id: 1599536360.ca9c60a5b4e3253894756b9860045ed15a3975d1.zmedico@gentoo
1 commit: ca9c60a5b4e3253894756b9860045ed15a3975d1
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 8 03:39:08 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 8 03:39:20 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ca9c60a5
7
8 Updates for portage-3.0.6 release
9
10 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
11
12 NEWS | 15 +++++++++++++++
13 RELEASE-NOTES | 13 +++++++++++++
14 setup.py | 2 +-
15 3 files changed, 29 insertions(+), 1 deletion(-)
16
17 diff --git a/NEWS b/NEWS
18 index 1d609bd31..c9bd5cfb5 100644
19 --- a/NEWS
20 +++ b/NEWS
21 @@ -1,5 +1,20 @@
22 News (mainly features/major bug fixes)
23
24 +portage-3.0.6
25 +--------------
26 +* emerge --search now detects regular expressions automatically. This
27 + behavior is controlled by the --regex-search-auto option.
28 +* make.conf now treats variable names that begin with two underscores
29 + as local variables which are not displayed by emerge --info --verbose.
30 +* egencache --update-pkg-desc now has a --verbose option which causes
31 + it to emulate esync --verbose output.
32 +* env-update now generates a systemd user-session environment in a file
33 + named /etc/environment.d/10-gentoo-env.conf.
34 +* binrepos.conf is a new configuration file that acts as a substitute
35 + for the PORTAGE_BINHOST variable, and allows each repository to have
36 + a separate FETCHCOMMAND which can be used to customize authentication.
37 + This file is documented in the portage(5) man page.
38 +
39 portage-3.0.0
40 --------------
41 * Dropped support for Python 2.x.
42
43 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
44 index 9279b11ef..40565e92a 100644
45 --- a/RELEASE-NOTES
46 +++ b/RELEASE-NOTES
47 @@ -1,6 +1,19 @@
48 Release Notes; upgrade information mainly.
49 Features/major bugfixes are listed in NEWS
50
51 +portage-3.0.6
52 +==================================
53 +* Bug Fixes:
54 + - Bug 668302 binrepos.conf: support fetchcommand customization
55 + - Bug 668334 Add binrepos.conf to replace PORTAGE_BINHOST
56 + - Bug 704416 env-update: create systemd user-session environment
57 + - Bug 737470 egencache --update-pkg-desc: emulate esync --verbose
58 + - Bug 737480 emerge --search: auto-detect regular expressions
59 + - Bug 739908 @change-deps: fix erroneous repeated rebuilds
60 + - Bug 740588 make.conf: Treat __* variables as local
61 + - Bug 740898 PORTAGE_BINHOST urlopen proxy support
62 + - Bug 740904 rsync and gemato proxy support
63 +
64 portage-3.0.5
65 ==================================
66 * Bug Fixes:
67
68 diff --git a/setup.py b/setup.py
69 index d1e25bd6f..81d260fac 100755
70 --- a/setup.py
71 +++ b/setup.py
72 @@ -655,7 +655,7 @@ class build_ext(_build_ext):
73
74 setup(
75 name = 'portage',
76 - version = '3.0.5',
77 + version = '3.0.6',
78 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
79 author = 'Gentoo Portage Development Team',
80 author_email = 'dev-portage@g.o',