svn commit: r372639 - in head/databases: . php56-redis

Bartek Rutkowski robak at FreeBSD.org
Sun Nov 16 14:36:01 UTC 2014


Author: robak
Date: Sun Nov 16 14:35:59 2014
New Revision: 372639
URL: https://svnweb.freebsd.org/changeset/ports/372639
QAT: https://qat.redports.org/buildarchive/r372639/

Log:
  databases/php56-redis: NEW PORT - PHP5 extension for Redis
  
  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:		194270
  Submitted by:	Daniel Ylitalo <daniel at blodan.se>
  Approved by:	mentors (implicit)

Added:
  head/databases/php56-redis/
  head/databases/php56-redis/Makefile   (contents, props changed)
  head/databases/php56-redis/distinfo   (contents, props changed)
  head/databases/php56-redis/pkg-descr   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Sun Nov 16 12:55:25 2014	(r372638)
+++ head/databases/Makefile	Sun Nov 16 14:35:59 2014	(r372639)
@@ -626,6 +626,7 @@
     SUBDIR += php56-pdo_pgsql
     SUBDIR += php56-pdo_sqlite
     SUBDIR += php56-pgsql
+    SUBDIR += php56-redis
     SUBDIR += php56-sqlite3
     SUBDIR += php56-sybase_ct
     SUBDIR += phpminiadmin
@@ -763,9 +764,10 @@
     SUBDIR += py-rrdtool_lgpl
     SUBDIR += py-south
     SUBDIR += py-sqlalchemy
-    SUBDIR += py-sqlalchemy-devel
     SUBDIR += py-sqlalchemy-migrate
     SUBDIR += py-sqlalchemy06
+    SUBDIR += py-sqlalchemy07
+    SUBDIR += py-sqlalchemy08
     SUBDIR += py-sqlite3
     SUBDIR += py-sqlite3dbm
     SUBDIR += py-sqlkit

Added: head/databases/php56-redis/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php56-redis/Makefile	Sun Nov 16 14:35:59 2014	(r372639)
@@ -0,0 +1,40 @@
+# Created by: Benedikt Niessen <ports at niessen.ch>
+# $FreeBSD$
+
+PORTNAME=	redis
+PORTVERSION=	2.2.5
+CATEGORIES=	databases
+PKGNAMEPREFIX=	php5-
+
+MAINTAINER=	m.tsatsenko at gmail.com
+COMMENT=	PHP5 extension for Redis
+
+LICENSE=	PHP301
+
+GITVERSION=	0f0661e
+
+USE_PHP=	session
+USE_PHP_BUILD=	yes
+USE_PHPEXT=	yes
+DEFAULT_VERSIONS+=	php=56
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	nicolasff
+GH_PROJECT=	phpredis
+GH_COMMIT=	8dac89e
+
+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/php56-redis/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php56-redis/distinfo	Sun Nov 16 14:35:59 2014	(r372639)
@@ -0,0 +1,2 @@
+SHA256 (redis-2.2.5.tar.gz) = c1c4cccce4c140da58c00b19a41f5bd2d218811733711984fc3e8b73cd4c6b33
+SIZE (redis-2.2.5.tar.gz) = 131005

Added: head/databases/php56-redis/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/php56-redis/pkg-descr	Sun Nov 16 14:35:59 2014	(r372639)
@@ -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-all mailing list