b387177b57
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>
30 lines
822 B
Makefile
30 lines
822 B
Makefile
# 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>
|