mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 05:57:54 +00:00
Released as 20160722 ('Brexit')
This commit is contained in:
parent
1082b5ca02
commit
0ef41e79aa
57
NEWS
57
NEWS
|
@ -1,3 +1,60 @@
|
||||||
|
20160722
|
||||||
|
|
||||||
|
* env_parallel is now ready for wider testing. It is still beta
|
||||||
|
quality.
|
||||||
|
|
||||||
|
* env_parallel is heavily modified for all shells and testing has been
|
||||||
|
increased.
|
||||||
|
|
||||||
|
* Selectively choosing what to export using --env now works for
|
||||||
|
env_parallel (bash, csh, fish, ksh, pdksh, tcsh, zsh).
|
||||||
|
|
||||||
|
* --round-robin now gives more work to a job that processes faster
|
||||||
|
instead of same amount to all jobs.
|
||||||
|
|
||||||
|
* --pipepart works on block devices on GNU/Linux.
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: HybPiper: Extracting Coding Sequence and
|
||||||
|
Introns for Phylogenetics from High-Throughput Sequencing Reads
|
||||||
|
Using Target Enrichment
|
||||||
|
http://www.bioone.org/doi/full/10.3732/apps.1600016
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: StrAuto - Automation and Parallelization
|
||||||
|
of STRUCTURE Analysis
|
||||||
|
http://www.crypticlineage.net/download/strauto/strauto_doc.pdf
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: Tools and techniques for computational
|
||||||
|
reproducibility
|
||||||
|
http://gigascience.biomedcentral.com/articles/10.1186/s13742-016-0135-4
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: FlashPCA: fast sparse canonical correlation analysis of genomic data http://biorxiv.org/content/biorxiv/suppl/2016/04/06/047217.DC1/047217-1.pdf
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: Computational Design of DNA-Binding
|
||||||
|
Proteins
|
||||||
|
http://link.springer.com/protocol/10.1007/978-1-4939-3569-7_16
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: Math Indexer and Searcher under the Hood:
|
||||||
|
Fine-tuning Query Expansion and Unification Strategies
|
||||||
|
http://research.nii.ac.jp/ntcir/workshop/OnlineProceedings12/pdf/ntcir/MathIR/05-NTCIR12-MathIR-RuzickaM.pdf
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: The Evolution and Fate of
|
||||||
|
Super-Chandrasekhar Mass White Dwarf Merger Remnants
|
||||||
|
http://arxiv.org/pdf/1606.02300.pdf
|
||||||
|
|
||||||
|
* GNU Parallel was cited in: Evaluation of Coastal Scatterometer
|
||||||
|
Products
|
||||||
|
https://mdc.coaps.fsu.edu/scatterometry/meeting/docs/2016/Thu_AM/coastal-poster.pdf
|
||||||
|
|
||||||
|
* GNU Parallel was used in: https://github.com/splitice/bulkdnsblcheck
|
||||||
|
|
||||||
|
* The iconv slurp misfeature
|
||||||
|
http://www.openfusion.net/linux/iconv_slurp_misfeature
|
||||||
|
|
||||||
|
* แบบว่า CPU เหลือ https://veer66.wordpress.com/2016/06/15/gnu-parallel/
|
||||||
|
|
||||||
|
* Bug fixes and man page updates.
|
||||||
|
|
||||||
|
|
||||||
20160622
|
20160622
|
||||||
|
|
||||||
* $PATH can now be exported using --env PATH. Useful if GNU Parallel
|
* $PATH can now be exported using --env PATH. Useful if GNU Parallel
|
||||||
|
|
12
README
12
README
|
@ -40,9 +40,9 @@ document.
|
||||||
|
|
||||||
Full installation of GNU Parallel is as simple as:
|
Full installation of GNU Parallel is as simple as:
|
||||||
|
|
||||||
wget http://ftpmirror.gnu.org/parallel/parallel-20160720.tar.bz2
|
wget http://ftpmirror.gnu.org/parallel/parallel-20160722.tar.bz2
|
||||||
bzip2 -dc parallel-20160720.tar.bz2 | tar xvf -
|
bzip2 -dc parallel-20160722.tar.bz2 | tar xvf -
|
||||||
cd parallel-20160720
|
cd parallel-20160722
|
||||||
./configure && make && sudo make install
|
./configure && make && sudo make install
|
||||||
|
|
||||||
|
|
||||||
|
@ -51,9 +51,9 @@ Full installation of GNU Parallel is as simple as:
|
||||||
If you are not root you can add ~/bin to your path and install in
|
If you are not root you can add ~/bin to your path and install in
|
||||||
~/bin and ~/share:
|
~/bin and ~/share:
|
||||||
|
|
||||||
wget http://ftpmirror.gnu.org/parallel/parallel-20160720.tar.bz2
|
wget http://ftpmirror.gnu.org/parallel/parallel-20160722.tar.bz2
|
||||||
bzip2 -dc parallel-20160720.tar.bz2 | tar xvf -
|
bzip2 -dc parallel-20160722.tar.bz2 | tar xvf -
|
||||||
cd parallel-20160720
|
cd parallel-20160722
|
||||||
./configure --prefix=$HOME && make && make install
|
./configure --prefix=$HOME && make && make install
|
||||||
|
|
||||||
Or if your system lacks 'make' you can simply copy src/parallel
|
Or if your system lacks 'make' you can simply copy src/parallel
|
||||||
|
|
20
configure
vendored
20
configure
vendored
|
@ -1,6 +1,6 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.69 for parallel 20160720.
|
# Generated by GNU Autoconf 2.69 for parallel 20160722.
|
||||||
#
|
#
|
||||||
# Report bugs to <bug-parallel@gnu.org>.
|
# Report bugs to <bug-parallel@gnu.org>.
|
||||||
#
|
#
|
||||||
|
@ -579,8 +579,8 @@ MAKEFLAGS=
|
||||||
# Identity of this package.
|
# Identity of this package.
|
||||||
PACKAGE_NAME='parallel'
|
PACKAGE_NAME='parallel'
|
||||||
PACKAGE_TARNAME='parallel'
|
PACKAGE_TARNAME='parallel'
|
||||||
PACKAGE_VERSION='20160720'
|
PACKAGE_VERSION='20160722'
|
||||||
PACKAGE_STRING='parallel 20160720'
|
PACKAGE_STRING='parallel 20160722'
|
||||||
PACKAGE_BUGREPORT='bug-parallel@gnu.org'
|
PACKAGE_BUGREPORT='bug-parallel@gnu.org'
|
||||||
PACKAGE_URL=''
|
PACKAGE_URL=''
|
||||||
|
|
||||||
|
@ -1203,7 +1203,7 @@ if test "$ac_init_help" = "long"; then
|
||||||
# Omit some internal or obsolete options to make the list less imposing.
|
# Omit some internal or obsolete options to make the list less imposing.
|
||||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||||
cat <<_ACEOF
|
cat <<_ACEOF
|
||||||
\`configure' configures parallel 20160720 to adapt to many kinds of systems.
|
\`configure' configures parallel 20160722 to adapt to many kinds of systems.
|
||||||
|
|
||||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
|
|
||||||
|
@ -1269,7 +1269,7 @@ fi
|
||||||
|
|
||||||
if test -n "$ac_init_help"; then
|
if test -n "$ac_init_help"; then
|
||||||
case $ac_init_help in
|
case $ac_init_help in
|
||||||
short | recursive ) echo "Configuration of parallel 20160720:";;
|
short | recursive ) echo "Configuration of parallel 20160722:";;
|
||||||
esac
|
esac
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
|
|
||||||
|
@ -1345,7 +1345,7 @@ fi
|
||||||
test -n "$ac_init_help" && exit $ac_status
|
test -n "$ac_init_help" && exit $ac_status
|
||||||
if $ac_init_version; then
|
if $ac_init_version; then
|
||||||
cat <<\_ACEOF
|
cat <<\_ACEOF
|
||||||
parallel configure 20160720
|
parallel configure 20160722
|
||||||
generated by GNU Autoconf 2.69
|
generated by GNU Autoconf 2.69
|
||||||
|
|
||||||
Copyright (C) 2012 Free Software Foundation, Inc.
|
Copyright (C) 2012 Free Software Foundation, Inc.
|
||||||
|
@ -1362,7 +1362,7 @@ cat >config.log <<_ACEOF
|
||||||
This file contains any messages produced by compilers while
|
This file contains any messages produced by compilers while
|
||||||
running configure, to aid debugging if configure makes a mistake.
|
running configure, to aid debugging if configure makes a mistake.
|
||||||
|
|
||||||
It was created by parallel $as_me 20160720, which was
|
It was created by parallel $as_me 20160722, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
$ $0 $@
|
$ $0 $@
|
||||||
|
@ -2225,7 +2225,7 @@ fi
|
||||||
|
|
||||||
# Define the identity of the package.
|
# Define the identity of the package.
|
||||||
PACKAGE='parallel'
|
PACKAGE='parallel'
|
||||||
VERSION='20160720'
|
VERSION='20160722'
|
||||||
|
|
||||||
|
|
||||||
cat >>confdefs.h <<_ACEOF
|
cat >>confdefs.h <<_ACEOF
|
||||||
|
@ -2867,7 +2867,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
||||||
# report actual input values of CONFIG_FILES etc. instead of their
|
# report actual input values of CONFIG_FILES etc. instead of their
|
||||||
# values after options handling.
|
# values after options handling.
|
||||||
ac_log="
|
ac_log="
|
||||||
This file was extended by parallel $as_me 20160720, which was
|
This file was extended by parallel $as_me 20160722, which was
|
||||||
generated by GNU Autoconf 2.69. Invocation command line was
|
generated by GNU Autoconf 2.69. Invocation command line was
|
||||||
|
|
||||||
CONFIG_FILES = $CONFIG_FILES
|
CONFIG_FILES = $CONFIG_FILES
|
||||||
|
@ -2929,7 +2929,7 @@ _ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||||
ac_cs_version="\\
|
ac_cs_version="\\
|
||||||
parallel config.status 20160720
|
parallel config.status 20160722
|
||||||
configured by $0, generated by GNU Autoconf 2.69,
|
configured by $0, generated by GNU Autoconf 2.69,
|
||||||
with options \\"\$ac_cs_config\\"
|
with options \\"\$ac_cs_config\\"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([parallel], [20160720], [bug-parallel@gnu.org])
|
AC_INIT([parallel], [20160722], [bug-parallel@gnu.org])
|
||||||
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_FILES([
|
AC_CONFIG_FILES([
|
||||||
|
|
|
@ -227,10 +227,11 @@ GNU Parallel 20160722 ('Brexit') <<[stable]>> has been released. It is available
|
||||||
|
|
||||||
Haiku of the month:
|
Haiku of the month:
|
||||||
|
|
||||||
<<>>
|
Pipes are fast and good.
|
||||||
|
Use them in your programs, too.
|
||||||
|
Use GNU Parallel
|
||||||
-- Ole Tange
|
-- Ole Tange
|
||||||
|
|
||||||
|
|
||||||
New in this release:
|
New in this release:
|
||||||
|
|
||||||
* env_parallel is now ready for wider testing. It is still beta quality.
|
* env_parallel is now ready for wider testing. It is still beta quality.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: Shell tool for executing jobs in parallel
|
Summary: Shell tool for executing jobs in parallel
|
||||||
Name: parallel
|
Name: parallel
|
||||||
Version: 20160622
|
Version: 20160722
|
||||||
Release: 1.1
|
Release: 1.1
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Productivity/File utilities
|
Group: Productivity/File utilities
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
use strict;
|
use strict;
|
||||||
use Getopt::Long;
|
use Getopt::Long;
|
||||||
$Global::progname="niceload";
|
$Global::progname="niceload";
|
||||||
$Global::version = 20160720;
|
$Global::version = 20160722;
|
||||||
Getopt::Long::Configure("bundling","require_order");
|
Getopt::Long::Configure("bundling","require_order");
|
||||||
get_options_from_array(\@ARGV) || die_usage();
|
get_options_from_array(\@ARGV) || die_usage();
|
||||||
if($opt::version) {
|
if($opt::version) {
|
||||||
|
|
|
@ -1208,7 +1208,7 @@ sub check_invalid_option_combinations {
|
||||||
|
|
||||||
sub init_globals {
|
sub init_globals {
|
||||||
# Defaults:
|
# Defaults:
|
||||||
$Global::version = 20160720;
|
$Global::version = 20160722;
|
||||||
$Global::progname = 'parallel';
|
$Global::progname = 'parallel';
|
||||||
$Global::infinity = 2**31;
|
$Global::infinity = 2**31;
|
||||||
$Global::debug = 0;
|
$Global::debug = 0;
|
||||||
|
|
2
src/sql
2
src/sql
|
@ -566,7 +566,7 @@ $Global::Initfile && unlink $Global::Initfile;
|
||||||
exit ($err);
|
exit ($err);
|
||||||
|
|
||||||
sub parse_options {
|
sub parse_options {
|
||||||
$Global::version = 20160720;
|
$Global::version = 20160722;
|
||||||
$Global::progname = 'sql';
|
$Global::progname = 'sql';
|
||||||
|
|
||||||
# This must be done first as this may exec myself
|
# This must be done first as this may exec myself
|
||||||
|
|
|
@ -53,7 +53,7 @@ par_linebuffer_matters_compress_tag() {
|
||||||
echo "### (--linebuffer) --compress --tag should give different output"
|
echo "### (--linebuffer) --compress --tag should give different output"
|
||||||
random_data_with_id_prepended() {
|
random_data_with_id_prepended() {
|
||||||
perl -pe 's/^/'$1'/' /dev/urandom |
|
perl -pe 's/^/'$1'/' /dev/urandom |
|
||||||
pv -qL 300000 | head -c 3000000
|
pv -qL 300000 | head -c 10000000
|
||||||
}
|
}
|
||||||
export -f random_data_with_id_prepended
|
export -f random_data_with_id_prepended
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue