Index: head/sysutils/parallel/Makefile =================================================================== --- head/sysutils/parallel/Makefile (revision 365756) +++ head/sysutils/parallel/Makefile (revision 365757) @@ -1,35 +1,35 @@ # Created by: Chris Howey # $FreeBSD$ PORTNAME= parallel -PORTVERSION= 20140722 +PORTVERSION= 20140822 CATEGORIES= sysutils MASTER_SITES= GNU MAINTAINER= howeyc@gmail.com COMMENT= Shell tool for executing jobs in parallel LICENSE= GPLv3 OPTIONS_DEFINE= DOCS CONFLICTS= moreutils-parallel-[0-9]* CONFIGURE_ARGS= --docdir="${DOCSDIR}" GNU_CONFIGURE= yes USES= perl5 shebangfix tar:bzip2 PLIST_FILES= bin/niceload bin/parallel bin/sem bin/sql \ man/man1/niceload.1.gz man/man1/parallel.1.gz \ man/man1/parallel_tutorial.1.gz man/man1/sem.1.gz man/man1/sql.1.gz PORTDOCS= niceload.html niceload.pdf niceload.texi \ parallel.html parallel.pdf parallel.texi \ parallel_tutorial.html parallel_tutorial.pdf parallel_tutorial.texi \ sem.html sem.pdf sem.texi \ sql.html sql.pdf sql.texi SHEBANG_FILES= src/niceload src/sql DOCS_BUILD_DEPENDS= ${LOCALBASE}/bin/pod2texi:${PORTSDIR}/print/texinfo .include Index: head/sysutils/parallel/distinfo =================================================================== --- head/sysutils/parallel/distinfo (revision 365756) +++ head/sysutils/parallel/distinfo (revision 365757) @@ -1,2 +1,2 @@ -SHA256 (parallel-20140722.tar.bz2) = b6e0b8be4f15ea9f451b6a742e914aaa234a9008946aae151aff107a2172bb98 -SIZE (parallel-20140722.tar.bz2) = 911085 +SHA256 (parallel-20140822.tar.bz2) = 8a146a59bc71218921d561f2c801b85e06fe3a21571083b58e6e0966dd397fd4 +SIZE (parallel-20140822.tar.bz2) = 933029 Index: head/sysutils/parallel/files/patch-src__parallel =================================================================== --- head/sysutils/parallel/files/patch-src__parallel (revision 365756) +++ head/sysutils/parallel/files/patch-src__parallel (nonexistent) @@ -1,35 +0,0 @@ ---- ./src/parallel.orig 2013-10-21 15:31:40.000000000 -0500 -+++ ./src/parallel 2013-10-23 15:11:54.000000000 -0500 -@@ -5538,29 +5538,13 @@ - # Returns: - # number of chars on the longest command line allowed - if(not $Limits::Command::line_max_len) { -- # Disk cache of max command line length -- my $len_cache = $ENV{'HOME'} . "/.parallel/tmp/linelen-" . ::hostname(); -- my $cached_limit; -- if(-e $len_cache) { -- open(my $fh, "<", $len_cache) || ::die_bug("Cannot read $len_cache"); -- $cached_limit = <$fh>; -- close $fh; -- } else { -- $cached_limit = real_max_length(); -- # If $HOME is write protected: Do not fail -- mkdir($ENV{'HOME'} . "/.parallel"); -- mkdir($ENV{'HOME'} . "/.parallel/tmp"); -- open(my $fh, ">", $len_cache); -- print $fh $cached_limit; -- close $fh; -- } -- $Limits::Command::line_max_len = $cached_limit; -+ $Limits::Command::line_max_len = `getconf ARG_MAX` - 1024; - if($opt::max_chars) { -- if($opt::max_chars <= $cached_limit) { -+ if($opt::max_chars <= $Limits::Command::line_max_len) { - $Limits::Command::line_max_len = $opt::max_chars; - } else { - ::warning("Value for -s option ", -- "should be < $cached_limit.\n"); -+ "should be < $Limits::Command::line_max_len.\n"); - } - } - } Property changes on: head/sysutils/parallel/files/patch-src__parallel ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/parallel/files/patch-src-Makefile.in =================================================================== --- head/sysutils/parallel/files/patch-src-Makefile.in (nonexistent) +++ head/sysutils/parallel/files/patch-src-Makefile.in (revision 365757) @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2014-08-23 06:30:21.000000000 +0800 ++++ src/Makefile.in 2014-08-24 00:36:21.359988465 +0800 +@@ -525,7 +525,7 @@ + + install-exec-hook: + rm $(DESTDIR)$(bindir)/sem || true +- $(LN_S) $(DESTDIR)$(bindir)/parallel $(DESTDIR)$(bindir)/sem ++ $(LN_S) parallel $(DESTDIR)$(bindir)/sem + + # Build documentation file if the tool to build exists. + # Otherwise: Use the distributed version Property changes on: head/sysutils/parallel/files/patch-src-Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property