From: "Zac Medico (zmedico)" <zmedico@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] portage r10456 - main/branches/2.1.2/bin
Date: Tue, 27 May 2008 10:20:39 +0000 [thread overview]
Message-ID: <E1K0wIJ-0000qQ-2A@stork.gentoo.org> (raw)
Author: zmedico
Date: 2008-05-27 10:20:38 +0000 (Tue, 27 May 2008)
New Revision: 10456
Modified:
main/branches/2.1.2/bin/emerge
Log:
Fix breakage due to frozenset being immutable. (trunk r10455)
Modified: main/branches/2.1.2/bin/emerge
===================================================================
--- main/branches/2.1.2/bin/emerge 2008-05-27 10:20:20 UTC (rev 10455)
+++ main/branches/2.1.2/bin/emerge 2008-05-27 10:20:38 UTC (rev 10456)
@@ -2226,8 +2226,8 @@
"""Return a set of flags that trigger reinstallation, or None if there
are no such flags."""
if "--newuse" in self.myopts:
- flags = orig_iuse.symmetric_difference(
- cur_iuse).difference(forced_flags)
+ flags = set(orig_iuse.symmetric_difference(
+ cur_iuse).difference(forced_flags))
flags.update(orig_iuse.intersection(orig_use).symmetric_difference(
cur_iuse.intersection(cur_use)))
if flags:
--
gentoo-commits@lists.gentoo.org mailing list
reply other threads:[~2008-05-27 10:20 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=E1K0wIJ-0000qQ-2A@stork.gentoo.org \
--to=zmedico@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox