Date: Wed, 27 May 2015 21:21:54 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387680 - in head/security: . p5-Session-Token Message-ID: <201505272121.t4RLLsNT044284@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed May 27 21:21:54 2015 New Revision: 387680 URL: https://svnweb.freebsd.org/changeset/ports/387680 Log: This module provides a secure, efficient, and simple interface for creating session tokens, password reset codes, temporary passwords, random identifiers, and anything else you can think of. Like this: my $token = Session::Token->new->get; # 128 bits WWW: http://search.cpan.org/dist/Session-Token/ PR: 200390 Submitted by: hvo.pm@xs4all.nl Added: head/security/p5-Session-Token/ head/security/p5-Session-Token/Makefile (contents, props changed) head/security/p5-Session-Token/distinfo (contents, props changed) head/security/p5-Session-Token/pkg-descr (contents, props changed) head/security/p5-Session-Token/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed May 27 21:02:39 2015 (r387679) +++ head/security/Makefile Wed May 27 21:21:54 2015 (r387680) @@ -633,6 +633,7 @@ SUBDIR += p5-SAVI-Perl SUBDIR += p5-SHA SUBDIR += p5-Safe-Hole + SUBDIR += p5-Sesstion-Token SUBDIR += p5-Snort-Rule SUBDIR += p5-String-MkPasswd SUBDIR += p5-Sudo Added: head/security/p5-Session-Token/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Session-Token/Makefile Wed May 27 21:21:54 2015 (r387680) @@ -0,0 +1,25 @@ +# Created by: Henk van Oers <hvo.pm@xs4all.nl> +# $FreeBSD$ + +PORTNAME= Session-Token +PORTVERSION= 1.008 +CATEGORIES= security perl5 +MASTER_SITES= CPAN +MASTER_SITE_SUBDIR= CPAN:FRACTAL +PKGNAMEPREFIX= p5- + +MAINTAINER= hvo.pm@xs4all.nl +COMMENT= Secure, efficient, simple random session token generation + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +USES= perl5 +USE_PERL5= configure + +post-install: + ${CHMOD} u+w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Session/Token/Token.so + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Session/Token/Token.so + ${CHMOD} u-w ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Session/Token/Token.so + +.include <bsd.port.mk> Added: head/security/p5-Session-Token/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Session-Token/distinfo Wed May 27 21:21:54 2015 (r387680) @@ -0,0 +1,2 @@ +SHA256 (Session-Token-1.008.tar.gz) = 80a8e2c4a97b2d712990052bdc2bf70c489171f1bf88f8e0ba5f58d7e1c2a3f8 +SIZE (Session-Token-1.008.tar.gz) = 21732 Added: head/security/p5-Session-Token/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Session-Token/pkg-descr Wed May 27 21:21:54 2015 (r387680) @@ -0,0 +1,7 @@ +This module provides a secure, efficient, and simple interface for +creating session tokens, password reset codes, temporary passwords, +random identifiers, and anything else you can think of. + +Like this: my $token = Session::Token->new->get; # 128 bits + +WWW: http://search.cpan.org/dist/Session-Token/ Added: head/security/p5-Session-Token/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/p5-Session-Token/pkg-plist Wed May 27 21:21:54 2015 (r387680) @@ -0,0 +1,3 @@ +%%SITE_ARCH%%/Session/Token.pm +%%SITE_ARCH%%/auto/Session/Token/Token.so +%%PERL5_MAN3%%/Session::Token.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505272121.t4RLLsNT044284>