From owner-svn-ports-svnadmin@freebsd.org Tue Sep 13 20:00:07 2016 Return-Path: Delivered-To: svn-ports-svnadmin@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DB7FBD7981; Tue, 13 Sep 2016 20:00:07 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D2081368; Tue, 13 Sep 2016 20:00:06 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8DK06Yi031872; Tue, 13 Sep 2016 20:00:06 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8DK06tm031871; Tue, 13 Sep 2016 20:00:06 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201609132000.u8DK06tm031871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Tue, 13 Sep 2016 20:00:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-svnadmin@freebsd.org Subject: svn commit: r422071 - svnadmin/hooks/scripts X-SVN-Group: ports-svnadmin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-svnadmin@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for svnadmin of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Sep 2016 20:00:07 -0000 Author: gjb Date: Tue Sep 13 20:00:05 2016 New Revision: 422071 URL: https://svnweb.freebsd.org/changeset/ports/422071 Log: Temporarily revert r422070 Approved by: portmgr (implicit, fixing something) Sponsored by: The FreeBSD Foundation Modified: svnadmin/hooks/scripts/deny-filenames.sh Modified: svnadmin/hooks/scripts/deny-filenames.sh ============================================================================== --- svnadmin/hooks/scripts/deny-filenames.sh Tue Sep 13 19:22:41 2016 (r422070) +++ svnadmin/hooks/scripts/deny-filenames.sh Tue Sep 13 20:00:05 2016 (r422071) @@ -25,7 +25,7 @@ do file=`/usr/bin/basename ${path} | /usr/bin/sed -e 's,/$,,'` if echo ${file} | /usr/bin/egrep '^CVS$|^\.svn$|^\.git$' || echo ${file} | \ /usr/bin/egrep '\.orig$' || echo ${file} | \ - /usr/bin/egrep -v '^patch-' + /usr/bin/egrep -v '^patch-' | /usr/bin/egrep '\.core$' then echo "Some files in your commit look suspiciously like core files," >&2 echo "patch leftovers, CVS, Subversion or git directories. Please" >&2