Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: bin/
Date: Mon, 09 Feb 2015 20:33:00
Message-Id: 1423513930.d43cc91db8ae54f48a91576c175a2a49f7b8b11c.zmedico@gentoo
1 commit: d43cc91db8ae54f48a91576c175a2a49f7b8b11c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 7 19:22:16 2015 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 9 20:32:10 2015 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=d43cc91d
7
8 repoman: make SRC_URI.mirror test result non-fatal
9
10 Make the SRC_URI.mirror test result non-fatal. There is no technical
11 reason to treat it as a critical error since the SRC_URI is still
12 correct -- just suboptimal.
13
14 Those errors can appear throughout the repository once a new mirror is
15 added, resulting in unnecessary failures. Worse than that, they prevent
16 committing ebuilds with mirror:// URIs removed when aiming to remove
17 a mirror specification.
18
19 X-Gentoo-Bug: 513168
20 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=513168
21 Acked-by: Alexander Berntsen <bernalex <AT> gentoo.org>
22
23 ---
24 bin/repoman | 1 +
25 1 file changed, 1 insertion(+)
26
27 diff --git a/bin/repoman b/bin/repoman
28 index 0bf576f..16ea055 100755
29 --- a/bin/repoman
30 +++ b/bin/repoman
31 @@ -419,6 +419,7 @@ qawarnings = set((
32 "LIVEVCS.stable",
33 "LIVEVCS.unmasked",
34 "IUSE.rubydeprecated",
35 +"SRC_URI.mirror",
36 ))
37
38 non_ascii_re = re.compile(r'[^\x00-\x7f]')