Gentoo Archives: gentoo-commits

From: Thomas Sachau <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:multilib commit in: pym/_emerge/
Date: Sun, 06 Feb 2011 13:16:02
Message-Id: 3b4262ff0e1903f1c8dc8a9e3c34bb442deea04b.tommy@gentoo
1 commit: 3b4262ff0e1903f1c8dc8a9e3c34bb442deea04b
2 Author: Zac Medico <zmedico <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 3 08:14:49 2011 +0000
4 Commit: Thomas Sachau <tommy <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 3 08:14:49 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=3b4262ff
7
8 action_uninstall: allow repo with wildcard atom
9
10 ---
11 pym/_emerge/actions.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
15 index 2c6ce87..278002b 100644
16 --- a/pym/_emerge/actions.py
17 +++ b/pym/_emerge/actions.py
18 @@ -2528,7 +2528,7 @@ def action_uninstall(settings, trees, ldpath_mtimes,
19 atom += "::" + ext_atom.repo
20
21 if vardb.match(atom):
22 - valid_atoms.append(Atom(atom))
23 + valid_atoms.append(Atom(atom, allow_repo=True))
24
25 else:
26 msg = []