[openssl] master update
tmraz at fedoraproject.org
tmraz at fedoraproject.org
Thu Sep 26 06:11:18 UTC 2019
The branch master has been updated
via a6dd3a3aa2577fa6c3586b96fe0b46be336cff54 (commit)
from 0dceb3f5d8f70a763a9c94203079e0f806bc73ba (commit)
- Log -----------------------------------------------------------------
commit a6dd3a3aa2577fa6c3586b96fe0b46be336cff54
Author: Rich Salz <rsalz at akamai.com>
Date: Tue Sep 24 11:32:01 2019 -0400
Ensure man1 POD files start with openssl-
Commit b6b66573 (PR #9679) renamed most POD files. This change causes
find-doc-nits to flag misnamed files.
Also fix the two misnamed files that it found.
Reviewed-by: Richard Levitte <levitte at openssl.org>
Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10000)
-----------------------------------------------------------------------
Summary of changes:
doc/man1/{fipsinstall.pod => openssl-fipsinstall.pod} | 0
doc/man1/{provider.pod => openssl-provider.pod} | 0
util/find-doc-nits | 8 ++++++++
3 files changed, 8 insertions(+)
rename doc/man1/{fipsinstall.pod => openssl-fipsinstall.pod} (100%)
rename doc/man1/{provider.pod => openssl-provider.pod} (100%)
diff --git a/doc/man1/fipsinstall.pod b/doc/man1/openssl-fipsinstall.pod
similarity index 100%
rename from doc/man1/fipsinstall.pod
rename to doc/man1/openssl-fipsinstall.pod
diff --git a/doc/man1/provider.pod b/doc/man1/openssl-provider.pod
similarity index 100%
rename from doc/man1/provider.pod
rename to doc/man1/openssl-provider.pod
diff --git a/util/find-doc-nits b/util/find-doc-nits
index 03b88ea767..11dcfcbac3 100755
--- a/util/find-doc-nits
+++ b/util/find-doc-nits
@@ -667,6 +667,14 @@ if ( $opt_n ) {
check($_);
}
}
+
+ # If not given args, check that all man1 commands are named properly.
+ if ( scalar @ARGV == 0 ) {
+ foreach (glob('doc/man1/*.pod')) {
+ next if /CA.pl/ || /openssl.pod/;
+ err("$_ doesn't start with openssl-") unless /openssl-/;
+ }
+ }
}
if ( $opt_u || $opt_v) {
More information about the openssl-commits
mailing list