Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 1 Oct 2014 15:50:33 +0000 (UTC)
From:      Wen Heping <wen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r369733 - in head/databases: . p5-Dancer2-Plugin-DBIC
Message-ID:  <201410011550.s91FoXm5057158@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wen
Date: Wed Oct  1 15:50:33 2014
New Revision: 369733
URL: https://svnweb.freebsd.org/changeset/ports/369733
QAT: https://qat.redports.org/buildarchive/r369733/

Log:
  This plugin makes it very easy to create Dancer2 applications that
  interface with databases. It automatically exports the keyword `schema`
  which returns a DBIx::Class::Schema object. You just need to configure
  your database connection information. For performance, schema objects
  are cached in memory and are lazy loaded the first time they are accessed.
  
  WWW: https://github.com/ironcamel/Dancer2-Plugin-DBIC
  
  PR:		193712
  Submitted by:	Henk van Oers<hvo.pm@xs4all.nl>

Added:
  head/databases/p5-Dancer2-Plugin-DBIC/
  head/databases/p5-Dancer2-Plugin-DBIC/Makefile   (contents, props changed)
  head/databases/p5-Dancer2-Plugin-DBIC/distinfo   (contents, props changed)
  head/databases/p5-Dancer2-Plugin-DBIC/pkg-descr   (contents, props changed)
  head/databases/p5-Dancer2-Plugin-DBIC/pkg-plist   (contents, props changed)
Modified:
  head/databases/Makefile

Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile	Wed Oct  1 15:45:27 2014	(r369732)
+++ head/databases/Makefile	Wed Oct  1 15:50:33 2014	(r369733)
@@ -394,6 +394,7 @@
     SUBDIR += p5-Dancer-Plugin-Database-Core
     SUBDIR += p5-Dancer-Plugin-Redis
     SUBDIR += p5-Dancer-Session-Memcached
+    SUBDIR += p5-Dancer2-Plugin-DBIC
     SUBDIR += p5-Data-Page
     SUBDIR += p5-Data-Pageset
     SUBDIR += p5-Exception-Class-DBI

Added: head/databases/p5-Dancer2-Plugin-DBIC/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/p5-Dancer2-Plugin-DBIC/Makefile	Wed Oct  1 15:50:33 2014	(r369733)
@@ -0,0 +1,24 @@
+# Created by: <hvo.pm@xs4all.nl>
+# $FreeBSD$
+
+PORTNAME=	Dancer2-Plugin-DBIC
+PORTVERSION=	0.0006
+CATEGORIES=	databases perl5
+MASTER_SITES=	CPAN
+PKGNAMEPREFIX=	p5-
+
+MAINTAINER=	hvo.pm@xs4all.nl
+COMMENT=	DBIx::Class interface for Dancer2 applications
+
+LICENSE=	ART10 GPLv1
+LICENSE_COMB=	dual
+
+BUILD_DEPENDS=	p5-DBIx-Class>=0:${PORTSDIR}/databases/p5-DBIx-Class\
+		p5-DBIx-Class-Schema-Loader>=0.07002:${PORTSDIR}/databases/p5-DBIx-Class-Schema-Loader\
+		p5-Dancer2>=0.150000:${PORTSDIR}/www/p5-Dancer2
+RUN_DEPENDS:=	${BUILD_DEPENDS}
+
+USES=		perl5
+USE_PERL5=	configure
+
+.include <bsd.port.mk>

Added: head/databases/p5-Dancer2-Plugin-DBIC/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/p5-Dancer2-Plugin-DBIC/distinfo	Wed Oct  1 15:50:33 2014	(r369733)
@@ -0,0 +1,2 @@
+SHA256 (Dancer2-Plugin-DBIC-0.0006.tar.gz) = a2b7510f55b1356f77023b09b60b46ecf8a7f070e762be3869e09619a2bd3e45
+SIZE (Dancer2-Plugin-DBIC-0.0006.tar.gz) = 16124

Added: head/databases/p5-Dancer2-Plugin-DBIC/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/p5-Dancer2-Plugin-DBIC/pkg-descr	Wed Oct  1 15:50:33 2014	(r369733)
@@ -0,0 +1,7 @@
+This plugin makes it very easy to create Dancer2 applications that
+interface with databases. It automatically exports the keyword `schema`
+which returns a DBIx::Class::Schema object. You just need to configure
+your database connection information. For performance, schema objects
+are cached in memory and are lazy loaded the first time they are accessed.
+
+WWW: https://github.com/ironcamel/Dancer2-Plugin-DBIC

Added: head/databases/p5-Dancer2-Plugin-DBIC/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/p5-Dancer2-Plugin-DBIC/pkg-plist	Wed Oct  1 15:50:33 2014	(r369733)
@@ -0,0 +1,5 @@
+%%PERL5_MAN3%%/Dancer2::Plugin::DBIC.3.gz
+%%SITE_PERL%%/Dancer2/Plugin/DBIC.pm
+%%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer2/Plugin/DBIC/.packlist
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer2/Plugin/DBIC
+@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Dancer2/Plugin



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410011550.s91FoXm5057158>