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: Wed, 28 Mar 2018 07:52:16
Message-Id: 1522221041.4d4457f874ee7244076c4f1811782f8b880925d0.zmedico@gentoo
1 commit: 4d4457f874ee7244076c4f1811782f8b880925d0
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Wed Mar 28 07:09:54 2018 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 28 07:10:41 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=4d4457f8
7
8 Updates for portage-2.3.25 release
9
10 NEWS | 4 ++++
11 RELEASE-NOTES | 32 ++++++++++++++++++++++++++++++++
12 setup.py | 2 +-
13 3 files changed, 37 insertions(+), 1 deletion(-)
14
15 diff --git a/NEWS b/NEWS
16 index a568ae00c..ab8328229 100644
17 --- a/NEWS
18 +++ b/NEWS
19 @@ -1,5 +1,9 @@
20 News (mainly features/major bug fixes)
21
22 +portage-2.3.25
23 +----------------
24 +* Experimental support for EAPI 7_pre1.
25 +
26 portage-2.3.20
27 ----------------
28 * Support RESTRICT=network-sandbox in ebuilds.
29
30 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
31 index 593e67aaf..13544c5ff 100644
32 --- a/RELEASE-NOTES
33 +++ b/RELEASE-NOTES
34 @@ -1,6 +1,38 @@
35 Release Notes; upgrade information mainly.
36 Features/major bugfixes are listed in NEWS
37
38 +portage-2.3.25
39 +==================================
40 +* Bug Fixes:
41 + - Bug 582140 Portage does not reduce values of USE_EXPAND variables
42 + to IUSE_EFFECTIVE in some cases
43 + - Bug 608564 add emerge --ignore-world option to disregard @world
44 + when solving dependencies
45 + - Bug 622462 emerge --autounmask tries to wrongly unmask a hardmasked
46 + package instead of telling user to change USE conflicting flags
47 + - Bug 631358 add emerge --changed-slot option
48 + - Bug 647654 filter-bash-environment.py input is not buffered, it reads
49 + 1 byte at a time
50 + - Bug 647940 "emerge --search" fails to find a package when provided
51 + with an exact match, $CAT/$PKG
52 + - Bug 648062 portageq repositories_configuration <eroot> does not
53 + override PORTAGE_CONFIGROOT
54 + - Bug 648432 File merging is ultra-slow on FreeBSD
55 + - Bug 648790 add parallel aux_get method for things like repoman to use
56 + - Bug 649418 security.capability extended attribute not preserved
57 + between different filesystems
58 + - Bug 649464 dev-util/gtk-update-icon-cache-3.22.19 - QA Notice: new
59 + icons were found installed but GTK+ icon cache has not been updated
60 + - Bug 649524 prepstrip: Preservation of extended attributes using
61 + getfattr+setfattr does not preserve extended attributes outside of
62 + user namespace
63 + - Bug 649528 prepstrip: Preservation of extended attributes using
64 + xattr-helper.py broken
65 + - Bug 650754 emerge --info is broken without git installed if PORTDIR
66 + is a git checkout and sync-type = git
67 + - Bug 651214 {PKG_,}INSTALL_MASK support for exclusions
68 +
69 +
70 portage-2.3.24
71 ==================================
72 * Bug Fixes:
73
74 diff --git a/setup.py b/setup.py
75 index e3ca7f4c3..abcf53b27 100755
76 --- a/setup.py
77 +++ b/setup.py
78 @@ -663,7 +663,7 @@ class build_ext(_build_ext):
79
80 setup(
81 name = 'portage',
82 - version = '2.3.24',
83 + version = '2.3.25',
84 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
85 author = 'Gentoo Portage Development Team',
86 author_email = 'dev-portage@g.o',