From owner-svn-ports-all@FreeBSD.ORG Sun Dec 7 17:51:13 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE5E573D; Sun, 7 Dec 2014 17:51:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BB2FFE6F; Sun, 7 Dec 2014 17:51:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sB7HpD33025227; Sun, 7 Dec 2014 17:51:13 GMT (envelope-from ak@FreeBSD.org) Received: (from ak@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sB7HpDq7025226; Sun, 7 Dec 2014 17:51:13 GMT (envelope-from ak@FreeBSD.org) Message-Id: <201412071751.sB7HpDq7025226@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ak set sender to ak@FreeBSD.org using -f From: Alex Kozlov Date: Sun, 7 Dec 2014 17:51:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374220 - 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.18-1 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: Sun, 07 Dec 2014 17:51:13 -0000 Author: ak Date: Sun Dec 7 17:51:12 2014 New Revision: 374220 URL: https://svnweb.freebsd.org/changeset/ports/374220 QAT: https://qat.redports.org/buildarchive/r374220/ Log: - Remove vestiges of cvs annotate support Modified: head/Tools/scripts/MOVEDlint.awk Modified: head/Tools/scripts/MOVEDlint.awk ============================================================================== --- head/Tools/scripts/MOVEDlint.awk Sun Dec 7 16:49:53 2014 (r374219) +++ head/Tools/scripts/MOVEDlint.awk Sun Dec 7 17:51:12 2014 (r374220) @@ -102,15 +102,5 @@ END { error[missing[port]] = 1 } - if (annotate) { - line = 1 - while (annotate | getline) { - if (error[line]) - printf "%5d\n%5d! %s\n", line, line, $0 | sort - line++ - } - close(annotate) - } - close(sort) }