From owner-svn-ports-head@freebsd.org Wed Apr 19 20:58:24 2017 Return-Path: Delivered-To: svn-ports-head@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 EBC02D466FC; Wed, 19 Apr 2017 20:58:24 +0000 (UTC) (envelope-from feld@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 BBDE85E8; Wed, 19 Apr 2017 20:58:24 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v3JKwNYJ099617; Wed, 19 Apr 2017 20:58:23 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v3JKwNSx099616; Wed, 19 Apr 2017 20:58:23 GMT (envelope-from feld@FreeBSD.org) Message-Id: <201704192058.v3JKwNSx099616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Wed, 19 Apr 2017 20:58:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r438916 - in head/net-mgmt/rancid3: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Apr 2017 20:58:25 -0000 Author: feld Date: Wed Apr 19 20:58:23 2017 New Revision: 438916 URL: https://svnweb.freebsd.org/changeset/ports/438916 Log: net-mgmt/rancid3: Add patch for IOS to filter out more frequently changing files: snooping and vtp_debug Added: head/net-mgmt/rancid3/files/patch-lib_ios.pm.in (contents, props changed) Modified: head/net-mgmt/rancid3/Makefile Modified: head/net-mgmt/rancid3/Makefile ============================================================================== --- head/net-mgmt/rancid3/Makefile Wed Apr 19 20:56:12 2017 (r438915) +++ head/net-mgmt/rancid3/Makefile Wed Apr 19 20:58:23 2017 (r438916) @@ -3,7 +3,7 @@ PORTNAME= rancid PORTVERSION= 3.6.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MASTER_SITES= ftp://ftp.shrubbery.net/pub/rancid/ PKGNAMESUFFIX= 3 Added: head/net-mgmt/rancid3/files/patch-lib_ios.pm.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/rancid3/files/patch-lib_ios.pm.in Wed Apr 19 20:58:23 2017 (r438916) @@ -0,0 +1,11 @@ +--- lib/ios.pm.in.orig 2017-04-19 20:53:52 UTC ++++ lib/ios.pm.in +@@ -942,7 +942,7 @@ sub ShowFlash { + # to: + # vlan.dat + # vlan.dat +- if (/(dhcp_[^. ]*\.txt|vlan\.dat|sflog|syslog)\s*$/) { ++ if (/(dhcp_[^. ]*\.txt|vlan\.dat|sflog|snooping|syslog|vtp_debug)\s*$/) { + if (/(\s*\d+)(\s+[-rwx]+\s+)(\d+)(\s+)(\w+ \d+\s+\d+ \d+:\d+:\d+ .\d+:\d+)/) { + my($fn, $a, $sz, $c, $dt, $rem) = ($1, $2, $3, $4, $5, $'); + my($fnl, $szl, $dtl) = (length($fn), length($sz), length($dt));