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 A0BA41382C5 for ; Mon, 24 May 2021 09:13:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E720BE07A5; Mon, 24 May 2021 09:13:13 +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 D1654E07A5 for ; Mon, 24 May 2021 09:13:13 +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 E01BC335C32 for ; Mon, 24 May 2021 09:13:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4693F720 for ; Mon, 24 May 2021 09:13:11 +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: <1621841774.a429f74ca669d42cdb5d6e15e4aceb5c8b426940.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: a429f74ca669d42cdb5d6e15e4aceb5c8b426940 X-VCS-Branch: master Date: Mon, 24 May 2021 09:13:11 +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: fe6ac594-3ae6-4d90-b8dd-ff649dc0ea68 X-Archives-Hash: 9d5ed973badfc225e385b6116bcbb15c commit: a429f74ca669d42cdb5d6e15e4aceb5c8b426940 Author: Zac Medico gentoo org> AuthorDate: Mon May 24 07:33:37 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon May 24 07:36:14 2021 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a429f74c Updates for portage-3.0.19 release Signed-off-by: Zac Medico gentoo.org> NEWS | 4 ++++ RELEASE-NOTES | 13 +++++++++++++ setup.py | 2 +- 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 2812f8a18..89e7c871d 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,9 @@ News (mainly features/major bug fixes) +portage-3.0.19 +-------------- +* Enable EAPI 8. + portage-3.0.18 -------------- * profile-repo-deps is supported in layout.conf profile-formats. diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 8c74f266c..1325dbc0f 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -1,6 +1,19 @@ Release Notes; upgrade information mainly. Features/major bugfixes are listed in NEWS +portage-3.0.19 +================================== + - Bug 520378: allow emerge --fetchonly to log to emerge-fetch.log + - Bug 698244: portage(5) document user patch / eapply_user + - Bug 781854: Suggest PORTAGE_LOG_FILTER_FILE_CMD cat fallback + - Bug 782724: sort emerge --unmerge order for determinism + - Bug 783957: lazily evaluate cnf_* variables in tests + - Bug 784566: make emerge insensitive to relative order of optional + and positional arguments + - Bug 787545: emerge CTRL C may be ignored when running pkg_pretend + - Bug 787563: ebuild-ipc could handle KeyboardInterrupt + - Bug 788967: emerge --jobs= triggers TypeError + portage-3.0.18 ================================== * Bug Fixes: diff --git a/setup.py b/setup.py index 06e67f369..f9609d058 100755 --- a/setup.py +++ b/setup.py @@ -719,7 +719,7 @@ class build_ext(_build_ext): setup( name = 'portage', - version = '3.0.18', + version = '3.0.19', url = 'https://wiki.gentoo.org/wiki/Project:Portage', project_urls = { 'Release Notes': 'https://gitweb.gentoo.org/proj/portage.git/plain/RELEASE-NOTES',