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 D1186138A1A for ; Mon, 9 Feb 2015 20:33:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A7608E0976; Mon, 9 Feb 2015 20:32:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4250AE0976 for ; Mon, 9 Feb 2015 20:32:59 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 13D5E340562 for ; Mon, 9 Feb 2015 20:32:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D68CD1FE for ; Mon, 9 Feb 2015 20:32:56 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1423513930.d43cc91db8ae54f48a91576c175a2a49f7b8b11c.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/repoman X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d43cc91db8ae54f48a91576c175a2a49f7b8b11c X-VCS-Branch: master Date: Mon, 9 Feb 2015 20:32:56 +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: 77381f36-f97a-4572-97b8-35722dde8ace X-Archives-Hash: f1f965aaa5b2c4f75bc9ff1c59182c00 commit: d43cc91db8ae54f48a91576c175a2a49f7b8b11c Author: Michał Górny gentoo org> AuthorDate: Sat Feb 7 19:22:16 2015 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Feb 9 20:32:10 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d43cc91d repoman: make SRC_URI.mirror test result non-fatal Make the SRC_URI.mirror test result non-fatal. There is no technical reason to treat it as a critical error since the SRC_URI is still correct -- just suboptimal. Those errors can appear throughout the repository once a new mirror is added, resulting in unnecessary failures. Worse than that, they prevent committing ebuilds with mirror:// URIs removed when aiming to remove a mirror specification. X-Gentoo-Bug: 513168 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=513168 Acked-by: Alexander Berntsen gentoo.org> --- bin/repoman | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/repoman b/bin/repoman index 0bf576f..16ea055 100755 --- a/bin/repoman +++ b/bin/repoman @@ -419,6 +419,7 @@ qawarnings = set(( "LIVEVCS.stable", "LIVEVCS.unmasked", "IUSE.rubydeprecated", +"SRC_URI.mirror", )) non_ascii_re = re.compile(r'[^\x00-\x7f]')