svn commit: r356472 - in head/databases: . php55-redis

Martin Wilke miwi at FreeBSD.org
Wed Jun 4 11:49:49 UTC 2014


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 <arjan at blackoak.net>

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 <arjan at blackoak.net>
+# $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 at 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 <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MIGBINARY}
+USE_PHP+=	igbinary
+CONFIGURE_ARGS+=--enable-redis-igbinary
+.else
+CONFIGURE_ARGS+=--disable-redis-igbinary
+.endif
+
+.include <bsd.port.mk>

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


More information about the svn-ports-head mailing list