--- atool-0.29.0.orig/debian/docs +++ atool-0.29.0/debian/docs @@ -0,0 +1,4 @@ +README +README.Debian +TODO +debian/TODO.Debian --- atool-0.29.0.orig/debian/test +++ atool-0.29.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.29.0.orig/debian/control +++ atool-0.29.0/debian/control @@ -0,0 +1,23 @@ +Source: atool +Section: utils +Priority: optional +Maintainer: Stephane Jourdois +Build-Depends-Indep: debhelper (>= 4.0.0), dpatch, perl +Standards-Version: 3.6.1 + +Package: atool +Architecture: all +Depends: ${perl:Depends} +Suggests: binutils, arc, arj, bzip2, cpio, file, lzop, nomarch, rpm, unace, unarj, unzip, zip +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). 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. + . + Other commands provided are apack (create archives), als (list files + in archives), and acat (extract files to standard out). + . + Homepage: http://www.student.lu.se/~nbi98oli/atool.html --- atool-0.29.0.orig/debian/replace_autoconf_vars +++ atool-0.29.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.29.0.orig/debian/rules +++ atool-0.29.0/debian/rules @@ -0,0 +1,53 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +clean: clean-patched unpatch +clean-patched: + dh_testdir + dh_testroot + rm -f atool atool.1 + dh_clean + +install: patch + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + perl debian/replace_autoconf_vars atool.in atool + perl debian/replace_autoconf_vars atool.1.in atool.1 + dh_install + +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/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/aunpack.1 + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep +.PHONY: clean build binary-indep binary install --- atool-0.29.0.orig/debian/watch +++ atool-0.29.0/debian/watch @@ -0,0 +1,3 @@ +# Watch file for atool +version=2 +http://www.student.lu.se/~nbi98oli/src/atool-(.*)\.tar\.gz --- atool-0.29.0.orig/debian/changelog +++ atool-0.29.0/debian/changelog @@ -0,0 +1,99 @@ +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. + + -- Stephane Jourdois Sun, 03 Oct 2004 14:38:13 +0200 + +atool (0.29.0-1) unstable; urgency=low + + * 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. + + -- Tommi Virtanen Mon, 10 Sep 2001 21:07:39 +0300 + +atool (0.11.0-1) unstable; urgency=low + + * New upstream release. + + -- Oskar Liljeblad Mon, 13 Aug 2001 23:06:17 +0200 + +atool (0.10.0-1) unstable; urgency=low + + * New upstream release. + + -- 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. + + -- Oskar Liljeblad Thu, 5 Jul 2001 15:10:00 +0200 + +atool (0.7.0-1) unstable; urgency=low + + * New upstream release. + + -- 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. + + -- Oskar Liljeblad Wed, 4 Apr 2001 14:10:00 +0200 + +atool (0.5.0-1) unstable; urgency=low + + * New upstream release. + + -- Oskar Liljeblad Wed, 28 Mar 2001 08:12:00 +0200 + +atool (0.4.0-1) unstable; urgency=low + + * Initial Release. + + -- Oskar Liljeblad Tue, 27 Mar 2001 13:01:18 +0200 + + --- atool-0.29.0.orig/debian/manpages +++ atool-0.29.0/debian/manpages @@ -0,0 +1 @@ +atool.1 --- atool-0.29.0.orig/debian/compat +++ atool-0.29.0/debian/compat @@ -0,0 +1 @@ +4 --- atool-0.29.0.orig/debian/TODO.Debian +++ atool-0.29.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.29.0.orig/debian/atool.conf +++ atool-0.29.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.29.0.orig/debian/patches/01-manpage_format_uppercase.dpatch +++ atool-0.29.0/debian/patches/01-manpage_format_uppercase.dpatch @@ -0,0 +1,43 @@ +#! /bin/sh -e +## 01-manpage_format_uppercase.dpatch by Stephane Jourdois +## +## DP: Fixes two little typos in man page. + +if [ $# -lt 1 ]; then + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1 +fi + +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts +patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}" + +case "$1" in + -patch) patch -p0 ${patch_opts} < $0;; + -unpatch) patch -R -p0 ${patch_opts} < $0;; + *) + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1;; +esac + +exit 0 + +--- atool.1.in 2004-07-02 10:21:58.000000000 +0200 ++++ atool.1.in.modified 2004-08-11 16:38:33.000000000 +0200 +@@ -45,7 +45,7 @@ + \fBadiff\fP generates a diff between two archives using + diff(1). + .PP +-Unless the \fB\-\-format\fP (\fB\-f\fP) option is provided, ++Unless the \fB\-\-format\fP (\fB\-F\fP) option is provided, + the archive format is determined by the archive file extension. I.e. + an extension ".tar.gz" or ".tgz" means tar+gzip format. Note that + the extensions are checked in the order listed in the section +@@ -170,7 +170,7 @@ + .B \-\-version + Output version information and exit. + .SH ARCHIVE TYPES +-Unless the \-f (\-\-format) option is provided, the archive format ++Unless the \-F (\-\-format) option is provided, the archive format + is determined by the archive file extension. I.e. an extension + ".tar.gz" or ".tgz" means tar+gzip format. Note that the extensions + are checked in the other listed above, which is why a file --- atool-0.29.0.orig/debian/patches/02-echap_dashes_in_manpage.dpatch +++ atool-0.29.0/debian/patches/02-echap_dashes_in_manpage.dpatch @@ -0,0 +1,225 @@ +#! /bin/sh -e +## 02-echap_dashes_in_manpage.dpatch by Stephane Jourdois +## +## DP: Escape all dashes in man page + +if [ $# -lt 1 ]; then + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1 +fi + +[ -f debian/patches/00patch-opts ] && . debian/patches/00patch-opts +patch_opts="${patch_opts:--f --no-backup-if-mismatch} ${2:+-d $2}" + +case "$1" in + -patch) patch -p0 ${patch_opts} < $0;; + -unpatch) patch -R -p0 ${patch_opts} < $0;; + *) + echo "`basename $0`: script expects -patch|-unpatch as argument" >&2 + exit 1;; +esac + +exit 0 + +--- atool.1.in 2004-08-13 15:25:14.000000000 +0200 ++++ atool.1.in.modified 2004-08-13 15:30:46.000000000 +0200 +@@ -1,5 +1,5 @@ + .TH atool 1 "July 1, 2004" +-.\" Read this file with groff -man -Tascii atool.1 ++.\" Read this file with groff \-man \-Tascii atool.1 + .SH NAME + atool \- A script for managing file archives of various types + .SH SYNOPSIS +@@ -53,7 +53,7 @@ + is considered to a be tar+gzip archive, not a gzip compressed file. + .SH OPTIONS + These programs follow the usual GNU command line syntax, with long +-options starting with two dashes (`-'). ++options starting with two dashes (`\-'). + A summary of options is included below. + .TP + .B \-l, \-\-list +@@ -64,7 +64,7 @@ + Extract files from archive. + This option is automaticly assumed when \fBaunpack\fP is executed. + .TP +-.B \-X, \-\-extract-to\fR=\fIPATH\fR ++.B \-X, \-\-extract\-to\fR=\fIPATH\fR + Extract files from archive to the specified directory. When + unpacking compressed files, PATH may refer to either a filename + or an existing directory. +@@ -128,7 +128,7 @@ + to archives, the list of files will be read from standard in. + Normally these filenames are separated by newline, but with this + option they are separated by null-bytes. This is useful with the +-GNU find -print0 option. ++GNU find \-print0 option. + .TP + .B \-q, \-\-quiet + Decrease verbosity level by one. This is subtracted from the +@@ -158,7 +158,7 @@ + the archive was extracted to to the specified file. If the + command was not `extract', or the archive was not extracted to + a new directory, then nothing will be written to the specified +-file. If multiple archives were specified (with -e), then ++file. If multiple archives were specified (with \-e), then + only the last directory that files were extracted to will be + written to FILE. + +@@ -261,15 +261,15 @@ + The options are: + .TP + .B use_tar_bzip2_option \fR(default: 1)\fR +-Enable this if you use GNU tar and it supports the \fB\--bzip2\fP option ++Enable this if you use GNU tar and it supports the \fB\-\-bzip2\fP option + for filtering bzip2'ed files through bzip2. Versions 1.13.6 +-or later of GNU tar support \fB\--bzip2\fP. Therefore, if you use ++or later of GNU tar support \fB\-\-bzip2\fP. Therefore, if you use + 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. ++This used to be \fBuse_tar_j_option\fP but using \-\-bzip2 is more portable. + .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 ++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 + this and \fIuse_tar_j_option\fR if you don't use GNU tar. + +@@ -300,8 +300,8 @@ + (path_arj) even when listing and extracting ARJ files. + .TP + .B use_find_cpio_print0 \fR(default: 1)\fR +-Enable this if find supports the -print0 option and cpio supports +-the -0 option. Without it, it is impossible/harder to make cpio ++Enable this if find supports the \-print0 option and cpio supports ++the \-0 option. Without it, it is impossible/harder to make cpio + archives of files with newline characters in their names. + .TP + .B strip_unknown_ext \fR(default: 1)\fR +@@ -310,7 +310,7 @@ + Gnumeric documents (gzip'ed files). Since the extensions of those + filenames are unknown to atool, they would not be stripped with + this option set to 0. The output file in that case would be something +-like Unpack-XYZW. Setting this option to 1 will cause the extension ++like Unpack\-XYZW. Setting this option to 1 will cause the extension + to be stripped instead. + .TP + .B use_jar \fR(default: 0)\fR +@@ -332,7 +332,7 @@ + For this reason, files packed with gzip and other file + compressors are not identified either. + .TP +-.B tmpdir_name \fR(default: Unpack-%04d)\fR ++.B tmpdir_name \fR(default: Unpack\-%04d)\fR + atool extracts to a temporary directory created in the current + directory so that no files are overwritten. This variable + controlls what name that temporary directory should have. +@@ -398,7 +398,7 @@ + best to leave them as is, because that way their locations can be + looked up from the PATH variable. + .TP +-.B args_diff \fR(default: -ru)\fR ++.B args_diff \fR(default: \-ru)\fR + This variable specifies command line arguments to pass to the + diff command (as specified by path_diff) when using adiff. Space + characters separate arguments in this string. +@@ -417,7 +417,7 @@ + directory (as determined by the HOME environment variable). + .TP + .B default_verbosity \fR(default: 1)\fR +-This is the default verbosity of atool. By using -q and -v ++This is the default verbosity of atool. By using \-q and \-v + options, the verbosity level can be raised and lowered. + Level 1 means "normal verbosity" - e.g. when creating and + extracting from archives, files will be listed. +@@ -431,7 +431,7 @@ + directory). + + This can be quite useful in combinatiaon with `default_verbosity 0'. +-Note that this option will have no effect when the -X option is used ++Note that this option will have no effect when the \-X option is used + with aunpack, and it has no effect on compressed files. + .TP + .B keep_compressed \fR(default: 1)\fR +@@ -446,7 +446,7 @@ + Otherwise it will be deleted. + + Note however that this option has no effect when packing up a compressed +-file with the -X option (for specifying an output directory or file). In ++file with the \-X option (for specifying an output directory or file). In + that case the original file is always kept. + .TP + .B decompress_to_cwd \fR(default: 1)\fR +@@ -455,11 +455,11 @@ + compressed file. With this option set to 1, the decompressed file is + instead placed in the current working directory. + +-Note that this option has no effect when -X is used. ++Note that this option has no effect when \-X is used. + + .SH ENVIRONMENT VARIABLES + .B PAGER +-The default pager to use when the -p/--page option is specified. ++The default pager to use when the \-p/\-\-page option is specified. + .SH EXAMPLES + To extract all files from archive `foobar.tar.gz' to a subdirectory + (or the current directory if it only contains one file): +@@ -469,7 +469,7 @@ + To extract all files from all `.tar.gz' archives in the + current directory: + .br +- \fBaunpack -e *.tar.gz\fP ++ \fBaunpack \-e *.tar.gz\fP + .PP + To create a zip archive of two files `foo' and `bar': + .br +@@ -478,7 +478,7 @@ + To display the file `baz' in the archive `myarchive.zip' + through a pager: + .br +- \fBacat -p myarchive.zip baz\fP ++ \fBacat \-p myarchive.zip baz\fP + .PP + To list contents of the rar archive `stuff.rar': + .br +@@ -488,11 +488,11 @@ + so that the first one contains all files in dir1, the second all + in dir2 and the third all dir3: + .br +- \fBapack -e -F .tar.gz dir1 dir2 dir3\fP ++ \fBapack \-e \-F .tar.gz dir1 dir2 dir3\fP + .PP + To show all differences between version 2.4.17 and 2.4.18 of the kernel: + .br +- \fBadiff linux-2.4.17.tar.gz linux-2.4.18.tar.gz\fP ++ \fBadiff linux\-2.4.17.tar.gz linux\-2.4.18.tar.gz\fP + .PP + Here's a shell function that will make the aunpack command change into the + directory where files were extracted: +@@ -501,11 +501,11 @@ + .br + \fB TMP=`mktemp /tmp/aunpack.XXXXXXXXXX`\fP + .br +- \fB atool -x --save-outdir=$TMP "$@"\fP ++ \fB atool \-x \-\-save\-outdir=$TMP "$@"\fP + .br + \fB DIR="`cat $TMP`"\fP + .br +- \fB [ "$DIR" != "" -a -d "$DIR" ] && cd "$DIR"\fP ++ \fB [ "$DIR" != "" \-a \-d "$DIR" ] && cd "$DIR"\fP + .br + \fB rm $TMP\fP + .br +@@ -522,9 +522,9 @@ + .PP + aunpack: foo: format not known, identifying using file + aunpack: foo: format is `gzip' +- gzip: foo: unknown suffix -- ignored ++ gzip: foo: unknown suffix \-\- ignored + .PP +-This last error above is generated by \fBgzip -d foo\fP. ++This last error above is generated by \fBgzip \-d foo\fP. + .PP + If you find a bug not listed here, please report it with reportbug. + .SH AUTHOR --- atool-0.29.0.orig/debian/patches/00list +++ atool-0.29.0/debian/patches/00list @@ -0,0 +1,2 @@ +01-manpage_format_uppercase.dpatch +02-echap_dashes_in_manpage.dpatch --- atool-0.29.0.orig/debian/copyright +++ atool-0.29.0/debian/copyright @@ -0,0 +1,16 @@ +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 + + +It was downloaded from http://www.student.lu.se/~nbi98oli/src/atool-0.29.0.tar.gz + + +Upstream Author: Oskar Liljeblad + + +Copyright (C) 2001-2003 Oskar Liljeblad + +atool is placed under the GPL. +Please refer to /usr/share/common-licenses/GPL . --- atool-0.29.0.orig/debian/examples +++ atool-0.29.0/debian/examples @@ -0,0 +1 @@ +debian/test --- atool-0.29.0.orig/debian/install +++ atool-0.29.0/debian/install @@ -0,0 +1,2 @@ +atool usr/bin +debian/atool.conf etc --- atool-0.29.0.orig/README.Debian +++ atool-0.29.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