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, 09 Feb 2020 01:31:59
Message-Id: 1581209890.60d040a016249ad297f63d0043a16ce8f4449d74.zmedico@gentoo
1 commit: 60d040a016249ad297f63d0043a16ce8f4449d74
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 9 00:32:49 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 00:58:10 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=60d040a0
7
8 Updates for portage-2.3.88 release
9
10 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
11
12 MANIFEST.in | 5 +++++
13 RELEASE-NOTES | 13 +++++++++++++
14 setup.py | 2 +-
15 3 files changed, 19 insertions(+), 1 deletion(-)
16
17 diff --git a/MANIFEST.in b/MANIFEST.in
18 index 4f6cac162..c862b044f 100644
19 --- a/MANIFEST.in
20 +++ b/MANIFEST.in
21 @@ -7,6 +7,11 @@ include TEST-NOTES
22 include doc/custom.xsl
23 recursive-include doc *.docbook
24
25 +# sphinx sources
26 +include doc/api/index.rst
27 +include doc/api/conf.py
28 +include doc/api/Makefile
29 +
30 # extra conf files used in ebuild
31 include cnf/make.conf.example.*
32
33
34 diff --git a/RELEASE-NOTES b/RELEASE-NOTES
35 index bd035366e..72b2a40db 100644
36 --- a/RELEASE-NOTES
37 +++ b/RELEASE-NOTES
38 @@ -1,6 +1,19 @@
39 Release Notes; upgrade information mainly.
40 Features/major bugfixes are listed in NEWS
41
42 +portage-2.3.88
43 +==================================
44 +* Bug Fixes:
45 + - Bug 649622 prevent unecessary installation of virtual/w3m followed
46 + by removal by depclean
47 + - Bug 705736 preserve-libs: prevent unecessary preservation of system
48 + libraries which a package bundles
49 + - Bug 707820 generate API documentation with sphinx-apidoc
50 + - Bug 708448 support FEATURES=qa-unresolved-soname-deps so that the
51 + QA warning from bug 704320 can be disabled
52 + - Bug 708660 phase-helpers.sh: avoid passing an empty root value to
53 + portageq when ebuild IPC is disabled
54 +
55 portage-2.3.87
56 ==================================
57 * Bug Fixes:
58
59 diff --git a/setup.py b/setup.py
60 index d337ba49d..30bacf66d 100755
61 --- a/setup.py
62 +++ b/setup.py
63 @@ -657,7 +657,7 @@ class build_ext(_build_ext):
64
65 setup(
66 name = 'portage',
67 - version = '2.3.87',
68 + version = '2.3.88',
69 url = 'https://wiki.gentoo.org/wiki/Project:Portage',
70 author = 'Gentoo Portage Development Team',
71 author_email = 'dev-portage@g.o',