From: Zac Medico Date: Tue, 2 Mar 2010 18:26:26 +0000 (-0000) Subject: Deprecate the first parameter of the portdbapi constructor since it is always X-Git-Tag: v2.1.8~202 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f1483b468e9f6d9fe020aa3e899230e5e5c7b6ca;p=portage.git Deprecate the first parameter of the portdbapi constructor since it is always the same as mysettings['PORTDIR']. (trunk r15281) svn path=/main/branches/2.1.7/; revision=15520 --- diff --git a/bin/egencache b/bin/egencache index 64429296d..78d2f1f5b 100755 --- a/bin/egencache +++ b/bin/egencache @@ -326,7 +326,7 @@ def egencache_main(args): settings.lock() - portdb = portage.portdbapi(settings["PORTDIR"], mysettings=settings) + portdb = portage.portdbapi(mysettings=settings) if options.repo is not None: repo_path = portdb.getRepositoryPath(options.repo) if repo_path is None: diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index 7536f7972..1b5567a8e 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -141,7 +141,13 @@ class portdbapi(dbapi): def _categories(self): return self.settings.categories - def __init__(self, porttree_root, mysettings=None): + def __init__(self, _unused_param=None, mysettings=None): + """ + @param _unused_param: deprecated + @type _unused_param: None + @param mysettings: an immutable config instance + @type mysettings: portage.config + """ portdbapi.portdbapi_instances.append(self) from portage import config @@ -151,6 +157,15 @@ class portdbapi(dbapi): from portage import settings self.mysettings = config(clone=settings) + if _unused_param is not None: + warnings.warn("The first parameter of the " + \ + "portage.dbapi.porttree.portdbapi" + \ + " constructor is now unused. Use " + \ + "mysettings['PORTDIR'] instead.", + DeprecationWarning) + + porttree_root = self.mysettings['PORTDIR'] + # This is strictly for use in aux_get() doebuild calls when metadata # is generated by the depend phase. It's safest to use a clone for # this purpose because doebuild makes many changes to the config @@ -1182,8 +1197,7 @@ class portagetree(object): self.settings = settings self.portroot = settings["PORTDIR"] self.virtual = virtual - self.dbapi = portdbapi( - settings["PORTDIR"], mysettings=settings) + self.dbapi = portdbapi(mysettings=settings) def dep_bestmatch(self,mydep): "compatibility method"