Import of pkgsrc-2016Q3

This commit is contained in:
2016-10-14 07:49:11 +02:00
committed by Lionel Sambuc
parent 9d819b6d54
commit 1242aa1e36
35952 changed files with 949749 additions and 377083 deletions

View File

@@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.10 2015/06/12 10:50:55 wiz Exp $
# $NetBSD: Makefile,v 1.12 2016/09/13 09:41:29 fhajny Exp $
#
DISTNAME= parallel-20130122
PKGREVISION= 3
DISTNAME= parallel-20160822
CATEGORIES= parallel
MASTER_SITES= ${MASTER_SITE_GNU:=parallel/}
EXTRACT_SUFX= .tar.bz2
@@ -15,6 +14,7 @@ LICENSE= gnu-gpl-v3
USE_TOOLS+= perl:run pod2man pod2html
REPLACE_PERL+= src/parallel src/niceload src/sem src/sem.pod src/sql
REPLACE_SH+= src/env_parallel
GNU_CONFIGURE= yes
USE_LANGUAGES= # none
@@ -22,6 +22,8 @@ USE_LANGUAGES= # none
DOCDIR= ${PREFIX}/share/doc/parallel
DOCFILES= NEWS README COPYING
CHECK_INTERPRETER_SKIP+= bin/env_parallel.*
post-install:
.for i in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${DOCDIR}/

View File

@@ -1,20 +1,44 @@
@comment $NetBSD: PLIST,v 1.2 2012/12/02 10:38:51 cheusov Exp $
@comment $NetBSD: PLIST,v 1.3 2016/09/13 09:41:29 fhajny Exp $
bin/env_parallel
bin/env_parallel.bash
bin/env_parallel.csh
bin/env_parallel.fish
bin/env_parallel.ksh
bin/env_parallel.pdksh
bin/env_parallel.tcsh
bin/env_parallel.zsh
bin/niceload
bin/parallel
bin/sem
bin/sql
man/man1/env_parallel.1
man/man1/niceload.1
man/man1/parallel.1
man/man1/sem.1
man/man1/sql.1
man/man7/parallel_design.7
man/man7/parallel_tutorial.7
share/doc/parallel/COPYING
share/doc/parallel/NEWS
share/doc/parallel/README
share/doc/parallel/env_parallel.html
share/doc/parallel/env_parallel.pdf
share/doc/parallel/env_parallel.texi
share/doc/parallel/niceload.html
share/doc/parallel/niceload.pdf
share/doc/parallel/niceload.texi
share/doc/parallel/parallel.html
share/doc/parallel/parallel.pdf
share/doc/parallel/parallel.texi
share/doc/parallel/parallel_design.html
share/doc/parallel/parallel_design.pdf
share/doc/parallel/parallel_design.texi
share/doc/parallel/parallel_tutorial.html
share/doc/parallel/parallel_tutorial.pdf
share/doc/parallel/parallel_tutorial.texi
share/doc/parallel/sem.html
share/doc/parallel/sem.pdf
share/doc/parallel/sem.texi
share/doc/parallel/sql.html
share/doc/parallel/sql.pdf
share/doc/parallel/sql.texi

View File

@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.4 2013/06/16 21:46:35 wiz Exp $
$NetBSD: distinfo,v 1.6 2016/09/13 09:41:29 fhajny 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
SHA1 (parallel-20160822.tar.bz2) = eacae06b0e145559d9f9d2f027be5cfac28f76bf
RMD160 (parallel-20160822.tar.bz2) = 6f56b1bca8f6f29fd712f2657cff9c44796bcb90
SHA512 (parallel-20160822.tar.bz2) = 303715075f50f0a0e18b1b9e65d860ae5ba9901efc6de096406ee69b8d91d4d3a648a966b388156024d0177f7d7b510b7df437c212ba587c4636d415278188ab
Size (parallel-20160822.tar.bz2) = 1370647 bytes

View File

@@ -1,52 +0,0 @@
$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.