mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-21 21:47:54 +00:00
Released as 20130522 ('Rana Plaza').
This commit is contained in:
parent
e377032c5d
commit
0cb0cdde3e
17
NEWS
17
NEWS
|
@ -1,3 +1,20 @@
|
|||
20130522
|
||||
|
||||
* --ctrlc is now default if --pipe is not used; thus making it
|
||||
possible to kill remotely started jobs simply by pressing Ctrl-C.
|
||||
|
||||
* --timeout 200% now means kill jobs that take more than twice the
|
||||
time of the median run time of a job.
|
||||
|
||||
* Jobs are now distributed round robin when having mulitiple
|
||||
--sshlogin instead of filling up one --sshlogin at a time.
|
||||
|
||||
* niceload: darwin version of --io --mem --swap. Thanks to Anders F
|
||||
Björklund.
|
||||
|
||||
* Bug fixes and man page updates.
|
||||
|
||||
|
||||
20130422
|
||||
|
||||
* 10 seconds installation: wget -O - pi.dk/3 | sh
|
||||
|
|
|
@ -62,7 +62,7 @@ perl -i -pe "s/20\d\d\d\d\d\d/$YYYYMMDD/" parallel-*.tar.*directive
|
|||
gpg --clearsign parallel-$YYYYMMDD.tar.bz2.directive
|
||||
|
||||
cp doc/parallel.latest.directive parallel-latest.tar.bz2.directive
|
||||
perl -i -pe "s/20\d\d\d\d\d\d/latest/" parallel-latest.tar.*directive
|
||||
perl -i -pe "s/20\d\d\d\d\d\d/$YYYYMMDD/" parallel-latest.tar.*directive
|
||||
gpg --clearsign --yes parallel-latest.tar.bz2.directive
|
||||
|
||||
(echo "To check the signature run:";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
parallel (20110422-1) unstable; urgency=low
|
||||
parallel (20130522-1) unstable; urgency=low
|
||||
|
||||
* New upstream version
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ all:
|
|||
cd ../debian/ && make
|
||||
osc rm home\:tange/parallel/parallel_*.dsc || true
|
||||
cp ../debian/parallel_*.dsc ../debian/parallel_*.tar.gz home\:tange/parallel/
|
||||
cp `ls ../../parallel-*.tar.bz2|tail -n1` home\:tange/parallel/
|
||||
cp `ls ../../parallel-2*.tar.bz2|tail -n1` home\:tange/parallel/
|
||||
cd home\:tange/parallel/ && osc up
|
||||
cd home\:tange/parallel/ && parallel osc add ::: *.spec *.dsc *.tar.gz *.tar.bz2 && echo Src added OK || true
|
||||
cd home\:tange/parallel/ && osc ci -m "New release"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Summary: Shell tool for executing jobs in parallel
|
||||
Name: parallel
|
||||
Version: 20130422
|
||||
Version: 20130522
|
||||
Release: 1
|
||||
License: GPL
|
||||
Group: Productivity/File utilities
|
||||
|
|
Loading…
Reference in a new issue