From: Zac Medico Date: Sat, 16 Sep 2006 01:08:56 +0000 (-0000) Subject: Add CATEGORY to the list of readonly variables. X-Git-Tag: v2.1.1-r1~71 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=040b0af1ce68b14a278dee8ed068d1597c8af608;p=portage.git Add CATEGORY to the list of readonly variables. svn path=/main/trunk/; revision=4462 --- diff --git a/bin/repoman b/bin/repoman index 0c45724bd..55f147633 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1261,7 +1261,7 @@ for x in scanlist: ignore_line = re.compile(r'(^$)|(^(\t)*#)') leading_spaces = re.compile(r'^[\S\t]') trailing_whitespace = re.compile(r'.*([\S]$)') - readonly_assignment = re.compile(r'^\s*(export\s+)?(A|P|PV|PN|PR|PVR|PF|D|WORKDIR|FILESDIR|FEATURES|USE)=') + readonly_assignment = re.compile(r'^\s*(export\s+)?(A|CATEGORY|P|PV|PN|PR|PVR|PF|D|WORKDIR|FILESDIR|FEATURES|USE)=') continuation_symbol = re.compile(r'(.*[ ]+[\\][ ].*)') line_continuation_quoted = re.compile(r'(\"|\')(([\w ,:;#\[\]\.`=/|\$\^\*{}()\'-])|(\\.))*\1') line_continuation = re.compile(r'([^#]*\S)(\s+|\t)\\$')