~ubuntu-branches/ubuntu/gutsy/clamav/gutsy-backports

« back to all changes in this revision

Viewing changes to debian/patches/25_wrong_shebang.dpatch

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2008-04-29 14:05:57 UTC
  • mfrom: (0.25.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080429140557-6d3m19fwq82pqa13
Tags: 0.92.1~dfsg2-1.1~gutsy1
Automated backport upload; no source changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh /usr/share/dpatch/dpatch-run
2
 
## nullmailer_ftbfs.dpatch by  <sgran@debian.org>
3
 
##
4
 
## All lines beginning with `## DP:' are a description of the patch.
5
 
## DP: Fix shebang lines in example scripts
6
 
 
7
 
@DPATCH@
8
 
Index: contrib/phishing/regex_opt.py
9
 
===================================================================
10
 
--- a/contrib/phishing/regex_opt.py     (revision 534)
11
 
+++ b/contrib/phishing/regex_opt.py     (working copy)
12
 
@@ -1,3 +1,4 @@
13
 
+#!/usr/bin/env python
14
 
 def strlen(a,b):
15
 
        if len(a)<len(b):
16
 
                return -1;
17
 
Index: contrib/phishing/update_iana_tld.sh
18
 
===================================================================
19
 
--- a/contrib/phishing/update_iana_tld.sh       (revision 534)
20
 
+++ b/contrib/phishing/update_iana_tld.sh       (working copy)
21
 
@@ -1,3 +1,4 @@
22
 
+#!/bin/sh
23
 
 #
24
 
 #  Phishing detection automated testing & tools.
25
 
 #  Copyright (C) 2006 Torok Edvin <edwintorok@gmail.com>
26
 
@@ -17,7 +18,6 @@
27
 
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
28
 
 #  MA 02110-1301, USA.
29
 
 #
30
 
-#!/bin/sh
31
 
 IANA_TLD="http://data.iana.org/TLD/tlds-alpha-by-domain.txt"
32
 
 TMP=`tempfile`
33
 
 OUTFILE=iana_tld.h
34
 
Index: contrib/phishing/update_iana_data.sh
35
 
===================================================================
36
 
--- a/contrib/phishing/update_iana_data.sh      (revision 534)
37
 
+++ b/contrib/phishing/update_iana_data.sh      (working copy)
38
 
@@ -1,3 +1,4 @@
39
 
+#!/bin/sh
40
 
 #
41
 
 #  Phishing detection automated testing & tools.
42
 
 #  Copyright (C) 2006 Torok Edvin <edwintorok@gmail.com>
43
 
@@ -17,7 +18,6 @@
44
 
 #  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
45
 
 #  MA 02110-1301, USA.
46
 
 #
47
 
-#!/bin/sh
48
 
 IANA_TLD="http://data.iana.org/TLD/tlds-alpha-by-domain.txt"
49
 
 IANA_CCTLD="http://www.iana.org/cctld/cctld-whois.htm";
50
 
 TMP=`tempfile`