From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B1F75138350 for ; Sun, 9 Feb 2020 01:31:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E129CE0825; Sun, 9 Feb 2020 01:31:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 943B7E0825 for ; Sun, 9 Feb 2020 01:31:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACE3A34E8B8 for ; Sun, 9 Feb 2020 01:31:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6BA8EB0 for ; Sun, 9 Feb 2020 01:31:55 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1581209890.60d040a016249ad297f63d0043a16ce8f4449d74.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: MANIFEST.in RELEASE-NOTES setup.py X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 60d040a016249ad297f63d0043a16ce8f4449d74 X-VCS-Branch: master Date: Sun, 9 Feb 2020 01:31:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b8243788-6013-4e08-ba80-94aef693fa29 X-Archives-Hash: a42dbba88b117418eb210694e9bac02d commit: 60d040a016249ad297f63d0043a16ce8f4449d74 Author: Zac Medico gentoo org> AuthorDate: Sun Feb 9 00:32:49 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Feb 9 00:58:10 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=60d040a0 Updates for portage-2.3.88 release Signed-off-by: Zac Medico gentoo.org> MANIFEST.in | 5 +++++ RELEASE-NOTES | 13 +++++++++++++ setup.py | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4f6cac162..c862b044f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,6 +7,11 @@ include TEST-NOTES include doc/custom.xsl recursive-include doc *.docbook +# sphinx sources +include doc/api/index.rst +include doc/api/conf.py +include doc/api/Makefile + # extra conf files used in ebuild include cnf/make.conf.example.* diff --git a/RELEASE-NOTES b/RELEASE-NOTES index bd035366e..72b2a40db 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,19 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-2.3.88 +================================== +* Bug Fixes: + - Bug 649622 prevent unecessary installation of virtual/w3m followed + by removal by depclean + - Bug 705736 preserve-libs: prevent unecessary preservation of system + libraries which a package bundles + - Bug 707820 generate API documentation with sphinx-apidoc + - Bug 708448 support FEATURES=qa-unresolved-soname-deps so that the + QA warning from bug 704320 can be disabled + - Bug 708660 phase-helpers.sh: avoid passing an empty root value to + portageq when ebuild IPC is disabled + portage-2.3.87 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index d337ba49d..30bacf66d 100755 --- a/setup.py +++ b/setup.py @@ -657,7 +657,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '2.3.87', + version = '2.3.88', url = 'https://wiki.gentoo.org/wiki/Project:Portage', author = 'Gentoo Portage Development Team', author_email = 'dev-portage@gentoo.org',