From: fuzzyray Date: Wed, 26 Nov 2008 19:42:41 +0000 (-0000) Subject: Add comment on how to add support for USE_EXPANDED variables X-Git-Tag: gentoolkit-0.2.4.3^2~33 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=38571037f6320bfefc2007ec68c5ac070d70f00f;p=gentoolkit.git Add comment on how to add support for USE_EXPANDED variables svn path=/; revision=523 --- diff --git a/trunk/src/equery/equery b/trunk/src/equery/equery index d5b5945..b1bc730 100755 --- a/trunk/src/equery/equery +++ b/trunk/src/equery/equery @@ -529,6 +529,12 @@ class CmdDisplayUSEs(Command): except IOError: print_warn(5, "Could not load USE flag descriptions from " + ppath(gentoolkit.settings["PORTDIR"] + "/profiles/use.desc")) + # TODO: Add USE_EXPANDED variables to usedesc hash -- Bug #238005 + # Pseudo-code: + # for all files in gentoolkit.settings["PORTDIR"]+"/desc/*.desc + # variable name = _ + # description = + # Load local USE flag descriptions try: fd = open(gentoolkit.settings["PORTDIR"]+"/profiles/use.local.desc")