From: Zac Medico Date: Thu, 19 Feb 2009 07:10:34 +0000 (-0000) Subject: Inside post_emerge(), skip the vardbapi counter check when in --pretend X-Git-Tag: v2.2_rc24~170 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f46325f42d35d85c4412ec345563230bfdfe7717;p=portage.git Inside post_emerge(), skip the vardbapi counter check when in --pretend mode (significant performance improvement). Thanks to Marat Radchenko (slonopotamus) for reporting. svn path=/main/trunk/; revision=12636 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 0200ce30c..8c8541313 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -12220,8 +12220,8 @@ def post_emerge(root_config, myopts, mtimedb, retval): _flush_elog_mod_echo() counter_hash = settings.get("PORTAGE_COUNTER_HASH") - if counter_hash is not None and \ - counter_hash == vardbapi._counter_hash(): + if "--pretend" in myopts or (counter_hash is not None and \ + counter_hash == vardbapi._counter_hash()): display_news_notification(root_config, myopts) # If vdb state has not changed then there's nothing else to do. sys.exit(retval)