From cae79919008c09aac4a52c63d0f73b7055526212 Mon Sep 17 00:00:00 2001 From: Oskar Liljeblad Date: Mon, 2 Apr 2012 20:16:06 +0200 Subject: [PATCH] atool-0.39.0.tar.gz --- AUTHORS | 3 ++ NEWS | 7 +++++ README | 96 ++++++++++++++++++++++++++++++++++++++---------------------- TODO | 10 +++++++ atool | 73 +++++++++++++++++++++++++++++++++------------ atool.1 | 35 ++++++++++++++++++++-- atool.1.in | 35 ++++++++++++++++++++-- configure | 20 ++++++------- configure.ac | 2 +- 9 files changed, 212 insertions(+), 69 deletions(-) diff --git a/AUTHORS b/AUTHORS index 56a899c..fd7026b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -13,4 +13,7 @@ Peter Valdemar Mørch Nick Matteo - patch for lzma support +Dan Serban + - patch for plzip support, as well as --lzip in GNU tar 1.23 and later + For other contributors, check out the NEWS file. diff --git a/NEWS b/NEWS index bc3604a..6a9f903 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +2012-04-02: atool 0.39.0 released. + Add support for plzip, as well as --lzip in GNU tar 1.23 and later (patch + from Dan Serban). + Add support for lbzip2 and pigz (patch from Tim Harder). + Fix documentation typo (Debian #661636). + Updated links in README and on web page (thanks Antonio Diaz). + 2011-08-15: atool 0.38.0 released. Fix Mac OS X build time problem (reported by Dave Dribin): Don't use 'sed -r' in makefiles, use 'sed' instead, etc. diff --git a/README b/README index a525a4e..5ae1b3d 100644 --- a/README +++ b/README @@ -65,9 +65,9 @@ The following programs are required to run atool: atool is written in Perl. The modules File::Spec, File::Basename, Getopt::Long and POSIX must be available (they probably are by default). - site: http://www.perl.org/ + Web site: http://www.perl.org/ - package: perl + Debian package: perl The following programs are optional for running atool: @@ -77,9 +77,9 @@ The following programs are optional for running atool: default. This program is necessary unless you choose to disable the use_file option. - site: ftp://ftp.astron.com/pub/file/ + Web site: ftp://ftp.astron.com/pub/file/ - package: file + Debian package: file * tar (GNU tar) @@ -88,17 +88,17 @@ The following programs are optional for running atool: the Installation section below if you don't use GNU tar 1.13.18 or later. - site: http://www.gnu.org/software/tar/tar.html + Web site: http://www.gnu.org/software/tar/tar.html - package: tar + Debian package: tar * gzip (GNU zip) gzip is required if you want to use atool with gzip compressed archives. - site: http://www.gzip.org/ + Web site: http://www.gzip.org/ - package: gzip + Debian package: gzip * bzip @@ -110,32 +110,58 @@ The following programs are optional for running atool: bzip2 is required if you want to use atool with bzip2 compressed archives. - site: http://www.bzip.org/ + Web site: http://www.bzip.org/ - package: bzip2 + Debian package: bzip2 + + * pbzip2 + + pbzip2 is required if you want to use atool with bzip2 compressed + archives and utilize parallel processing. + + Web site: http://compression.ca/pbzip2/ + + Debian package: pbzip2 + + * lzip + + lzip is required if you want to use atool with lzip compressed archives. + + Web site: http://lzip.nongnu.org/lzip.html + + Debian package: lzip + + * plzip + + plzip is required if you want to use atool with lzip compressed archives + and utilize parallel processing. + + Web site: http://lzip.nongnu.org/plzip.html + + Debian package (not in stable as of 2012-02-07): plzip * lzop lzop is required if you want to use atool with lzop compressed archives. - site: http://www.lzop.org/ + Web site: http://www.lzop.org/ - package: lzop + Debian package: lzop * LZMA LZMA is required if you want to use atool with lzma compressed archives. - site: http://www.7-zip.org/sdk.html + Web site: http://www.7-zip.org/sdk.html * zip/unzip (Info-ZIP Zip/Unzip) Zip is required if you want to use atool with zip archives. Implementations other than Info-ZIP's might work with atool as well. - site: http://www.info-zip.org + Web site: http://www.info-zip.org - packages:zip, catfile($::SYSCONFDIR, $::PROGRAM.'.conf'); # system-wide configuration file $::cfg_path_tar = 'tar'; # tar program $::cfg_path_unace = 'unace'; # unace program @@ -134,10 +137,14 @@ $::cfg_use_file_always = 0; # always use file to identify $::cfg_use_find_cpio_print0 = 1; # use -print0/-0 find/cpio options? $::cfg_use_gzip_for_z = 1; # use gzip to decompress .Z files? $::cfg_use_jar = 0; # use jar or zip for .jar archives? +$::cfg_use_lbzip2 = 0; # use lbzip2 instead of bzip2 $::cfg_use_pbzip2 = 0; # use pbzip2 instead of bzip2 +$::cfg_use_pigz = 0; # use pigz instead of gzip +$::cfg_use_plzip = 0; # use plzip instead of lzip $::cfg_use_rar_for_unpack = 0; # use rar to unpack rar files? $::cfg_use_tar_bzip2_option = 1; # does tar support --bzip2? $::cfg_use_tar_lzma_option = 1; # does tar support --lzma? +$::cfg_use_tar_lzip_option = 0; # does tar support --lzip? $::cfg_use_tar_lzop_option = 0; # does tar support --lzop? $::cfg_use_tar_xz_option = 0; # does tar support --xz? $::cfg_use_tar_z_option = 1; # does tar support -z? @@ -422,16 +429,24 @@ sub runcmds($$$;@) { if ($::cfg_use_tar_bzip2_option) { push @cmd, maketarcmd($archive, $outdir, $mode, 'f', '--bzip2'), @args; } elsif ($::cfg_use_pbzip2) { - if ($mode eq 'add') { + push @cmd, $::cfg_path_pbzip2, '-cd', $archive, ['|'] if $mode ne 'add'; + push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; + push @cmd, ['|'], $::cfg_path_pbzip2, '-c', ['>'], $archive if $mode eq 'add'; + #if ($mode eq 'add') { # Unfortunately pbzip2 cannot read from standard in - my $tmpname = makeoutfile($::cfg_tmpfile_name); - push @cmd, maketarcmd($tmpname, $outdir, $mode, 'f'), @args; - push @cmd, [';'], $::cfg_path_pbzip2, '-c', $tmpname, ['>'], $archive; - push @cmd, [';'], 'rm', $tmpname; - } else { - push @cmd, $::cfg_path_pbzip2, '-cd', $archive, ['|']; - push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; - } + # 2012-03-15: It seems now it does. + # my $tmpname = makeoutfile($::cfg_tmpfile_name); + # push @cmd, maketarcmd($tmpname, $outdir, $mode, 'f'), @args; + # push @cmd, [';'], $::cfg_path_pbzip2, '-c', $tmpname, ['>'], $archive; + # push @cmd, [';'], 'rm', $tmpname; + #} else { + # push @cmd, $::cfg_path_pbzip2, '-cd', $archive, ['|']; + # push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; + #} + } elsif ($::cfg_use_lbzip2) { + push @cmd, $::cfg_path_lbzip2, '-cd', $archive, ['|'] if $mode ne 'add'; + push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; + push @cmd, ['|'], $::cfg_path_lbzip2, '-c', ['>'], $archive if $mode eq 'add'; } else { push @cmd, $::cfg_path_bzip2, '-cd', $archive, ['|'] if $mode ne 'add'; push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; @@ -444,6 +459,10 @@ sub runcmds($$$;@) { return undef if ($mode eq 'extract' && !defined ($outdir = makeoutdir())); if ($::cfg_use_tar_z_option) { push @cmd, maketarcmd($archive, $outdir, $mode, 'zf'), @args; + } elsif ($::cfg_use_pigz) { + push @cmd, $::cfg_path_pigz, '-cd', $archive, ['|'] if $mode ne 'add'; + push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; + push @cmd, ['|'], $::cfg_path_pigz, '-c', ['>'], $archive if $mode eq 'add'; } else { push @cmd, $::cfg_path_gzip, '-cd', $archive, ['|'] if $mode ne 'add'; push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; @@ -486,9 +505,17 @@ sub runcmds($$$;@) { } elsif ($format eq 'tar+lzip') { return undef if ($mode eq 'extract' && !defined ($outdir = makeoutdir())); - push @cmd, $::cfg_path_lzip, '-cd', $archive, ['|'] if $mode ne 'add'; - push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; - push @cmd, ['|'], $::cfg_path_lzip, '-c', ['>'], $archive if $mode eq 'add'; + if ($::cfg_use_tar_lzip_option) { + push @cmd, maketarcmd($archive, $outdir, $mode, 'f', '--lzip'), @args; + } elsif ($::cfg_use_plzip) { + push @cmd, $::cfg_path_plzip, '-cd', $archive, ['|'] if $mode ne 'add'; + push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; + push @cmd, ['|'], $::cfg_path_plzip, '-c', ['>'], $archive if $mode eq 'add'; + } else { + push @cmd, $::cfg_path_lzip, '-cd', $archive, ['|'] if $mode ne 'add'; + push @cmd, maketarcmd('-', $outdir, $mode, 'f'), @args; + push @cmd, ['|'], $::cfg_path_lzip, '-c', ['>'], $archive if $mode eq 'add'; + } @cmd = handle_empty_add(@cmd) if ($mode eq 'add' && @args == 0); return multiarchivecmd($archive, $outdir, $mode, 1, 0, \@args, @cmd); } @@ -817,13 +844,15 @@ sub runcmds($$$;@) { } } elsif ($format eq 'bzip2') { - return singlearchivecmd($archive, $::cfg_use_pbzip2 ? $::cfg_path_pbzip2 : $::cfg_path_bzip2, $format, $mode, 1, @args); + return singlearchivecmd($archive, $::cfg_path_pbzip2, $format, $mode, 1, @args) if $::cfg_use_pbzip2; + return singlearchivecmd($archive, $::cfg_path_lbzip2, $format, $mode, 1, @args) if $::cfg_use_lbzip2; + return singlearchivecmd($archive, $::cfg_path_bzip2, $format, $mode, 1, @args); } elsif ($format eq 'bzip') { return singlearchivecmd($archive, $::cfg_path_bzip, $format, $mode, 1, @args); } elsif ($format eq 'gzip') { - return singlearchivecmd($archive, $::cfg_path_gzip, $format, $mode, 1, @args); + return singlearchivecmd($archive, $::cfg_use_pigz ? $::cfg_path_pigz : $::cfg_path_gzip, $format, $mode, 1, @args); } elsif ($format eq 'compress') { if ($::cfg_use_gzip_for_z && $mode ne 'add') { @@ -839,7 +868,7 @@ sub runcmds($$$;@) { return singlearchivecmd($archive, $::cfg_path_lzop, $format, $mode, 0, @args); } elsif ($format eq 'lzip') { - return singlearchivecmd($archive, $::cfg_path_lzip, $format, $mode, 1, @args); + return singlearchivecmd($archive, $::cfg_use_plzip ? $::cfg_path_plzip : $::cfg_path_lzip, $format, $mode, 1, @args); } elsif ($format eq 'xz') { return singlearchivecmd($archive, $::cfg_path_xz, $format, $mode, 1, @args); @@ -1580,6 +1609,7 @@ sub set_config_option($$$) { 'path_find' => [ 'option', \$::cfg_path_find, qr/.*/ ], 'path_gzip' => [ 'option', \$::cfg_path_gzip, qr/.*/ ], 'path_jar' => [ 'option', \$::cfg_path_jar, qr/.*/ ], + 'path_lbzip2' => [ 'option', \$::cfg_path_lbzip2, qr/.*/ ], 'path_lha' => [ 'option', \$::cfg_path_lha, qr/.*/ ], 'path_lrzip' => [ 'option', \$::cfg_path_lrzip, qr/.*/ ], 'path_lzip' => [ 'option', \$::cfg_path_lzip, qr/.*/ ], @@ -1588,6 +1618,8 @@ sub set_config_option($$$) { 'path_nomarch' => [ 'option', \$::cfg_path_nomarch, qr/.*/ ], 'path_pager' => [ 'option', \$::cfg_path_pager, qr/.*/ ], 'path_pbzip2' => [ 'option', \$::cfg_path_pbzip2, qr/.*/ ], + 'path_pigz' => [ 'option', \$::cfg_path_pigz, qr/.*/ ], + 'path_plzip' => [ 'option', \$::cfg_path_plzip, qr/.*/ ], 'path_rar' => [ 'option', \$::cfg_path_rar, qr/.*/ ], 'path_rpm' => [ 'option', \$::cfg_path_rpm, qr/.*/ ], 'path_rpm2cpio' => [ 'option', \$::cfg_path_rpm2cpio, qr/.*/ ], @@ -1612,8 +1644,11 @@ sub set_config_option($$$) { 'use_file_always' => [ 'option', \$::cfg_use_file_always, qr/^(0|1)$/ ], 'use_find_cpio_print0' => [ 'option', \$::cfg_use_find_cpio_print0, qr/^(0|1)$/ ], 'use_gzip_for_z' => [ 'option', \$::cfg_use_gzip_for_z, qr/^(0|1)$/ ], + 'use_lbzip2' => [ 'option', \$::cfg_use_lbzip2, qr/^(0|1)$/ ], 'use_jar' => [ 'option', \$::cfg_use_jar, qr/^(0|1)$/ ], 'use_pbzip2' => [ 'option', \$::cfg_use_pbzip2, qr/^(0|1)$/ ], + 'use_pigz' => [ 'option', \$::cfg_use_pigz, qr/^(0|1)$/ ], + 'use_plzip' => [ 'option', \$::cfg_use_plzip, qr/^(0|1)$/ ], 'use_rar_for_unpack' => [ 'option', \$::cfg_use_rar_for_unpack, qr/^(0|1)$/ ], 'use_rar_for_unrar' => [ 'obsolete', 'use_rar_for_unpack' ], 'use_tar_bzip2_option' => [ 'option', \$::cfg_use_tar_bzip2_option, qr/^(0|1)$/ ], diff --git a/atool.1 b/atool.1 index 434d2bd..cde2588 100644 --- a/atool.1 +++ b/atool.1 @@ -42,7 +42,7 @@ atool \- A script for managing file archives of various types .RI [ OPTION ]... " ARCHIVE " "" ARCHIVE .br .B arepack -.RI [ OPTION ]... OLD-ARCHIVE " " NEW-ARCHIVE +.RI [ OPTION ]... " OLD-ARCHIVE " "" NEW-ARCHIVE .SH DESCRIPTION This manual page document describes the \fBatool\fP commands. These commands are used for managing file archives of various @@ -369,6 +369,12 @@ GNU tar earlier than 1.13.6, you will need to disable this option. This used to be \fBuse_tar_j_option\fP but using \-\-bzip2 is more portable. .TP +.B use_tar_lzip_option \fR(default: 0)\fR +Enable this if you use GNU tar and it supports the \fB\-\-lzip\fP option +for filtering lzip'ed files through lzip. Versions 1.23 +or later of GNU tar support \fB\-\-lzip\fP. Therefore, if you use +GNU tar earlier than 1.23, you will need to disable this option. +.TP .B use_tar_z_option \fR(default: 1)\fR Enable this if you use GNU tar and it supports the \fB\-z\fP option for filtering gzipped files through gzip. You will need to disable @@ -442,6 +448,27 @@ bzip2 will be used by tar regardless of the use_pbzip2 option. So if you want tar to use pbzip2 rather than bzip2, set use_pbzip2 to 1 and use_tar_bzip2_option to 0. .TP +.B use_lbzip2 \fR(default: 0)\fR +Enable this if you want to use lbzip2 rather than bzip2. +Please not that if use_tar_bzip2_option is enabled, then +bzip2 will be used by tar regardless of the use_lbzip2 +option. So if you want tar to use lbzip2 rather than bzip2, +set use_lbzip2 to 1 and use_tar_bzip2_option to 0. +.TP +.B use_pigz \fR(default: 0)\fR +Enable this if you want to use pigz rather than gzip. +Please not that if use_tar_z_option is enabled, then +gzip will be used by tar regardless of the use_pigz +option. So if you want tar to use pigz rather than gzip, +set use_pigz to 1 and use_tar_z_option to 0. +.TP +.B use_plzip \fR(default: 0)\fR +Enable this if you want to use plzip rather than lzip. +Please not that if use_tar_lzip_option is enabled, then +lzip will be used by tar regardless of the use_plzip +option. So if you want tar to use plzip rather than lzip, +set use_plzip to 1 and use_tar_lzip_option to 0. +.TP .B use_jar \fR(default: 0)\fR Enable this if you want to use jar for managing jar archives. If you disable this option, zip will be @@ -507,6 +534,10 @@ See tmpdir_name for further details on the format. .TP .B path_unrar \fR(default: unrar)\fR .TP +.B path_lbzip2 \fR(default: lbzip2)\fR +.TP +.B path_pigz \fR(default: pigz)\fR +.TP .B path_cabextract \fR(default: cabextract)\fR .TP .B path_7z \fR(default: 7z)\fR @@ -687,7 +718,7 @@ Report bugs to <\fIoskar@osk.mine.nu\fP>. .SH AUTHOR The author of \fBatool\fP and this manual page is Oskar Liljeblad <\fIoskar@osk.mine.nu\fP>. .SH COPYRIGHT -Copyright \(co 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009 Oskar Liljeblad +Copyright \(co 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2011, 2012 Oskar Liljeblad This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/atool.1.in b/atool.1.in index 73df3a1..11af533 100644 --- a/atool.1.in +++ b/atool.1.in @@ -42,7 +42,7 @@ atool \- A script for managing file archives of various types .RI [ OPTION ]... " ARCHIVE " "" ARCHIVE .br .B arepack -.RI [ OPTION ]... OLD-ARCHIVE " " NEW-ARCHIVE +.RI [ OPTION ]... " OLD-ARCHIVE " "" NEW-ARCHIVE .SH DESCRIPTION This manual page document describes the \fBatool\fP commands. These commands are used for managing file archives of various @@ -369,6 +369,12 @@ GNU tar earlier than 1.13.6, you will need to disable this option. This used to be \fBuse_tar_j_option\fP but using \-\-bzip2 is more portable. .TP +.B use_tar_lzip_option \fR(default: 0)\fR +Enable this if you use GNU tar and it supports the \fB\-\-lzip\fP option +for filtering lzip'ed files through lzip. Versions 1.23 +or later of GNU tar support \fB\-\-lzip\fP. Therefore, if you use +GNU tar earlier than 1.23, you will need to disable this option. +.TP .B use_tar_z_option \fR(default: 1)\fR Enable this if you use GNU tar and it supports the \fB\-z\fP option for filtering gzipped files through gzip. You will need to disable @@ -442,6 +448,27 @@ bzip2 will be used by tar regardless of the use_pbzip2 option. So if you want tar to use pbzip2 rather than bzip2, set use_pbzip2 to 1 and use_tar_bzip2_option to 0. .TP +.B use_lbzip2 \fR(default: 0)\fR +Enable this if you want to use lbzip2 rather than bzip2. +Please not that if use_tar_bzip2_option is enabled, then +bzip2 will be used by tar regardless of the use_lbzip2 +option. So if you want tar to use lbzip2 rather than bzip2, +set use_lbzip2 to 1 and use_tar_bzip2_option to 0. +.TP +.B use_pigz \fR(default: 0)\fR +Enable this if you want to use pigz rather than gzip. +Please not that if use_tar_z_option is enabled, then +gzip will be used by tar regardless of the use_pigz +option. So if you want tar to use pigz rather than gzip, +set use_pigz to 1 and use_tar_z_option to 0. +.TP +.B use_plzip \fR(default: 0)\fR +Enable this if you want to use plzip rather than lzip. +Please not that if use_tar_lzip_option is enabled, then +lzip will be used by tar regardless of the use_plzip +option. So if you want tar to use plzip rather than lzip, +set use_plzip to 1 and use_tar_lzip_option to 0. +.TP .B use_jar \fR(default: 0)\fR Enable this if you want to use jar for managing jar archives. If you disable this option, zip will be @@ -507,6 +534,10 @@ See tmpdir_name for further details on the format. .TP .B path_unrar \fR(default: unrar)\fR .TP +.B path_lbzip2 \fR(default: lbzip2)\fR +.TP +.B path_pigz \fR(default: pigz)\fR +.TP .B path_cabextract \fR(default: cabextract)\fR .TP .B path_7z \fR(default: 7z)\fR @@ -687,7 +718,7 @@ Report bugs to <\fIoskar@osk.mine.nu\fP>. .SH AUTHOR The author of \fBatool\fP and this manual page is Oskar Liljeblad <\fIoskar@osk.mine.nu\fP>. .SH COPYRIGHT -Copyright \(co 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009 Oskar Liljeblad +Copyright \(co 2001, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2011, 2012 Oskar Liljeblad This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/configure b/configure index 3aabf2c..54936fe 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 atool 0.38.0. +# Generated by GNU Autoconf 2.67 for atool 0.39.0. # # Report bugs to . # @@ -551,8 +551,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='atool' PACKAGE_TARNAME='atool' -PACKAGE_VERSION='0.38.0' -PACKAGE_STRING='atool 0.38.0' +PACKAGE_VERSION='0.39.0' +PACKAGE_STRING='atool 0.39.0' PACKAGE_BUGREPORT='oskar@osk.mine.nu' PACKAGE_URL='' @@ -1175,7 +1175,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 atool 0.38.0 to adapt to many kinds of systems. +\`configure' configures atool 0.39.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1241,7 +1241,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of atool 0.38.0:";; + short | recursive ) echo "Configuration of atool 0.39.0:";; esac cat <<\_ACEOF @@ -1308,7 +1308,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -atool configure 0.38.0 +atool configure 0.39.0 generated by GNU Autoconf 2.67 Copyright (C) 2010 Free Software Foundation, Inc. @@ -1325,7 +1325,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 atool $as_me 0.38.0, which was +It was created by atool $as_me 0.39.0, which was generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ @@ -2142,7 +2142,7 @@ fi # Define the identity of the package. PACKAGE='atool' - VERSION='0.38.0' + VERSION='0.39.0' cat >>confdefs.h <<_ACEOF @@ -2827,7 +2827,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 atool $as_me 0.38.0, which was +This file was extended by atool $as_me 0.39.0, which was generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -2884,7 +2884,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="\\ -atool config.status 0.38.0 +atool config.status 0.39.0 configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index 832960c..23f9c6d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT(atool, 0.38.0, oskar@osk.mine.nu) +AC_INIT(atool, 0.39.0, oskar@osk.mine.nu) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([atool]) AC_CONFIG_AUX_DIR([build-aux]) -- 2.11.4.GIT