From owner-svn-ports-all@FreeBSD.ORG Mon Oct 15 21:34:20 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 109B2DB5; Mon, 15 Oct 2012 21:34:20 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EBE008FC12; Mon, 15 Oct 2012 21:34:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9FLYJVf078237; Mon, 15 Oct 2012 21:34:19 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9FLYJqE078235; Mon, 15 Oct 2012 21:34:19 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201210152134.q9FLYJqE078235@svn.freebsd.org> From: Eitan Adler Date: Mon, 15 Oct 2012 21:34:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r305939 - head/Tools/scripts X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Oct 2012 21:34:20 -0000 Author: eadler Date: Mon Oct 15 21:34:19 2012 New Revision: 305939 URL: http://svn.freebsd.org/changeset/ports/305939 Log: Add MOVEDLint checks for some of the other formatting problems seen in MOVED lines. Feature safe: yes Modified: head/Tools/scripts/MOVEDlint.awk Modified: head/Tools/scripts/MOVEDlint.awk ============================================================================== --- head/Tools/scripts/MOVEDlint.awk Mon Oct 15 21:09:25 2012 (r305938) +++ head/Tools/scripts/MOVEDlint.awk Mon Oct 15 21:34:19 2012 (r305939) @@ -82,6 +82,13 @@ $3 !~ /^20[0-3][0-9]-[01][0-9]-[0-3][0-9 missing[$2] = NR else delete resurrected[$2] + +# Produces too many false positives +# if ($4 ~ /^[a-z].*/) +# printf "Initial value of 'reason' is lowercase: %5d (%s)\n", NR, $4 + + if ($4 ~ /\.$/) + printf "Final character is a dot: %5d (%s)\n", NR, $4 } END {