diff options
author | wiz <wiz@pkgsrc.org> | 2013-06-16 21:46:35 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-06-16 21:46:35 +0000 |
commit | 71cd8b153edc58a6d73445e5a23f0d3e407e8a1f (patch) | |
tree | ba0b53dfa17e83bfb29819c937c827c1750e397c | |
parent | 5de64dbd7899535787d198515bad13149fe9add5 (diff) | |
download | pkgsrc-71cd8b153edc58a6d73445e5a23f0d3e407e8a1f.tar.gz |
Fix build with perl-5.18.
-rw-r--r-- | parallel/parallel/distinfo | 3 | ||||
-rw-r--r-- | parallel/parallel/patches/patch-src_parallel.pod | 52 |
2 files changed, 54 insertions, 1 deletions
diff --git a/parallel/parallel/distinfo b/parallel/parallel/distinfo index 568a03c4595..881d96b1e28 100644 --- a/parallel/parallel/distinfo +++ b/parallel/parallel/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2013/03/03 11:11:51 shattered Exp $ +$NetBSD: distinfo,v 1.4 2013/06/16 21:46:35 wiz Exp $ SHA1 (parallel-20130122.tar.bz2) = 0f7eac7c8a574e173e322f359f4f3804c9d05203 RMD160 (parallel-20130122.tar.bz2) = 642064b2b06083a39d9156a5ee2733ae614c2d5f Size (parallel-20130122.tar.bz2) = 238646 bytes +SHA1 (patch-src_parallel.pod) = 7c0ce9636c308ccc736ac2bbc34c961f4857ad2f diff --git a/parallel/parallel/patches/patch-src_parallel.pod b/parallel/parallel/patches/patch-src_parallel.pod new file mode 100644 index 00000000000..18076251cde --- /dev/null +++ b/parallel/parallel/patches/patch-src_parallel.pod @@ -0,0 +1,52 @@ +$NetBSD: patch-src_parallel.pod,v 1.1 2013/06/16 21:46:35 wiz Exp $ + +Fix build with perl-5.18, which does not like unescaped numbers after =item. + +--- src/parallel.pod.orig 2013-01-21 22:43:00.000000000 +0000 ++++ src/parallel.pod +@@ -522,18 +522,18 @@ Print a summary of the options to GNU B< + + =over 3 + +-=item 0 ++=item "0" + + Do not halt if a job fails. Exit status will be the number of jobs + failed. This is the default. + +-=item 1 ++=item "1" + + Do not start new jobs if a job fails, but complete the running jobs + including cleanup. The exit status will be the exit status from the + last failing job. + +-=item 2 ++=item "2" + + Kill off all jobs immediately and exit without cleanup. The exit + status will be the exit status from the failing job. +@@ -2724,19 +2724,19 @@ If B<--halt-on-error> 0 or not specified + + =over 6 + +-=item 0 ++=item "0" + + All jobs ran without error. + +-=item 1-253 ++=item "1-253" + + Some of the jobs failed. The exit status gives the number of failed jobs + +-=item 254 ++=item "254" + + More than 253 jobs failed. + +-=item 255 ++=item "255" + + Other error. + |