Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 May 2015 05:21:05 +0000 (UTC)
From:      Kubilay Kocak <koobs@FreeBSD.org>
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
Message-ID:  <201505270521.t4R5L5Z8046555@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <gasol dot wu gmail com>

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 <bsd.port.mk>

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':



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505270521.t4R5L5Z8046555>