svn commit: r311716 - in head/www: . p5-Session-Storage-Secure
Jun Kuriyama
kuriyama at FreeBSD.org
Tue Feb 5 13:48:43 UTC 2013
Author: kuriyama
Date: Tue Feb 5 13:48:42 2013
New Revision: 311716
URL: http://svnweb.freebsd.org/changeset/ports/311716
Log:
This module implements a secure way to encode session data. It is
primarily intended for storing session data in browser cookies, but
could be used with other backend storage where security of stored
session data is important.
WWW: http://search.cpan.org/dist/Session-Storage-Secure/
Added:
head/www/p5-Session-Storage-Secure/
head/www/p5-Session-Storage-Secure/Makefile (contents, props changed)
head/www/p5-Session-Storage-Secure/distinfo (contents, props changed)
head/www/p5-Session-Storage-Secure/pkg-descr (contents, props changed)
head/www/p5-Session-Storage-Secure/pkg-plist (contents, props changed)
Modified:
head/www/Makefile
Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile Tue Feb 5 13:23:54 2013 (r311715)
+++ head/www/Makefile Tue Feb 5 13:48:42 2013 (r311716)
@@ -1162,6 +1162,7 @@
SUBDIR += p5-STF-Dispatcher-PSGI
SUBDIR += p5-SWF-Chart
SUBDIR += p5-Scrappy
+ SUBDIR += p5-Session-Storage-Secure
SUBDIR += p5-Squatting
SUBDIR += p5-Squatting-On-PSGI
SUBDIR += p5-Starlet
Added: head/www/p5-Session-Storage-Secure/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-Session-Storage-Secure/Makefile Tue Feb 5 13:48:42 2013 (r311716)
@@ -0,0 +1,33 @@
+# $FreeBSD$
+
+PORTNAME= Session-Storage-Secure
+PORTVERSION= 0.005
+CATEGORIES= www perl5
+MASTER_SITES= CPAN
+MASTER_SITE_SUBDIR= CPAN:DAGOLDEN
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= kuriyama at FreeBSD.org
+COMMENT= Perl extension for encrypted, serialized session data with integrity
+
+RUN_DEPENDS= \
+ p5-Crypt-CBC>0:${PORTSDIR}/security/p5-Crypt-CBC \
+ p5-Crypt-Rijndael>0:${PORTSDIR}/security/p5-Crypt-Rijndael \
+ p5-Crypt-URandom>0:${PORTSDIR}/security/p5-Crypt-URandom \
+ p5-Math-Random-ISAAC-XS>0:${PORTSDIR}/math/p5-Math-Random-ISAAC-XS \
+ p5-Moo>0:${PORTSDIR}/devel/p5-Moo \
+ p5-MooX-Types-MooseLike>0:${PORTSDIR}/devel/p5-MooX-Types-MooseLike \
+ p5-Sereal-Decoder>0:${PORTSDIR}/converters/p5-Sereal-Decoder \
+ p5-Sereal-Encoder>0:${PORTSDIR}/converters/p5-Sereal-Encoder \
+ p5-namespace-clean>0:${PORTSDIR}/devel/p5-namespace-clean
+BUILD_DEPENDS= ${RUN_DEPENDS}
+TEST_DEPENDS= \
+ p5-Test-Deep>0:${PORTSDIR}/devel/p5-Test-Deep \
+ p5-Test-Fatal>0:${PORTSDIR}/devel/p5-Test-Fatal \
+ p5-Number-Tolerant>0:${PORTSDIR}/devel/p5-Number-Tolerant
+
+PERL_CONFIGURE= yes
+
+MAN3= Session::Storage::Secure.3
+
+.include <bsd.port.mk>
Added: head/www/p5-Session-Storage-Secure/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-Session-Storage-Secure/distinfo Tue Feb 5 13:48:42 2013 (r311716)
@@ -0,0 +1,2 @@
+SHA256 (Session-Storage-Secure-0.005.tar.gz) = c5013dd353ce52921b9d1e1f6935bf4d45e28bc5e57e0977876d0f733996c482
+SIZE (Session-Storage-Secure-0.005.tar.gz) = 19230
Added: head/www/p5-Session-Storage-Secure/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-Session-Storage-Secure/pkg-descr Tue Feb 5 13:48:42 2013 (r311716)
@@ -0,0 +1,6 @@
+This module implements a secure way to encode session data. It is
+primarily intended for storing session data in browser cookies, but
+could be used with other backend storage where security of stored
+session data is important.
+
+WWW: http://search.cpan.org/dist/Session-Storage-Secure/
Added: head/www/p5-Session-Storage-Secure/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/p5-Session-Storage-Secure/pkg-plist Tue Feb 5 13:48:42 2013 (r311716)
@@ -0,0 +1,7 @@
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Session/Storage/Secure/.packlist
+%%SITE_PERL%%/Session/Storage/Secure.pm
+ at dirrmtry %%SITE_PERL%%/Session/Storage
+ at dirrmtry %%SITE_PERL%%/Session
+ at dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Session/Storage/Secure
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Session/Storage
+ at dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Session
More information about the svn-ports-head
mailing list