Your message dated Sun, 30 May 2010 23:18:21 +0000
with message-id <[email protected]>
and subject line Bug#492369: fixed in unp 2.0~pre1
has caused the Debian Bug report #492369,
regarding unp: add support for lzma, 7-zip and xz
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
492369: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=492369
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: unp
Version: 1.0.15
Severity: wishlist
Tags: patch
This patch adds support for ".tar.lzma" and ".7z" files.
--- unp.orig 2008-07-25 12:16:27.000000000 -0400
+++ unp 2008-07-25 12:26:26.000000000 -0400
@@ -38,6 +38,8 @@
}
%pkgmap = (
+ lzma, "lzma",
+ 7z, "p7zip $or p7zip-full",
cpio, "afio $or cpio",
afio, "afio $or cpio",
rpm2cpio, "rpm, afio $or cpio",
@@ -153,6 +155,7 @@
if ($UNP_FILEstr =~ /CAB file/i) { set_command 'cabextract $UNP_FILE'; }
if ($UNP_FILEstr =~ /cpio/i) { set_command('afio -Z -v -i $UNP_FILE','cpio
-i -d --verbose $UNP_ARGS < $UNP_FILE'); }
if ($UNP_FILEstr =~ /Zip.*archive/i) { set_command 'unzip $UNP_ARGS
$UNP_FILE'; }
+ if ($UNP_FILEstr =~ /7-zip.*archive/i) { set_command '7z x $UNP_ARGS
$UNP_FILE'; }
if ($UNP_FILEstr =~ /Zoo.*archive/i) { set_command 'unzoo -x $UNP_ARGS
$UNP_FILE'; }
if ($UNP_FILEstr =~ /shell.*archive/i) { set_command 'unshar $UNP_ARGS
$UNP_FILE'; }
if ($UNP_FILEstr =~ /Transport Neutral Encapsulation Format/i) {
set_command 'tnef -v $UNP_ARGS $UNP_FILE'; }
@@ -220,6 +223,7 @@
if ($UNP_FILE =~ /\.tgz$/i) { set_command 'tar -xvzf $UNP_FILE
$UNP_ARGS'; }
if ($UNP_FILE =~ /\.(tzo|tar\.lzop)$/i) { set_command 'lzop -v -d
$UNP_FILE | tar -xv $UNP_ARGS'; }
+ if ($UNP_FILE =~ /(\.|_)tar\.lzma$/i) { set_command 'lzma -cd $UNP_FILE
| tar -xvf - $UNP_ARGS'; }
if ($UNP_FILE =~ /\.rar$/i) { set_command('rar x $UNP_ARGS $UNP_FILE || rar
x -av- $UNP_ARGS $UNP_FILE','unrar x $UNP_ARGS $UNP_FILE || unrar x -av-
$UNP_ARGS $UNP_FILE'); }
if ($UNP_FILE =~ /\.(ar|deb)$/i) { set_command 'ar -x -v $UNP_FILE
$UNP_ARGS'; }
if ($UNP_FILE =~ /\.l(ha|zh)$/i) { set_command 'lha x $UNP_ARGS $UNP_FILE'; }
-- System Information:
Debian Release: lenny/sid
APT prefers unstable
APT policy: (500, 'unstable'), (99, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.25-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
unp depends on no packages.
unp recommends no packages.
Versions of packages unp suggests:
pn 7z <none> (no description available)
pn archmage <none> (no description available)
ii bzip2 1.0.5-0.1 high-quality block-sorting file co
ii cabextract 1.2-3 a program to extract Microsoft Cab
pn orange <none> (no description available)
pn unrar | unrar-free <none> (no description available)
ii unzip 5.52-11 De-archiver for .zip files
pn xdms <none> (no description available)
-- no debconf information
--- unp.orig 2008-07-25 12:16:27.000000000 -0400
+++ unp 2008-07-25 12:26:26.000000000 -0400
@@ -38,6 +38,8 @@
}
%pkgmap = (
+ lzma, "lzma",
+ 7z, "p7zip $or p7zip-full",
cpio, "afio $or cpio",
afio, "afio $or cpio",
rpm2cpio, "rpm, afio $or cpio",
@@ -153,6 +155,7 @@
if ($UNP_FILEstr =~ /CAB file/i) { set_command 'cabextract $UNP_FILE'; }
if ($UNP_FILEstr =~ /cpio/i) { set_command('afio -Z -v -i $UNP_FILE','cpio
-i -d --verbose $UNP_ARGS < $UNP_FILE'); }
if ($UNP_FILEstr =~ /Zip.*archive/i) { set_command 'unzip $UNP_ARGS
$UNP_FILE'; }
+ if ($UNP_FILEstr =~ /7-zip.*archive/i) { set_command '7z x $UNP_ARGS
$UNP_FILE'; }
if ($UNP_FILEstr =~ /Zoo.*archive/i) { set_command 'unzoo -x $UNP_ARGS
$UNP_FILE'; }
if ($UNP_FILEstr =~ /shell.*archive/i) { set_command 'unshar $UNP_ARGS
$UNP_FILE'; }
if ($UNP_FILEstr =~ /Transport Neutral Encapsulation Format/i) {
set_command 'tnef -v $UNP_ARGS $UNP_FILE'; }
@@ -220,6 +223,7 @@
if ($UNP_FILE =~ /\.tgz$/i) { set_command 'tar -xvzf $UNP_FILE
$UNP_ARGS'; }
if ($UNP_FILE =~ /\.(tzo|tar\.lzop)$/i) { set_command 'lzop -v -d
$UNP_FILE | tar -xv $UNP_ARGS'; }
+ if ($UNP_FILE =~ /(\.|_)tar\.lzma$/i) { set_command 'lzma -cd $UNP_FILE
| tar -xvf - $UNP_ARGS'; }
if ($UNP_FILE =~ /\.rar$/i) { set_command('rar x $UNP_ARGS $UNP_FILE || rar
x -av- $UNP_ARGS $UNP_FILE','unrar x $UNP_ARGS $UNP_FILE || unrar x -av-
$UNP_ARGS $UNP_FILE'); }
if ($UNP_FILE =~ /\.(ar|deb)$/i) { set_command 'ar -x -v $UNP_FILE
$UNP_ARGS'; }
if ($UNP_FILE =~ /\.l(ha|zh)$/i) { set_command 'lha x $UNP_ARGS $UNP_FILE'; }
--- End Message ---
--- Begin Message ---
Source: unp
Source-Version: 2.0~pre1
We believe that the bug you reported is fixed in the latest version of
unp, which is due to be installed in the Debian FTP archive:
unp_2.0~pre1.dsc
to main/u/unp/unp_2.0~pre1.dsc
unp_2.0~pre1.tar.gz
to main/u/unp/unp_2.0~pre1.tar.gz
unp_2.0~pre1_all.deb
to main/u/unp/unp_2.0~pre1_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Eduard Bloch <[email protected]> (supplier of updated unp package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Mon, 31 May 2010 01:03:15 +0200
Source: unp
Binary: unp
Architecture: source all
Version: 2.0~pre1
Distribution: experimental
Urgency: low
Maintainer: Eduard Bloch <[email protected]>
Changed-By: Eduard Bloch <[email protected]>
Description:
unp - unpack (almost) everything with one command
Closes: 270166 492369 504777 512582
Changes:
unp (2.0~pre1) experimental; urgency=low
.
* New preview version, rewrite from scratch
* Suggesting p7zip or p7zip-full (closes: #512582)
* lzma support, based on patches and suggestions from by Daniel Serpell,
Hanno Böck, Vincent Lefevre (thanks, closes: #492369)
* ucat: new option "-f" to force output even if uncompressed data or
"unknown" format was identified
* added bash_completion.d file (closes: #270166)
* new option, -U: smart moving of extracted results, i.e. when only one
file/directory is created, it's moved to the starting directory but
multiple files stay in a subdir (closes: #504777)
Checksums-Sha1:
d9d0dc713da83fd685347c1e3686fecbe697b402 677 unp_2.0~pre1.dsc
9063c8ffa801f75af50e4a0ad94f0307df9e74b6 16508 unp_2.0~pre1.tar.gz
24980916c3d38b8029f055c3ccab2f45d36a2da3 13498 unp_2.0~pre1_all.deb
Checksums-Sha256:
51f61c2355ca8bacdabc42e3c4edddec12bf9eaf8c39261d2ed04813364bc37c 677
unp_2.0~pre1.dsc
60e9dd8cae957c0462aae1e5bf63df3aa4559413863dc340e0906fcea0c821e8 16508
unp_2.0~pre1.tar.gz
52819fdbba9ce59f8a6ef50e6cf00e95df5a99f197abf1f96d858e4e9eb370e4 13498
unp_2.0~pre1_all.deb
Files:
b736c697a68153db7ac17735b11c95f4 677 utils extra unp_2.0~pre1.dsc
2142daaf99449b788c795d67190d1f6e 16508 utils extra unp_2.0~pre1.tar.gz
680e787588ebaf88905a00aac333aa2a 13498 utils extra unp_2.0~pre1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iD8DBQFMAu8l4QZIHu3wCMURAkYeAJ4+S+QelH5vH36l584RgT1UYIO3AACbBgQq
Z3IxfO7oUfHKYK1xT1TxWZo=
=vhi+
-----END PGP SIGNATURE-----
--- End Message ---