From 43bc68ae3aa23c84ceba43ff3bfcbc4bb9d1c776 Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Tue, 22 Mar 2011 01:44:50 +0100 Subject: [PATCH] Released as 20110322. --- NEWS | 59 +++++++++++++++++++++++++++++++++++++++++ configure | 20 +++++++------- configure.ac | 2 +- doc/FUTURE_IDEAS | 7 ----- doc/release_new_version | 22 ++++++++++++--- packager/obs/Makefile | 4 ++- src/niceload | 2 +- src/parallel | 2 +- src/sql | 2 +- 9 files changed, 94 insertions(+), 26 deletions(-) diff --git a/NEWS b/NEWS index 1316b096..7f9133a3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,62 @@ +20110322 + +* --tollef to be switch compatible with Tollef's parallel. This will + cause -l to mean --load, and the argument separator will be -- + instead of ::: + +* --gnu will force GNU Parallel to behave like GNU Parallel even if + --tollef is set. + +* Site wide config file: /etc/parallel/config + + This should solve the issue with some packagers renaming GNU + Parallel to gparallel to avoid the naming conflict. + + By putting --tollef in the site wide config file you can deinstall + Tollef's parallel and install GNU Parallel instead without any + change for users or scripts. This is useful for packagers that + currently rename GNU Parallel or simply do not distribute GNU + Parallel because the command name conflicts with Tollef's parallel. + +* -L 0 -n 0, and -N 0 implemented. They will read one argument, + but insert 0 arguments on the command line. Useful if you just want + to run the same command with the same arguments a number of times. + +* GNU Parallel is now in Fink. Thanks to Jesse Alama. + http://pdb.finkproject.org/pdb/package.php/parallel + +* Opscode Cookbook for Chef. Thanks to Joshua Timberman. + https://github.com/opscode/cookbooks/tree/master/gnu_parallel + +* Man page examples translated into Japanese. Thanks to Koshigoe. + http://w.koshigoe.jp/study/?%5Bsystem%5D+GNU+parallel+%BB%C8%CD%D1%CE%E3#l13 + +* GNU Parallel will be presented at: + - LUGA, Augsburg, 2011-03-26, http://www.luga.de/Aktionen/LIT-2011/Programm + - OSAA.dk, Aarhus, 2011-04-12 + +* Video of presentation from FSCONS 2010-11-07. The presenter was + _really_ hoarse that day (Something to do with loads of alcohol the + night before). http://vimeo.com/20838834 + +* Review with examples in German. Thanks to M. Nieberg. + http://kenntwas.de/2011/linux/gnu-parallel/ + +* A review of the --pipe option in German. Thanks to Mathias Huber. + http://www.linux-magazin.de/NEWS/GNU-Parallel-20110205-stueckelt-Daten + +* A small example of grepping maillogs. Thanks to François Maillet. + http://www.francoismaillet.com/blog/?p=399 + +* Using GNU Parallel instead of xargs. Thanks to James Cuff. + http://blog.jcuff.net/2011/02/on-train-ride-in.html + +* Using GNU Parallel from 0install (German). Thanks to AdaMin. + http://forum.ubuntuusers.de/topic/gnu-parallel-mit-zero-install-kurzinfo-kein-wi/ + +* Bug fixes and man page updates. + + 20110205 * --pipe splits piped data into blocks. Each block is piped to a diff --git a/configure b/configure index 0f645528..6a6c56a1 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.67 for parallel 20110308. +# Generated by GNU Autoconf 2.67 for parallel 20110322. # # Report bugs to . # @@ -551,8 +551,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='parallel' PACKAGE_TARNAME='parallel' -PACKAGE_VERSION='20110308' -PACKAGE_STRING='parallel 20110308' +PACKAGE_VERSION='20110322' +PACKAGE_STRING='parallel 20110322' PACKAGE_BUGREPORT='bug-parallel@gnu.org' PACKAGE_URL='' @@ -1168,7 +1168,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 20110308 to adapt to many kinds of systems. +\`configure' configures parallel 20110322 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1234,7 +1234,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of parallel 20110308:";; + short | recursive ) echo "Configuration of parallel 20110322:";; esac cat <<\_ACEOF @@ -1301,7 +1301,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -parallel configure 20110308 +parallel configure 20110322 generated by GNU Autoconf 2.67 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1318,7 +1318,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 20110308, which was +It was created by parallel $as_me 20110322, which was generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ @@ -2133,7 +2133,7 @@ fi # Define the identity of the package. PACKAGE='parallel' - VERSION='20110308' + VERSION='20110322' cat >>confdefs.h <<_ACEOF @@ -2684,7 +2684,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 20110308, which was +This file was extended by parallel $as_me 20110322, which was generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -2746,7 +2746,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 20110308 +parallel config.status 20110322 configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index c2eb2a95..8d4aaf8d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([parallel], [20110308], [bug-parallel@gnu.org]) +AC_INIT([parallel], [20110322], [bug-parallel@gnu.org]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([ diff --git a/doc/FUTURE_IDEAS b/doc/FUTURE_IDEAS index 7defd28b..8f8fb5a7 100644 --- a/doc/FUTURE_IDEAS +++ b/doc/FUTURE_IDEAS @@ -1,10 +1,3 @@ -Fixed: bug #32834: If input is generated slowly - do not complain --i with no args defaults to -i {} -Use ::die_bug instead of die. - - -test if block size is too small to match a record sep in both -N mode and normal - Example: Chop mbox into emails Parallel sort diff --git a/doc/release_new_version b/doc/release_new_version index aa79842b..94dbd36c 100644 --- a/doc/release_new_version +++ b/doc/release_new_version @@ -65,6 +65,7 @@ echo put parallel-$YYYYMMDD.tar.bz2{,.sig,*asc} | ncftp ftp://ftp-upload.gnu.org == Download and test == +YYYYMMDD=`yyyymmdd` pushd /tmp rm parallel-$YYYYMMDD.tar.bz2 wget http://ftp.gnu.org/gnu/parallel/parallel-$YYYYMMDD.tar.bz2 @@ -78,12 +79,17 @@ pushd == Update OpenSUSE build system == https://build.opensuse.org/package/show?package=parallel&project=home%3Atange -cd ~/privat/parallel/packager/obs ; make +cd ~/privat/parallel/packager/obs +em home:tange/parallel/parallel.spec +find home:tange/parallel/* -type f | grep -v parallel.spec | parallel osc rm {}';' rm {} +make +Ret versionsnummeret fra 20100906-2 til YYYYMMDD-1 == Update Savannah == Content from release mail: +cat doc/release_new_version | klipper-stdin https://savannah.gnu.org/news/submit.php?group=parallel https://savannah.gnu.org/news/approve.php?group=parallel @@ -107,6 +113,11 @@ cd ../parallel-web/parallel cvs up cvs ci +== Commit released version == + +git diff +git commit -a + == Update Freshmeat == http://freshmeat.net/projects/parallel/releases/new @@ -141,10 +152,10 @@ cc:Peter Simons , Sandro Cazzaniga , Christian Faulhammer , Ryoichiro Suzuki , Jesse Alama -Subject: GNU Parallel 2011XXXX released +Subject: GNU Parallel 20110322 (the Japan release) released -GNU Parallel 2011XXXX has been released. It is available for download -at: http://ftp.gnu.org/gnu/parallel/ +GNU Parallel 20110322 (the Japan release) has been released. It is +available for download at: http://ftp.gnu.org/gnu/parallel/ New in this release: @@ -157,6 +168,9 @@ New in this release: * Site wide config file: /etc/parallel/config + This should solve the issue with some packagers renaming GNU + Parallel to gparallel to avoid the naming conflict. + By putting --tollef in the site wide config file you can deinstall Tollef's parallel and install GNU Parallel instead without any change for users or scripts. This is useful for packagers that diff --git a/packager/obs/Makefile b/packager/obs/Makefile index 669a4a84..0b0edb85 100644 --- a/packager/obs/Makefile +++ b/packager/obs/Makefile @@ -2,4 +2,6 @@ all: cd ../debian/ && make cp ../debian/parallel_*.dsc ../debian/parallel_*.tar.gz home\:tange/parallel/ cp `ls ../../parallel-*.tar.bz2|tail -n1` home\:tange/parallel/ - cd home\:tange/parallel/ && osc up && osc add *.dsc *.tar.gz *.spec *.tar.bz2 && osc ci + cd home\:tange/parallel/ && osc up && osc add *.dsc *.tar.gz *.tar.bz2 || true + cd home\:tange/parallel/ && osc up && osc *.spec || true + cd home\:tange/parallel/ && osc ci diff --git a/src/niceload b/src/niceload index fb473dc0..27b19e81 100755 --- a/src/niceload +++ b/src/niceload @@ -236,7 +236,7 @@ B(1), B(1) use strict; use Getopt::Long; $Global::progname="niceload"; -$Global::version = 20110205; +$Global::version = 20110322; 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 b926a10c..714d2919 100755 --- a/src/parallel +++ b/src/parallel @@ -381,7 +381,7 @@ sub get_options_from_array { sub parse_options { # Returns: N/A # Defaults: - $Global::version = 20110301; + $Global::version = 20110322; $Global::progname = 'parallel'; $Global::infinity = 2**31; $Global::debug = 0; diff --git a/src/sql b/src/sql index 59afa43c..930d9487 100755 --- a/src/sql +++ b/src/sql @@ -536,7 +536,7 @@ $Global::Initfile && unlink $Global::Initfile; exit ($err); sub parse_options { - $Global::version = 20110205; + $Global::version = 20110322; $Global::progname = 'sql'; # This must be done first as this may exec myself