From: Zac Medico Date: Fri, 1 Feb 2008 00:04:52 +0000 (-0000) Subject: Make the manifest1_compat constructor parameter default to False X-Git-Tag: v2.2_pre1~27 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=17bc947f679750680641853610f27ca90a68bf5c;p=portage.git Make the manifest1_compat constructor parameter default to False to prevent potential interference from stale old digest files in overlays. svn path=/main/trunk/; revision=9258 --- diff --git a/pym/portage/manifest.py b/pym/portage/manifest.py index 7f7be0fdd..68e50cc97 100644 --- a/pym/portage/manifest.py +++ b/pym/portage/manifest.py @@ -99,7 +99,7 @@ class Manifest2Entry(ManifestEntry): class Manifest(object): parsers = (parseManifest2, parseManifest1) def __init__(self, pkgdir, distdir, fetchlist_dict=None, - manifest1_compat=True, from_scratch=False): + manifest1_compat=False, from_scratch=False): """ create new Manifest instance for package in pkgdir and add compability entries for old portage versions if manifest1_compat == True. Do not parse Manifest file if from_scratch == True (only for internal use)