r73985 - in /trunk/libevent-perl/debian: changelog patches/ patches/fix-example-wrong-path-for-interpreter.patch patches/series

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Wed May 4 18:58:18 UTC 2011


Author: ghedo-guest
Date: Wed May  4 18:57:58 2011
New Revision: 73985

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=73985
Log:
Add fix-example-wrong-path-for-interpreter.patch

Added:
    trunk/libevent-perl/debian/patches/
    trunk/libevent-perl/debian/patches/fix-example-wrong-path-for-interpreter.patch
    trunk/libevent-perl/debian/patches/series
Modified:
    trunk/libevent-perl/debian/changelog

Modified: trunk/libevent-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/changelog?rev=73985&op=diff
==============================================================================
--- trunk/libevent-perl/debian/changelog (original)
+++ trunk/libevent-perl/debian/changelog Wed May  4 18:57:58 2011
@@ -11,6 +11,7 @@
   * debian/copyright:
     - Replace "Debian GNU/Linux" with just "Debian"
     - Fix copyright-refers-to-symlink-license
+  * Add fix-example-wrong-path-for-interpreter.patch
 
   [ gregor herrmann ]
   * Install new tutorial errata file alongside the tutorial.

Added: trunk/libevent-perl/debian/patches/fix-example-wrong-path-for-interpreter.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/patches/fix-example-wrong-path-for-interpreter.patch?rev=73985&op=file
==============================================================================
--- trunk/libevent-perl/debian/patches/fix-example-wrong-path-for-interpreter.patch (added)
+++ trunk/libevent-perl/debian/patches/fix-example-wrong-path-for-interpreter.patch Wed May  4 18:57:58 2011
@@ -1,0 +1,52 @@
+Description: Adjust the shebang line to point to /usr/bin/perl instead of
+./perl or env perl, in the examples. This fixes various
+example-wrong-path-for-interpreter and  example-interpreter-not-absolute
+lintian warnings
+--- a/demo/echo.t
++++ b/demo/echo.t
+@@ -1,4 +1,4 @@
+-#!./perl -w
++#!/usr/bin/perl -w
+
+ $| = 1;
+ use Event qw(time);
+--- a/demo/group.t
++++ b/demo/group.t
+@@ -1,4 +1,4 @@
+-#!./perl -w
++#!/usr/bin/perl -w
+
+ use strict;
+ use Test; plan test => 6;
+--- a/demo/perlqt.t
++++ b/demo/perlqt.t
+@@ -1,4 +1,4 @@
+-#!./perl -w
++#!/usr/bin/perl -w
+
+ use Qt 2.0;
+ use Event;
+--- a/demo/rand_interval.t
++++ b/demo/rand_interval.t
+@@ -1,4 +1,4 @@
+-#!./perl -w
++#!/usr/bin/perl -w
+ # contributed by jsalmon at gw.thesalmons.org
+
+ use Event qw(loop);
+--- a/demo/readline.t
++++ b/demo/readline.t
+@@ -1,4 +1,4 @@
+-#!/usr/bin/env perl -w
++#!/usr/bin/perl -w
+
+ #
+ # Test script to combine Term::Readline::Gnu and Event.
+--- a/demo/repeat.t
++++ b/demo/repeat.t
+@@ -1,4 +1,4 @@
+-#!./perl -w
++#!/usr/bin/perl -w
+
+ use strict;
+ use Event;

Added: trunk/libevent-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libevent-perl/debian/patches/series?rev=73985&op=file
==============================================================================
--- trunk/libevent-perl/debian/patches/series (added)
+++ trunk/libevent-perl/debian/patches/series Wed May  4 18:57:58 2011
@@ -1,0 +1,1 @@
+fix-example-wrong-path-for-interpreter.patch




More information about the Pkg-perl-cvs-commits mailing list