diff --git a/NEWS b/NEWS index d94d7180..4801e754 100644 --- a/NEWS +++ b/NEWS @@ -2,11 +2,24 @@ New in this release: +* No new features. This is a candidate for a stable release. + * Bug fixes and man page updates. News about GNU Parallel: -* <<>> +* Separate arguments with a custom separator in GNU Parallel + https://boxofcuriosities.co.uk/post/separate-arguments-with-a-custom-separator-in-gnu-parallel + +* GNU parallel is underrated + https://amontalenti.com/2021/11/10/parallel + +* Unlocking the Power of Supercomputers: My HPC Adventure with 2800 + Cores and GNU Parallel + https://augalip.com/2024/03/10/unlocking-the-power-of-supercomputers-my-hpc-adventure-with-2800-cores-and-gnu-parallel/ + +* Converting WebP Images to PNG Using parallel and dwebp + https://bytefreaks.net/gnulinux/bash/converting-webp-images-to-png-using-parallel-and-dwebp 20240922 diff --git a/README b/README index da6cd45d..e837bac8 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-20240922.tar.bz2 - wget https://ftpmirror.gnu.org/parallel/parallel-20240922.tar.bz2.sig - gpg parallel-20240922.tar.bz2.sig - bzip2 -dc parallel-20240922.tar.bz2 | tar xvf - - cd parallel-20240922 + wget https://ftpmirror.gnu.org/parallel/parallel-20241022.tar.bz2 + wget https://ftpmirror.gnu.org/parallel/parallel-20241022.tar.bz2.sig + gpg parallel-20241022.tar.bz2.sig + bzip2 -dc parallel-20241022.tar.bz2 | tar xvf - + cd parallel-20241022 ./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-20240922.tar.bz2 - wget https://ftpmirror.gnu.org/parallel/parallel-20240922.tar.bz2.sig - gpg parallel-20240922.tar.bz2.sig - bzip2 -dc parallel-20240922.tar.bz2 | tar xvf - - cd parallel-20240922 + wget https://ftpmirror.gnu.org/parallel/parallel-20241022.tar.bz2 + wget https://ftpmirror.gnu.org/parallel/parallel-20241022.tar.bz2.sig + gpg parallel-20241022.tar.bz2.sig + bzip2 -dc parallel-20241022.tar.bz2 | tar xvf - + cd parallel-20241022 ./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. (2024, September 22). GNU Parallel 20240922 ('Gold Apollo AR924'). - Zenodo. https://doi.org/10.5281/zenodo.13826092 + Tange, O. (2024, October 22). GNU Parallel 20241022 ('Sinwar Nasrallah'). + Zenodo. https://doi.org/10.5281/zenodo.13957646 Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free Software Foundation, Inc. diff --git a/configure b/configure index f9956d55..e8b16e27 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 20240922. +# Generated by GNU Autoconf 2.71 for parallel 20241022. # # Report bugs to . # @@ -610,8 +610,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='parallel' PACKAGE_TARNAME='parallel' -PACKAGE_VERSION='20240922' -PACKAGE_STRING='parallel 20240922' +PACKAGE_VERSION='20241022' +PACKAGE_STRING='parallel 20241022' 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 20240922 to adapt to many kinds of systems. +\`configure' configures parallel 20241022 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 20240922:";; + short | recursive ) echo "Configuration of parallel 20241022:";; 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 20240922 +parallel configure 20241022 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 20240922, which was +It was created by parallel $as_me 20241022, 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='20240922' + VERSION='20241022' 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 20240922, which was +This file was extended by parallel $as_me 20241022, 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 20240922 +parallel config.status 20241022 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 2379c54a..4b8ba6a1 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([parallel],[20240922],[bug-parallel@gnu.org]) +AC_INIT([parallel],[20241022],[bug-parallel@gnu.org]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([ diff --git a/doc/haikus b/doc/haikus index 1cf06b08..0d4f66af 100644 --- a/doc/haikus +++ b/doc/haikus @@ -134,9 +134,6 @@ write a haiku about gnu parallel and the :::+ option Using [GNU Parallel is] super easy if you use xargs, and it is magic for making things multi-process. Then adding in the ssh magic it can do it is an incredible tool that is completely underutilized. -- Ancients @Ancients@twitter - GNU Parallel is one of the most helpful tools I've been using recently, and it's just something like: parallel -j4 'gzip {}' ::: folder/*.csv - -- Milton Pividori @miltondp@twitter - This is a fantastic tool, and I wish I had upgraded from xargs years ago! -- Stuart Anderson @@ -224,6 +221,9 @@ https://negfeedback.blogspot.com/2020/05/indispensable-command-line-tools.html === Used === + GNU Parallel is one of the most helpful tools I've been using recently, and it's just something like: parallel -j4 'gzip {}' ::: folder/*.csv + -- Milton Pividori @miltondp@twitter + Recently executed a flawless live data migration of ~2.4pb using GNU parallel for scale and bash scripts. -- @mechanicker@twitter Dhruva diff --git a/doc/release_new_version b/doc/release_new_version index 49b2c0a6..809fe3ad 100644 --- a/doc/release_new_version +++ b/doc/release_new_version @@ -195,6 +195,7 @@ git branch premaster Add tar.bz2 [Start upload] and [Publish]. + == Update documentation == Update version number + 1 @@ -217,6 +218,7 @@ Modified => alpha make testurls + == Check REUSE == make reuse @@ -226,7 +228,7 @@ https://api.reuse.software/status/git.savannah.gnu.org/git/parallel == Update Savannah == -file:///home/tange/privat/parallel/doc/release_new_version +perl -ne '/^Subject:/..0 and print' < doc/release_new_version | clipboard Content from release mail: @@ -236,10 +238,6 @@ Test URLs. https://savannah.gnu.org/news/approve.php?group=parallel -== Update Freshmeat == - -// FreeCode is dying -http://freshmeat.net/projects/parallel/releases/new == Update Mastodon Twitter == @@ -252,6 +250,7 @@ See the intro videos pi.dk/1 GNU Parallel - for people who live life in the parallel lane. + == Send announce == http://groups.google.com/group/comp.unix.shell/post @@ -268,25 +267,30 @@ from:tange@gnu.org to:parallel@gnu.org, bug-parallel@gnu.org stable-bcc: Jesse Alama -Subject: GNU Parallel 20240922 ('Gold Apollo AR924') released +Subject: GNU Parallel 20241022 ('Sinwar Nasrallah') released -GNU Parallel 20240922 ('Gold Apollo AR924') has been released. It is available for download at: lbry://@GnuParallel:4 +GNU Parallel 20241022 ('Sinwar Nasrallah') has been released. It is available for download at: lbry://@GnuParallel:4 Quote of the month: - Recently executed a flawless live data migration of ~2.4pb using GNU parallel for scale and bash scripts. - -- @mechanicker@twitter Dhruva + GNU Parallel is one of the most helpful tools I've been using recently, and it's just something like: parallel -j4 'gzip {}' ::: folder/*.csv + -- Milton Pividori @miltondp@twitter New in this release: -* --fast disables a lot of functionality to speed up running jobs. +* No new features. This is a candidate for a stable release. * Bug fixes and man page updates. News about GNU Parallel: -* Job requiring GNU Parallel knowledge - https://www.capgemini.com/ca-en/jobs/Id6D4pEBZ6aB2WPS2aAJ/systems-engineer/ +* Separate arguments with a custom separator in GNU Parallel https://boxofcuriosities.co.uk/post/separate-arguments-with-a-custom-separator-in-gnu-parallel + +* GNU parallel is underrated https://amontalenti.com/2021/11/10/parallel + +* Unlocking the Power of Supercomputers: My HPC Adventure with 2800 Cores and GNU Parallel https://augalip.com/2024/03/10/unlocking-the-power-of-supercomputers-my-hpc-adventure-with-2800-cores-and-gnu-parallel/ + +* Converting WebP Images to PNG Using parallel and dwebp https://bytefreaks.net/gnulinux/bash/converting-webp-images-to-png-using-parallel-and-dwebp GNU Parallel - For people who live life in the parallel lane. diff --git a/packager/obs/home-tange/parallel/.osc/_files b/packager/obs/home-tange/parallel/.osc/_files index d90a3399..0e7a6497 100644 --- a/packager/obs/home-tange/parallel/.osc/_files +++ b/packager/obs/home-tange/parallel/.osc/_files @@ -1,9 +1,10 @@ - + - - - - - - + + + + + + + diff --git a/packager/obs/home-tange/parallel/.osc/parallel.spec b/packager/obs/home-tange/parallel/.osc/parallel.spec index 708822bd..16feff45 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: 20240922 +Version: 20241022 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 5b8c2464..a47611b3 100755 --- a/src/env_parallel.ash +++ b/src/env_parallel.ash @@ -601,7 +601,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 f87743c1..d7e8e55b 100755 --- a/src/env_parallel.bash +++ b/src/env_parallel.bash @@ -605,7 +605,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 8496de34..c40d8c69 100755 --- a/src/env_parallel.dash +++ b/src/env_parallel.dash @@ -601,7 +601,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 fd07d5ed..6dbd3f60 100755 --- a/src/env_parallel.ksh +++ b/src/env_parallel.ksh @@ -601,7 +601,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 7fae8a19..9300f62f 100644 --- a/src/env_parallel.mksh +++ b/src/env_parallel.mksh @@ -570,7 +570,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 edbcebae..c9532170 100755 --- a/src/env_parallel.sh +++ b/src/env_parallel.sh @@ -601,7 +601,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 bbd76251..e38cef14 100755 --- a/src/env_parallel.zsh +++ b/src/env_parallel.zsh @@ -601,7 +601,7 @@ _parset_main() { fi if [ "$_parset_NAME" = "--version" ] ; then # shellcheck disable=SC2006 - echo "parset 20240922 (GNU parallel `parallel --minversion 1`)" + echo "parset 20241022 (GNU parallel `parallel --minversion 1`)" echo "Copyright (C) 2007-2024 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 eba8be8f..7bc6815b 100755 --- a/src/niceload +++ b/src/niceload @@ -26,7 +26,7 @@ use strict; use Getopt::Long; $Global::progname="niceload"; -$Global::version = 20240922; +$Global::version = 20241022; 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 647ad449..71a2c976 100755 --- a/src/parallel +++ b/src/parallel @@ -2888,7 +2888,7 @@ sub check_invalid_option_combinations() { sub init_globals() { # Defaults: - $Global::version = 20241017; + $Global::version = 20241022; $Global::progname = 'parallel'; $::name = "GNU Parallel"; $Global::infinity = 2**31; @@ -5946,8 +5946,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. (2024, September 22). GNU Parallel 20240922 ('Gold Apollo AR924').", - " Zenodo. https://doi.org/10.5281/zenodo.13826092", + " Tange, O. (2024, October 22). GNU Parallel 20241022 ('Sinwar Nasrallah').", + " Zenodo. https://doi.org/10.5281/zenodo.13957646", "", # Before changing these lines, please read # https://www.gnu.org/software/parallel/parallel_design.html#citation-notice @@ -5979,8 +5979,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. (2024, September 22). GNU Parallel 20240922 ('Gold Apollo AR924').", - " Zenodo. https://doi.org/10.5281/zenodo.13826092", + " Tange, O. (2024, October 22). GNU Parallel 20241022 ('Sinwar Nasrallah').", + " Zenodo. https://doi.org/10.5281/zenodo.13957646", "", # Before changing these line, please read # https://www.gnu.org/software/parallel/parallel_design.html#citation-notice and @@ -6106,20 +6106,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_2024_13826092,", + "\@software{tange_2024_13957646,", " author = {Tange, Ole},", - " title = {GNU Parallel 20240922 ('Gold Apollo AR924')},", - " month = Sep,", + " title = {GNU Parallel 20241022 ('Sinwar Nasrallah')},", + " month = Oct,", " year = 2024,", " 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.13826092},", - " url = {https://doi.org/10.5281/zenodo.13826092}", + " doi = {10.5281/zenodo.13957646},", + " url = {https://doi.org/10.5281/zenodo.13957646}", "}", "", - "(Feel free to use \\nocite{tange_2024_13826092})", + "(Feel free to use \\nocite{tange_2024_13957646})", "", # 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 f8a8b922..6da27fe2 100755 --- a/src/parsort +++ b/src/parsort @@ -137,7 +137,7 @@ GetOptions( "help" => \$opt::dummy, ) || exit(255); $Global::progname = ($0 =~ m:(^|/)([^/]+)$:)[1]; -$Global::version = 20240922; +$Global::version = 20241022; if($opt::version) { version(); exit 0; } # Remove -D and --parallel=N my @s = (grep { ! /^-D$|^--parallel=\S+$/ } diff --git a/src/sql b/src/sql index fc34fba2..0476108f 100755 --- a/src/sql +++ b/src/sql @@ -670,7 +670,7 @@ $Global::Initfile && unlink $Global::Initfile; exit ($err); sub parse_options { - $Global::version = 20240922; + $Global::version = 20241022; $Global::progname = 'sql'; # This must be done first as this may exec myself