diff options
author | lbr <lbr@FreeBSD.org> | 2009-03-25 18:43:25 +0800 |
---|---|---|
committer | lbr <lbr@FreeBSD.org> | 2009-03-25 18:43:25 +0800 |
commit | 7624a5e64888fe7136e071b5bac031a5d8b4b989 (patch) | |
tree | 46d6c8d6dd4a5ec3e2740f7ae5eae841b9eff157 /databases/p5-DBIx-Class-ResultSet-RecursiveUpdate | |
parent | 4f2de96d03c8b43e05b9fb7b9d0684f2187d9451 (diff) | |
download | freebsd-ports-gnome-7624a5e64888fe7136e071b5bac031a5d8b4b989.tar.gz freebsd-ports-gnome-7624a5e64888fe7136e071b5bac031a5d8b4b989.tar.zst freebsd-ports-gnome-7624a5e64888fe7136e071b5bac031a5d8b4b989.zip |
New port, databases/p5-DBIx-Class-ResultSet-RecursiveUpdate
It is a base class for ResultSets providing just one method: recur-
sive_update which works just like update_or_create but can recursively
update or create data objects composed of multiple rows. All rows need
to be identified by primary keys - so you need to provide them in the
update structure (unless they can be deduced from the parent row - for
example when you have a belongs_to relationship). If not all colums
comprising the primary key are specified - then a new row will be cre-
ated, with the expectation that the missing columns will be filled by
it (as in the case of auto_increment primary keys).
Diffstat (limited to 'databases/p5-DBIx-Class-ResultSet-RecursiveUpdate')
4 files changed, 50 insertions, 0 deletions
diff --git a/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile new file mode 100644 index 000000000000..d86af29aafd8 --- /dev/null +++ b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: DBIx::Class::ResultSet::RecursiveUpdate +# Date created: 25 Mar 2009 +# Whom: Lars Balker Rasmussen <lbr@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= DBIx-Class-ResultSet-RecursiveUpdate +PORTVERSION= v0.002 +CATEGORIES= databases perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= lbr@FreeBSD.org +COMMENT= Like update_or_create - but recursive + +RUN_DEPENDS= \ + p5-DBIx-Class>=0.08011:${PORTSDIR}/databases/p5-DBIx-Class \ + p5-DBIx-Class-IntrospectableM2M>=0:${PORTSDIR}/databases/p5-DBIx-Class-IntrospectableM2M \ + p5-version>=0:${PORTSDIR}/devel/p5-version \ + p5-SQL-Translator>=0.08:${PORTSDIR}/databases/p5-SQL-Translator \ + p5-DateTime>0:${PORTSDIR}/devel/p5-DateTime +BUILD_DEPENDS= ${RUN_DEPENDS} + +PERL_CONFIGURE= yes + +MAN3= DBIx::Class::ResultSet::RecursiveUpdate.3 + +.include <bsd.port.mk> diff --git a/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/distinfo b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/distinfo new file mode 100644 index 000000000000..cb5ab510f63e --- /dev/null +++ b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/distinfo @@ -0,0 +1,3 @@ +MD5 (DBIx-Class-ResultSet-RecursiveUpdate-v0.002.tar.gz) = f24a772e098223693737f9a3b5922343 +SHA256 (DBIx-Class-ResultSet-RecursiveUpdate-v0.002.tar.gz) = 0a389d7954256c5c03dba02647a7f57c57117d211aa4fbc543d0f21109ca982e +SIZE (DBIx-Class-ResultSet-RecursiveUpdate-v0.002.tar.gz) = 12367 diff --git a/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-descr b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-descr new file mode 100644 index 000000000000..d5c9f8658f3f --- /dev/null +++ b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-descr @@ -0,0 +1,11 @@ +It is a base class for ResultSets providing just one method: recur- +sive_update which works just like update_or_create but can recursively +update or create data objects composed of multiple rows. All rows need +to be identified by primary keys - so you need to provide them in the +update structure (unless they can be deduced from the parent row - for +example when you have a belongs_to relationship). If not all colums +comprising the primary key are specified - then a new row will be cre- +ated, with the expectation that the missing columns will be filled by +it (as in the case of auto_increment primary keys). + +WWW: http://search.cpan.org/dist/DBIx-Class-ResultSet-RecursiveUpdate/ diff --git a/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-plist b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-plist new file mode 100644 index 000000000000..874f9a525f5f --- /dev/null +++ b/databases/p5-DBIx-Class-ResultSet-RecursiveUpdate/pkg-plist @@ -0,0 +1,7 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/ResultSet/RecursiveUpdate/.packlist +%%SITE_PERL%%/DBIx/Class/ResultSet/RecursiveUpdate.pm +@dirrmtry %%SITE_PERL%%/DBIx/Class/ResultSet +@dirrmtry %%SITE_PERL%%/DBIx/Class +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/ResultSet/RecursiveUpdate +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class/ResultSet +@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Class |