From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B9BB0139694 for ; Sun, 4 Jun 2017 17:13:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0880721C215; Sun, 4 Jun 2017 17:13:19 +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 D769A21C215 for ; Sun, 4 Jun 2017 17:13:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D12673418F0 for ; Sun, 4 Jun 2017 17:13:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FBD6745F for ; Sun, 4 Jun 2017 17:13:16 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1496596384.30f6e1692d5182a8084e1a20054c5f61471574de.ulm@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: find-binary-files.sh X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 30f6e1692d5182a8084e1a20054c5f61471574de X-VCS-Branch: master Date: Sun, 4 Jun 2017 17:13:16 +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: 9086686e-4f1b-4605-831d-b4f631310f3f X-Archives-Hash: 5b5db1d67a6c928b1ccdd8bf663b2c84 commit: 30f6e1692d5182a8084e1a20054c5f61471574de Author: Ulrich Müller gentoo org> AuthorDate: Sun Jun 4 17:13:04 2017 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Jun 4 17:13:04 2017 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=30f6e169 find-binary-files.sh: Suppress false positives. find-binary-files.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/find-binary-files.sh b/find-binary-files.sh index 367cc75..a3b1415 100755 --- a/find-binary-files.sh +++ b/find-binary-files.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2014-2015 Gentoo Foundation +# Copyright 2014-2017 Gentoo Foundation # Distributed under the terms of the GNU GPL version 2 or later # Author: Ulrich Müller @@ -34,6 +34,7 @@ find . \( -path ./distfiles -o -path ./local -o -path ./metadata \ application/*"; charset=utf-8") ;; "image/svg+xml; charset=us-ascii") ;; # SVG image "image/x-xpmi; charset=us-ascii") ;; # XPM image + "message/rfc822; charset=us-ascii") ;; *) size=$(stat -c "%s" "${path}") echo "${path#./}: ${type} (size=${size})"