From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JblRL-0002ig-IZ for garchives@archives.gentoo.org; Tue, 18 Mar 2008 23:41:55 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 222C3E0548; Tue, 18 Mar 2008 23:41:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id EA316E0548 for ; Tue, 18 Mar 2008 23:41:54 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 2EB7B666F2 for ; Tue, 18 Mar 2008 23:41:54 +0000 (UTC) Received: from genone by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JblRJ-0000cf-1Y for gentoo-commits@lists.gentoo.org; Tue, 18 Mar 2008 23:41:53 +0000 To: gentoo-commits@lists.gentoo.org From: "Marius Mauch (genone)" Subject: [gentoo-commits] portage r9481 - main/trunk/pym/portage/sets X-VCS-Repository: portage X-VCS-Revision: 9481 X-VCS-Files: main/trunk/pym/portage/sets/files.py X-VCS-Directories: main/trunk/pym/portage/sets X-VCS-Committer: genone X-VCS-Committer-Name: Marius Mauch Content-Type: text/plain; charset=UTF-8 Message-Id: Sender: Marius Mauch Date: Tue, 18 Mar 2008 23:41:53 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 92444423-4aff-43b4-b792-bbb7c620d7bd X-Archives-Hash: 107341893c42653eedc40b76b1a9ef63 Author: genone Date: 2008-03-18 23:41:52 +0000 (Tue, 18 Mar 2008) New Revision: 9481 Modified: main/trunk/pym/portage/sets/files.py Log: make filesets non-greedy by default Modified: main/trunk/pym/portage/sets/files.py =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- main/trunk/pym/portage/sets/files.py 2008-03-18 23:38:27 UTC (rev 948= 0) +++ main/trunk/pym/portage/sets/files.py 2008-03-18 23:41:52 UTC (rev 948= 1) @@ -96,7 +96,7 @@ def singleBuilder(self, options, settings, trees): if not "filename" in options: raise SetConfigError("no filename specified") - greedy =3D get_boolean(options, "greedy", True) + greedy =3D get_boolean(options, "greedy", False) filename =3D options["filename"] # look for repository path variables match =3D self._repopath_match.match(filename) @@ -111,7 +111,7 @@ name_pattern =3D options.get("name_pattern", "sets/${name}") if not "$name" in name_pattern and not "${name}" in name_pattern: raise SetConfigError("name_pattern doesn't include ${name} placeholde= r") - greedy =3D get_boolean(options, "greedy", True) + greedy =3D get_boolean(options, "greedy", False) # look for repository path variables match =3D self._repopath_match.match(directory) if match: --=20 gentoo-commits@lists.gentoo.org mailing list