Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 137105 | Differences between
and this patch

Collapse All | Expand All

(-)bin/emerge (+2 lines)
Lines 1951-1956 Link Here
1951
					for x in mymergelist:
1956
					for x in mymergelist:
1952
						if x[0] != "ebuild":
1957
						if x[0] != "ebuild":
1953
							continue
1958
							continue
1959
						self.pkgsettings.reset()
1960
						self.pkgsettings.setcpv(x[2])
1954
						try:
1961
						try:
1955
							ret = portage.doebuild(portage.portdb.findname(x[2]), "fetch", x[1], self.pkgsettings,
1962
							ret = portage.doebuild(portage.portdb.findname(x[2]), "fetch", x[1], self.pkgsettings,
1956
								cleanup=0, fetchonly=True, tree="porttree")
1963
								cleanup=0, fetchonly=True, tree="porttree")
(-)pym/portage.py (+2 lines)
Lines 1513-1518 Link Here
1513
		self.puse = newpuse
1513
		self.puse = newpuse
1514
		self.configdict["pkg"]["PKGUSE"] = self.puse[:] # For saving to PUSE file
1514
		self.configdict["pkg"]["PKGUSE"] = self.puse[:] # For saving to PUSE file
1515
		self.configdict["pkg"]["USE"]    = self.puse[:] # this gets appended to USE
1515
		self.configdict["pkg"]["USE"]    = self.puse[:] # this gets appended to USE
1516
		# CATEGORY is essential for doebuild calls
1517
		self.configdict["pkg"]["CATEGORY"] = mycpv.split("/")[0]
1516
		self.reset(keeping_pkg=1,use_cache=use_cache)
1518
		self.reset(keeping_pkg=1,use_cache=use_cache)
1517
1519
1518
	def setinst(self,mycpv,mydbapi):
1520
	def setinst(self,mycpv,mydbapi):

Return to bug 137105