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: Sun, 13 Aug 2017 00:54:52
Message-Id: 1502585615.d1ffd9d29b62dc1f965a87a251d4bcb0279b8359.zmedico@gentoo
1 commit: d1ffd9d29b62dc1f965a87a251d4bcb0279b8359
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 11 16:23:47 2017 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 13 00:53:35 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=d1ffd9d2
7
8 portage-2.3.7 release
9
10 NEWS | 15 +++++++++++++++
11 RELEASE-NOTES | 14 ++++++++++++++
12 setup.py | 2 +-
13 3 files changed, 30 insertions(+), 1 deletion(-)
14
15 diff --git a/NEWS b/NEWS
16 index 052da5e64..1283f3eb1 100644
17 --- a/NEWS
18 +++ b/NEWS
19 @@ -1,5 +1,20 @@
20 News (mainly features/major bug fixes)
21
22 +portage-2.3.7
23 +-----------------
24 +* eapply_user combines patch basenames from all matched directories into a
25 + list, and applies them in POSIX sorted order. This allows patches in
26 + more-specific directories to override patches of the same basename found
27 + in less-specific directories. An empty patch (or /dev/null symlink) negates
28 + a patch with the same basename found in a less-specific directory.
29 +* FEATURES=multilib-strict no longer recurses into subdirectories, in order
30 + to avoid false-positives. The MULTILIB_STRICT_EXEMPT variable only served
31 + to filter false-positives that were triggered by recursion, so it will no
32 + longer be needed.
33 +* New emerge --autounmask-keep-keywords and --onlydeps-with-rdeps=<y|n>
34 + options.
35 +
36 +
37 portage-2.3.5
38 -----------------
39 * Numerous patches updating checksums code and python module imports for them
40
41 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
42 index 56e9c8923..a8f9ae6d7 100644
43 --- a/RELEASE-NOTES
44 +++ b/RELEASE-NOTES
45 @@ -1,6 +1,20 @@
46 Release Notes; upgrade information mainly.
47 Features/major bugfixes are listed in NEWS
48
49 +portage-2.3.7
50 +==================================
51 +* Bug Fixes:
52 + - Bug 424423 multilib-strict: disable recursion into subdirectories
53 + - Bug 608880 eapply_user: combine sort for all dirs
54 + - Bug 610670 man/portage.5: document -* in profile "packages" files
55 + - Bug 619612 emerge: warn for --autounmask-continue with --autounmask=n
56 + - Bug 619620 depgraph: account for binpkg-multi-instance in unused warning
57 + - Bug 619626 depgraph: prune unnecessary rebuilds for --autounmask-continue
58 + - Bug 622480 emerge: add --autounmask-keep-keywords option
59 + - Bug 623648 fuzzy search: weigh category similarity independently
60 + - Bug 625246 emerge --getbinpkg: https support for If-Modified-Since
61 +
62 +
63 portage-2.3.6
64 ==================================
65 * Bug Fixes:
66
67 diff --git a/setup.py b/setup.py
68 index e9b01d92b..a73dc2e63 100755
69 --- a/setup.py
70 +++ b/setup.py
71 @@ -659,7 +659,7 @@ class build_ext(_build_ext):
72
73 setup(
74 name = 'portage',
75 - version = '2.3.6',
76 + version = '2.3.7',
77 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
78 author = 'Gentoo Portage Development Team',
79 author_email = 'dev-portage@g.o',