From owner-svn-ports-head@FreeBSD.ORG Wed May 27 05:21:06 2015 Return-Path: Delivered-To: svn-ports-head@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 28C4FF9; Wed, 27 May 2015 05:21:06 +0000 (UTC) (envelope-from koobs@FreeBSD.org) 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 0A0CFCC9; Wed, 27 May 2015 05:21:06 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4R5L5PY046558; Wed, 27 May 2015 05:21:05 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4R5L5Z8046555; Wed, 27 May 2015 05:21:05 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201505270521.t4R5L5Z8046555@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Wed, 27 May 2015 05:21:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387541 - in head/devel/pear-Net_Gearman: . 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.20 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, 27 May 2015 05:21:06 -0000 Author: koobs Date: Wed May 27 05:21:04 2015 New Revision: 387541 URL: https://svnweb.freebsd.org/changeset/ports/387541 Log: devel/pear-Net_Gearman: Take MAINTAINER'ship, Fix Bug - Assign MAINTAINER'ship (Thank you Gasol!) - Fix JOB_HIGH constant that shares the same value as JOB_NORMAL This bug was introduced and fixed [1] in 2009, but upstream has not released a new version. - Bump PORTREVISION - Correct indent of USES [1] https://github.com/brianlmoon/net_gearman/commit/990519aa62688828cd058b981e1942521f0acffe PR: 200452 Submitted by: Gasol Wu Added: head/devel/pear-Net_Gearman/files/patch-Net_Gearman_Task.php (contents, props changed) Modified: head/devel/pear-Net_Gearman/Makefile head/devel/pear-Net_Gearman/files/patch-Net__Gearman__Client.php Modified: head/devel/pear-Net_Gearman/Makefile ============================================================================== --- head/devel/pear-Net_Gearman/Makefile Wed May 27 04:47:15 2015 (r387540) +++ head/devel/pear-Net_Gearman/Makefile Wed May 27 05:21:04 2015 (r387541) @@ -3,10 +3,10 @@ PORTNAME= Net_Gearman PORTVERSION= 0.2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear -MAINTAINER= ports@FreeBSD.org +MAINTAINER= gasol.wu@gmail.com COMMENT= Gearman client libraray for PHP LICENSE= BSD2CLAUSE @@ -15,6 +15,6 @@ BUILD_DEPENDS= ${LOCALBASE}/share/pear/P RUN_DEPENDS= ${LOCALBASE}/share/pear/PEAR.php:${PORTSDIR}/devel/pear USE_PHP= json mbstring -USES= pear +USES= pear .include Added: head/devel/pear-Net_Gearman/files/patch-Net_Gearman_Task.php ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pear-Net_Gearman/files/patch-Net_Gearman_Task.php Wed May 27 05:21:04 2015 (r387541) @@ -0,0 +1,11 @@ +--- Net/Gearman/Task.php.orig 1970-01-01 09:13:08 UTC ++++ Net/Gearman/Task.php +@@ -144,7 +144,7 @@ class Net_Gearman_Task + * + * @var integer JOB_HIGH + */ +- const JOB_HIGH = 2; ++ const JOB_HIGH = 3; + + /** + * Callback of type complete Modified: head/devel/pear-Net_Gearman/files/patch-Net__Gearman__Client.php ============================================================================== --- head/devel/pear-Net_Gearman/files/patch-Net__Gearman__Client.php Wed May 27 04:47:15 2015 (r387540) +++ head/devel/pear-Net_Gearman/files/patch-Net__Gearman__Client.php Wed May 27 05:21:04 2015 (r387541) @@ -1,6 +1,6 @@ ---- ./Net/Gearman/Client.php.orig 2013-03-13 17:50:59.000000000 +0800 -+++ ./Net/Gearman/Client.php 2013-03-13 17:51:18.000000000 +0800 -@@ -166,11 +166,11 @@ +--- Net/Gearman/Client.php.orig 1970-01-01 09:13:08 UTC ++++ Net/Gearman/Client.php +@@ -166,11 +166,11 @@ class Net_Gearman_Client $s = $this->getConnection(); Net_Gearman_Connection::send($s, $type, $params); @@ -15,7 +15,7 @@ } /** -@@ -244,7 +244,7 @@ +@@ -244,7 +244,7 @@ class Net_Gearman_Client $task->fail(); break; case 'job_created':