pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/mdoclint Remove -f. From Ingo Schwarze.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/b2a812c5902b
branches:  trunk
changeset: 363129:b2a812c5902b
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Jun 01 14:38:50 2017 +0000

description:
Remove -f. From Ingo Schwarze.
Similar check already in mandoc.

Bump version.

diffstat:

 textproc/mdoclint/Makefile         |   4 ++--
 textproc/mdoclint/files/mdoclint   |  14 +++++---------
 textproc/mdoclint/files/mdoclint.1 |  11 +++--------
 3 files changed, 10 insertions(+), 19 deletions(-)

diffs (113 lines):

diff -r 9ecc80b8d1c5 -r b2a812c5902b textproc/mdoclint/Makefile
--- a/textproc/mdoclint/Makefile        Thu Jun 01 14:33:37 2017 +0000
+++ b/textproc/mdoclint/Makefile        Thu Jun 01 14:38:50 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.64 2017/06/01 14:33:28 wiz Exp $
+# $NetBSD: Makefile,v 1.65 2017/06/01 14:38:50 wiz Exp $
 
-DISTNAME=      mdoclint-1.53
+DISTNAME=      mdoclint-1.54
 CATEGORIES=    textproc
 MASTER_SITES=  # none
 DISTFILES=     # none
diff -r 9ecc80b8d1c5 -r b2a812c5902b textproc/mdoclint/files/mdoclint
--- a/textproc/mdoclint/files/mdoclint  Thu Jun 01 14:33:37 2017 +0000
+++ b/textproc/mdoclint/files/mdoclint  Thu Jun 01 14:38:50 2017 +0000
@@ -1,7 +1,7 @@
 #!@PERL5@
 #
 # $OpenBSD: mdoclint,v 1.48 2016/01/24 20:10:48 schwarze Exp $
-# $NetBSD: mdoclint,v 1.73 2017/06/01 14:33:28 wiz Exp $
+# $NetBSD: mdoclint,v 1.74 2017/06/01 14:38:50 wiz Exp $
 #
 # Copyright (c) 2001-2017 Thomas Klausner
 # All rights reserved.
@@ -42,7 +42,7 @@
 };
 
 use vars qw(
-       $opt_D $opt_d $opt_e $opt_F $opt_f $opt_h $opt_l
+       $opt_D $opt_d $opt_e $opt_F $opt_h $opt_l
        $opt_m $opt_n $opt_o $opt_p $opt_r $opt_S $opt_v $opt_w $opt_x
 );
 
@@ -53,7 +53,7 @@
 
 sub usage
        {
-       my $default = OPENBSD ? "-DdfmnoprSx" : "-DdeflmnoprSx";
+       my $default = OPENBSD ? "-DdmnoprSx" : "-DdelmnoprSx";
 
        print STDERR <<"EOF";
 mdoclint: verify man page correctness
@@ -62,7 +62,6 @@
        -d      warn about bad date strings (in .Dd only)
        -e      warn about unsorted errors (for functions)
        -F      fix whitespace problems (asks before overwriting)
-       -f      warn about possible incorrect .Fn syntax
        -h      display this help text
        -l      warn about unknown libraries
        -m      warn about man pages that are not in mdoc(7) format
@@ -237,10 +236,10 @@
        $opt_h and usage();
 
        # default to all warnings if no flag is set
-       unless ($opt_D or $opt_d or $opt_e or $opt_f or $opt_l
+       unless ($opt_D or $opt_d or $opt_e or $opt_l
                or $opt_m or $opt_n or $opt_o or $opt_p or $opt_r
                or $opt_S or $opt_x) {
-               $opt_D = $opt_d = $opt_f = $opt_m =
+               $opt_D = $opt_d = $opt_m =
                    $opt_n = $opt_o = $opt_p = $opt_r = $opt_S =
                    $opt_x = 1;
                $opt_e = $opt_l = 1 if NETBSD;
@@ -430,9 +429,6 @@
                }
        }
 
-       if (/^\.Fn.*,.+/o) {
-               $s->warning("possible .Fn misuse: `$_'") if $opt_f;
-       }
        if (/^\.Lb\s+(\S+)/o) {
                if (not $libraries{$1}) {
                        $s->warning("Unknown library `$1' used as Lb argument") if $opt_l;
diff -r 9ecc80b8d1c5 -r b2a812c5902b textproc/mdoclint/files/mdoclint.1
--- a/textproc/mdoclint/files/mdoclint.1        Thu Jun 01 14:33:37 2017 +0000
+++ b/textproc/mdoclint/files/mdoclint.1        Thu Jun 01 14:38:50 2017 +0000
@@ -1,5 +1,5 @@
 .\"    $OpenBSD: mdoclint.1,v 1.7 2009/04/13 19:06:38 jmc Exp $
-.\" $NetBSD: mdoclint.1,v 1.19 2017/06/01 14:33:28 wiz Exp $
+.\" $NetBSD: mdoclint.1,v 1.20 2017/06/01 14:38:50 wiz Exp $
 .\"
 .\" Copyright (c) 2001-2013 Thomas Klausner
 .\" All rights reserved.
@@ -33,7 +33,7 @@
 .Nd man page verifier
 .Sh SYNOPSIS
 .Nm
-.Op Fl DdeFfhlmnoprSvwx
+.Op Fl DdeFhlmnoprSvwx
 .Ar
 .Sh DESCRIPTION
 .Nm
@@ -41,7 +41,7 @@
 It tries to automatically find as many common
 errors that occur when writing man pages as possible.
 If no flags are given,
-.Fl DdeflmnoprSx
+.Fl DdelmnoprSx
 is assumed (that is, everything except
 .Fl Fhvw ) .
 .Pp
@@ -55,11 +55,6 @@
 Warn about unsorted errors (for functions).
 .It Fl F
 Delete whitespace at the end of input lines.
-.It Fl f
-Warn about possible .Fn abuse; its arguments should be put in
-.Sq \&"
-separately, not together and separated by commas.
-Those will be automatically added by mdoc.
 .It Fl h
 Display usage.
 .It Fl l



Home | Main Index | Thread Index | Old Index