1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-22 00:35:15 +00:00

Copy databases/php5-redis -> databases/php53-redis.

This new port allows the usage of the php redis module with php53.
Assume maintainership.

PR:		ports/169776
Submitted by:	gjb (myself)
Approved by:	eadler (mentor)
This commit is contained in:
Glen Barber 2012-07-24 13:51:40 +00:00
parent 6447020bf3
commit 9d41633517
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=301459
5 changed files with 1069 additions and 0 deletions

View File

@ -613,6 +613,7 @@
SUBDIR += php53-pdo_pgsql
SUBDIR += php53-pdo_sqlite
SUBDIR += php53-pgsql
SUBDIR += php53-redis
SUBDIR += php53-sqlite
SUBDIR += php53-sqlite3
SUBDIR += php53-sybase_ct

View File

@ -0,0 +1,31 @@
# New ports collection makefile for: php53-redis
# Date created: 24 July 2012
# Whom: Glen Barber <gjb@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= redis
PORTVERSION= 2.2.1
CATEGORIES= databases
MASTER_SITES= https://github.com/nicolasff/phpredis/tarball/${PORTVERSION}/
PKGNAMEPREFIX= php53-
DISTNAME= nicolasff-phpredis-${PORTVERSION}-0-g${GITVERSION}
MAINTAINER= gjb@FreeBSD.org
COMMENT= PHP5-Extension for Redis
LICENSE= PHP301
GITVERSION= g882c7dc
FETCH_ARGS= -pRr
WRKSRC= ${WRKDIR}/nicolasff-phpredis-250e81b
USE_PHP= session
USE_PHP_BUILD= yes
USE_PHPEXT= yes
DEFAULT_PHP_VER=53
PHP_MODNAME= redis
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (nicolasff-phpredis-2.2.1-0-gg882c7dc.tar.gz) = ef72e795c7d9038e8a4b83a948e6952eb9e424cf4b8313bfa6403176701efd3a
SIZE (nicolasff-phpredis-2.2.1-0-gg882c7dc.tar.gz) = 113427

File diff suppressed because it is too large Load Diff

View File

@ -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