From adbe38172de077ce943e3de81a954bd7e2fa1b5e Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT service" Date: Tue, 3 Feb 2009 03:21:32 +0100 Subject: [PATCH] added patch from #194 --- ChangeLog | 1 + vfs/extfs/u7z | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6e808b1e6..2421f9245 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,7 @@ 2009-02-03 Enrico Weigelt, metux ITS * lib/mc.lib: added patch on #219 by angel_il + * vfs/extfs/u7z: patch from mandriva (#194) 2009-02-01 Enrico Weigelt, metux ITS diff --git a/vfs/extfs/u7z b/vfs/extfs/u7z index 080357442..b346d05ef 100644 --- a/vfs/extfs/u7z +++ b/vfs/extfs/u7z @@ -2,6 +2,7 @@ # # extfs support for p7zip # Written by Pavel Roskin +# Some Bugfixes/workarounds by Sergiy Niskorodov # Licensed under GNU GPL version 2 or later version. P7ZIP=7za @@ -19,7 +20,10 @@ mcu7zip_list () mcu7zip_copyout () { - $P7ZIP e -so "$1" "$2" > "$3" 2>/dev/null + #first we check if we have old p7zip archive with prefix ./ in filename + $P7ZIP l "$1" "$2" | grep -q "0 files" && \ + EXFNAME=*./"$2" || EXFNAME="$2" + $P7ZIP e -so "$1" "$EXFNAME" > "$3" 2>/dev/null } mcu7zip_copyin () @@ -31,19 +35,27 @@ mcu7zip_mkdir () { dir=`mktemp -d "${MC_TMPDIR:-/tmp}/mctmpdir-u7z.XXXXXX"` || exit 1 mkdir -p "$dir"/"$2" - $P7ZIP a -w"$dir" "$1" "$2" >/dev/null 2>&1 + $P7ZIP a -w"$dir" "$1" "$dir"/"$2" >/dev/null 2>&1 rm -rf "$dir" } mcu7zip_rm () { # NOTE: Version 4.20 fails to delete files in subdirectories - $P7ZIP d "$1" "$2" >/dev/null 2>&1 + #first we check if we have old p7zip archive with prefix ./ in filename + $P7ZIP l "$1" "$2" | grep -q "0 files" && \ + EXFNAME=*./"$2" || EXFNAME="$2" + $P7ZIP d "$1" "$EXFNAME" 2>&1 | grep -q E_NOTIMPL &> /dev/null && \ + { echo -e "Function not implemented...\n7z cannot delete from solid archive." >&2 ; exit 1 ; } } mcu7zip_rmdir () { - $P7ZIP d "$1" "$2"/ >/dev/null 2>&1 + #first we check if we have old p7zip archive with prefix ./ in filename + $P7ZIP l "$1" "$2" | grep -q "0 files" && \ + EXFNAME=*./"$2" || EXFNAME="$2" + $P7ZIP d "$1" "$EXFNAME"/ 2>&1 | grep -q E_NOTIMPL &> /dev/null && \ + { echo -e "Function not implemented...\n7z cannot delete from solid archive." >&2 ; exit 1 ; } } # override any locale for dates