Date: Sun, 24 Jul 2016 16:19:02 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r419010 - in head/databases: . p5-Dancer2-Session-DBIC Message-ID: <201607241619.u6OGJ2OP052454@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Jul 24 16:19:02 2016 New Revision: 419010 URL: https://svnweb.freebsd.org/changeset/ports/419010 Log: New port: databases/p5-Dancer2-Session-DBIC This module implements a session engine for Dancer2 by serializing the session, and storing it in a database via DBIx::Class. JSON was chosen as the default serialization format, as it is fast, terse, and portable. WWW: http://search.cpan.org/dist/Dancer2-Session-DBIC/ PR: 211277 Submitted by: Henk van Oers <hvo.pm@xs4all.nl> Added: head/databases/p5-Dancer2-Session-DBIC/ head/databases/p5-Dancer2-Session-DBIC/Makefile (contents, props changed) head/databases/p5-Dancer2-Session-DBIC/distinfo (contents, props changed) head/databases/p5-Dancer2-Session-DBIC/pkg-descr (contents, props changed) head/databases/p5-Dancer2-Session-DBIC/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sun Jul 24 16:06:48 2016 (r419009) +++ head/databases/Makefile Sun Jul 24 16:19:02 2016 (r419010) @@ -416,6 +416,7 @@ SUBDIR += p5-Dancer-Session-Memcached SUBDIR += p5-Dancer2-Plugin-DBIC SUBDIR += p5-Dancer2-Plugin-Database + SUBDIR += p5-Dancer2-Session-DBIC SUBDIR += p5-Data-Page SUBDIR += p5-Data-Pageset SUBDIR += p5-Exception-Class-DBI Added: head/databases/p5-Dancer2-Session-DBIC/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Dancer2-Session-DBIC/Makefile Sun Jul 24 16:19:02 2016 (r419010) @@ -0,0 +1,30 @@ +# Created by: <hvo.pm@xs4all.nl> +# $FreeBSD$ + +PORTNAME= Dancer2-Session-DBIC +PORTVERSION= 0.110 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= hvo.pm@xs4all.nl +COMMENT= DBIx::Class based session engine for Dancer2 + +LICENSE= ART10 GPLv1 +LICENSE_COMB= dual + +BUILD_DEPENDS= p5-DBIx-Class>=0:databases/p5-DBIx-Class\ + p5-DBICx-Sugar>=0:databases/p5-DBICx-Sugar\ + p5-Dancer2>=0.200002:www/p5-Dancer2\ + p5-JSON-MaybeXS>=0:converters/p5-JSON-MaybeXS +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Sereal-Decoder>=0:converters/p5-Sereal-Decoder\ + p5-Sereal-Encoder>=0:converters/p5-Sereal-Encoder\ + p5-DBIx-Class-TimeStamp>=0:databases/p5-DBIx-Class-TimeStamp\ + p5-DBICx-TestDatabase>=0:databases/p5-DBICx-TestDatabase + +NO_ARCH= yes +USES= perl5 +USE_PERL5= configure + +.include <bsd.port.mk> Added: head/databases/p5-Dancer2-Session-DBIC/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Dancer2-Session-DBIC/distinfo Sun Jul 24 16:19:02 2016 (r419010) @@ -0,0 +1,3 @@ +TIMESTAMP = 1469120161 +SHA256 (Dancer2-Session-DBIC-0.110.tar.gz) = 1f90df68c86a64a499d4b60e419f950b94392c9e926f88c6dd3c9c9a4a68e8b6 +SIZE (Dancer2-Session-DBIC-0.110.tar.gz) = 13082 Added: head/databases/p5-Dancer2-Session-DBIC/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Dancer2-Session-DBIC/pkg-descr Sun Jul 24 16:19:02 2016 (r419010) @@ -0,0 +1,7 @@ +This module implements a session engine for Dancer2 by serializing +the session, and storing it in a database via DBIx::Class. + +JSON was chosen as the default serialization format, +as it is fast, terse, and portable. + +WWW: http://search.cpan.org/dist/Dancer2-Session-DBIC/ Added: head/databases/p5-Dancer2-Session-DBIC/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/p5-Dancer2-Session-DBIC/pkg-plist Sun Jul 24 16:19:02 2016 (r419010) @@ -0,0 +1,10 @@ +%%SITE_PERL%%/Dancer2/Session/DBIC.pm +%%SITE_PERL%%/Dancer2/Session/DBIC/Role/Serializer.pm +%%SITE_PERL%%/Dancer2/Session/DBIC/Serializer/JSON.pm +%%SITE_PERL%%/Dancer2/Session/DBIC/Serializer/Sereal.pm +%%SITE_PERL%%/Dancer2/Session/DBIC/Serializer/YAML.pm +%%PERL5_MAN3%%/Dancer2::Session::DBIC.3.gz +%%PERL5_MAN3%%/Dancer2::Session::DBIC::Role::Serializer.3.gz +%%PERL5_MAN3%%/Dancer2::Session::DBIC::Serializer::JSON.3.gz +%%PERL5_MAN3%%/Dancer2::Session::DBIC::Serializer::Sereal.3.gz +%%PERL5_MAN3%%/Dancer2::Session::DBIC::Serializer::YAML.3.gz
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607241619.u6OGJ2OP052454>