From: Alec Warner Date: Mon, 1 Oct 2007 10:26:09 +0000 (-0000) Subject: keep old repoman names so we don't confuse people X-Git-Tag: v2.2_pre1~746 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=03f423b324210ff5044905920c7ab73661468d5d;p=portage.git keep old repoman names so we don't confuse people svn path=/main/trunk/; revision=7896 --- diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index 89f041d8e..ac79b990e 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -149,7 +149,7 @@ class EbuildQuoteCheck(ContentCheck): class EbuildAssignmentCheck(ContentCheck): """Ensure ebuilds don't assign to readonly variables.""" - repoman_check_name = 'ebuild.majorsyn' + repoman_check_name = 'variable.readonly' readonly_assignment = re.compile(r'^\s*(export\s+)?(A|CATEGORY|P|PV|PN|PR|PVR|PF|D|WORKDIR|FILESDIR|FEATURES|USE)=') line_continuation = re.compile(r'([^#]*\S)(\s+|\t)\\$')