From owner-dev-commits-ports-main@freebsd.org Sun Sep 19 06:07:32 2021 Return-Path: Delivered-To: dev-commits-ports-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A2A066ABADD; Sun, 19 Sep 2021 06:07:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HBy040ygfz3N77; Sun, 19 Sep 2021 06:07:32 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B3C301827A; Sun, 19 Sep 2021 06:07:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18J67UbD053334; Sun, 19 Sep 2021 06:07:30 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18J67UIE053333; Sun, 19 Sep 2021 06:07:30 GMT (envelope-from git) Date: Sun, 19 Sep 2021 06:07:30 GMT Message-Id: <202109190607.18J67UIE053333@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Po-Chuan Hsieh Subject: git: 838b620352a9 - main - devel/pear-Net_Gearman: Remove duplicate BUILD_DEPENDS and RUN_DEPENDS MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: sunpoet X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 838b620352a97184039c5624208654ddb71c7dc8 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Sep 2021 06:07:32 -0000 The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=838b620352a97184039c5624208654ddb71c7dc8 commit 838b620352a97184039c5624208654ddb71c7dc8 Author: Po-Chuan Hsieh AuthorDate: 2021-09-19 05:29:01 +0000 Commit: Po-Chuan Hsieh CommitDate: 2021-09-19 06:00:02 +0000 devel/pear-Net_Gearman: Remove duplicate BUILD_DEPENDS and RUN_DEPENDS - Add NO_ARCH - Update pkg-descr --- devel/pear-Net_Gearman/Makefile | 9 ++++----- devel/pear-Net_Gearman/pkg-descr | 10 +++++++++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/devel/pear-Net_Gearman/Makefile b/devel/pear-Net_Gearman/Makefile index 7a214daa33fe..b80cd1d1c7ee 100644 --- a/devel/pear-Net_Gearman/Makefile +++ b/devel/pear-Net_Gearman/Makefile @@ -6,14 +6,13 @@ PORTREVISION= 3 CATEGORIES= devel pear MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Gearman client libraray for PHP +COMMENT= PHP interface to Gearman LICENSE= BSD2CLAUSE -BUILD_DEPENDS= ${LOCALBASE}/share/pear/PEAR.php:devel/pear@${PHP_FLAVOR} -RUN_DEPENDS= ${LOCALBASE}/share/pear/PEAR.php:devel/pear@${PHP_FLAVOR} - +USES= pear USE_PHP= json mbstring sockets -USES= pear php + +NO_ARCH= yes .include diff --git a/devel/pear-Net_Gearman/pkg-descr b/devel/pear-Net_Gearman/pkg-descr index bbeebe9c98b2..f61fa78015d3 100644 --- a/devel/pear-Net_Gearman/pkg-descr +++ b/devel/pear-Net_Gearman/pkg-descr @@ -1,3 +1,11 @@ -Gearman client library for PHP. +Gearman provides a generic application framework to farm out work to other +machines or processes that are better suited to do the work. It allows you to do +work in parallel, to load balance processing, and to call functions between +languages. It can be used in a variety of applications, from high-availability +web sites to the transport of database replication events. In other words, it is +the nervous system for how distributed processing communicates. + +This package provides an interface for PHP to communicate with the Gearman +server. WWW: https://pear.php.net/package/Net_Gearman