From: Zac Medico Date: Thu, 27 Oct 2011 17:22:33 +0000 (-0700) Subject: LocationsManager: portage-1-compat warnings.warn X-Git-Tag: v2.2.0_alpha72~57 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=30e5cfa6c706c02e9920deda543b7faf29733e0b;p=portage.git LocationsManager: portage-1-compat warnings.warn --- diff --git a/pym/portage/package/ebuild/_config/LocationsManager.py b/pym/portage/package/ebuild/_config/LocationsManager.py index 92c838cc1..a4098ba7b 100644 --- a/pym/portage/package/ebuild/_config/LocationsManager.py +++ b/pym/portage/package/ebuild/_config/LocationsManager.py @@ -6,6 +6,8 @@ __all__ = ( ) import io +import warnings + from portage import os, eapi_is_supported, _encodings, _unicode_encode from portage.const import CUSTOM_PROFILE_PATH, GLOBAL_CONFIG_PATH, \ PROFILE_PATH, USER_CONFIG_PATH @@ -120,7 +122,7 @@ class LocationsManager(object): offenders = sorted(x for x in offenders if os.path.isdir(os.path.join(currentPath, x))) if offenders: - writemsg((_("Profile '%(profile_path)s' in repository " + warnings.warn((_("Profile '%(profile_path)s' in repository " "'%(repo_name)s' is implicitly using 'portage-1' profile format, but " "the repository profiles are not marked as that format. This will break " "in the future. Please either convert the following paths " @@ -128,7 +130,7 @@ class LocationsManager(object): "repositories layout.conf. Files: '%(files)s'\n") % dict(profile_path=currentPath, repo_name=repo_loc, files=', '.join(offenders))), - noiselevel=-1) + ) parentsFile = os.path.join(currentPath, "parent") eapi_file = os.path.join(currentPath, "eapi")