From: Zac Medico Date: Fri, 12 Dec 2008 21:36:58 +0000 (-0000) Subject: Verify binary packages even when not in "strict" mode (normal distfiles are X-Git-Tag: v2.1.6.1~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=006fecc6b88ea5aa5eb3736b795d9eedd34ef99e;p=portage.git Verify binary packages even when not in "strict" mode (normal distfiles are also verified in this case). (trunk r12195) svn path=/main/branches/2.1.6/; revision=12228 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 394a34e12..43384ea85 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -3113,8 +3113,7 @@ class Binpkg(CompositeTask): settings.setcpv(pkg) self._tree = "bintree" self._bintree = self.pkg.root_config.trees[self._tree] - self._verify = "strict" in self.settings.features and \ - not self.opts.pretend + self._verify = not self.opts.pretend dir_path = os.path.join(settings["PORTAGE_TMPDIR"], "portage", pkg.category, pkg.pf)