public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r9481 - main/trunk/pym/portage/sets
@ 2008-03-18 23:41 Marius Mauch (genone)
  0 siblings, 0 replies; only message in thread
From: Marius Mauch (genone) @ 2008-03-18 23:41 UTC (permalink / raw
  To: gentoo-commits

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
===================================================================
--- main/trunk/pym/portage/sets/files.py	2008-03-18 23:38:27 UTC (rev 9480)
+++ main/trunk/pym/portage/sets/files.py	2008-03-18 23:41:52 UTC (rev 9481)
@@ -96,7 +96,7 @@
 	def singleBuilder(self, options, settings, trees):
 		if not "filename" in options:
 			raise SetConfigError("no filename specified")
-		greedy = get_boolean(options, "greedy", True)
+		greedy = get_boolean(options, "greedy", False)
 		filename = options["filename"]
 		# look for repository path variables
 		match = self._repopath_match.match(filename)
@@ -111,7 +111,7 @@
 		name_pattern = 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} placeholder")
-		greedy = get_boolean(options, "greedy", True)
+		greedy = get_boolean(options, "greedy", False)
 		# look for repository path variables
 		match = self._repopath_match.match(directory)
 		if match:

-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-18 23:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-18 23:41 [gentoo-commits] portage r9481 - main/trunk/pym/portage/sets Marius Mauch (genone)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox