Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

4
parallel/parallel/DESCR Normal file
View File

@@ -0,0 +1,4 @@
GNU Parallel is a shell tool for executing jobs in parallel using one or
more machines. A job is typically a single command or a small script that
has to be run for each of the lines in the input. The typical input is a
list of files, a list of hosts, a list of users, or a list of tables.

View File

@@ -0,0 +1,30 @@
# $NetBSD: Makefile,v 1.8 2013/05/31 12:41:45 wiz Exp $
#
DISTNAME= parallel-20130122
PKGREVISION= 1
CATEGORIES= parallel
MASTER_SITES= ${MASTER_SITE_GNU:=parallel/}
EXTRACT_SUFX= .tar.bz2
MAINTAINER= cheusov@NetBSD.org
HOMEPAGE= http://savannah.gnu.org/projects/parallel/
COMMENT= Build and execute shell commands in parallel
LICENSE= gnu-gpl-v3
USE_TOOLS+= perl:run pod2man pod2html
REPLACE_PERL+= src/parallel src/niceload src/sem src/sem.pod src/sql
GNU_CONFIGURE= yes
USE_LANGUAGES= # none
DOCDIR= ${PREFIX}/share/doc/parallel
DOCFILES= NEWS README COPYING
post-install:
.for i in ${DOCFILES}
${INSTALL_DATA} ${WRKSRC}/${i} ${DESTDIR}${DOCDIR}/
.endfor
.include "../../mk/bsd.pkg.mk"

20
parallel/parallel/PLIST Normal file
View File

@@ -0,0 +1,20 @@
@comment $NetBSD: PLIST,v 1.2 2012/12/02 10:38:51 cheusov Exp $
bin/niceload
bin/parallel
bin/sem
bin/sql
man/man1/niceload.1
man/man1/parallel.1
man/man1/sem.1
man/man1/sql.1
share/doc/parallel/COPYING
share/doc/parallel/NEWS
share/doc/parallel/README
share/doc/parallel/niceload.html
share/doc/parallel/niceload.texi
share/doc/parallel/parallel.html
share/doc/parallel/parallel.texi
share/doc/parallel/sem.html
share/doc/parallel/sem.texi
share/doc/parallel/sql.html
share/doc/parallel/sql.texi

View File

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

View File

@@ -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.