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 CF49E138334 for ; Sat, 3 Aug 2019 17:38:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4727E0884; Sat, 3 Aug 2019 17:38:12 +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 A691CE0884 for ; Sat, 3 Aug 2019 17:38:12 +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 6B7533493D7 for ; Sat, 3 Aug 2019 17:38:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 51CDC703 for ; Sat, 3 Aug 2019 17:38:09 +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: <1564853816.a6daeb01acd1425c198b0420374f8f0c2d3a05c4.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/ebuild X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: a6daeb01acd1425c198b0420374f8f0c2d3a05c4 X-VCS-Branch: master Date: Sat, 3 Aug 2019 17:38:09 +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: 217c6e54-2527-492e-9c06-abb126e392a9 X-Archives-Hash: 197c3e13ed1c0e0fb0a29b9c5157171b commit: a6daeb01acd1425c198b0420374f8f0c2d3a05c4 Author: Felix Neumärker posteo de> AuthorDate: Sat Aug 3 16:33:13 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Sat Aug 3 17:36:56 2019 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=a6daeb01 ebuild: apply_priorities (PORTAGE_NICENESS) Respect PORTAGE_NICENESS variable. Closes: https://github.com/gentoo/portage/pull/441 Signed-off-by: Felix Neumärker posteo.de> Signed-off-by: Zac Medico gentoo.org> bin/ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/ebuild b/bin/ebuild index 8b58988c4..baa842570 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -56,6 +56,7 @@ from portage.exception import PermissionDenied, PortageKeyError, \ from portage.localization import _ import portage.util from portage.util._eventloop.global_event_loop import global_event_loop +from _emerge.actions import apply_priorities from _emerge.Package import Package from _emerge.RootConfig import RootConfig @@ -126,6 +127,8 @@ if not opts.color == 'y' and \ portage.settings.backup_changes('NOCOLOR') portage.settings.lock() +apply_priorities(portage.settings) + ebuild = pargs.pop(0) pf = None