diff --git a/NEWS b/NEWS index 01dca5f1..a295f277 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,29 @@ -20180122 +20180322 + +* niceload -p can now take multiple pids separated by comma + +* --timeout gives a warning when killing processes + +* --embed now uses the same code for all supported shells + +* --delay can now take arguments like 1h12m07s + +* Parallel. Straight from your command line + https://medium.com/@alonisser/parallel-straight-from-your-command-line-feb6db8b6cee + +* GNU Parallel was used in POAP-Parallelized Open Babel & Autodock + suite Pipeline https://github.com/inpacdb/POAP + +* Pi Cluster Parallel Script First Fire + https://chiefio.wordpress.com/2018/02/23/pi-cluster-parallel-script-first-fire/ + +* How to Restore MySQL Logical Backup at Maximum Speed + https://www.percona.com/blog/2018/02/22/restore-mysql-logical-backup-maximum-speed/ + +* Bug fixes and man page updates. + + +20180222 * --embed makes it possible to embed GNU parallel in a shell script. This is useful if you need to distribute your script to diff --git a/README b/README index 20473bb1..4e6c6282 100644 --- a/README +++ b/README @@ -44,9 +44,9 @@ document. Full installation of GNU Parallel is as simple as: - wget https://ftpmirror.gnu.org/parallel/parallel-20180222.tar.bz2 - bzip2 -dc parallel-20180222.tar.bz2 | tar xvf - - cd parallel-20180222 + wget https://ftpmirror.gnu.org/parallel/parallel-20180322.tar.bz2 + bzip2 -dc parallel-20180322.tar.bz2 | tar xvf - + cd parallel-20180322 ./configure && make && sudo make install @@ -55,9 +55,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 ~/bin and ~/share: - wget https://ftpmirror.gnu.org/parallel/parallel-20180222.tar.bz2 - bzip2 -dc parallel-20180222.tar.bz2 | tar xvf - - cd parallel-20180222 + wget https://ftpmirror.gnu.org/parallel/parallel-20180322.tar.bz2 + bzip2 -dc parallel-20180322.tar.bz2 | tar xvf - + cd parallel-20180322 ./configure --prefix=$HOME && make && make install Or if your system lacks 'make' you can simply copy src/parallel diff --git a/configure b/configure index f95da224..a4b886f5 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for parallel 20180222. +# Generated by GNU Autoconf 2.69 for parallel 20180322. # # Report bugs to . # @@ -579,8 +579,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='parallel' PACKAGE_TARNAME='parallel' -PACKAGE_VERSION='20180222' -PACKAGE_STRING='parallel 20180222' +PACKAGE_VERSION='20180322' +PACKAGE_STRING='parallel 20180322' PACKAGE_BUGREPORT='bug-parallel@gnu.org' PACKAGE_URL='' @@ -1214,7 +1214,7 @@ if test "$ac_init_help" = "long"; then # 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. cat <<_ACEOF -\`configure' configures parallel 20180222 to adapt to many kinds of systems. +\`configure' configures parallel 20180322 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1281,7 +1281,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of parallel 20180222:";; + short | recursive ) echo "Configuration of parallel 20180322:";; esac cat <<\_ACEOF @@ -1357,7 +1357,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -parallel configure 20180222 +parallel configure 20180322 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1374,7 +1374,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by parallel $as_me 20180222, which was +It was created by parallel $as_me 20180322, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2237,7 +2237,7 @@ fi # Define the identity of the package. PACKAGE='parallel' - VERSION='20180222' + VERSION='20180322' cat >>confdefs.h <<_ACEOF @@ -2880,7 +2880,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by parallel $as_me 20180222, which was +This file was extended by parallel $as_me 20180322, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -2942,7 +2942,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -parallel config.status 20180222 +parallel config.status 20180322 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index db6337c3..8f49e259 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([parallel], [20180222], [bug-parallel@gnu.org]) +AC_INIT([parallel], [20180322], [bug-parallel@gnu.org]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([ diff --git a/doc/release_new_version b/doc/release_new_version index 298867d3..f54bf7b4 100644 --- a/doc/release_new_version +++ b/doc/release_new_version @@ -4,7 +4,6 @@ Check that documentation is updated (compare to web): -Fixet for 20170622 git diff last-release-commit Unmodified beta since last version => production Unmodified alpha since last version => beta @@ -214,13 +213,21 @@ I don’t know how you have fun. New in this release: -https://medium.com/@alonisser/parallel-straight-from-your-command-line-feb6db8b6cee +* niceload -p can now take multiple pids separated by comma -https://github.com/inpacdb/POAP +* --timeout gives a warning when killing processes -https://chiefio.wordpress.com/2018/02/23/pi-cluster-parallel-script-first-fire/ +* --embed now uses the same code for all supported shells -https://www.percona.com/blog/2018/02/22/restore-mysql-logical-backup-maximum-speed/ +* --delay can now take arguments like 1h12m07s + +* Parallel. Straight from your command line https://medium.com/@alonisser/parallel-straight-from-your-command-line-feb6db8b6cee + +* GNU Parallel was used in POAP-Parallelized Open Babel & Autodock suite Pipeline https://github.com/inpacdb/POAP + +* Pi Cluster Parallel Script First Fire https://chiefio.wordpress.com/2018/02/23/pi-cluster-parallel-script-first-fire/ + +* How to Restore MySQL Logical Backup at Maximum Speed https://www.percona.com/blog/2018/02/22/restore-mysql-logical-backup-maximum-speed/ <> diff --git a/packager/obs/home:tange/parallel/.osc/_files b/packager/obs/home:tange/parallel/.osc/_files index 70d46759..2f026577 100644 --- a/packager/obs/home:tange/parallel/.osc/_files +++ b/packager/obs/home:tange/parallel/.osc/_files @@ -1,10 +1,6 @@ - - - - - - - - - + + + + + diff --git a/packager/obs/home:tange/parallel/.osc/parallel.spec b/packager/obs/home:tange/parallel/.osc/parallel.spec index 782274d5..a53a3c12 100644 --- a/packager/obs/home:tange/parallel/.osc/parallel.spec +++ b/packager/obs/home:tange/parallel/.osc/parallel.spec @@ -1,6 +1,6 @@ Summary: Shell tool for executing jobs in parallel Name: parallel -Version: 20180222 +Version: 20180322 Release: 1.2 License: GPL Group: Productivity/File utilities diff --git a/packager/obs/home:tange/parallel/parallel.spec b/packager/obs/home:tange/parallel/parallel.spec index 782274d5..a53a3c12 100644 --- a/packager/obs/home:tange/parallel/parallel.spec +++ b/packager/obs/home:tange/parallel/parallel.spec @@ -1,6 +1,6 @@ Summary: Shell tool for executing jobs in parallel Name: parallel -Version: 20180222 +Version: 20180322 Release: 1.2 License: GPL Group: Productivity/File utilities diff --git a/src/niceload b/src/niceload index 26776ca3..1d3bb2a3 100755 --- a/src/niceload +++ b/src/niceload @@ -24,7 +24,7 @@ use strict; use Getopt::Long; $Global::progname="niceload"; -$Global::version = 20180223; +$Global::version = 20180322; Getopt::Long::Configure("bundling","require_order"); get_options_from_array(\@ARGV) || die_usage(); if($opt::version) { diff --git a/src/parallel b/src/parallel index b69dc566..f298b0cc 100755 --- a/src/parallel +++ b/src/parallel @@ -1417,7 +1417,7 @@ sub check_invalid_option_combinations { sub init_globals { # Defaults: - $Global::version = 20180223; + $Global::version = 20180322; $Global::progname = 'parallel'; $Global::infinity = 2**31; $Global::debug = 0; diff --git a/src/sql b/src/sql index e5243a89..a59e8e2b 100755 --- a/src/sql +++ b/src/sql @@ -576,7 +576,7 @@ $Global::Initfile && unlink $Global::Initfile; exit ($err); sub parse_options { - $Global::version = 20180223; + $Global::version = 20180322; $Global::progname = 'sql'; # This must be done first as this may exec myself