From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9B9BD1381F3 for ; Fri, 22 Apr 2016 08:21:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F1FBAE0857; Fri, 22 Apr 2016 08:21:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9272DE0857 for ; Fri, 22 Apr 2016 08:21:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38AB8340C42 for ; Fri, 22 Apr 2016 08:21:55 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E528E7B for ; Fri, 22 Apr 2016 08:21:52 +0000 (UTC) From: "Alexander Berntsen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexander Berntsen" Message-ID: <1461313105.94e9bbb342ec6f2eec746f7500e9b0ae86722df7.bernalex@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/portageq X-VCS-Directories: bin/ X-VCS-Committer: bernalex X-VCS-Committer-Name: Alexander Berntsen X-VCS-Revision: 94e9bbb342ec6f2eec746f7500e9b0ae86722df7 X-VCS-Branch: master Date: Fri, 22 Apr 2016 08:21:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c97f7a14-f31e-4db2-8f0d-b7f06be5bed2 X-Archives-Hash: bb795907d96f69a16815521c2bf9b8f7 commit: 94e9bbb342ec6f2eec746f7500e9b0ae86722df7 Author: Göktürk Yüksek binghamton edu> AuthorDate: Tue Apr 19 07:53:50 2016 +0000 Commit: Alexander Berntsen gentoo org> CommitDate: Fri Apr 22 08:18:25 2016 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=94e9bbb3 portageq: Case-insensitive match maintainer emails Reported-by: NP-Hardass gentoo.org> Signed-off-by: Göktürk Yüksek binghamton.edu> Signed-off-by: Alexander Berntsen gentoo.org> Reviewed-by: Alexander Berntsen gentoo.org> bin/portageq | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/portageq b/bin/portageq index 07d3c49..832d004 100755 --- a/bin/portageq +++ b/bin/portageq @@ -1,5 +1,5 @@ #!/usr/bin/python -bO -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 from __future__ import print_function, unicode_literals @@ -1009,7 +1009,7 @@ list_preserved_libs.__doc__ = docstrings['list_preserved_libs'] class MaintainerEmailMatcher(object): def __init__(self, maintainer_emails): - self._re = re.compile("^(%s)$" % "|".join(maintainer_emails)) + self._re = re.compile("^(%s)$" % "|".join(maintainer_emails), re.I) def __call__(self, metadata_xml): match = False