Provide tar(1) and rmt(8) manpages.

* NEWS: Update.
* doc/Makefile.am: Add manpages.
* doc/tar.1: New file.

* src/tar.c (tar_help_filter): Handle LZOP_OPTION.
This commit is contained in:
Sergey Poznyakoff
2014-01-27 13:20:11 +02:00
parent a09e840507
commit f504821589
4 changed files with 1147 additions and 1 deletions
+7 -1
View File
@@ -1,4 +1,4 @@
GNU tar NEWS - User visible changes. 2014-01-22
GNU tar NEWS - User visible changes. 2014-01-27
Please send GNU tar bug reports to <bug-tar@gnu.org>
@@ -25,6 +25,12 @@ sign and the specifier letter.
current screen width, if {N} is not given.
%c - a shortcut for "%{%Y-%m-%d %H:%M:%S}t: %ds, %{read,wrote}T%*\r"
* Manpages
This release includes official tar(1) and rmt(8) manpages.
Distribution maintainers are kindly asked to use these instead of the
home-made pages they provided so far.
version 1.27.1 - Sergey Poznyakoff, 2013-11-17
+3
View File
@@ -32,6 +32,9 @@ tar_TEXINFOS = \
snapshot.texi\
sparse.texi\
value.texi
dist_man_MANS=tar.1 rmt.8
EXTRA_DIST = gendocs_template mastermenu.el texify.sed untabify.el
# The rendering level is anyone of PUBLISH, DISTRIB or PROOF.
+1134
View File
File diff suppressed because it is too large Load Diff
+3
View File
@@ -1167,6 +1167,9 @@ tar_help_filter (int key, const char *text, void *input)
s = xasprintf (_("filter the archive through %s"), LZMA_PROGRAM);
break;
case LZOP_OPTION:
s = xasprintf (_("filter the archive through %s"), LZOP_PROGRAM);
case 'J':
s = xasprintf (_("filter the archive through %s"), XZ_PROGRAM);
break;