r53067 - in /trunk/libio-prompt-perl/debian: changelog patches/add-shebang-to-examples.patch patches/series

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Fri Feb 19 20:29:31 UTC 2010


Author: carnil-guest
Date: Fri Feb 19 20:29:21 2010
New Revision: 53067

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=53067
Log:
Add add-shebang-to-examples.patch patch to fix lintian's
executable-not-elf-or-script warnings. 

Added:
    trunk/libio-prompt-perl/debian/patches/add-shebang-to-examples.patch
Modified:
    trunk/libio-prompt-perl/debian/changelog
    trunk/libio-prompt-perl/debian/patches/series

Modified: trunk/libio-prompt-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-prompt-perl/debian/changelog?rev=53067&op=diff
==============================================================================
--- trunk/libio-prompt-perl/debian/changelog (original)
+++ trunk/libio-prompt-perl/debian/changelog Fri Feb 19 20:29:21 2010
@@ -35,6 +35,8 @@
   * Bump Standards-Version to 3.8.4. 
   * Refresh debian/copyright and update Copyright years and holders for
     debian/* packaging. 
+  * Add add-shebang-to-examples.patch patch to fix lintian's
+    executable-not-elf-or-script warnings. 
 
  -- Jonathan Yu <jawnsy at cpan.org>  Tue, 02 Feb 2010 16:57:15 -0500
 

Added: trunk/libio-prompt-perl/debian/patches/add-shebang-to-examples.patch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-prompt-perl/debian/patches/add-shebang-to-examples.patch?rev=53067&op=file
==============================================================================
--- trunk/libio-prompt-perl/debian/patches/add-shebang-to-examples.patch (added)
+++ trunk/libio-prompt-perl/debian/patches/add-shebang-to-examples.patch Fri Feb 19 20:29:21 2010
@@ -1,0 +1,44 @@
+Description: Add shebang to some of the examples/ file as lintian
+ complains about executable-not-elf-or-script.
+Origin: vendor
+Author: Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com> 
+--- a/examples/data.pl
++++ b/examples/data.pl
+@@ -1,3 +1,5 @@
++#!/usr/bin/perl
++
+ use IO::Prompt;
+ 
+ # The input is taken from the __PROMPT__ section below
+--- a/examples/num.pl
++++ b/examples/num.pl
+@@ -1,3 +1,5 @@
++#!/usr/bin/perl
++
+ use IO::Prompt;
+ 
+ # You can constrain input to be numeric, or even integral...
+--- a/examples/record.pl
++++ b/examples/record.pl
+@@ -1,3 +1,5 @@
++#!/usr/bin/perl
++
+ use IO::Prompt -record;
+ 
+ # Loading the module with the -record flag causes it to record all inputs
+--- a/examples/require.pl
++++ b/examples/require.pl
+@@ -1,3 +1,5 @@
++#!/usr/bin/perl
++
+ use IO::Prompt;
+ 
+ # The -require flag allows you to specify conditions that must be met by
+--- a/examples/underscore.pl
++++ b/examples/underscore.pl
+@@ -1,3 +1,5 @@
++#!/usr/bin/perl
++
+ use IO::Prompt;
+ 
+ # This example demostrates how prompt autosets $_ when appropriate

Modified: trunk/libio-prompt-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libio-prompt-perl/debian/patches/series?rev=53067&op=diff
==============================================================================
--- trunk/libio-prompt-perl/debian/patches/series (original)
+++ trunk/libio-prompt-perl/debian/patches/series Fri Feb 19 20:29:21 2010
@@ -1,1 +1,2 @@
 create-pty.patch
+add-shebang-to-examples.patch




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