svn commit: r387541 - in head/devel/pear-Net_Gearman: . files

Kubilay Kocak koobs at FreeBSD.org
Wed May 27 05:21:06 UTC 2015


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 at FreeBSD.org
+MAINTAINER=	gasol.wu at 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':


More information about the svn-ports-all mailing list