From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1018120-garchives=archives.gentoo.org@lists.gentoo.org> 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 D48BE1382C5 for <garchives@archives.gentoo.org>; Tue, 17 Apr 2018 03:13:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E152E0904; Tue, 17 Apr 2018 03:13:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EF35CE0904 for <gentoo-commits@lists.gentoo.org>; Tue, 17 Apr 2018 03:13:49 +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 A2119335C2C for <gentoo-commits@lists.gentoo.org>; Tue, 17 Apr 2018 03:13:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 368D6257 for <gentoo-commits@lists.gentoo.org>; Tue, 17 Apr 2018 03:13:47 +0000 (UTC) From: "Zac Medico" <zmedico@gentoo.org> 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" <zmedico@gentoo.org> Message-ID: <1523933703.97c4179e03e709a4281c36c6ac8c3ea9f8dfb529.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: 97c4179e03e709a4281c36c6ac8c3ea9f8dfb529 X-VCS-Branch: master Date: Tue, 17 Apr 2018 03:13:47 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6ba74b68-32c7-4b55-aada-0560acbd3685 X-Archives-Hash: 7dc563d7a4056054c7e7f05779fcac04 commit: 97c4179e03e709a4281c36c6ac8c3ea9f8dfb529 Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Tue Apr 17 02:55:03 2018 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Tue Apr 17 02:55:03 2018 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=97c4179e Updates for portage-2.3.29 release NEWS | 5 +++++ RELEASE-NOTES | 12 ++++++++++++ setup.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index ab8328229..f71cc33f7 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ News (mainly features/major bug fixes) +portage-2.3.29 +---------------- +* Portage API consumers can use asyncio with portage's internal event + loop, see portage.util.futures.unix_events.DefaultEventLoopPolicy. + portage-2.3.25 ---------------- * Experimental support for EAPI 7_pre1. diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 9835baa00..9cb516fb8 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,18 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-2.3.29 +================================== +* Bug Fixes: + - Bug 649588 asyncio.AbstractEventLoop implementation based on + internal event loop + - Bug 652938 binary packages built against older subslot trigger + downgrade of installed package + - Bug 653230 app-portage/porthole PORTDIR KeyError + - Bug 650696 default to sync-rsync-verify-jobs = 1 + - Bug 653352 Stripping of files broken with >=sys-apps/file-5.33 + + portage-2.3.28 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index 2cdb3becd..16864168d 100755 --- a/setup.py +++ b/setup.py @@ -663,7 +663,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '2.3.28', + version = '2.3.29', url = 'https://wiki.gentoo.org/wiki/Project:Portage', author = 'Gentoo Portage Development Team', author_email = 'dev-portage@gentoo.org',