New port databases/p5-DBIx-Abstract
DBIx::Abstract - DBI SQL abstraction. This module provides methods for doing manipulating database tables This module provides methods retrieving and storing data in SQL databases. It provides methods for all of the more important SQL commands (like SELECT, INSERT, REPLACE, UPDATE, DELETE). It endeavors to produce an interface that will be intuitive to those already familiar with SQL. Notable features include: * data_source generation for some DBD drivers. * Can check to make sure the connection is not stale and reconnect if it is. * Controls statement handles for you. * Can delay writes. * Generates complex where clauses from hashes and arrays. * Shortcuts (convenience functions) for some common cases. (Like select_all_to_hashref.) WWW: http://search.cpan.org/dist/DBIx-Abstract/ PR: ports/91372 Submitted by: Jon Nistor <nistor@snickers.org>
This commit is contained in:
parent
c9867be4d9
commit
5aa1d63af5
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=152866
5 changed files with 58 additions and 0 deletions
|
@ -197,6 +197,7 @@
|
|||
SUBDIR += p5-DBI-137
|
||||
SUBDIR += p5-DBI-Shell
|
||||
SUBDIR += p5-DBIWrapper
|
||||
SUBDIR += p5-DBIx-Abstract
|
||||
SUBDIR += p5-DBIx-AnyDBD
|
||||
SUBDIR += p5-DBIx-Browse
|
||||
SUBDIR += p5-DBIx-Class
|
||||
|
|
24
databases/p5-DBIx-Abstract/Makefile
Normal file
24
databases/p5-DBIx-Abstract/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# New ports collection makefile for: p5-DBIx-Abstract
|
||||
# Date created: 6 Jan 2006
|
||||
# Whom: Jon Nistor <nistor@snickers.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= DBIx-Abstract
|
||||
PORTVERSION= 1.006
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= DBIx
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= nistor@snickers.org
|
||||
COMMENT= DBIx::Abstract - DBI SQL abstraction
|
||||
|
||||
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
|
||||
|
||||
PERL_CONFIGURE= yes
|
||||
|
||||
MAN3= DBIx::Abstract.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
databases/p5-DBIx-Abstract/distinfo
Normal file
3
databases/p5-DBIx-Abstract/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (DBIx-Abstract-1.006.tar.gz) = 230009d2613d3ad84a38c8589384003d
|
||||
SHA256 (DBIx-Abstract-1.006.tar.gz) = 112749cc5fdaa8163e1db38b29d15965553805b13aac442e95ccf7af08d1577a
|
||||
SIZE (DBIx-Abstract-1.006.tar.gz) = 20351
|
22
databases/p5-DBIx-Abstract/pkg-descr
Normal file
22
databases/p5-DBIx-Abstract/pkg-descr
Normal file
|
@ -0,0 +1,22 @@
|
|||
DBIx::Abstract - DBI SQL abstraction.
|
||||
|
||||
This module provides methods for doing manipulating database tables
|
||||
This module provides methods retrieving and storing data in SQL
|
||||
databases. It provides methods for all of the more important SQL
|
||||
commands (like SELECT, INSERT, REPLACE, UPDATE, DELETE).
|
||||
|
||||
It endeavors to produce an interface that will be intuitive to those
|
||||
already familiar with SQL.
|
||||
|
||||
Notable features include:
|
||||
|
||||
* data_source generation for some DBD drivers.
|
||||
* Can check to make sure the connection is not stale and reconnect
|
||||
if it is.
|
||||
* Controls statement handles for you.
|
||||
* Can delay writes.
|
||||
* Generates complex where clauses from hashes and arrays.
|
||||
* Shortcuts (convenience functions) for some common cases. (Like
|
||||
select_all_to_hashref.)
|
||||
|
||||
WWW: http://search.cpan.org/dist/DBIx-Abstract/
|
8
databases/p5-DBIx-Abstract/pkg-plist
Normal file
8
databases/p5-DBIx-Abstract/pkg-plist
Normal file
|
@ -0,0 +1,8 @@
|
|||
@comment $FreeBSD$
|
||||
%%SITE_PERL%%/DBIx/Abstract.pm
|
||||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Abstract/.packlist
|
||||
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Abstract
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx/Abstract 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBIx 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/DBIx/Abstract 2>/dev/null || true
|
||||
@unexec rmdir %D/%%SITE_PERL%%/DBIx 2>/dev/null || true
|
Loading…
Reference in a new issue