public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r10980 - main/trunk/pym/_emerge
@ 2008-07-08  1:01 Zac Medico (zmedico)
  0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2008-07-08  1:01 UTC (permalink / raw
  To: gentoo-commits

Author: zmedico
Date: 2008-07-08 01:01:54 +0000 (Tue, 08 Jul 2008)
New Revision: 10980

Modified:
   main/trunk/pym/_emerge/__init__.py
Log:
Also add "background" attributes to the EbuildBuild and Binpkg classes.


Modified: main/trunk/pym/_emerge/__init__.py
===================================================================
--- main/trunk/pym/_emerge/__init__.py	2008-07-08 00:53:33 UTC (rev 10979)
+++ main/trunk/pym/_emerge/__init__.py	2008-07-08 01:01:54 UTC (rev 10980)
@@ -1938,7 +1938,7 @@
 
 class EbuildBuild(CompositeTask):
 
-	__slots__ = ("args_set", "find_blockers",
+	__slots__ = ("args_set", "background", "find_blockers",
 		"ldpath_mtimes", "logger", "opts", "pkg", "pkg_count",
 		"settings", "world_atom") + \
 		("_build_dir", "_buildpkg", "_ebuild_path", "_tree")
@@ -2432,7 +2432,7 @@
 
 class Binpkg(CompositeTask):
 
-	__slots__ = ("find_blockers",
+	__slots__ = ("background", "find_blockers",
 		"ldpath_mtimes", "logger", "opts",
 		"pkg", "pkg_count", "prefetcher", "settings", "world_atom") + \
 		("_bintree", "_build_dir", "_ebuild_path", "_fetched_pkg",
@@ -2873,6 +2873,7 @@
 		if pkg.type_name == "ebuild":
 
 			build = EbuildBuild(args_set=args_set,
+				background=self.background,
 				find_blockers=find_blockers,
 				ldpath_mtimes=ldpath_mtimes, logger=logger,
 				opts=build_opts, pkg=pkg, pkg_count=pkg_count,
@@ -2885,7 +2886,8 @@
 
 		elif pkg.type_name == "binary":
 
-			binpkg = Binpkg(find_blockers=find_blockers,
+			binpkg = Binpkg(background=self.background,
+				find_blockers=find_blockers,
 				ldpath_mtimes=ldpath_mtimes, logger=logger,
 				opts=self.binpkg_opts, pkg=pkg, pkg_count=pkg_count,
 				prefetcher=self.prefetcher, settings=settings,

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



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

only message in thread, other threads:[~2008-07-08  1:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-08  1:01 [gentoo-commits] portage r10980 - main/trunk/pym/_emerge Zac Medico (zmedico)

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