~ubuntu-branches/ubuntu/hardy/libsyntax-highlight-perl-improved-perl/hardy

« back to all changes in this revision

Viewing changes to debian/patches/viewperl.patch

  • Committer: Bazaar Package Importer
  • Author(s): Jaldhar H. Vyas, gregor herrmann, Jaldhar H. Vyas
  • Date: 2007-08-27 02:12:33 UTC
  • Revision ID: james.westby@ubuntu.com-20070827021233-2xxfwlwn1ok3uj0y
Tags: 1.01-2
[ gregor herrmann ]
* Add watch file.
* Patch viewperl to make it use the actual library we're installing.
* Add manpage for viewperl.

[ Jaldhar H. Vyas ]
* Added location of upstream tarball to debian/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: libsyntax-highlight-perl-improved-perl/viewperl
 
2
===================================================================
 
3
--- libsyntax-highlight-perl-improved-perl.orig/viewperl        2007-08-26 22:54:32.000000000 +0200
 
4
+++ libsyntax-highlight-perl-improved-perl/viewperl     2007-08-26 22:54:46.000000000 +0200
 
5
@@ -16,7 +16,7 @@
 
6
 
 
7
 use FileHandle;
 
8
 use Getopt::Long;
 
9
-use Syntax::Highlight::Perl 1.0;
 
10
+use Syntax::Highlight::Perl::Improved 1.0;
 
11
 
 
12
 
 
13
 #=====================================================================
 
14
@@ -69,7 +69,7 @@
 
15
     bgwhite   => "\e[47m",
 
16
 );
 
17
 
 
18
-$formatter = new Syntax::Highlight::Perl;
 
19
+$formatter = new Syntax::Highlight::Perl::Improved;
 
20
 
 
21
 #
 
22
 # Set up formatter to do ANSI colors.
 
23
@@ -283,7 +283,7 @@
 
24
 
 
25
 
 
26
 #
 
27
-# Convert module names (eg, Syntax::Highlight::Perl) to
 
28
+# Convert module names (eg, Syntax::Highlight::Perl::Improved) to
 
29
 # fully qualified file names using current state of @INC.
 
30
 #
 
31
 # Returns undef on error (file-not-found).