From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1167006-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 84F70138350
	for <garchives@archives.gentoo.org>; Sat,  2 May 2020 08:38:16 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id B6FD5E0997;
	Sat,  2 May 2020 08:38:15 +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 9D3F3E0997
	for <gentoo-commits@lists.gentoo.org>; Sat,  2 May 2020 08:38:15 +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 78AA334F0E2
	for <gentoo-commits@lists.gentoo.org>; Sat,  2 May 2020 08:38:14 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EDB61D8
	for <gentoo-commits@lists.gentoo.org>; Sat,  2 May 2020 08:38:12 +0000 (UTC)
From: "Ulrich Müller" <ulm@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, "Ulrich Müller" <ulm@gentoo.org>
Message-ID: <1588408673.6c38e84d36291e1bc9ebf1a924a727cf240f65f3.ulm@gentoo>
Subject: [gentoo-commits] proj/ufed:master commit in: /
X-VCS-Repository: proj/ufed
X-VCS-Files: Portage.pm
X-VCS-Directories: /
X-VCS-Committer: ulm
X-VCS-Committer-Name: Ulrich Müller
X-VCS-Revision: 6c38e84d36291e1bc9ebf1a924a727cf240f65f3
X-VCS-Branch: master
Date: Sat,  2 May 2020 08:38:12 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 3fdf03eb-bd95-4715-85bb-8dffcc61e30d
X-Archives-Hash: 1fd10b170a0573eea842c203c9373858

commit:     6c38e84d36291e1bc9ebf1a924a727cf240f65f3
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat May  2 08:37:53 2020 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat May  2 08:37:53 2020 +0000
URL:        https://gitweb.gentoo.org/proj/ufed.git/commit/?id=6c38e84d

Mark package.use flags as local rather than global.

Thanks to Martin Väth <martin <AT> mvath.de> for the patch.

Bug: https://bugs.gentoo.org/549042
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>

 Portage.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Portage.pm b/Portage.pm
index 0815fb2..3b1791e 100644
--- a/Portage.pm
+++ b/Portage.pm
@@ -938,7 +938,7 @@ sub _read_package_use
 			for my $flag (@flags) {
 				my $state = $flag =~ s/^-// || 0;
 
-				_add_temp($flag, "global");
+				_add_temp($flag, "local");
 				_add_temp($flag, $pkg);
 
 				if ($state) {