Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-biology/infernal/files: infernal-1.0.2-perl-5.16-2.patch infernal-1.0.2-perl-5.16.patch
Date: Sun, 06 Jul 2014 11:34:51
Message-Id: 20140706113447.3FCA52004F@flycatcher.gentoo.org
1 jlec 14/07/06 11:34:47
2
3 Added: infernal-1.0.2-perl-5.16-2.patch
4 Removed: infernal-1.0.2-perl-5.16.patch
5 Log:
6 sci-biology/infernal: Add patch as binary to prevent CVS magics, #431076
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.1 sci-biology/infernal/files/infernal-1.0.2-perl-5.16-2.patch
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/infernal/files/infernal-1.0.2-perl-5.16-2.patch?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-biology/infernal/files/infernal-1.0.2-perl-5.16-2.patch?rev=1.1&content-type=text/plain
15
16 Index: infernal-1.0.2-perl-5.16-2.patch
17 ===================================================================
18 benchmarks/cmsearch-rmark/sre.pl | 4 +---
19 easel/devkit/autodoc | 4 ++--
20 easel/devkit/esl-dependencies | 4 ++--
21 easel/devkit/sqc | 7 +++----
22 easel/testsuite/coverage_report.pl | 4 ++--
23 easel/testsuite/driver_report.pl | 4 ++--
24 easel/testsuite/valgrind_report.pl | 4 ++--
25 7 files changed, 14 insertions(+), 17 deletions(-)
26
27 diff --git a/benchmarks/cmsearch-rmark/sre.pl b/benchmarks/cmsearch-rmark/sre.pl
28 index 9136717..e4df233 100644
29 --- a/benchmarks/cmsearch-rmark/sre.pl
30 +++ b/benchmarks/cmsearch-rmark/sre.pl
31 @@ -6,8 +6,6 @@
32
33 package SRE_perlstuff;
34
35 -require "importenv.pl";
36 -
37 # Function: tempname
38 #
39 # Returns a unique temporary filename.
40 @@ -26,7 +24,7 @@ require "importenv.pl";
41 #
42 sub main'tempname {
43 local ($dir, $name);
44 - if ($TMPDIR) { $dir = $TMPDIR; } else {$dir = "/tmp";}
45 + if ($ENV{TMPDIR}) { $dir = $ENV{TMPDIR}; } else {$dir = "/tmp";}
46
47 foreach $suffix ("aa".."zz") {
48 $name = "$dir/sre$suffix$$";
49 diff --git a/easel/devkit/autodoc b/easel/devkit/autodoc
50 old mode 100755
51 new mode 100644
52 index 045ce36..22268f6
53 --- a/easel/devkit/autodoc
54 +++ b/easel/devkit/autodoc
55 @@ -49,8 +49,8 @@
56 #
57 # SRE, Tue Nov 30 19:43:47 2004
58
59 -require "getopts.pl";
60 -&Getopts('n:t');
61 +use Getopt::Std;
62 +getopts('n:t');
63 $cfile = shift;
64
65 if ($opt_t) { $show_api_table = 1; }
66 diff --git a/easel/devkit/esl-dependencies b/easel/devkit/esl-dependencies
67 old mode 100755
68 new mode 100644
69 index a4dc126..b61fa7a
70 --- a/easel/devkit/esl-dependencies
71 +++ b/easel/devkit/esl-dependencies
72 @@ -13,8 +13,8 @@
73 # SRE, Mon Jun 11 11:15:31 2007
74 # SVN $Id$
75
76 -require "getopts.pl"
77 -&Getopts('1afr');
78 +use Getopt::Std;
79 +getopts('1afr');
80
81 if ($opt_1) { $show_summary_table = 1; }
82 if ($opt_a) { $list_augfiles = 1; }
83 diff --git a/easel/devkit/sqc b/easel/devkit/sqc
84 old mode 100755
85 new mode 100644
86 index 81d03de..6201d3d
87 --- a/easel/devkit/sqc
88 +++ b/easel/devkit/sqc
89 @@ -176,12 +176,11 @@
90 # SRE, Tue Aug 6 11:16:39 2002
91 # SVN $Id: sqc 1796 2007-01-03 22:36:44Z eddys $
92
93 -require "getopts.pl";
94 -require "importenv.pl";
95 +use Getopt::Std;
96
97 # Parse our command line
98 #
99 -&Getopts('mp:r:v');
100 +getopts('mp:r:v');
101 if ($opt_m) { $do_memtest = 1; }
102 if ($opt_p) { push @prepdirs, $opt_p; }
103 if ($opt_r) { push @olddirs, $opt_r; }
104 @@ -510,7 +509,7 @@ check_ccmalloc_status
105 #
106 sub tempname {
107 my ($dir, $name, $suffix);
108 - if ($TMPDIR) { $dir = $TMPDIR."/"; } else {$dir = "";}
109 + if ($ENV{TMPDIR}) { $dir = $ENV{TMPDIR}."/"; } else {$dir = "";}
110
111 foreach $suffix ("aa".."zz") {
112 $name = "$dir"."esltmp".$suffix.$$;
113 diff --git a/easel/testsuite/coverage_report.pl b/easel/testsuite/coverage_report.pl
114 old mode 100755
115 new mode 100644
116 index 9c77791..024ed34
117 --- a/easel/testsuite/coverage_report.pl
118 +++ b/easel/testsuite/coverage_report.pl
119 @@ -16,9 +16,9 @@
120 #
121 # SRE, Thu Mar 1 19:22:57 2007 (Janelia)
122 # SVN $Id: coverage_report.pl 231 2008-03-25 14:43:57Z eddys $
123 -require "getopts.pl";
124 +use Getopt::Std;
125 $have_sloccount = 1;
126 -&Getopts('cs');
127 +getopts('cs');
128 if ($opt_c) { $do_recompile = 1; }
129 if ($opt_s) { $have_sloccount = 0; }
130
131 diff --git a/easel/testsuite/driver_report.pl b/easel/testsuite/driver_report.pl
132 old mode 100755
133 new mode 100644
134 index d1b4a9a..db4378f
135 --- a/easel/testsuite/driver_report.pl
136 +++ b/easel/testsuite/driver_report.pl
137 @@ -19,8 +19,8 @@
138 # SRE, Fri Mar 2 10:01:44 2007 (Janelia)
139 # SVN $Id: driver_report.pl 231 2008-03-25 14:43:57Z eddys $
140
141 -require "getopts.pl";
142 -&Getopts('c');
143 +use Getopt::Std;
144 +getopts('c');
145 if ($opt_c) { $do_recompile = 1; }
146
147 if ($ENV{'CC'} ne "") { $CC = $ENV{'CC'}; } else { $CC = "gcc"; }
148 diff --git a/easel/testsuite/valgrind_report.pl b/easel/testsuite/valgrind_report.pl
149 old mode 100755
150 new mode 100644
151 index 186a392..07026a0
152 --- a/easel/testsuite/valgrind_report.pl
153 +++ b/easel/testsuite/valgrind_report.pl
154 @@ -10,8 +10,8 @@
155 #
156 # SRE, Fri Mar 2 08:37:48 2007 [Janelia]
157 # SVN $Id: valgrind_report.pl 231 2008-03-25 14:43:57Z eddys $
158 -require "getopts.pl";
159 -&Getopts('c');
160 +use Getopt::Std;
161 +getopts('c');
162 if ($opt_c) { $do_recompile = 1; }
163
164 if ($ENV{'CC'} ne "") { $CC = $ENV{'CC'}; } else { $CC = "gcc"; }