Gentoo Archives: gentoo-commits

From: Brian Dolbec <dolsen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: /
Date: Tue, 03 Feb 2015 20:57:07
Message-Id: 1422995537.5944d6fb3e8253508cfd7e9b94f9e50626caa421.dolsen@gentoo
1 commit: 5944d6fb3e8253508cfd7e9b94f9e50626caa421
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 3 20:32:17 2015 +0000
4 Commit: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 3 20:32:17 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=5944d6fb
7
8 Initial updates for the 2.2.16 release
9
10 ---
11 NEWS | 11 +++++++++++
12 RELEASE-NOTES | 41 +++++++++++++++++++++++++++++++++++++++++
13 setup.py | 2 +-
14 3 files changed, 53 insertions(+), 1 deletion(-)
15
16 diff --git a/NEWS b/NEWS
17 index 84a5928..7b4dc94 100644
18 --- a/NEWS
19 +++ b/NEWS
20 @@ -1,5 +1,16 @@
21 News (mainly features/major bug fixes)
22
23 +portage-2.2.16
24 +-------------
25 +* New portage plug-in sync system.
26 + Read the news anouncement for more details of the changes in config
27 + settings and operation.
28 +* New native portage postsync.d capability
29 +* New native portage repo.postsync.d capability
30 +* New native indexed search capability for decent search speed
31 +* Tentative EAPI 6 patches for additional testing
32 +
33 +
34 portage-2.2.14
35 -------------
36 * Remaining bugs in build/install system should be fixed.
37
38 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
39 index 800beee..4347cf7 100644
40 --- a/RELEASE-NOTES
41 +++ b/RELEASE-NOTES
42 @@ -1,6 +1,47 @@
43 Release Notes; upgrade information mainly.
44 Features/major bugfixes are listed in NEWS
45
46 +portage-2.2.16
47 +==================================
48 +* New portage plug-in sync system.
49 +* New auto-sync setting for repos.conf repos
50 +* New sync-depth setting for git sync module
51 +* New --sub-submodule option for emaint sync module
52 +* New native portage postsync.d capability
53 +* New native portage repo.postsync.d capability
54 +* New socks5 module to allow builds to escape the network-sandbox
55 +* Tentative EAPI 6 changes for testing
56 +* New search index creation and fast search code for emerge -s, -S
57 +* Bug Fixes:
58 + - Bug 583512 Deprecate make.conf SYNC variable
59 + - Bug 538314 handle EINTR
60 + - Bug 537298 Fix typo in new_protect_filename()
61 + - Bug 534722 update LOGNAME variable when appropriate
62 + - Bug 536926 emerge: default --backtrack=3
63 + - Bug 536392 More >= atoms for autounmask USE changes
64 + - Bug 492932 TestFakedbapi: override EPREFIX
65 + - Bug 142579 BinpkgExtractorAsync: xz and gzip decompression
66 + - Bug 282927 emerge: add --changed-deps/--binpkg-changed-deps
67 + - Bug 535850 dispatch-conf: avoid symlink "File exists" error
68 + - Bug 533036 man/emerge.1: clarify --buildpkg-exclude wrt *-backup FEATURES
69 + - Bug 463266 man pages: note that make.conf can be a directory
70 + - Bug 533884 emerge --autounmask-write: fix CONFIG_PROTECT for
71 + PORTAGE_CONFIGROOT
72 + - Bug 531656 Solve more slot-operator conflicts
73 + - Bug 531724 AbstractPollTask._read_buf: read regardless of event flags
74 + - Bug 534070 Add --sync-submodule <glsa|news|profiles>
75 + - Bug 532670 Support override of default profile EAPI
76 + - Bug 532784 bintree.py: fix str() calls for Python 2
77 + - Bug 532594 faulty variable assignment inside _compute_abi_rebuild_info
78 + - Bug 525718 search._xmatch: handle aux_get KeyError
79 + - Bug 532224 Support @profile package set
80 + - Bug 504116 man/emerge.1: --quiet-build=n overridden by --jobs
81 + - Bug 412471 Display emerge search results incrementally
82 + - Bug 531690 bin/ebuild: fix --color=n
83 + - Bug 531854 dblink._protect: disable config protect for identical files
84 + - Bug 522032 add a one time only post-sync hook call
85 +
86 +
87 portage-2.2.15
88 ==================================
89 * New option --rage-clean that does --unmerge without delay.
90
91 diff --git a/setup.py b/setup.py
92 index 440cbba..54015c3 100755
93 --- a/setup.py
94 +++ b/setup.py
95 @@ -611,7 +611,7 @@ def get_manpages():
96
97 setup(
98 name = 'portage',
99 - version = '2.2.15',
100 + version = '2.2.16',
101 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
102 author = 'Gentoo Portage Development Team',
103 author_email = 'dev-portage@g.o',