Blame SOURCES/1-fix-man-page-installation.patch

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