Released as 20241222 ('Bashar')

This commit is contained in:
Ole Tange 2024-12-24 01:22:10 +01:00
parent 044c2306b1
commit 98c984131f
21 changed files with 73 additions and 69 deletions

9
NEWS
View file

@ -1,3 +1,12 @@
20241222
New in this release:
* No new features. This is a candidate for a stable release.
* Bug fixes and man page updates.
20241122
New in this release:

24
README
View file

@ -57,11 +57,11 @@ document.
Full installation of GNU Parallel is as simple as:
wget https://ftpmirror.gnu.org/parallel/parallel-20241122.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20241122.tar.bz2.sig
gpg parallel-20241122.tar.bz2.sig
bzip2 -dc parallel-20241122.tar.bz2 | tar xvf -
cd parallel-20241122
wget https://ftpmirror.gnu.org/parallel/parallel-20241222.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20241222.tar.bz2.sig
gpg parallel-20241222.tar.bz2.sig
bzip2 -dc parallel-20241222.tar.bz2 | tar xvf -
cd parallel-20241222
./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-20241122.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20241122.tar.bz2.sig
gpg parallel-20241122.tar.bz2.sig
bzip2 -dc parallel-20241122.tar.bz2 | tar xvf -
cd parallel-20241122
wget https://ftpmirror.gnu.org/parallel/parallel-20241222.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20241222.tar.bz2.sig
gpg parallel-20241222.tar.bz2.sig
bzip2 -dc parallel-20241222.tar.bz2 | tar xvf -
cd parallel-20241222
./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, November 22). GNU Parallel 20241122 ('Ahoo Daryaei').
Zenodo. https://doi.org/10.5281/zenodo.14207479
Tange, O. (2024, December 22). GNU Parallel 20241222 ('Bashar').
Zenodo. https://doi.org/10.5281/zenodo.14550073
Copyright (C) 2007-2022 Ole Tange, http://ole.tange.dk and Free
Software Foundation, Inc.

20
configure vendored
View file

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for parallel 20241122.
# Generated by GNU Autoconf 2.71 for parallel 20241222.
#
# Report bugs to <bug-parallel@gnu.org>.
#
@ -610,8 +610,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='parallel'
PACKAGE_TARNAME='parallel'
PACKAGE_VERSION='20241122'
PACKAGE_STRING='parallel 20241122'
PACKAGE_VERSION='20241222'
PACKAGE_STRING='parallel 20241222'
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 20241122 to adapt to many kinds of systems.
\`configure' configures parallel 20241222 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 20241122:";;
short | recursive ) echo "Configuration of parallel 20241222:";;
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 20241122
parallel configure 20241222
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 20241122, which was
It was created by parallel $as_me 20241222, 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='20241122'
VERSION='20241222'
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 20241122, which was
This file was extended by parallel $as_me 20241222, 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 20241122
parallel config.status 20241222
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"

View file

@ -1,4 +1,4 @@
AC_INIT([parallel],[20241122],[bug-parallel@gnu.org])
AC_INIT([parallel],[20241222],[bug-parallel@gnu.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([

View file

@ -5,9 +5,6 @@
Quote of the month:
"Do this with gnu parallel" is the Copilot hack of the day
-- Chase Clark @chasingmicrobes.bsky.social
GNU Parallel too. It is my map/reduce tool with built in support to retry failed jobs.
-- Dhruva @mechanicker.bsky.social
@ -249,6 +246,9 @@ https://negfeedback.blogspot.com/2020/05/indispensable-command-line-tools.html
=== Used ===
"Do this with gnu parallel" is the Copilot hack of the day
-- Chase Clark @chasingmicrobes.bsky.social
GNU parallel is so satisfying
-- James Coman @jcoman.bsky.social

View file

@ -275,26 +275,21 @@ from:tange@gnu.org
to:parallel@gnu.org, bug-parallel@gnu.org
stable-bcc: Jesse Alama <jessealama@fastmail.fm>
Subject: GNU Parallel 202xxx22 ('Scooter/Assad/Damaskus/South Korea/Georgien/Aleppo/<<>>') released <<[stable]>>
Subject: GNU Parallel 20241222 ('Bashar') released [stable]
GNU Parallel 202xxx22 ('<<>>') has been released. It is available for download at: lbry://@GnuParallel:4
GNU Parallel 20241222 ('Bashar') has been released. It is available for download at: lbry://@GnuParallel:4
Quote of the month:
<<>>
"Do this with gnu parallel" is the Copilot hack of the day
-- Chase Clark @chasingmicrobes.bsky.social
New in this release:
<<>>
<<* No new features. This is a candidate for a stable release.>>
* No new features. This is a candidate for a stable release.
* Bug fixes and man page updates.
News about GNU Parallel:
<<>>
GNU Parallel - For people who live life in the parallel lane.

View file

@ -1,9 +1,9 @@
<directory name="parallel" rev="405" vrev="4" srcmd5="f209576e587b84cd2326ed90ddd06b83">
<directory name="parallel" rev="406" vrev="2" srcmd5="be2419ac9021a28497d30732835d4d86">
<entry name="Makefile" md5="9fb8935564eeda7d61506128a9cf18b7" size="1335" mtime="1732314935" />
<entry name="PKGBUILD" md5="3515ba5e3abde0b1e5f60e0d8f8b28e1" size="849" mtime="1732314975" />
<entry name="parallel-20241122.tar.bz2" md5="37e808b62e43c87c49bb4b876cec0a8d" size="2677531" mtime="1732313409" />
<entry name="parallel-20241122.tar.bz2.sig" md5="b2b7cd40233f2da68986ef54d02128ce" size="2080" mtime="1732313410" />
<entry name="parallel.spec" md5="47eaf53b1ed3821dedd238cabccf1149" size="6224" mtime="1732313410" />
<entry name="parallel_20241122.dsc" md5="d35026e2ea3527f8d24fd1048923812a" size="557" mtime="1732313410" />
<entry name="parallel_20241122.tar.gz" md5="cf60d96051e42ec28f8acb9080620223" size="2922864" mtime="1732313410" />
<entry name="PKGBUILD" md5="633d4bcfcb19de19a68f91075663654b" size="849" mtime="1734998671" />
<entry name="parallel-20241222.tar.bz2" md5="0074ac6b826fcd31372ed5cd593b9aec" size="2678357" mtime="1734998671" />
<entry name="parallel-20241222.tar.bz2.sig" md5="d3f40f3520001ca2d09e6c12948c7cfa" size="2080" mtime="1734998671" />
<entry name="parallel.spec" md5="db34c30baebe0f64d649bfbd7f67473a" size="6224" mtime="1734998671" />
<entry name="parallel_20241222.dsc" md5="76af7d75af25ede51f3f1dc196b2c957" size="557" mtime="1734998671" />
<entry name="parallel_20241222.tar.gz" md5="8e836174a952af4886c721b05a1b157a" size="2923176" mtime="1734998672" />
</directory>

View file

@ -1,7 +1,7 @@
Summary: Shell tool for executing jobs in parallel
Name: parallel
Version: 20241122
Version: 20241222
Release: 2.1
License: GPL-3.0-or-later
Group: Productivity/File utilities

View file

@ -22,7 +22,7 @@ monitorbuild:
yes building | parallel -vj1 --delay 10 --halt now,success=1 'osc results|G -E {}'
echo '### Wait for "building" state to end'
echo '### Ignore RedHat_RHEL-6 and Univention_3.2 that are broken'
yes building | parallel -vj1 --delay 10 --halt now,fail=1 'osc results|G -v RedHat_RHEL-6 -v Univention_3.2 -E {}' || true
yes building | parallel -vj1 --delay 10 --halt now,fail=1 'osc results|G -v RedHat_RHEL-6 -v Univention_3.2 -v SLE_12_SP._Backports -E {}' || true
echo '### Wait for "finished" state of .deb'
echo succeeded | parallel -vj1 --retries 30 --delay 10 --halt now,success=1 'osc results|G -E "(Debian|Ubuntu).*{}"'
echo '### Wait for "finished" state of .rpm'

View file

@ -601,7 +601,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -605,7 +605,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -601,7 +601,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -601,7 +601,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -570,7 +570,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -601,7 +601,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -601,7 +601,7 @@ _parset_main() {
fi
if [ "$_parset_NAME" = "--version" ] ; then
# shellcheck disable=SC2006
echo "parset 20241122 (GNU parallel `parallel --minversion 1`)"
echo "parset 20241222 (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 <https://gnu.org/licenses/gpl.html>"

View file

@ -26,7 +26,7 @@
use strict;
use Getopt::Long;
$Global::progname="niceload";
$Global::version = 20241122;
$Global::version = 20241222;
Getopt::Long::Configure("bundling","require_order");
get_options_from_array(\@ARGV) || die_usage();
if($opt::version) {

View file

@ -2945,7 +2945,7 @@ sub check_invalid_option_combinations() {
sub init_globals() {
# Defaults:
$Global::version = 20241201;
$Global::version = 20241222;
$Global::progname = 'parallel';
$::name = "GNU Parallel";
$Global::infinity = 2**31;
@ -6003,8 +6003,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, November 22). GNU Parallel 20241122 ('Ahoo Daryaei').",
" Zenodo. https://doi.org/10.5281/zenodo.14207479",
" Tange, O. (2024, December 22). GNU Parallel 20241222 ('Bashar').",
" Zenodo. https://doi.org/10.5281/zenodo.14550073",
"",
# Before changing these lines, please read
# https://www.gnu.org/software/parallel/parallel_design.html#citation-notice
@ -6036,8 +6036,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, November 22). GNU Parallel 20241122 ('Ahoo Daryaei').",
" Zenodo. https://doi.org/10.5281/zenodo.14207479",
" Tange, O. (2024, December 22). GNU Parallel 20241222 ('Bashar').",
" Zenodo. https://doi.org/10.5281/zenodo.14550073",
"",
# Before changing these line, please read
# https://www.gnu.org/software/parallel/parallel_design.html#citation-notice and
@ -6163,20 +6163,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_14207479,",
"\@software{tange_2024_14550073,",
" author = {Tange, Ole},",
" title = {GNU Parallel 20241122 ('Ahoo Daryaei')},",
" month = Nov,",
" title = {GNU Parallel 20241222 ('Bashar')},",
" month = Dec,",
" 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.14207479},",
" url = {https://doi.org/10.5281/zenodo.14207479}",
" doi = {10.5281/zenodo.14550073},",
" url = {https://doi.org/10.5281/zenodo.14550073}",
"}",
"",
"(Feel free to use \\nocite{tange_2024_14207479})",
"(Feel free to use \\nocite{tange_2024_14550073})",
"",
# Before changing these lines, please read
# https://www.gnu.org/software/parallel/parallel_design.html#citation-notice and

View file

@ -3108,7 +3108,7 @@ when called with B<--shebang>).
Use B<--sql-master> instead.
=item B<--sql-master> I<DBURL>
=item B<--sql-master> I<DBURL> (alpha testing)
Submit jobs via SQL server. I<DBURL> must point to a table, which will
contain the same information as B<--joblog>, the values from the input
@ -3157,14 +3157,14 @@ It can also be an alias from ~/.sql/aliases:
See also: B<--sql-and-worker> B<--sql-worker> B<--joblog>
=item B<--sql-and-worker> I<DBURL>
=item B<--sql-and-worker> I<DBURL> (alpha testing)
Shorthand for: B<--sql-master> I<DBURL> B<--sql-worker> I<DBURL>.
See also: B<--sql-master> B<--sql-worker>
=item B<--sql-worker> I<DBURL>
=item B<--sql-worker> I<DBURL> (alpha testing)
Execute jobs via SQL server. Read the input sources variables from the
table pointed to by I<DBURL>. The I<command> on the command line

View file

@ -137,7 +137,7 @@ GetOptions(
"help" => \$opt::dummy,
) || exit(255);
$Global::progname = ($0 =~ m:(^|/)([^/]+)$:)[1];
$Global::version = 20241122;
$Global::version = 20241222;
if($opt::version) { version(); exit 0; }
# Remove -D and --parallel=N
my @s = (grep { ! /^-D$|^--parallel=\S+$/ }

View file

@ -696,7 +696,7 @@ $Global::Initfile && unlink $Global::Initfile;
exit ($err);
sub parse_options {
$Global::version = 20241122;
$Global::version = 20241222;
$Global::progname = 'sql';
# This must be done first as this may exec myself