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 4709A139083 for ; Fri, 8 Dec 2017 05:38:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 72D1FE0F7C; Fri, 8 Dec 2017 05:38:42 +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 51A50E0F7C for ; Fri, 8 Dec 2017 05:38:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1CAE133BE2E for ; Fri, 8 Dec 2017 05:38:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86F17AE84 for ; Fri, 8 Dec 2017 05:38:39 +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: <1512710567.92fe38696ca03f37a956e1c6f70af46c284abaeb.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: / X-VCS-Repository: proj/portage X-VCS-Files: NEWS RELEASE-NOTES setup.py X-VCS-Directories: / X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 92fe38696ca03f37a956e1c6f70af46c284abaeb X-VCS-Branch: master Date: Fri, 8 Dec 2017 05:38:39 +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-Archives-Salt: 570eccb9-3e1e-4c0c-b9c3-71de7c66e934 X-Archives-Hash: 534b2697a092167c712bc4f11aea2bdf commit: 92fe38696ca03f37a956e1c6f70af46c284abaeb Author: Zac Medico gentoo org> AuthorDate: Fri Dec 8 05:22:47 2017 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Dec 8 05:22:47 2017 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=92fe3869 Updates for portage-2.3.17 release NEWS | 5 +++++ RELEASE-NOTES | 9 +++++++++ setup.py | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 503a3d4e6..eced7bf58 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ News (mainly features/major bug fixes) +portage-2.3.17 +---------------- +* The doins ebuild helper has been rewritten in python for performance, and + it does in-kernel file copying on Linux. + portage-2.3.14 ---------------- * Repository metadata/layout.conf supports manifest-required-hashes diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 014ea7840..f1cfc671a 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,15 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-2.3.17 +================================== +* Bug Fixes: + - Bug 586214 fix KeyError when profile is missing ARCH variable + - Bug 615620 disable pygcrypt checksum backend + - Bug 624526 rewrite doins in python + - Bug 639346 eval disjunctive build deps earlier + + portage-2.3.16 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index 4d6078fad..a584cd803 100755 --- a/setup.py +++ b/setup.py @@ -663,7 +663,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '2.3.16', + version = '2.3.17', url = 'https://wiki.gentoo.org/wiki/Project:Portage', author = 'Gentoo Portage Development Team', author_email = 'dev-portage@gentoo.org',