From b11dadd0d0032d359aefa798134d026a46e8aa45 Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Thu, 22 Sep 2022 20:15:32 +0200 Subject: [PATCH] Released as 20220922 ('Elizabeth') --- README | 24 +++++++++---------- configure | 20 ++++++++-------- configure.ac | 2 +- packager/obs/home-tange/parallel/.osc/_files | 12 +++++----- .../home-tange/parallel/.osc/parallel.spec | 2 +- src/env_parallel.ash | 2 +- src/env_parallel.bash | 2 +- src/env_parallel.dash | 2 +- src/env_parallel.ksh | 2 +- src/env_parallel.mksh | 2 +- src/env_parallel.sh | 2 +- src/env_parallel.zsh | 2 +- src/niceload | 2 +- src/parallel | 22 ++++++++--------- src/parsort | 2 +- src/sphinx/source/sphinx.rst | 6 +++++ src/sql | 2 +- 17 files changed, 57 insertions(+), 51 deletions(-) diff --git a/README b/README index a6f411ad..fd0fd556 100644 --- a/README +++ b/README @@ -57,11 +57,11 @@ document. Full installation of GNU Parallel is as simple as: - wget https://ftpmirror.gnu.org/parallel/parallel-20220822.tar.bz2 - wget https://ftpmirror.gnu.org/parallel/parallel-20220822.tar.bz2.sig - gpg parallel-20220822.tar.bz2.sig - bzip2 -dc parallel-20220822.tar.bz2 | tar xvf - - cd parallel-20220822 + wget https://ftpmirror.gnu.org/parallel/parallel-20220922.tar.bz2 + wget https://ftpmirror.gnu.org/parallel/parallel-20220922.tar.bz2.sig + gpg parallel-20220922.tar.bz2.sig + bzip2 -dc parallel-20220922.tar.bz2 | tar xvf - + cd parallel-20220922 ./configure && make && sudo make install @@ -70,11 +70,11 @@ 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-20220822.tar.bz2 - wget https://ftpmirror.gnu.org/parallel/parallel-20220822.tar.bz2.sig - gpg parallel-20220822.tar.bz2.sig - bzip2 -dc parallel-20220822.tar.bz2 | tar xvf - - cd parallel-20220822 + wget https://ftpmirror.gnu.org/parallel/parallel-20220922.tar.bz2 + wget https://ftpmirror.gnu.org/parallel/parallel-20220922.tar.bz2.sig + gpg parallel-20220922.tar.bz2.sig + bzip2 -dc parallel-20220922.tar.bz2 | tar xvf - + cd parallel-20220922 ./configure --prefix=$HOME && make && make install Or if your system lacks 'make' you can simply copy src/parallel @@ -122,8 +122,8 @@ will love you for it. When using programs that use GNU Parallel to process data for publication please cite: - Tange, O. (2022, August 22). GNU Parallel 20220822 ('Rushdie'). - Zenodo. https://doi.org/10.5281/zenodo.7015730 + Tange, O. (2022, September 22). GNU Parallel 20220922 ('Elizabeth'). + Zenodo. https://doi.org/10.5281/zenodo.7105792 Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software Foundation, Inc. diff --git a/configure b/configure index ba94e569..dd7313fe 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.71 for parallel 20220822. +# Generated by GNU Autoconf 2.71 for parallel 20220922. # # Report bugs to . # @@ -610,8 +610,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='parallel' PACKAGE_TARNAME='parallel' -PACKAGE_VERSION='20220822' -PACKAGE_STRING='parallel 20220822' +PACKAGE_VERSION='20220922' +PACKAGE_STRING='parallel 20220922' PACKAGE_BUGREPORT='bug-parallel@gnu.org' PACKAGE_URL='' @@ -1246,7 +1246,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 20220822 to adapt to many kinds of systems. +\`configure' configures parallel 20220922 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1313,7 +1313,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of parallel 20220822:";; + short | recursive ) echo "Configuration of parallel 20220922:";; esac cat <<\_ACEOF @@ -1390,7 +1390,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -parallel configure 20220822 +parallel configure 20220922 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -1427,7 +1427,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 20220822, which was +It was created by parallel $as_me 20220922, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -2379,7 +2379,7 @@ fi # Define the identity of the package. PACKAGE='parallel' - VERSION='20220822' + VERSION='20220922' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -3026,7 +3026,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 20220822, which was +This file was extended by parallel $as_me 20220922, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3090,7 +3090,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -parallel config.status 20220822 +parallel config.status 20220922 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 28766b5b..38c4aff3 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([parallel],[20220822],[bug-parallel@gnu.org]) +AC_INIT([parallel],[20220922],[bug-parallel@gnu.org]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([ diff --git a/packager/obs/home-tange/parallel/.osc/_files b/packager/obs/home-tange/parallel/.osc/_files index 64b17b17..51d3ddf8 100644 --- a/packager/obs/home-tange/parallel/.osc/_files +++ b/packager/obs/home-tange/parallel/.osc/_files @@ -1,7 +1,7 @@ - - - - - - + + + + + + diff --git a/packager/obs/home-tange/parallel/.osc/parallel.spec b/packager/obs/home-tange/parallel/.osc/parallel.spec index 0161d9c3..9c5b1315 100644 --- a/packager/obs/home-tange/parallel/.osc/parallel.spec +++ b/packager/obs/home-tange/parallel/.osc/parallel.spec @@ -1,7 +1,7 @@ Summary: Shell tool for executing jobs in parallel Name: parallel -Version: 20220830 +Version: 20220922 Release: 2.1 License: GPL-3.0-or-later Group: Productivity/File utilities diff --git a/src/env_parallel.ash b/src/env_parallel.ash index 03ad09a4..365f5385 100755 --- a/src/env_parallel.ash +++ b/src/env_parallel.ash @@ -395,7 +395,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/env_parallel.bash b/src/env_parallel.bash index 693ea870..6cba6697 100755 --- a/src/env_parallel.bash +++ b/src/env_parallel.bash @@ -397,7 +397,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/env_parallel.dash b/src/env_parallel.dash index 51ead34b..1a75b23f 100755 --- a/src/env_parallel.dash +++ b/src/env_parallel.dash @@ -395,7 +395,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/env_parallel.ksh b/src/env_parallel.ksh index c703e606..c3de783a 100755 --- a/src/env_parallel.ksh +++ b/src/env_parallel.ksh @@ -378,7 +378,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/env_parallel.mksh b/src/env_parallel.mksh index 989eb122..d47b261d 100644 --- a/src/env_parallel.mksh +++ b/src/env_parallel.mksh @@ -380,7 +380,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/env_parallel.sh b/src/env_parallel.sh index 7e622cf4..dedcb0cd 100755 --- a/src/env_parallel.sh +++ b/src/env_parallel.sh @@ -395,7 +395,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/env_parallel.zsh b/src/env_parallel.zsh index cf4435a0..209c63dd 100755 --- a/src/env_parallel.zsh +++ b/src/env_parallel.zsh @@ -370,7 +370,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20220822 (GNU parallel `parallel --minversion 1`)" + echo "parset 20220922 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software" echo "Foundation, Inc." echo "License GPLv3+: GNU GPL version 3 or later " diff --git a/src/niceload b/src/niceload index 85a6e5ec..56abd226 100755 --- a/src/niceload +++ b/src/niceload @@ -26,7 +26,7 @@ use strict; use Getopt::Long; $Global::progname="niceload"; -$Global::version = 20220822; +$Global::version = 20220922; 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 01c658e9..a8d8e8f1 100755 --- a/src/parallel +++ b/src/parallel @@ -2682,7 +2682,7 @@ sub check_invalid_option_combinations() { sub init_globals() { # Defaults: - $Global::version = 20220822; + $Global::version = 20220922; $Global::progname = 'parallel'; $::name = "GNU Parallel"; $Global::infinity = 2**31; @@ -5562,8 +5562,8 @@ sub usage() { "If you use programs that use GNU Parallel to process data for an article in a", "scientific publication, please cite:", "", - " Tange, O. (2022, August 22). GNU Parallel 20220822 ('Rushdie').", - " Zenodo. https://doi.org/10.5281/zenodo.7015730", + " Tange, O. (2022, September 22). GNU Parallel 20220922 ('Elizabeth').", + " Zenodo. https://doi.org/10.5281/zenodo.7105792", "", # Before changing these lines, please read # https://www.gnu.org/software/parallel/parallel_design.html#citation-notice @@ -5595,8 +5595,8 @@ sub citation_notice() { "If you use programs that use GNU Parallel to process data for an article in a", "scientific publication, please cite:", "", - " Tange, O. (2022, August 22). GNU Parallel 20220822 ('Rushdie').", - " Zenodo. https://doi.org/10.5281/zenodo.7015730", + " Tange, O. (2022, September 22). GNU Parallel 20220922 ('Elizabeth').", + " Zenodo. https://doi.org/10.5281/zenodo.7105792", "", # Before changing these line, please read # https://www.gnu.org/software/parallel/parallel_design.html#citation-notice and @@ -5723,20 +5723,20 @@ sub citation() { "If you use programs that use GNU Parallel to process data for an article in a", "scientific publication, please cite:", "", - "\@software{tange_2022_7015730,", + "\@software{tange_2022_7105792,", " author = {Tange, Ole},", - " title = {GNU Parallel 20220822 ('Rushdie')},", - " month = Aug,", + " title = {GNU Parallel 20220922 ('Elizabeth')},", + " month = Sep,", " year = 2022,", " note = {{GNU Parallel is a general parallelizer to run", " multiple serial command line programs in parallel", " without changing them.}},", " publisher = {Zenodo},", - " doi = {10.5281/zenodo.7015730},", - " url = {https://doi.org/10.5281/zenodo.7015730}", + " doi = {10.5281/zenodo.7105792},", + " url = {https://doi.org/10.5281/zenodo.7105792}", "}", "", - "(Feel free to use \\nocite{tange_2022_7015730})", + "(Feel free to use \\nocite{tange_2022_7105792})", "", # Before changing these lines, please read # https://www.gnu.org/software/parallel/parallel_design.html#citation-notice and diff --git a/src/parsort b/src/parsort index f80123d5..0126f9e1 100755 --- a/src/parsort +++ b/src/parsort @@ -122,7 +122,7 @@ GetOptions( "help" => \$opt::dummy, ) || exit(255); $Global::progname = ($0 =~ m:(^|/)([^/]+)$:)[1]; -$Global::version = 20220822; +$Global::version = 20220922; if($opt::version) { version(); exit 0; } @Global::sortoptions = grep { ! /^-D$/ } shell_quote(@ARGV_before[0..($#ARGV_before-$#ARGV-1)]); diff --git a/src/sphinx/source/sphinx.rst b/src/sphinx/source/sphinx.rst index 98c1b90d..66e57fd9 100644 --- a/src/sphinx/source/sphinx.rst +++ b/src/sphinx/source/sphinx.rst @@ -16,6 +16,12 @@ Welcome to GNU Parallel's documentation! parallel +.. toctree:: + :maxdepth: 3 + :caption: parallel_examples + + parallel_examples + .. toctree:: :maxdepth: 3 :caption: sem diff --git a/src/sql b/src/sql index 030086db..39a46abc 100755 --- a/src/sql +++ b/src/sql @@ -667,7 +667,7 @@ $Global::Initfile && unlink $Global::Initfile; exit ($err); sub parse_options { - $Global::version = 20220822; + $Global::version = 20220922; $Global::progname = 'sql'; # This must be done first as this may exec myself