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: Sat, 08 Feb 2014 21:34:45
Message-Id: 1391895481.1ef6e31646c9aa064aa9233bf778c0ff18bfffb6.ulm@gentoo
1 commit: 1ef6e31646c9aa064aa9233bf778c0ff18bfffb6
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 8 16:40:28 2014 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 8 21:38:01 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qa-scripts.git;a=commit;h=1ef6e316
7
8 Delete find-binary-files.pl (replaced by shell script) and update README.
9
10 ---
11 README | 2 +-
12 find-binary-files.pl | 16 ----------------
13 2 files changed, 1 insertion(+), 17 deletions(-)
14
15 diff --git a/README b/README
16 index f6f91f9..5d85edf 100644
17 --- a/README
18 +++ b/README
19 @@ -29,7 +29,7 @@ Current runtimes:
20 - check_eclasses_eapis.sh: 4x daily
21 - eapi_usage.sh: 2x daily
22 - filesdir-usage.sh: daily
23 -- find-binary-files.pl: daily
24 +- find-binary-files.sh: daily
25 - genrdeps, run-genrdeps-index.sh: hourly
26 - mask_check.py: daily
27 - packages-inheriting-eclasses.py: daily
28
29 diff --git a/find-binary-files.pl b/find-binary-files.pl
30 deleted file mode 100755
31 index 0d32c9e..0000000
32 --- a/find-binary-files.pl
33 +++ /dev/null
34 @@ -1,16 +0,0 @@
35 -#!/usr/bin/perl
36 -
37 -# Matt Turner <mattst88@g.o/gmail.com>
38 -# June 2010. For qa-reports.gentoo.org.
39 -
40 -use strict;
41 -use warnings;
42 -
43 -use File::Find;
44 -
45 -sub wanted {
46 - !-d && ((-z && print "empty file: $File::Find::name\n")
47 - || (-B && print "binary file: $File::Find::name\n"));
48 -}
49 -
50 -finddepth(\&wanted, @ARGV);