From: Zac Medico Date: Sun, 23 Apr 2006 23:19:48 +0000 (-0000) Subject: Move deprecated profile check out of global scope. X-Git-Tag: v2.1_pre10~70 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1600d772a443b8550279889ea16c25f50749e702;p=portage.git Move deprecated profile check out of global scope. svn path=/main/trunk/; revision=3204 --- diff --git a/bin/emerge b/bin/emerge index 13b99bdcd..3c1f0b156 100755 --- a/bin/emerge +++ b/bin/emerge @@ -153,6 +153,8 @@ def sorted_versions(verlist): ret.insert(x, ver) return ret +portage.deprecated_profile_check() + if portage.settings.has_key("PORTAGE_NICENESS"): try: os.nice(int(portage.settings["PORTAGE_NICENESS"])) diff --git a/pym/portage.py b/pym/portage.py index acd34f1f4..0b5a1c29e 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -6445,19 +6445,23 @@ os.umask(022) profiledir=None if os.path.isdir(PROFILE_PATH): profiledir = PROFILE_PATH - if "PORTAGE_CALLER" in os.environ and os.environ["PORTAGE_CALLER"] == "emerge" and os.access(DEPRECATED_PROFILE_FILE, os.R_OK): - deprecatedfile = open(DEPRECATED_PROFILE_FILE, "r") - dcontent = deprecatedfile.readlines() - deprecatedfile.close() - newprofile = dcontent[0] - writemsg(red("\n!!! Your current profile is deprecated and not supported anymore.\n")) - writemsg(red("!!! Please upgrade to the following profile if possible:\n")) - writemsg(8*" "+green(newprofile)+"\n") - if len(dcontent) > 1: - writemsg("To upgrade do the following steps:\n") - for myline in dcontent[1:]: - writemsg(myline) - writemsg("\n\n") + +def deprecated_profile_check(): + if not os.access(DEPRECATED_PROFILE_FILE, os.R_OK): + return False + deprecatedfile = open(DEPRECATED_PROFILE_FILE, "r") + dcontent = deprecatedfile.readlines() + deprecatedfile.close() + newprofile = dcontent[0] + writemsg(red("\n!!! Your current profile is deprecated and not supported anymore.\n")) + writemsg(red("!!! Please upgrade to the following profile if possible:\n")) + writemsg(8*" "+green(newprofile)+"\n") + if len(dcontent) > 1: + writemsg("To upgrade do the following steps:\n") + for myline in dcontent[1:]: + writemsg(myline) + writemsg("\n\n") + return True if os.path.exists(USER_VIRTUALS_FILE): writemsg(red("\n!!! /etc/portage/virtuals is deprecated in favor of\n"))