This is an automated email from the git hooks/post-receive script. grinorcole-guest pushed a commit to branch master in repository liblinux-fd-perl.
commit d81322d940f00f6cfd4dddb7456d5f805ec35795 Author: Christopher Hoskin <[email protected]> Date: Wed Jan 28 03:49:29 2015 +0000 Fixed relative path to perl in examples/timers --- .gitignore | 1 + debian/control | 9 +++++---- debian/patches/perlpath | 30 ++++++++++++++++++++++++++++++ debian/patches/series | 1 + examples/timers | 2 +- 5 files changed, 38 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..224e7f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.pc/ diff --git a/debian/control b/debian/control index fb64e02..e1e47fb 100644 --- a/debian/control +++ b/debian/control @@ -20,8 +20,9 @@ Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, Description: Linux specific special filehandles Linux::FD provides you Linux specific special file handles. These are . - * Event filehandles - * Signal filehandles - * Timer filehandles + * Event filehandles + * Signal filehandles + * Timer filehandles . - These allow you to use conventional polling mechanisms to wait a large variety of events. + These allow you to use conventional polling mechanisms to wait a large variety + of events. diff --git a/debian/patches/perlpath b/debian/patches/perlpath new file mode 100644 index 0000000..4a53789 --- /dev/null +++ b/debian/patches/perlpath @@ -0,0 +1,30 @@ +Description: Correct perl path + examples/timers contained a relative perl path. Replacing with absolute path. + . + liblinux-fd-perl (0.011-1) UNRELEASED; urgency=low + . + * Initial Release. Closes: #776446 +Author: Christopher Hoskin <[email protected]> +Bug-Debian: https://bugs.debian.org/776446 + +--- +The information above should follow the Patch Tagging Guidelines, please +checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here +are templates for supplementary fields that you might want to add: + +Origin: <vendor|upstream|other>, <url of original patch> +Bug: <url in upstream bugtracker> +Bug-Debian: https://bugs.debian.org/<bugnumber> +Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber> +Forwarded: <no|not-needed|url proving that it has been forwarded> +Reviewed-By: <name and email of someone who approved the patch> +Last-Update: <YYYY-MM-DD> + +--- liblinux-fd-perl-0.011.orig/examples/timers ++++ liblinux-fd-perl-0.011/examples/timers +@@ -1,4 +1,4 @@ +-#! perl ++#!/usr/bin/perl + + use 5.012; + use warnings; diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..74e0bc6 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +perlpath diff --git a/examples/timers b/examples/timers index eac9d3e..e11934e 100644 --- a/examples/timers +++ b/examples/timers @@ -1,4 +1,4 @@ -#! perl +#!/usr/bin/perl use 5.012; use warnings; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/liblinux-fd-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
