Blame SOURCES/unzip-6.0-manpageandusage.patch

953429
diff -urNp unzip60-orig/man/zipinfo.1 unzip60/man/zipinfo.1
953429
--- unzip60-orig/man/zipinfo.1	2009-04-20 00:39:00.000000000 +0200
953429
+++ unzip60/man/zipinfo.1	2013-09-27 14:30:41.650716964 +0200
953429
@@ -39,10 +39,10 @@
953429
 zipinfo \- list detailed information about a ZIP archive
953429
 .PD
953429
 .SH SYNOPSIS
953429
-\fBzipinfo\fP [\fB\-12smlvhMtTz\fP] \fIfile\fP[\fI.zip\fP]
953429
+\fBzipinfo\fP [\fB\-12CsmlvhMtTz\fP] \fIfile\fP[\fI.zip\fP]
953429
 [\fIfile(s)\fP\ .\|.\|.] [\fB\-x\fP\ \fIxfile(s)\fP\ .\|.\|.]
953429
 .PP
953429
-\fBunzip\fP \fB\-Z\fP [\fB\-12smlvhMtTz\fP] \fIfile\fP[\fI.zip\fP]
953429
+\fBunzip\fP \fB\-Z\fP [\fB\-12CsmlvhMtTz\fP] \fIfile\fP[\fI.zip\fP]
953429
 [\fIfile(s)\fP\ .\|.\|.] [\fB\-x\fP\ \fIxfile(s)\fP\ .\|.\|.]
953429
 .PD
953429
 .\" =========================================================================
953429
@@ -112,6 +112,10 @@ list filenames only, one per line, but a
953429
 (\fB\-t\fP) and zipfile comments (\fB\-z\fP), as well.  This option may be
953429
 useful in cases where the stored filenames are particularly long.
953429
 .TP
953429
+.B \-C
953429
+use case\-insensitive matching for the selection of archive entries from
953429
+the command\-line list of extract selection patterns.
953429
+.TP
953429
 .B \-s
953429
 list zipfile info in short Unix ``\fCls \-l\fR'' format.  This is the default
953429
 behavior; see below.
953429
diff -urNp unzip60-orig/unzip.c unzip60/unzip.c
953429
--- unzip60-orig/unzip.c	2009-04-16 20:26:52.000000000 +0200
953429
+++ unzip60/unzip.c	2013-09-27 14:45:14.074371612 +0200
953429
@@ -318,8 +318,8 @@ ZipInfo %d.%d%d%s of %s, by Greg Roelofs
953429
 List name, date/time, attribute, size, compression method, etc., about files\n\
953429
 in list (excluding those in xlist) contained in the specified .zip archive(s).\
953429
 \n\"file[.zip]\" may be a wildcard name containing %s.\n\n\
953429
-   usage:  zipinfo [-12smlvChMtTz] file[.zip] [list...] [-x xlist...]\n\
953429
-      or:  unzip %s-Z%s [-12smlvChMtTz] file[.zip] [list...] [-x xlist...]\n";
953429
+   usage:  zipinfo [-12smlvCUhMtTz] file[.zip] [list...] [-x xlist...]\n\
953429
+      or:  unzip %s-Z%s [-12smlvCUhMtTz] file[.zip] [list...] [-x xlist...]\n";
953429
 
953429
 static ZCONST char Far ZipInfoUsageLine2[] = "\nmain\
953429
  listing-format options:             -s  short Unix \"ls -l\" format (def.)\n\
953429
@@ -331,6 +331,7 @@ static ZCONST char Far ZipInfoUsageLine3
953429
   -h  print header line       -t  print totals for listed files or for all\n\
953429
   -z  print zipfile comment   -T  print file times in sortable decimal format\
953429
 \n  -C  be case-insensitive   %s\
953429
+  -U  use escapes for all non-ASCII Unicode\n\
953429
   -x  exclude filenames that follow from listing\n";
953429
 #ifdef MORE
953429
    static ZCONST char Far ZipInfoUsageLine4[] =
953429
@@ -2295,6 +2296,9 @@ static void help_extended(__G)
953429
   "unzipsfx modifiers:",
953429
   "  Most unzip modifiers are supported.  These include",
953429
   "  -a     - Convert text files.",
953429
+  "  -b     - treat all files as binary (no text conversions)",
953429
+  "  -D     - skip restoration  of timestamps for extracted items.",
953429
+  "  -M     - pipe all output through an internal pager (similar to more(1)).",
953429
   "  -n     - Never overwrite.",
953429
   "  -o     - Overwrite without prompting.",
953429
   "  -q     - Quiet operation.",