From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Aug 27 11:10:06 2010 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9264C10656A6 for ; Fri, 27 Aug 2010 11:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A5448FC0C for ; Fri, 27 Aug 2010 11:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7RBA6K2060554 for ; Fri, 27 Aug 2010 11:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7RBA6UL060553; Fri, 27 Aug 2010 11:10:06 GMT (envelope-from gnats) Resent-Date: Fri, 27 Aug 2010 11:10:06 GMT Resent-Message-Id: <201008271110.o7RBA6UL060553@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "Vlad V. Teterya" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D187A106566B for ; Fri, 27 Aug 2010 11:08:13 +0000 (UTC) (envelope-from vlad@beta.all-biz.info) Received: from beta.all-biz.info (gemma-102.colo2.kv.wnet.ua [217.20.175.102]) by mx1.freebsd.org (Postfix) with ESMTP id 6335D8FC0A for ; Fri, 27 Aug 2010 11:08:13 +0000 (UTC) Received: from vlad by beta.all-biz.info with local (Exim 4.71 (FreeBSD)) (envelope-from ) id 1OowVu-000I9q-VV for FreeBSD-gnats-submit@freebsd.org; Fri, 27 Aug 2010 13:50:26 +0300 Message-Id: Date: Fri, 27 Aug 2010 13:50:26 +0300 From: "Vlad V. Teterya" Sender: Vlad To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/150038: [update] databases/mysqltuner updated to version 1.1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Vlad V. Teterya" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Aug 2010 11:10:06 -0000 >Number: 150038 >Category: ports >Synopsis: [update] databases/mysqltuner updated to version 1.1.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Aug 27 11:10:05 UTC 2010 >Closed-Date: >Last-Modified: >Originator: Vlad V. Teterya >Release: FreeBSD 8.0-RELEASE amd64 >Organization: Server Labs >Environment: System: FreeBSD beta 8.0-RELEASE FreeBSD 8.0-RELEASE #7: Thu May 20 15:15:47 UTC 2010 root@beta:/usr/src/sys/amd64/compile/BETA amd64 >Description: - databases/mysqltuner updated to version 1.1.0 - project moved to http://mysqltuner.pl/ - fixed version number in the mysqltuner.pl script - minor Makefile fixes maintainer is Cc'ed >How-To-Repeat: >Fix: --- mysqltuner.patch begins here --- diff -ruN mysqltuner.old/Makefile mysqltuner/Makefile --- mysqltuner.old/Makefile 2010-08-27 11:10:06.000000000 +0300 +++ mysqltuner/Makefile 2010-08-27 13:11:36.000000000 +0300 @@ -2,14 +2,15 @@ # Date created: 09 September 2008 # Whom: Wen heping # -# $FreeBSD: ports/databases/mysqltuner/Makefile,v 1.2 2009/03/20 12:03:05 lwhsu Exp $ +# $FreeBSD$ # PORTNAME= mysqltuner -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= databases -MASTER_SITES= http://mysqltuner.com/releases/ -DISTFILES= ${PORTNAME}-${PORTVERSION}.pl +MASTER_SITES= http://mysqltuner.pl/ +DISTNAME= ${PORTNAME}.pl +EXTRACT_SUFX= EXTRACT_ONLY= MAINTAINER= wenheping@gmail.com @@ -20,12 +21,20 @@ PLIST_FILES= bin/${PORTNAME}.pl +pre-patch: + @${MKDIR} ${WRKSRC} + @${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +post-patch: + @${REINPLACE_CMD} -e 's|"1.0.1";|"1.1.0";|' \ + ${WRKSRC}/${DISTNAME} + .include do-install: - @${CP} ${DISTDIR}/${PORTNAME}-${PORTVERSION}.pl \ - ${PREFIX}/bin/${PORTNAME}.pl - @${CHMOD} 755 ${PREFIX}/bin/${PORTNAME}.pl - @${ECHO_CMD} '@exec ${CHMOD} 755 ${PREFIX}/bin/${PORTNAME}.pl' \ + @${CP} ${WRKSRC}/${DISTNAME} \ + ${PREFIX}/bin/${DISTNAME} + @${CHMOD} 755 ${PREFIX}/bin/${DISTNAME} + @${ECHO_CMD} '@exec ${CHMOD} 755 ${PREFIX}/bin/${DISTNAME}.pl' \ >> ${TMPPLIST} .include diff -ruN mysqltuner.old/distinfo mysqltuner/distinfo --- mysqltuner.old/distinfo 2010-08-27 11:10:06.000000000 +0300 +++ mysqltuner/distinfo 2010-08-27 11:14:50.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (mysqltuner-1.0.0.pl) = de535154b7fb28e437ba412434ea535e -SHA256 (mysqltuner-1.0.0.pl) = 51c624b22b5792d7c462171bf39be355b45ed83155e473c259fe67576944daf4 -SIZE (mysqltuner-1.0.0.pl) = 38688 +MD5 (mysqltuner.pl) = c78c61fda3837718c59e8799f2b428af +SHA256 (mysqltuner.pl) = 751682627063109e525e6f45d6718643cc7e2f4bbb77265343d9316aa6ea4994 +SIZE (mysqltuner.pl) = 39054 diff -ruN mysqltuner.old/pkg-descr mysqltuner/pkg-descr --- mysqltuner.old/pkg-descr 2010-08-27 11:10:06.000000000 +0300 +++ mysqltuner/pkg-descr 2010-08-27 11:12:43.000000000 +0300 @@ -5,4 +5,4 @@ statistics about your MySQL installation and the areas where it can be improved. -WWW: http://wiki.mysqltuner.com/MySQLTuner +WWW: http://github.com/rackerhacker/MySQLTuner-perl --- mysqltuner.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: