Released as 20130630 alpha.

This commit is contained in:
Ole Tange 2013-06-30 20:38:44 +02:00
parent b6e210af96
commit 194db8b7da
7 changed files with 23 additions and 23 deletions

12
README
View file

@ -40,9 +40,9 @@ document.
Full installation of GNU Parallel is as simple as:
wget http://ftpmirror.gnu.org/parallel/parallel-20130622.tar.bz2
bzip2 -dc parallel-20130622.tar.bz2 | tar xvf -
cd parallel-20130622
wget http://ftpmirror.gnu.org/parallel/parallel-20130630.tar.bz2
bzip2 -dc parallel-20130630.tar.bz2 | tar xvf -
cd parallel-20130630
./configure && make && make install
@ -51,9 +51,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 http://ftpmirror.gnu.org/parallel/parallel-20130622.tar.bz2
bzip2 -dc parallel-20130622.tar.bz2 | tar xvf -
cd parallel-20130622
wget http://ftpmirror.gnu.org/parallel/parallel-20130630.tar.bz2
bzip2 -dc parallel-20130630.tar.bz2 | tar xvf -
cd parallel-20130630
./configure --prefix=$HOME && make && make install
Or if your system lacks 'make' you can simply copy src/parallel

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.68 for parallel 20130622.
# Generated by GNU Autoconf 2.68 for parallel 20130630.
#
# Report bugs to <bug-parallel@gnu.org>.
#
@ -559,8 +559,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='parallel'
PACKAGE_TARNAME='parallel'
PACKAGE_VERSION='20130622'
PACKAGE_STRING='parallel 20130622'
PACKAGE_VERSION='20130630'
PACKAGE_STRING='parallel 20130630'
PACKAGE_BUGREPORT='bug-parallel@gnu.org'
PACKAGE_URL=''
@ -1176,7 +1176,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 20130622 to adapt to many kinds of systems.
\`configure' configures parallel 20130630 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -1242,7 +1242,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of parallel 20130622:";;
short | recursive ) echo "Configuration of parallel 20130630:";;
esac
cat <<\_ACEOF
@ -1309,7 +1309,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
parallel configure 20130622
parallel configure 20130630
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@ -1326,7 +1326,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 20130622, which was
It was created by parallel $as_me 20130630, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@ -2141,7 +2141,7 @@ fi
# Define the identity of the package.
PACKAGE='parallel'
VERSION='20130622'
VERSION='20130630'
cat >>confdefs.h <<_ACEOF
@ -2704,7 +2704,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 20130622, which was
This file was extended by parallel $as_me 20130630, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -2766,7 +2766,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 20130622
parallel config.status 20130630
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"

View file

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

View file

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

View file

@ -653,7 +653,7 @@ sub get_options_from_array {
sub parse_options {
# Returns: N/A
# Defaults:
$Global::version = 20130626;
$Global::version = 20130630;
$Global::progname = 'parallel';
$Global::infinity = 2**31;
$Global::debug = 0;
@ -768,7 +768,7 @@ sub parse_options {
}
if($opt::tollef and not $opt::gnu and not $opt::plain) {
# Behave like tollef parallel (from moreutils)
if($Global::version > 20130622) {
if($Global::version > 2014_02_22) {
::error("--tollef has been retired. See http://lists.gnu.org/archive/html/parallel/2013-02/msg00018.html\n");
::wait_and_exit(255);
}

View file

@ -79,8 +79,8 @@ If @emph{command} is given, GNU @strong{parallel} solve the same tasks as
similar to @strong{cat | sh}.
The @emph{command} must be an executable, a script, a composed command, or
a function. If it is a function you need to @strong{export -f} the function
first. An alias will, however, not work (see why
a function. If it is a Bash function you need to @strong{export -f} the
function first. An alias will, however, not work (see why
http://www.perlmonks.org/index.pl?node_id=484296).
@item @strong{@{@}}

View file

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