From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RwiuL-0005dC-JX for garchives@archives.gentoo.org; Sun, 12 Feb 2012 23:32:37 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59CE5E08D3; Sun, 12 Feb 2012 23:32:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 2381DE08D3 for ; Sun, 12 Feb 2012 23:32:29 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 857481B4014 for ; Sun, 12 Feb 2012 23:32:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 43626E5400 for ; Sun, 12 Feb 2012 23:32:27 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <9997bb9c81e0742060dc795e4e0397db4cbfb5c2.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: pym/repoman/ X-VCS-Repository: proj/portage X-VCS-Files: pym/repoman/checks.py X-VCS-Directories: pym/repoman/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 9997bb9c81e0742060dc795e4e0397db4cbfb5c2 Date: Sun, 12 Feb 2012 23:32:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: b1918edc-fec1-4739-b1c8-601dc9c0bc78 X-Archives-Hash: 88f26e1028f9d815b5ccc2fcd3d6bff1 commit: 9997bb9c81e0742060dc795e4e0397db4cbfb5c2 Author: Zac Medico gentoo org> AuthorDate: Sun Feb 12 23:32:12 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Sun Feb 12 23:32:12 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D9997bb9c repoman: check for env-update, bug #402339 --- pym/repoman/checks.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/pym/repoman/checks.py b/pym/repoman/checks.py index cdcc8bc..80f994c 100644 --- a/pym/repoman/checks.py +++ b/pym/repoman/checks.py @@ -647,7 +647,7 @@ class Eapi4GoneVars(LineCheck): =20 class PortageInternal(LineCheck): repoman_check_name =3D 'portage.internal' - re =3D re.compile(r'[^#]*\b(ecompress|ecompressdir|prepall|prepalldocs|= preplib)\b') + re =3D re.compile(r'[^#]*\b(ecompress|ecompressdir|env-update|prepall|p= repalldocs|preplib)\b') =20 def check(self, num, line): """Run the check on line and return error if there is one"""