File: fix_python_shebang_line.patch

package info (click to toggle)
python-cogent 1.4.1-1.2
  • links: PTS, VCS
  • area: non-free
  • in suites: squeeze
  • size: 13,260 kB
  • ctags: 20,087
  • sloc: python: 116,163; ansic: 732; makefile: 74; sh: 9
file content (67 lines) | stat: -rw-r--r-- 2,980 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
Index: python-cogent-1.4.1/cogent/align/dp_calculation.py
===================================================================
--- python-cogent-1.4.1.orig/cogent/align/dp_calculation.py	2010-06-25 18:29:53.790029187 +0200
+++ python-cogent-1.4.1/cogent/align/dp_calculation.py	2010-06-25 18:29:58.700028486 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env/python
+#!/usr/bin/python
 
 from cogent.maths.markov import SiteClassTransitionMatrix
 from cogent.recalculation.definition import PositiveParamDefn, \
Index: python-cogent-1.4.1/cogent/data/molecular_weight.py
===================================================================
--- python-cogent-1.4.1.orig/cogent/data/molecular_weight.py	2010-06-25 18:29:27.460027576 +0200
+++ python-cogent-1.4.1/cogent/data/molecular_weight.py	2010-06-25 18:29:33.790026526 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env Python
+#!/usr/bin/python
 """Data for molecular weight calculations on proteins and nucleotides."""
 
 __author__ = "Rob Knight"
Index: python-cogent-1.4.1/cogent/format/text_tree.py
===================================================================
--- python-cogent-1.4.1.orig/cogent/format/text_tree.py	2010-06-25 18:26:20.110027538 +0200
+++ python-cogent-1.4.1/cogent/format/text_tree.py	2010-06-25 18:26:30.180027920 +0200
@@ -1,4 +1,4 @@
-#!/bin/env python
+#!/usr/bin/python
 # file text_tree.py
 """Simple base text representation of phylo tree."""
 
Index: python-cogent-1.4.1/cogent/phylo/maximum_likelihood.py
===================================================================
--- python-cogent-1.4.1.orig/cogent/phylo/maximum_likelihood.py	2010-06-25 18:27:03.970027345 +0200
+++ python-cogent-1.4.1/cogent/phylo/maximum_likelihood.py	2010-06-25 18:27:48.590027730 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python'
+#!/usr/bin/python
 from tree_space import TreeEvaluator, ancestry2tree
 from least_squares import WLS
 from math import exp
@@ -68,4 +68,4 @@
         return LogLikelihoodScoredTreeCollection(results)
     
 
-    
\ No newline at end of file
+    
Index: python-cogent-1.4.1/cogent/recalculation/__init__.py
===================================================================
--- python-cogent-1.4.1.orig/cogent/recalculation/__init__.py	2010-06-25 18:28:36.420027396 +0200
+++ python-cogent-1.4.1/cogent/recalculation/__init__.py	2010-06-25 18:28:42.280028115 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/envthon
+#!/usr/bin/python
 __all__ = ['array', 'calculation', 'definition', 'scope', 'setting']
 
 __author__ = "Peter Maxwell"
Index: python-cogent-1.4.1/cogent/recalculation/setting.py
===================================================================
--- python-cogent-1.4.1.orig/cogent/recalculation/setting.py	2010-06-25 18:27:33.160026774 +0200
+++ python-cogent-1.4.1/cogent/recalculation/setting.py	2010-06-25 18:27:42.830027966 +0200
@@ -1,4 +1,4 @@
-#!/usr/bin/env python'
+#!/usr/bin/python
 """Instances of these classes are assigned to different parameter/scopes
 by a parameter controller"""