--- atool-0.37.0.orig/atool.1.in +++ atool-0.37.0/atool.1.in @@ -304,7 +304,7 @@ .TP .RI \fBlzop\fP " " ( .lzo ) Extract and add commands are supported. The cat command is not suppored -because lzop does not want to extract files to standard out unless the -f +because lzop does not want to extract files to standard out unless the \-f flag is given. .TP .RI \fBlzip\fP " " ( .lz ) --- atool-0.37.0.orig/README.Debian +++ atool-0.37.0/README.Debian @@ -0,0 +1,11 @@ +The /etc/atool.conf provided by debian set an option for using rar instead +of using unrar (use_rar_for_unpack). This is because upstream atool can +use another unrar software, which is packaged in debian as unrar-nonfree +(in section non-free), but not unrar (in section main). (unrar in main does +only support v2 rar-format, unrar-nonfree supports v3). + +If you really want to use unrar-nonfree, please deactivate this option in +/etc/atool.conf. Be aware, ___ this will break ___ rar archives support +if you install unrar instead of unrar-nonfree. + +Stephane Jourdois --- atool-0.37.0.orig/debian/test +++ atool-0.37.0/debian/test @@ -0,0 +1,116 @@ +#!/usr/bin/perl -w +# +# This script tests all functionnalities of atool. +# It will help to detect arch-incompabilities. +# For now it only does basic tests. +# +# Stéphane (kwisatz) Jourdois +# Mon, 16 Aug 2004 18:42:15 +0200 + +use strict; +use IO::Handle; + +my $testdir = '/tmp/atool'; + +# List of atool-supported archives types +my @extensions = ('tar.gz', 'tar.bz', 'tar.bz2', 'tar.Z', + 'tar', 'zip', 'jar', 'rar', 'lha', 'ace', 'a', 'arj', 'arc', + 'rpm', 'gz', 'bz', 'bz2', 'Z'); + +`mkdir -p $testdir`; # Fixme, use perl mkdir +chdir $testdir; + +for my $ext (@extensions) { + print "Testing $ext:\n"; + + # Prepare some files + mkdir "test"; + open FOO, ">test/test.txt"; + print FOO "This is a sample file\n"; + close FOO; + open FOO, ">test/foo.txt"; + print FOO "foobar\n"; + close FOO; + + # Create an archive + print "\tpack ..."; + stdout->autoflush(); + if (!add("test.$ext", "test")) { + print "nok (apack returned non-zero code)\n"; + clean(); + next; + } + if (-e "test.$ext") { print "ok\n" } + else { + print "nok\n"; + clean(); + next; + } + + # Remove files + clean(); + + # List files in archive + print "\tlist ..."; + stdout->autoflush(); + my $list = `als test.$ext 2>&1`; + if ($? != 0) { + print "nok (als returned non-zero code)\n"; + next; + } + if ($list =~ /(?:test\/)?test\.txt/ and + $list =~ /(?:test\/)?foo\.txt/) { + print "ok\n"; + } else { + print "nok (missing file)\n"; + next; + } + + # Unpack it + print "\tunpack ..."; + stdout->autoflush(); + # Workarounds + my $stdin; + $stdin = "y" if $ext eq 'arj'; + if ($stdin) { + `echo $stdin | aunpack -f test.$ext 2>&1`; + } else { + `aunpack -f test.$ext 2>&1`; + } + if ($? != 0) { + print "nok (aunpack returned non-zero code)\n"; + next; + } + if (-d "test") { + if (-e "test/test.txt") { + print "ok\n"; + } else { + print "nok (file missing)\n"; + next + } + } else { + print "nok (dir missing)\n"; + next; + } + + # Remove files again + clean(); + + # Remove archive + unlink "test.$ext"; +} + +`rm -rf $testdir`; + +#-------------------------------------------------------------------------- + +sub add { + my ($archive, @files) = @_; + `apack $archive @files 2>&1`; + if ($? == 0) { return 1 } + else { return 0 } +} + +sub clean { + `rm -rf test`; +} --- atool-0.37.0.orig/debian/atool.conf +++ atool-0.37.0/debian/atool.conf @@ -0,0 +1,56 @@ +# This is a sample configuration file for atool. +# Written by Stephane Jourdois +# +# You can modify this file for per-system configuration, +# or copy it to ~/.atoolrc for per-user configuration. +# +# See atool (1) man page for explanation of each option. + +# Those values are default ones. +# Uncomment to change the default value. + +# use_tar_bzip2_option 1 +# use_tar_z_option 1 +# use_gzip_for_z 1 +use_rar_for_unpack 1 +# use_arc_for_unpack 0 +# use_arj_for_unpack 0 +# use_find_cpio_print0 1 +# strip_unknown_ext 1 +# use_jar 0 +# use_file 1 +# tmpdir_name Unpack-%04d +# path_pager pager +# path_jar jar +# path_tar tar +# path_zip zip +# path_unzip unzip +# path_gzip gzip +# path_bzip bzip +# path_bzip2 bzip2 +# path_compress compress +# path_lzop lzop +# path_rar rar +# path_unrar unrar +# path_lha lha +# path_unace unace +# path_ar ar +# path_arj arj +# path_unarj unarj +# path_arc arc +# path_nomarch nomarch +# path_rpm rpm +# path_rpm2cpio rpm2cpio +# path_cpio cpio +# path_file file +# path_find find +# path_xargs xargs +# path_cat cat +# path_diff diff +# args_diff -ru +# path_syscfg /etc/atool.conf +# path_usercfg .atoolrc +# default_verbosity 1 +# show_extracted 1 +# keep_compressed 1 +# decompress_to_cwd 1 --- atool-0.37.0.orig/debian/lintian-overrides +++ atool-0.37.0/debian/lintian-overrides @@ -0,0 +1,2 @@ +# "als" is the name of a binary we ship! +atool: spelling-error-in-description als also --- atool-0.37.0.orig/debian/replace_autoconf_vars +++ atool-0.37.0/debian/replace_autoconf_vars @@ -0,0 +1,43 @@ +#!/usr/bin/perl -w +# This script reads configure.ac, and replaces all occurences of +# @.+@ in script and manpage with values. +# It returns 0 on success, 1 if it missed something. +# +# Stéphane (kwisatz) Jourdois +# Mon, 16 Aug 2004 15:22:24 +0200 + +use strict; + +my %vars = ( + 'PERL' => '/usr/bin/perl', +); + +my ($from, $to) = @ARGV; + +open AC, ') { + if (/^AC_INIT\((\w+), ([0-9.]+), .+\)/) { + $vars{'PACKAGE_NAME'} = $1; + $vars{'PACKAGE_VERSION'} = $2; + + # Remove this line if there is are + # other interesting lines in configure.ac + # For now there isn't. + last; + } +} +close AC; + +open FROM, "<$from" or die "Cannot read $from: $!\n"; +open TO, ">$to" or die "Cannot write $to: $!\n"; + +while () { + for my $var (keys %vars) { + s/\@$var\@/$vars{$var}/g; + } + print TO; +} + +close FROM; +close TO; --- atool-0.37.0.orig/debian/rules +++ atool-0.37.0/debian/rules @@ -1,4 +1,67 @@ -#! /usr/bin/make -f +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/autotools.mk +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +clean: + dh_testdir + dh_testroot + rm -f atool.1 + dh_clean + +build: build-stamp + +build-stamp: config.status + dh_testdir + $(MAKE) + touch $@ + +config.status: + dh_testdir + ./configure $(CROSS) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --sysconfdir=/etc + +install: build + dh_testdir + dh_testroot + dh_prep + dh_installdirs + perl debian/replace_autoconf_vars atool.1.in atool.1 + cp $(CURDIR)/extra/bash-completion-atool* $(CURDIR)/debian/atool/etc/bash_completion.d/atool + chmod -x $(CURDIR)/debian/atool/etc/bash_completion.d/atool + dh_install + +binary-arch: + +binary-indep: install + dh_testdir + dh_testroot + dh_installchangelogs NEWS + dh_installdocs + dh_installexamples + dh_installman + dh_link usr/bin/atool usr/bin/acat \ + usr/bin/atool usr/bin/adiff \ + usr/bin/atool usr/bin/als \ + usr/bin/atool usr/bin/apack \ + usr/bin/atool usr/bin/arepack \ + usr/bin/atool usr/bin/aunpack \ + usr/share/man/man1/atool.1 /usr/share/man/man1/acat.1 \ + usr/share/man/man1/atool.1 /usr/share/man/man1/adiff.1 \ + usr/share/man/man1/atool.1 /usr/share/man/man1/als.1 \ + usr/share/man/man1/atool.1 /usr/share/man/man1/apack.1 \ + usr/share/man/man1/atool.1 /usr/share/man/man1/arepack.1 \ + usr/share/man/man1/atool.1 /usr/share/man/man1/aunpack.1 + dh_compress + dh_fixperms + dh_lintian + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: clean build binary-indep binary install binary-arch --- atool-0.37.0.orig/debian/install +++ atool-0.37.0/debian/install @@ -0,0 +1,2 @@ +atool usr/bin +debian/atool.conf etc --- atool-0.37.0.orig/debian/docs +++ atool-0.37.0/debian/docs @@ -0,0 +1,4 @@ +README +README.Debian +TODO +debian/TODO.Debian --- atool-0.37.0.orig/debian/README.Debian +++ atool-0.37.0/debian/README.Debian @@ -0,0 +1,13 @@ +atool for Debian +----------------- + +If you using a machine with more than one CPU core, you should install the +pbzip2 (Parallel bzip2) package to speed up bzip2 compression/decompression. + +To enable support for this program in atool, you will need to add the +following to your ~/.atoolrc: + + use_pbzip2 1 + use_tar_bzip2_option 0 + + -- Francois Marier Mon, 23 Jun 2008 18:37:26 +1200 --- atool-0.37.0.orig/debian/changelog +++ atool-0.37.0/debian/changelog @@ -1,158 +1,114 @@ -atool (0.37.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Thu, 13 Aug 2009 18:20:21 +0200 - -atool (0.36.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Thu, 26 Feb 2009 18:23:34 +0100 - -atool (0.35.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Sun, 08 Jun 2008 18:16:07 +0200 - -atool (0.34.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Thu, 03 Apr 2008 19:04:35 +0200 - -atool (0.33.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Wed, 22 Aug 2007 17:49:48 +0200 - -atool (0.32.0-1) unstable; urgency=low +atool (0.37.0-2) unstable; urgency=low - * New upstream release. - - -- Oskar Liljeblad Tue, 13 Dec 2005 14:01:22 +0100 - -atool (0.31.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Mon, 8 Aug 2005 16:33:24 +0200 - -atool (0.30.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Mon, 25 Jul 2005 09:02:05 +0200 - -atool (0.29.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Mon, 5 Jul 2004 20:15:17 +0200 - -atool (0.28.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Fri, 18 Jun 2004 16:30:25 +0200 - -atool (0.27.0-1) unstable; urgency=low - - * New upstream release. + * Add configure and make lines to debian/rules (closes: #546735) + * Bump Standards-Version to 3.8.3 - -- Oskar Liljeblad Fri, 14 Nov 2003 17:17:51 +0100 + -- Francois Marier Wed, 16 Sep 2009 16:23:49 +1200 -atool (0.26.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Fri, 23 May 2003 15:57:07 +0200 - -atool (0.25.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Fri, 8 Nov 2002 18:02:04 +0100 - -atool (0.24.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Wed, 9 Oct 2002 12:21:02 +0200 - -atool (0.23.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Sat, 28 Sep 2002 14:35:52 +0200 - -atool (0.22.0-1) unstable; urgency=low - - * New upstream release. - - -- Oskar Liljeblad Tue, 17 Sep 2002 22:11:00 +0200 - -atool (0.21.0-1) unstable; urgency=low +atool (0.37.0-1) unstable; urgency=low - * New upstream release. + * New upstream release + - Adds support for xv and lzip + * debian/control: add xv-utils and lzip to Suggests - -- Oskar Liljeblad Mon, 16 Sep 2002 14:10:41 +0200 + -- Francois Marier Fri, 14 Aug 2009 12:23:58 +1200 -atool (0.20.0-1) unstable; urgency=low +atool (0.36.0-3) unstable; urgency=low - * New upstream release. + * Update unrar-nonfree to unrar + * Bump Standards-Version up to 3.8.2 (no changes) - -- Oskar Liljeblad Sun, 8 Sep 2002 11:42:00 +0200 + -- Francois Marier Sun, 28 Jun 2009 22:33:56 +1200 -atool (0.19.0-1) unstable; urgency=low +atool (0.36.0-2) unstable; urgency=low - * New upstream release. + * Add a symlink for arepack (LP: #373240) + * Bump Standards-Version up to 3.8.1 (no changes) - -- Oskar Liljeblad Sat, 13 Jul 2002 19:47:59 +0200 + -- Francois Marier Fri, 08 May 2009 09:10:35 +1200 -atool (0.18.0-1) unstable; urgency=low +atool (0.36.0-1) unstable; urgency=low - * New upstream release. + * New upstream release (closes: #514454) + * Add rar and unrar-nonfree to Suggests (closes: #503146) + * Bump debhelper compatibility to 7 + * Add a lintian override for an incorrect spelling warning - -- Oskar Liljeblad Tue, 2 Jul 2002 21:33:19 +0200 + -- Francois Marier Fri, 27 Feb 2009 12:40:15 +1300 -atool (0.17.0-1) unstable; urgency=low +atool (0.35.0-4) unstable; urgency=low - * New upstream release. + * Fix typos in README.Debian - -- Oskar Liljeblad Sun, 14 Apr 2002 23:54:41 +0200 + -- Francois Marier Tue, 24 Jun 2008 16:57:28 +1200 -atool (0.16.0-1) unstable; urgency=low +atool (0.35.0-3) unstable; urgency=low - * New upstream release. + * Add a number of compression packages to Suggests and Recommends + * Recommend pbzip2 and make a note about it in README.Debian - -- Oskar Liljeblad Sat, 9 Feb 2002 12:47:02 +0100 + -- Francois Marier Mon, 23 Jun 2008 18:38:44 +1200 -atool (0.15.0-1) unstable; urgency=low +atool (0.35.0-2) unstable; urgency=low - * New upstream release. + * Install the bash completion blurb for the atool binary + * Swap maintainer and uploader fields + * Move some packages from Suggests to Recommends - -- Oskar Liljeblad Sat, 22 Dec 2001 12:28:06 +0100 + -- Francois Marier Mon, 23 Jun 2008 14:41:18 +1200 -atool (0.14.0-1) unstable; urgency=low +atool (0.35.0-1) unstable; urgency=low - * New upstream release. + * New upstream release + * Bump Standards-Version up to 3.8.0 (no changes) - -- Oskar Liljeblad Sat, 17 Nov 2001 17:08:36 +0100 + -- Francois Marier Mon, 09 Jun 2008 11:25:34 +1200 -atool (0.13.0-1) unstable; urgency=low +atool (0.34.0-1) unstable; urgency=medium - * New upstream release. + * New upstream release (closes: #333956, #438670) + * Set myself as co-maintainer with maintainer's permission + * Update homepage URL in debian/copyright (closes: #452327) and + debian/watch (closes: #450134) + * Remove unarj from the suggested packages (closes: #312076) + * Mention the collab-maint git repo in debian/control + * Bump Standards-Version to 3.7.3 and debhelper compatibility to 6 + * Put a proper copyright statement in debian/copyright + * Remove Debian patches along with dpatch to facilitate collaborative + maintenance in the collab-maint repo. + * Move debhelper to Build-Depends and add empty binary-arch targer in + debian/rules to fix lintian errors. + + -- Francois Marier Sat, 26 Apr 2008 17:31:23 +1200 + +atool (0.29.0-2) unstable; urgency=low + + * Use rar as unpacker for rar archives by default (Closes: #273009). + * Remove Suggests: unrar, as atool supports unrar-nonfree and rar, but + not unrar. - -- Oskar Liljeblad Fri, 26 Oct 2001 10:37:38 +0200 + -- Stephane Jourdois Sun, 03 Oct 2004 14:38:13 +0200 -atool (0.12.0-1) unstable; urgency=low +atool (0.29.0-1) unstable; urgency=low - * New upstream release. + * New maintainer, thanks Tommi Virtanen. + * Sponsored by Michael Schiansky . + * New upstream release (Closes: #254815). + * Repackaged from scratch using debconf (Closes: #264691). + * Added 2 patches to fix typos in manpage (sent upstream). + * Added script to remove autoconf Build-Depend. + * Added default conffile. + * Added test script in /usr/share/doc/atool/examples/. + + -- Stephane Jourdois Thu, 12 Aug 2004 16:39:22 +0200 + +atool (0.11.0-2) unstable; urgency=low + + * Packaging for Debian. + * Removed Suggests: on a non-existing package "bzip" (Closes: #111308). + * Made lintian shut up about "Author(s)" in debian/copyright. - -- Oskar Liljeblad Mon, 18 Sep 2001 17:43:05 +0200 + -- Tommi Virtanen Mon, 10 Sep 2001 21:07:39 +0300 atool (0.11.0-1) unstable; urgency=low @@ -166,12 +122,26 @@ -- Oskar Liljeblad Wed, 1 Aug 2001 10:36:57 +0200 +atool (0.9.0-2) unstable; urgency=low + + * Packaging for Debian. + * Verbosity can be adjusted with config files, bug submitter is happy + (Closes: #99028). + + -- Tommi Virtanen Thu, 19 Jul 2001 22:09:28 +0300 + atool (0.9.0-1) unstable; urgency=low * New upstream release. -- Oskar Liljeblad Thu, 5 Jul 2001 15:10:00 +0200 +atool (0.8.0-2) unstable; urgency=low + + * Packaging for Debian. + + -- Tommi Virtanen Sun, 15 Jul 2001 01:07:09 +0300 + atool (0.8.0-1) unstable; urgency=low * New upstream release. @@ -184,6 +154,13 @@ -- Oskar Liljeblad Mon, 16 Apr 2001 13:36:00 +0200 +atool (0.6.0-2) unstable; urgency=low + + * Packaging for Debian. + * NEWS removed from debian/docs, seems like upstream forgot to include it. + + -- Tommi Virtanen Sat, 14 Apr 2001 19:47:31 +0300 + atool (0.6.0-1) unstable; urgency=low * New upstream release. @@ -202,6 +179,4 @@ -- Oskar Liljeblad Tue, 27 Mar 2001 13:01:18 +0200 -Local variables: -mode: debian-changelog -End: + --- atool-0.37.0.orig/debian/watch +++ atool-0.37.0/debian/watch @@ -0,0 +1,3 @@ +# Watch file for atool +version=3 +http://savannah.nongnu.org/download/atool/ atool-([0-9.]+)\.tar\.gz --- atool-0.37.0.orig/debian/TODO.Debian +++ atool-0.37.0/debian/TODO.Debian @@ -0,0 +1,6 @@ + +Whishlist : + +- Patch to explain which package should be installed when a prog + is missing and user needs it for the asked action ; +- translations ; --- atool-0.37.0.orig/debian/dirs +++ atool-0.37.0/debian/dirs @@ -0,0 +1 @@ +etc/bash_completion.d --- atool-0.37.0.orig/debian/manpages +++ atool-0.37.0/debian/manpages @@ -0,0 +1 @@ +atool.1 --- atool-0.37.0.orig/debian/compat +++ atool-0.37.0/debian/compat @@ -0,0 +1 @@ +7 --- atool-0.37.0.orig/debian/copyright +++ atool-0.37.0/debian/copyright @@ -1,17 +1,16 @@ -This package was debianized by Oskar Liljeblad on -Tue, 27 Mar 2001 13:01:18 +0200. +This package was re-debianized by Stephane Jourdois on +Thu, 12 Aug 2004 16:39:22 +0200. It used to be maintained by +Tommi Virtanen -The source code can be obtained from http://www.nongnu.org/atool/. +It was downloaded from http://www.nongnu.org/atool/ Upstream Author: Oskar Liljeblad -Copyright: - -atool is Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 Oskar Liljeblad +Copyright: (C) 2001-2008 Oskar Liljeblad This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, @@ -19,9 +18,11 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, - Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - -On Debian GNU/Linux systems, the complete text of the GNU General -Public License can be found in `/usr/share/common-licenses/GPL'. + You should have received a copy of the GNU General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + USA + +You are free to distribute this software under the terms of the GNU General +Public License. On Debian systems, the complete text of the GNU General +Public License can be found in /usr/share/common-licenses/GPL-3 file. --- atool-0.37.0.orig/debian/control +++ atool-0.37.0/debian/control @@ -1,27 +1,27 @@ Source: atool Section: utils Priority: optional -Maintainer: Oskar Liljeblad -Build-Depends: cdbs, debhelper (>> 4.1.0) -Standards-Version: 3.6.1.1 +Maintainer: Francois Marier +Uploaders: Stephane Jourdois +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl +Standards-Version: 3.8.3 +Homepage: http://www.nongnu.org/atool/ +Vcs-Git: git://git.debian.org/git/collab-maint/atool.git +Vcs-Browser: http://git.debian.org/?p=collab-maint/atool.git;a=summary Package: atool Architecture: all Depends: ${perl:Depends} -Suggests: unzip, bzip, bzip2, fastjar, lzop, lzma -Description: A script for managing file archives of various types +Recommends: bash-completion, binutils, bzip2, file, unzip, zip, pbzip2 +Suggests: arc, arj, cpio, lzop, nomarch, rpm, unace, p7zip, unalz, lzma, rar, unrar, xz-utils, lzip +Description: A tool for managing file archives of various types atool is a script for managing file archives of various types (tar, - tar+gzip, zip etc). + tar+gzip, zip etc). The main command is probably aunpack, + extracting files from an archive. It overcomes the dreaded "multiple + files in archive root" problem by first extracting to a unique + subdirectory, and then moving back the files if possible. aunpack + also prevents local files from being overwritten by mistake. . - The main command is aunpack which extracts files from an archive. Did you - ever extract files from an archive, not checking whether the files were - located in a subdirectory or in the top directory of the archive, resulting - in files scattered all over the place? aunpack overcomes this problem by - first extracting to a new directory. If there was only a single file in the - archive, that file is moved to the original directory. aunpack also - prevents local files from being overwritten by mistake. - . - The other commands provided are apack (to create archives), als (to list - files in archives), and acat (to extract files to standard out). As atool - invokes external programs to handle the archives, not all commands may be - supported for a certain type of archives. + Other commands provided are apack (create archives), als (list files + in archives), and acat (extract files to standard out). --- atool-0.37.0.orig/debian/examples +++ atool-0.37.0/debian/examples @@ -0,0 +1 @@ +debian/test