From a6a9b6dd6342a6009097944b38163ccc66908f0e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 15 Nov 2012 08:07:59 -0800 Subject: fixdbentries: add deprecation warning It's unused since commit c974a023882485b8eeae35bac35c1f00d1a0725b. --- pym/portage/update.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pym/portage/update.py b/pym/portage/update.py index 61cb8b64d..3f7603076 100644 --- a/pym/portage/update.py +++ b/pym/portage/update.py @@ -6,6 +6,7 @@ import io import re import stat import sys +import warnings from portage import os from portage import _encodings @@ -142,6 +143,10 @@ def fixdbentries(update_iter, dbdir, eapi=None, parent=None): """Performs update commands which result in search and replace operations for each of the files in dbdir (excluding CONTENTS and environment.bz2). Returns True when actual modifications are necessary and False otherwise.""" + + warnings.warn("portage.update.fixdbentries() is deprecated", + DeprecationWarning, stacklevel=2) + mydata = {} for myfile in [f for f in os.listdir(dbdir) if f not in ignored_dbentries]: file_path = os.path.join(dbdir, myfile) -- cgit v1.2.3-1-g7c22