svn commit: r348526 - in head/databases: . p5-RedisDB
Jun Kuriyama
kuriyama at FreeBSD.org
Tue Mar 18 09:16:52 UTC 2014
Author: kuriyama
Date: Tue Mar 18 09:16:50 2014
New Revision: 348526
URL: http://svnweb.freebsd.org/changeset/ports/348526
QAT: https://qat.redports.org/buildarchive/r348526/
Log:
This module provides interface to access redis key-value store, it
transparently handles disconnects and forks, supports transactions,
pipelining, and subscription mode. Module includes XS and pure Perl
versions of the parser.
WWW: http://search.cpan.org/dist/RedisDB/
Added:
head/databases/p5-RedisDB/
head/databases/p5-RedisDB/Makefile (contents, props changed)
head/databases/p5-RedisDB/distinfo (contents, props changed)
head/databases/p5-RedisDB/pkg-descr (contents, props changed)
head/databases/p5-RedisDB/pkg-plist (contents, props changed)
Modified:
head/databases/Makefile
Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile Tue Mar 18 09:10:44 2014 (r348525)
+++ head/databases/Makefile Tue Mar 18 09:16:50 2014 (r348526)
@@ -456,6 +456,7 @@
SUBDIR += p5-RRD-Simple
SUBDIR += p5-Redis
SUBDIR += p5-Redis-hiredis
+ SUBDIR += p5-RedisDB
SUBDIR += p5-RedisDB-Parser
SUBDIR += p5-Relations
SUBDIR += p5-Relations-Query
Added: head/databases/p5-RedisDB/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-RedisDB/Makefile Tue Mar 18 09:16:50 2014 (r348526)
@@ -0,0 +1,20 @@
+# $FreeBSD$
+
+PORTNAME= RedisDB
+PORTVERSION= 2.30
+CATEGORIES= databases perl5
+MASTER_SITES= CPAN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= kuriyama at FreeBSD.org
+COMMENT= Perl extension to access redis database
+
+RUN_DEPENDS= \
+ p5-RedisDB-Parser>=2.2:${PORTSDIR}/databases/p5-RedisDB-Parser \
+ p5-Try-Tiny>0:${PORTSDIR}/lang/p5-Try-Tiny
+BUILD_DEPENDS= ${RUN_DEPENDS}
+
+USES= perl5
+USE_PERL5= configure
+
+.include <bsd.port.mk>
Added: head/databases/p5-RedisDB/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-RedisDB/distinfo Tue Mar 18 09:16:50 2014 (r348526)
@@ -0,0 +1,2 @@
+SHA256 (RedisDB-2.30.tar.gz) = 491bb12a5f998c1a9c5e2103a1d5683b09271d6963d0f6cdcf71e8a45a285411
+SIZE (RedisDB-2.30.tar.gz) = 36376
Added: head/databases/p5-RedisDB/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-RedisDB/pkg-descr Tue Mar 18 09:16:50 2014 (r348526)
@@ -0,0 +1,6 @@
+This module provides interface to access redis key-value store, it
+transparently handles disconnects and forks, supports transactions,
+pipelining, and subscription mode. Module includes XS and pure Perl
+versions of the parser.
+
+WWW: http://search.cpan.org/dist/RedisDB/
Added: head/databases/p5-RedisDB/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-RedisDB/pkg-plist Tue Mar 18 09:16:50 2014 (r348526)
@@ -0,0 +1,7 @@
+%%PERL5_MAN3%%/RedisDB.3.gz
+%%PERL5_MAN3%%/RedisDB::Error.3.gz
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/RedisDB/.packlist
+%%SITE_PERL%%/RedisDB.pm
+%%SITE_PERL%%/RedisDB/Error.pm
+ at dirrmtry %%SITE_PERL%%/RedisDB
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/RedisDB
More information about the svn-ports-all
mailing list