Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/qa-scripts:master commit in: /
Date: Sun, 04 Jun 2017 17:13:19
Message-Id: 1496596384.30f6e1692d5182a8084e1a20054c5f61471574de.ulm@gentoo
1 commit: 30f6e1692d5182a8084e1a20054c5f61471574de
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 17:13:04 2017 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 17:13:04 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=30f6e169
7
8 find-binary-files.sh: Suppress false positives.
9
10 find-binary-files.sh | 3 ++-
11 1 file changed, 2 insertions(+), 1 deletion(-)
12
13 diff --git a/find-binary-files.sh b/find-binary-files.sh
14 index 367cc75..a3b1415 100755
15 --- a/find-binary-files.sh
16 +++ b/find-binary-files.sh
17 @@ -1,5 +1,5 @@
18 #!/bin/bash
19 -# Copyright 2014-2015 Gentoo Foundation
20 +# Copyright 2014-2017 Gentoo Foundation
21 # Distributed under the terms of the GNU GPL version 2 or later
22 # Author: Ulrich Müller <ulm@g.o>
23
24 @@ -34,6 +34,7 @@ find . \( -path ./distfiles -o -path ./local -o -path ./metadata \
25 application/*"; charset=utf-8") ;;
26 "image/svg+xml; charset=us-ascii") ;; # SVG image
27 "image/x-xpmi; charset=us-ascii") ;; # XPM image
28 + "message/rfc822; charset=us-ascii") ;;
29 *)
30 size=$(stat -c "%s" "${path}")
31 echo "${path#./}: ${type} (size=${size})"