From owner-svn-ports-all@FreeBSD.ORG Wed Jun 4 11:49:49 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A3ABDB23; Wed, 4 Jun 2014 11:49:49 +0000 (UTC) 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 8FF78281E; Wed, 4 Jun 2014 11:49:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s54BnnX1055278; Wed, 4 Jun 2014 11:49:49 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s54Bnmwk055271; Wed, 4 Jun 2014 11:49:48 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201406041149.s54Bnmwk055271@svn.freebsd.org> From: Martin Wilke Date: Wed, 4 Jun 2014 11:49:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r356472 - in head/databases: . php55-redis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Jun 2014 11:49:49 -0000 Author: miwi Date: Wed Jun 4 11:49:48 2014 New Revision: 356472 URL: http://svnweb.freebsd.org/changeset/ports/356472 QAT: https://qat.redports.org/buildarchive/r356472/ Log: This extension provides an API for communicating with Redis database, a persistent key-value database with built-in net interface written in ANSI-C for Posix systems. It is a fork of alfonsojimenez's phpredis, adding many methods and fixing a lot of issues. WWW: https://github.com/nicolasff/phpredis PR: ports/189414 Submitted by: Arjan Koole Added: head/databases/php55-redis/ head/databases/php55-redis/Makefile (contents, props changed) head/databases/php55-redis/distinfo (contents, props changed) head/databases/php55-redis/pkg-descr (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Jun 4 11:47:32 2014 (r356471) +++ head/databases/Makefile Wed Jun 4 11:49:48 2014 (r356472) @@ -622,6 +622,7 @@ SUBDIR += php55-pdo_pgsql SUBDIR += php55-pdo_sqlite SUBDIR += php55-pgsql + SUBDIR += php55-redis SUBDIR += php55-sqlite3 SUBDIR += php55-sybase_ct SUBDIR += phpminiadmin Added: head/databases/php55-redis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php55-redis/Makefile Wed Jun 4 11:49:48 2014 (r356472) @@ -0,0 +1,38 @@ +# Created by: Arjan Koole +# $FreeBSD$ + +PORTNAME= redis +PORTVERSION= 2.2.4 +CATEGORIES= databases +MASTER_SITES= https://github.com/nicolasff/phpredis/tarball/${PORTVERSION}/ +PKGNAMEPREFIX= php55- +DISTNAME= nicolasff-phpredis-${PORTVERSION}-0-g${GITVERSION} + +MAINTAINER= m.tsatsenko@gmail.com +COMMENT= PHP5-Extension for Redis + +LICENSE= PHP301 + +GITVERSION= 0f0661e +WRKSRC= ${WRKDIR}/nicolasff-phpredis-${GITVERSION} + +USE_PHP= session +USE_PHP_BUILD= yes +USE_PHPEXT= yes +DEFAULT_PHP_VER=55 + +PHP_MODNAME= redis + +OPTIONS_DEFINE= IGBINARY +IGBINARY_DESC= Build with Igbinary serializer + +.include + +.if ${PORT_OPTIONS:MIGBINARY} +USE_PHP+= igbinary +CONFIGURE_ARGS+=--enable-redis-igbinary +.else +CONFIGURE_ARGS+=--disable-redis-igbinary +.endif + +.include Added: head/databases/php55-redis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php55-redis/distinfo Wed Jun 4 11:49:48 2014 (r356472) @@ -0,0 +1,2 @@ +SHA256 (nicolasff-phpredis-2.2.4-0-g0f0661e.tar.gz) = cb4273cfe5c15dc0e43945ea74978fe9345ac1e2f4902c798ed63ce6a588d02d +SIZE (nicolasff-phpredis-2.2.4-0-g0f0661e.tar.gz) = 122108 Added: head/databases/php55-redis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/php55-redis/pkg-descr Wed Jun 4 11:49:48 2014 (r356472) @@ -0,0 +1,8 @@ +This extension provides an API for communicating with Redis database, +a persistent key-value database with built-in net interface written +in ANSI-C for Posix systems. + +It is a fork of alfonsojimenez's phpredis, adding many methods and +fixing a lot of issues. + +WWW: https://github.com/nicolasff/phpredis