From owner-svn-ports-all@FreeBSD.ORG Tue Jun 17 14:26:08 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8447C9A4; Tue, 17 Jun 2014 14:26:08 +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 70ECB2521; Tue, 17 Jun 2014 14:26:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5HEQ8Cp008629; Tue, 17 Jun 2014 14:26:08 GMT (envelope-from skreuzer@svn.freebsd.org) Received: (from skreuzer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5HEQ8dK008627; Tue, 17 Jun 2014 14:26:08 GMT (envelope-from skreuzer@svn.freebsd.org) Message-Id: <201406171426.s5HEQ8dK008627@svn.freebsd.org> From: Steven Kreuzer Date: Tue, 17 Jun 2014 14:26:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358121 - in head/databases/innotop: . 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-all@freebsd.org X-Mailman-Version: 2.1.18 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: Tue, 17 Jun 2014 14:26:08 -0000 Author: skreuzer Date: Tue Jun 17 14:26:07 2014 New Revision: 358121 URL: http://svnweb.freebsd.org/changeset/ports/358121 QAT: https://qat.redports.org/buildarchive/r358121/ Log: Add patch to fix use of uninitialized value $mysqlversion in pattern match Added: head/databases/innotop/files/ head/databases/innotop/files/patch-innotop (contents, props changed) Modified: head/databases/innotop/Makefile Modified: head/databases/innotop/Makefile ============================================================================== --- head/databases/innotop/Makefile Tue Jun 17 14:25:39 2014 (r358120) +++ head/databases/innotop/Makefile Tue Jun 17 14:26:07 2014 (r358121) @@ -3,6 +3,7 @@ PORTNAME= innotop PORTVERSION= 1.9.1 +PORTREVISION= 1 CATEGORIES= databases MASTER_SITES= GOOGLE_CODE Added: head/databases/innotop/files/patch-innotop ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/innotop/files/patch-innotop Tue Jun 17 14:26:07 2014 (r358121) @@ -0,0 +1,11 @@ +--- innotop.orig 2014-06-17 08:31:31.000000000 -0400 ++++ innotop 2014-06-17 08:32:19.000000000 -0400 +@@ -470,7 +470,7 @@ + # too many locks to print, the output might be truncated) + + my $time_text; +- if ( $mysqlversion =~ /^5\.6/ ) { ++ if ( defined $mysqlversion && $mysqlversion =~ /^5\.6/ ) { + ( $time_text ) = $fulltext =~ m/^([0-9-]* [0-9:]*) [0-9a-f]* INNODB MONITOR OUTPUT/m; + $innodb_data{'ts'} = [ parse_innodb_timestamp_56( $time_text ) ]; + } else {