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 3DEEA138334 for ; Mon, 15 Jul 2019 08:34:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D0EFE0937; Mon, 15 Jul 2019 08:34:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 004EEE0937 for ; Mon, 15 Jul 2019 08:34:26 +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 CBE09347B7D for ; Mon, 15 Jul 2019 08:34:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7686266 for ; Mon, 15 Jul 2019 08:34:23 +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: <1563179534.a23d8d24d29f483c4f0bc8a9315523d90149bc95.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: a23d8d24d29f483c4f0bc8a9315523d90149bc95 X-VCS-Branch: master Date: Mon, 15 Jul 2019 08:34:23 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 90c0146a-9927-4e8a-9eaf-4dae07f29096 X-Archives-Hash: 43fbb70fd578a98598b8bbababf6d0ff commit: a23d8d24d29f483c4f0bc8a9315523d90149bc95 Author: Ulrich Müller gentoo org> AuthorDate: Mon Jul 15 08:32:14 2019 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Jul 15 08:32:14 2019 +0000 URL: https://gitweb.gentoo.org/proj/qa-scripts.git/commit/?id=a23d8d24 find-binary-files.sh: Avoid false positives for image/svg. Signed-off-by: Ulrich Müller gentoo.org> 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 6714422..2c08ca8 100755 --- a/find-binary-files.sh +++ b/find-binary-files.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright 2014-2018 Gentoo Foundation +# Copyright 2014-2019 Ulrich Müller # Distributed under the terms of the GNU GPL version 2 or later # Author: Ulrich Müller @@ -32,6 +32,7 @@ find . \( -path ./distfiles -o -path ./local -o -path ./metadata \ text/*) ;; # text file application/*"; charset=us-ascii") ;; application/*"; charset=utf-8") ;; + "image/svg; charset=us-ascii") ;; # SVG image "image/svg+xml; charset=us-ascii") ;; # SVG image "image/x-xpmi; charset=us-ascii") ;; # XPM image "message/rfc822; charset=us-ascii") ;;