Released as 20211122 ('Peng Shuai')

This commit is contained in:
Ole Tange 2021-11-23 00:59:51 +01:00
parent 9b3066e071
commit 0fa2bbc099
20 changed files with 89 additions and 66 deletions

15
NEWS
View file

@ -1,3 +1,18 @@
20211122
New in this release:
* Bug fixes and man page updates.
News about GNU Parallel:
* Otimizando o seu Hacking com o GNU Parallel - Mateus Buogo
https://www.youtube.com/watch?v=xIpPPZXDKGU
* SMACK 12 - Do it faster! Simple ways to use all those cores (and
GPUs) efficiently. https://www.youtube.com/watch?v=lXDGY7NvOYk
20211022
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-20211022.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20211022.tar.bz2.sig
gpg parallel-20211022.tar.bz2.sig
bzip2 -dc parallel-20211022.tar.bz2 | tar xvf -
cd parallel-20211022
wget https://ftpmirror.gnu.org/parallel/parallel-20211122.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20211122.tar.bz2.sig
gpg parallel-20211122.tar.bz2.sig
bzip2 -dc parallel-20211122.tar.bz2 | tar xvf -
cd parallel-20211122
./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-20211022.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20211022.tar.bz2.sig
gpg parallel-20211022.tar.bz2.sig
bzip2 -dc parallel-20211022.tar.bz2 | tar xvf -
cd parallel-20211022
wget https://ftpmirror.gnu.org/parallel/parallel-20211122.tar.bz2
wget https://ftpmirror.gnu.org/parallel/parallel-20211122.tar.bz2.sig
gpg parallel-20211122.tar.bz2.sig
bzip2 -dc parallel-20211122.tar.bz2 | tar xvf -
cd parallel-20211122
./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. (2021, October 22). GNU Parallel 20211022 ('Sinclair').
Zenodo. https://doi.org/10.5281/zenodo.5593566
Tange, O. (2021, November 22). GNU Parallel 20211122 ('Peng Shuai').
Zenodo. https://doi.org/10.5281/zenodo.5719513
Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015,
2016, 2017, 2018, 2019, 2020, 2021 Ole Tange, http://ole.tange.dk and

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.69 for parallel 20211022.
# Generated by GNU Autoconf 2.69 for parallel 20211122.
#
# Report bugs to <bug-parallel@gnu.org>.
#
@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='parallel'
PACKAGE_TARNAME='parallel'
PACKAGE_VERSION='20211022'
PACKAGE_STRING='parallel 20211022'
PACKAGE_VERSION='20211122'
PACKAGE_STRING='parallel 20211122'
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 20211022 to adapt to many kinds of systems.
\`configure' configures parallel 20211122 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 20211022:";;
short | recursive ) echo "Configuration of parallel 20211122:";;
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 20211022
parallel configure 20211122
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 20211022, which was
It was created by parallel $as_me 20211122, 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='20211022'
VERSION='20211122'
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 20211022, which was
This file was extended by parallel $as_me 20211122, 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 20211022
parallel config.status 20211122
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

View file

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

View file

@ -4,6 +4,17 @@
Quote of the month:
@a201
4
اليوم علمت بأداة تساعد على تشغيل أوامر الصدفة بشكل متوازي حسب عدد الأنوية الموجودة مما يجعلها أداة أساسية في عدة تنفيذ المهام.
الأداة اسمها gnu parallel
-- @AbuEsra2014@twitter زايد السعيدي
GNU parallel is very easy to use and has many features for
specialized use cases. Its a Perl script.
-- @harlekyn@twitter uʎʞǝlɹɐɥ
GNU parallelという神ツールを発見した
-- @schnell1232@twitter
@ -133,6 +144,9 @@ https://negfeedback.blogspot.com/2020/05/indispensable-command-line-tools.html
=== Used ===
GNU parallel 便利すぎ
-- @butagannen@twitter 豚顔面
GNU parallel is a severely underrated tool for just spawning a
shitload of tasks. I use it every day and fucking love it.
-- Jane @serialexpjane@twitter

View file

@ -254,31 +254,26 @@ from:tange@gnu.org
to:parallel@gnu.org, bug-parallel@gnu.org
stable-bcc: Jesse Alama <jessealama@fastmail.fm>
Subject: GNU Parallel 20211022 ('Sinclair') released
Subject: GNU Parallel 20211122 ('Peng Shuai') released [stable]
GNU Parallel 20211022 ('Sinclair') has been released. It is available for download at: lbry://@GnuParallel:4
GNU Parallel 20211122 ('Peng Shuai') [stable] has been released. It is available for download at: lbry://@GnuParallel:4
No new functionality was introduced so this is a good candidate for a stable release.
Quote of the month:
GNU parallel is a severely underrated tool for just spawning a
shitload of tasks. I use it every day and fucking love it.
-- Jane @serialexpjane@twitter
GNU parallel 便利すぎ
-- @butagannen@twitter 豚顔面
New in this release:
* Don't postpone output until $jobslots jobs have been started.
* Bug fixes and man page updates.
News about GNU Parallel:
* How to Install GNU Parallel using Anaconda | Linux https://www.youtube.com/watch?v=UwDNVP-L0qA
* Install GNU Parallel from source code | Linux https://www.youtube.com/watch?v=PIyJH4ben5o
* Compiling GNU Parallel on CentOS-7 https://thelinuxcluster.com/2021/10/19/compiling-gnu-parallel-on-centos-7/
* Otimizando o seu Hacking com o GNU Parallel - Mateus Buogo https://www.youtube.com/watch?v=xIpPPZXDKGU
* SMACK 12 - Do it faster! Simple ways to use all those cores (and GPUs) efficiently. https://www.youtube.com/watch?v=lXDGY7NvOYk
Get the book: GNU Parallel 2018 http://www.lulu.com/shop/ole-tange/gnu-parallel-2018/paperback/product-23558902.html

View file

@ -1,7 +1,6 @@
<directory name="parallel" rev="314" vrev="1" srcmd5="d00403f6fc8a1f4473366ad2d617dd50">
<entry name="PKGBUILD" md5="96182d24cfc529c795d9472330d63d84" size="936" mtime="1634932620" />
<entry name="parallel-20211022.tar.bz2" md5="3cfc53da51e2d0b1ed40ea4efc80531f" size="2268584" mtime="1634932620" />
<entry name="parallel.spec" md5="94906b2c42bc554c75ce239d273faf7c" size="5630" mtime="1634932621" />
<entry name="parallel_20211022.dsc" md5="f26ff185d11fb9e47a8eea57962b5b7b" size="556" mtime="1634932621" />
<entry name="parallel_20211022.tar.gz" md5="2304a31ee1027c7f7c6d89fd6290d86f" size="2512432" mtime="1634932621" />
<directory name="parallel" rev="315" vrev="1" srcmd5="33b4d80c573d095c4ca4caa666375fea">
<entry name="PKGBUILD" md5="75a71ab9576a431055b4ac5b0a9e90ad" size="936" mtime="1637624640" />
<entry name="parallel-20211122.tar.bz2" md5="0006cbd95988cd917544fcecc573a0e7" size="2267602" mtime="1637624641" />
<entry name="parallel.spec" md5="a6ed860e4299d7f7ff347bf27271ead1" size="5630" mtime="1637624641" />
<entry name="parallel_20211122.tar.gz" md5="755f684b26232778e596109491e64c09" size="2512204" mtime="1637624641" />
</directory>

View file

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

View file

@ -385,7 +385,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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

@ -384,7 +384,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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

@ -385,7 +385,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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

@ -363,7 +363,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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

@ -365,7 +365,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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

@ -390,7 +390,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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

@ -355,7 +355,7 @@ _parset_main() {
return 255
fi
if [ "$_parset_NAME" = "--version" ] ; then
echo "parset 20211023 (GNU parallel `parallel --minversion 1`)"
echo "parset 20211122 (GNU parallel `parallel --minversion 1`)"
echo "Copyright (C) 2007-2021 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 = 20211023;
$Global::version = 20211122;
Getopt::Long::Configure("bundling","require_order");
get_options_from_array(\@ARGV) || die_usage();
if($opt::version) {

View file

@ -2264,7 +2264,7 @@ sub check_invalid_option_combinations() {
sub init_globals() {
# Defaults:
$Global::version = 20211023;
$Global::version = 20211122;
$Global::progname = 'parallel';
$::name = "GNU Parallel";
$Global::infinity = 2**31;
@ -5077,8 +5077,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. (2021, October 22). GNU Parallel 20211022 ('Sinclair').",
" Zenodo. https://doi.org/10.5281/zenodo.5593566",
" Tange, O. (2021, November 22). GNU Parallel 20211122 ('Peng Shuai').",
" Zenodo. https://doi.org/10.5281/zenodo.5719513",
"",
# Before changing these lines, please read
# https://www.gnu.org/software/parallel/parallel_design.html#Citation-notice
@ -5110,8 +5110,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. (2021, October 22). GNU Parallel 20211022 ('Sinclair').",
" Zenodo. https://doi.org/10.5281/zenodo.5593566",
" Tange, O. (2021, November 22). GNU Parallel 20211122 ('Peng Shuai').",
" Zenodo. https://doi.org/10.5281/zenodo.5719513",
"",
# Before changing these line, please read
# https://www.gnu.org/software/parallel/parallel_design.html#Citation-notice and
@ -5236,20 +5236,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_2021_5593566,",
"\@software{tange_2021_5719513,",
" author = {Tange, Ole},",
" title = {GNU Parallel 20211022 ('Sinclair')},",
" month = Oct,",
" title = {GNU Parallel 20211122 ('Peng Shuai')},",
" month = Nov,",
" year = 2021,",
" 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.5593566},",
" url = {https://doi.org/10.5281/zenodo.5593566}",
" doi = {10.5281/zenodo.5719513},",
" url = {https://doi.org/10.5281/zenodo.5719513}",
"}",
"",
"(Feel free to use \\nocite{tange_2021_5593566})",
"(Feel free to use \\nocite{tange_2021_5719513})",
"",
# Before changing these lines, please read
# https://www.gnu.org/software/parallel/parallel_design.html#Citation-notice and

View file

@ -122,7 +122,7 @@ GetOptions(
"help" => \$opt::dummy,
) || exit(255);
$Global::progname = ($0 =~ m:(^|/)([^/]+)$:)[1];
$Global::version = 20211023;
$Global::version = 20211122;
if($opt::version) { version(); exit 0; }
@Global::sortoptions = grep { ! /^-D$/ }
shell_quote(@ARGV_before[0..($#ARGV_before-$#ARGV-1)]);

View file

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

View file

@ -499,8 +499,8 @@ echo C
sleep 1
echo 0 > my_jobs
wait
parallel: Warning: Only enough file handles to run 248 jobs in parallel.
parallel: Warning: Try running 'parallel -j0 -N 248 --pipe parallel -j0'
parallel: Warning: Only enough file handles to run 247 jobs in parallel.
parallel: Warning: Try running 'parallel -j0 -N 247 --pipe parallel -j0'
parallel: Warning: or increasing 'ulimit -n' (try: ulimit -n `ulimit -Hn`)
parallel: Warning: or increasing 'nofile' in /etc/security/limits.conf
parallel: Warning: or increasing /proc/sys/fs/file-max