|
|
20628e |
From 836f4e735cf368542f14005e41d2f84ec29dfd60 Mon Sep 17 00:00:00 2001
|
|
|
20628e |
From: Yann Collet <yann.collet.73@gmail.com>
|
|
|
20628e |
Date: Sat, 4 Dec 2021 10:29:49 -0800
|
|
|
20628e |
Subject: [PATCH] fix man page installation
|
|
|
20628e |
|
|
|
20628e |
for variant redirectors (`xxh32sum`, `xxh64sum` and `xxh128sum`).
|
|
|
20628e |
fix #647, reported by @jpalus.
|
|
|
20628e |
|
|
|
20628e |
Also : slightly updated man page text, for clarity and accuracy.
|
|
|
20628e |
---
|
|
|
20628e |
Makefile | 14 ++++++++------
|
|
|
20628e |
cli/xxhsum.1 | 8 ++++----
|
|
|
20628e |
cli/xxhsum.1.md | 8 +++++---
|
|
|
20628e |
3 files changed, 17 insertions(+), 13 deletions(-)
|
|
|
20628e |
|
|
|
20628e |
diff --git a/Makefile b/Makefile
|
|
|
20628e |
index 2fbefbc..63273e1 100644
|
|
|
20628e |
--- a/Makefile
|
|
|
20628e |
+++ b/Makefile
|
|
|
20628e |
@@ -457,6 +457,7 @@ endif
|
|
|
20628e |
|
|
|
20628e |
INSTALL_PROGRAM ?= $(INSTALL)
|
|
|
20628e |
INSTALL_DATA ?= $(INSTALL) -m 644
|
|
|
20628e |
+INSTALL_DIR ?= $(INSTALL) -d -m 755
|
|
|
20628e |
|
|
|
20628e |
|
|
|
20628e |
# Escape special symbols by putting each character into its separate class
|
|
|
20628e |
@@ -496,7 +497,7 @@ libxxhash.pc: libxxhash.pc.in
|
|
|
20628e |
.PHONY: install
|
|
|
20628e |
install: lib libxxhash.pc xxhsum ## install libraries, CLI, links and man page
|
|
|
20628e |
@echo Installing libxxhash
|
|
|
20628e |
- $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(LIBDIR)
|
|
|
20628e |
+ $(Q)$(INSTALL_DIR) $(DESTDIR)$(LIBDIR)
|
|
|
20628e |
$(Q)$(INSTALL_DATA) libxxhash.a $(DESTDIR)$(LIBDIR)
|
|
|
20628e |
$(Q)$(INSTALL_PROGRAM) $(LIBXXH) $(DESTDIR)$(LIBDIR)
|
|
|
20628e |
$(Q)ln -sf $(LIBXXH) $(DESTDIR)$(LIBDIR)/libxxhash.$(SHARED_EXT_MAJOR)
|
|
|
20628e |
@@ -508,19 +509,20 @@ ifeq ($(DISPATCH),1)
|
|
|
20628e |
$(Q)$(INSTALL_DATA) xxh_x86dispatch.h $(DESTDIR)$(INCLUDEDIR)
|
|
|
20628e |
endif
|
|
|
20628e |
@echo Installing pkgconfig
|
|
|
20628e |
- $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(PKGCONFIGDIR)/
|
|
|
20628e |
+ $(Q)$(INSTALL_DIR) $(DESTDIR)$(PKGCONFIGDIR)/
|
|
|
20628e |
$(Q)$(INSTALL_DATA) libxxhash.pc $(DESTDIR)$(PKGCONFIGDIR)/
|
|
|
20628e |
@echo Installing xxhsum
|
|
|
20628e |
- $(Q)$(INSTALL) -d -m 755 $(DESTDIR)$(BINDIR)/ $(DESTDIR)$(MANDIR)/
|
|
|
20628e |
+ $(Q)$(INSTALL_DIR) $(DESTDIR)$(BINDIR)/
|
|
|
20628e |
$(Q)$(INSTALL_PROGRAM) xxhsum $(DESTDIR)$(BINDIR)/xxhsum
|
|
|
20628e |
$(Q)ln -sf xxhsum $(DESTDIR)$(BINDIR)/xxh32sum
|
|
|
20628e |
$(Q)ln -sf xxhsum $(DESTDIR)$(BINDIR)/xxh64sum
|
|
|
20628e |
$(Q)ln -sf xxhsum $(DESTDIR)$(BINDIR)/xxh128sum
|
|
|
20628e |
@echo Installing man pages
|
|
|
20628e |
+ $(Q)$(INSTALL_DIR) $(DESTDIR)$(MANDIR)/
|
|
|
20628e |
$(Q)$(INSTALL_DATA) $(MAN) $(DESTDIR)$(MANDIR)/xxhsum.1
|
|
|
20628e |
- $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh32sum.1
|
|
|
20628e |
- $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh64sum.1
|
|
|
20628e |
- $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh128sum.1
|
|
|
20628e |
+ $(Q)ln -sf xxhsum.1 $(DESTDIR)$(MANDIR)/xxh32sum.1
|
|
|
20628e |
+ $(Q)ln -sf xxhsum.1 $(DESTDIR)$(MANDIR)/xxh64sum.1
|
|
|
20628e |
+ $(Q)ln -sf xxhsum.1 $(DESTDIR)$(MANDIR)/xxh128sum.1
|
|
|
20628e |
@echo xxhash installation completed
|
|
|
20628e |
|
|
|
20628e |
.PHONY: uninstall
|
|
|
20628e |
diff --git a/cli/xxhsum.1 b/cli/xxhsum.1
|
|
|
20628e |
index 27e6808..715fc4b 100644
|
|
|
20628e |
--- a/cli/xxhsum.1
|
|
|
20628e |
+++ b/cli/xxhsum.1
|
|
|
20628e |
@@ -1,14 +1,14 @@
|
|
|
20628e |
-.TH "XXHSUM" "1" "November 2021" "xxhsum 0.8.1" "User Commands"
|
|
|
20628e |
+.TH "XXHSUM" "1" "December 2021" "xxhsum 0.8.1" "User Commands"
|
|
|
20628e |
.SH "NAME"
|
|
|
20628e |
\fBxxhsum\fR \- print or check xxHash non\-cryptographic checksums
|
|
|
20628e |
.SH "SYNOPSIS"
|
|
|
20628e |
\fBxxhsum [<OPTION>] \|\.\|\.\|\. [<FILE>] \|\.\|\.\|\.\fR \fBxxhsum \-b [<OPTION>] \|\.\|\.\|\.\fR
|
|
|
20628e |
.P
|
|
|
20628e |
-\fBxxh32sum\fR is equivalent to \fBxxhsum \-H0\fR \fBxxh64sum\fR is equivalent to \fBxxhsum \-H1\fR \fBxxh128sum\fR is equivalent to \fBxxhsum \-H2\fR
|
|
|
20628e |
+\fBxxh32sum\fR is equivalent to \fBxxhsum \-H0\fR, \fBxxh64sum\fR is equivalent to \fBxxhsum \-H1\fR, \fBxxh128sum\fR is equivalent to \fBxxhsum \-H2\fR
|
|
|
20628e |
.SH "DESCRIPTION"
|
|
|
20628e |
Print or check xxHash (32, 64 or 128 bits) checksums\. When no \fIFILE\fR, read standard input, except if it\'s the console\. When \fIFILE\fR is \fB\-\fR, read standard input even if it\'s the console\.
|
|
|
20628e |
.P
|
|
|
20628e |
-\fBxxhsum\fR supports a command line syntax similar but not identical to md5sum(1)\. Differences are: \fBxxhsum\fR doesn\'t have text/binary mode switch (\fB\-b\fR, \fB\-t\fR); \fBxxhsum\fR always treats files as binary file; \fBxxhsum\fR has a hash bit width switch (\fB\-H\fR);
|
|
|
20628e |
+\fBxxhsum\fR supports a command line syntax similar but not identical to md5sum(1)\. Differences are: \fBxxhsum\fR doesn\'t have text/binary mode switch (\fB\-b\fR, \fB\-t\fR); \fBxxhsum\fR always treats files as binary file; \fBxxhsum\fR has a hash selection switch (\fB\-H\fR);
|
|
|
20628e |
.P
|
|
|
20628e |
As xxHash is a fast non\-cryptographic checksum algorithm, \fBxxhsum\fR should not be used for security related purposes\.
|
|
|
20628e |
.P
|
|
|
20628e |
@@ -19,7 +19,7 @@ As xxHash is a fast non\-cryptographic checksum algorithm, \fBxxhsum\fR should n
|
|
|
20628e |
Displays xxhsum version and exits
|
|
|
20628e |
.TP
|
|
|
20628e |
\fB\-H\fR\fIHASHTYPE\fR
|
|
|
20628e |
-Hash selection\. \fIHASHTYPE\fR means \fB0\fR=XXH32, \fB1\fR=XXH64, \fB2\fR=XXH128, \fB3\fR=XXH3\. Alternatively, \fIHASHTYPE\fR \fB32\fR=XXH32, \fB64\fR=XXH64, \fB128\fR=XXH128\. Default value is \fB1\fR (64bits)
|
|
|
20628e |
+Hash selection\. \fIHASHTYPE\fR means \fB0\fR=XXH32, \fB1\fR=XXH64, \fB2\fR=XXH128, \fB3\fR=XXH3\. Note that \fB\-H3\fR triggers \fB\-\-tag\fR, which can\'t be skipped (this is to reduce risks of confusion with \fB\-H2\fR (\fBXXH64\fR))\. Alternatively, \fIHASHTYPE\fR \fB32\fR=XXH32, \fB64\fR=XXH64, \fB128\fR=XXH128\. Default value is \fB1\fR (64bits)
|
|
|
20628e |
.TP
|
|
|
20628e |
\fB\-\-tag\fR
|
|
|
20628e |
Output in the BSD style\.
|
|
|
20628e |
diff --git a/cli/xxhsum.1.md b/cli/xxhsum.1.md
|
|
|
20628e |
index 777d1ca..df2cb91 100644
|
|
|
20628e |
--- a/cli/xxhsum.1.md
|
|
|
20628e |
+++ b/cli/xxhsum.1.md
|
|
|
20628e |
@@ -7,8 +7,8 @@ SYNOPSIS
|
|
|
20628e |
`xxhsum [<OPTION>] ... [<FILE>] ...`
|
|
|
20628e |
`xxhsum -b [<OPTION>] ...`
|
|
|
20628e |
|
|
|
20628e |
-`xxh32sum` is equivalent to `xxhsum -H0`
|
|
|
20628e |
-`xxh64sum` is equivalent to `xxhsum -H1`
|
|
|
20628e |
+`xxh32sum` is equivalent to `xxhsum -H0`,
|
|
|
20628e |
+`xxh64sum` is equivalent to `xxhsum -H1`,
|
|
|
20628e |
`xxh128sum` is equivalent to `xxhsum -H2`
|
|
|
20628e |
|
|
|
20628e |
|
|
|
20628e |
@@ -23,7 +23,7 @@ When <FILE> is `-`, read standard input even if it's the console.
|
|
|
20628e |
Differences are:
|
|
|
20628e |
`xxhsum` doesn't have text/binary mode switch (`-b`, `-t`);
|
|
|
20628e |
`xxhsum` always treats files as binary file;
|
|
|
20628e |
-`xxhsum` has a hash bit width switch (`-H`);
|
|
|
20628e |
+`xxhsum` has a hash selection switch (`-H`);
|
|
|
20628e |
|
|
|
20628e |
As xxHash is a fast non-cryptographic checksum algorithm,
|
|
|
20628e |
`xxhsum` should not be used for security related purposes.
|
|
|
20628e |
@@ -38,6 +38,8 @@ OPTIONS
|
|
|
20628e |
|
|
|
20628e |
* `-H`<HASHTYPE>:
|
|
|
20628e |
Hash selection. <HASHTYPE> means `0`=XXH32, `1`=XXH64, `2`=XXH128, `3`=XXH3.
|
|
|
20628e |
+ Note that `-H3` triggers `--tag`, which can't be skipped
|
|
|
20628e |
+ (this is to reduce risks of confusion with `-H2` (`XXH64`)).
|
|
|
20628e |
Alternatively, <HASHTYPE> `32`=XXH32, `64`=XXH64, `128`=XXH128.
|
|
|
20628e |
Default value is `1` (64bits)
|
|
|
20628e |
|
|
|
20628e |
--
|
|
|
20628e |
2.36.1
|
|
|
20628e |
|