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

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