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 B1572138CF0 for ; Sat, 8 Feb 2014 21:34:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99716E0AD9; Sat, 8 Feb 2014 21:34:44 +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 2191AE0AD9 for ; Sat, 8 Feb 2014 21:34:44 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C6BD33F8FB for ; Sat, 8 Feb 2014 21:34:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 017FB18873 for ; Sat, 8 Feb 2014 21:34:42 +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: <1391895481.1ef6e31646c9aa064aa9233bf778c0ff18bfffb6.ulm@gentoo> Subject: [gentoo-commits] proj/qa-scripts:master commit in: / X-VCS-Repository: proj/qa-scripts X-VCS-Files: README find-binary-files.pl X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 1ef6e31646c9aa064aa9233bf778c0ff18bfffb6 X-VCS-Branch: master Date: Sat, 8 Feb 2014 21:34:42 +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: ef1e4591-f2ca-4295-8a93-7dcadaecc49d X-Archives-Hash: e39c3c1f79ed1ad53768306338da1435 commit: 1ef6e31646c9aa064aa9233bf778c0ff18bfffb6 Author: Ulrich Müller gentoo org> AuthorDate: Sat Feb 8 16:40:28 2014 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 8 21:38:01 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qa-scripts.git;a=commit;h=1ef6e316 Delete find-binary-files.pl (replaced by shell script) and update README. --- README | 2 +- find-binary-files.pl | 16 ---------------- 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/README b/README index f6f91f9..5d85edf 100644 --- a/README +++ b/README @@ -29,7 +29,7 @@ Current runtimes: - check_eclasses_eapis.sh: 4x daily - eapi_usage.sh: 2x daily - filesdir-usage.sh: daily -- find-binary-files.pl: daily +- find-binary-files.sh: daily - genrdeps, run-genrdeps-index.sh: hourly - mask_check.py: daily - packages-inheriting-eclasses.py: daily diff --git a/find-binary-files.pl b/find-binary-files.pl deleted file mode 100755 index 0d32c9e..0000000 --- a/find-binary-files.pl +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/perl - -# Matt Turner -# June 2010. For qa-reports.gentoo.org. - -use strict; -use warnings; - -use File::Find; - -sub wanted { - !-d && ((-z && print "empty file: $File::Find::name\n") - || (-B && print "binary file: $File::Find::name\n")); -} - -finddepth(\&wanted, @ARGV);