pkgsrc changes: - Ensure installed perl modules and documentation has no execute bit Upstream changes: 0.758 (01.26.2010) - John Siracusa <siracusa@gmail.com> * Added workaround for DateTime::Duration bug (RT 53985) 0.757 (01.23.2010) - John Siracusa <siracusa@gmail.com> * Support for Rose::DB::Object 0.786. 0.756 (12.31.2009) - John Siracusa <siracusa@gmail.com> * Support for Rose::DB::Object 0.785. * Made fork- and thread-safe (though some databases, notably Oracle, don't support passing a database connection across a fork at all). * Updated mysql_enable_utf8() to run "SET NAMES utf8" id a database handle already exists. * Updated the various validate_*_keywords() methods to no longer accept anything that "looks like a function call." This was done to avoid possible SQL injection attacks, and because the now-pervasive support for scalar-reference literals in Rose::DB::Object obviates the need for such permissive SQL inlining. To restore the old behavior, use the default_keyword_function_calls() class method or the keyword_function_calls() object method. 0.755 (10.16.2009) - John Siracusa <siracusa@gmail.com> * Fixed a bug in Rose::DB::Oracle that caused the port to be omitted from the DSN. (Reported by llama) * Updated eval blocks to avoid stomping on $@ from an outer scope.
34 lines
1.2 KiB
Makefile
34 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.11 2010/02/02 23:27:51 sno Exp $
|
|
|
|
DISTNAME= Rose-DB-0.758
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= databases perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Rose/}
|
|
|
|
MAINTAINER= abs@absd.org
|
|
HOMEPAGE= http://search.cpan.org/~jsiracusa/Rose-DB/
|
|
COMMENT= DBI wrapper and abstraction layer
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
DEPENDS+= p5-Bit-Vector>=6.4:../../devel/p5-Bit-Vector
|
|
DEPENDS+= p5-Clone-PP-[0-9]*:../../devel/p5-Clone-PP
|
|
DEPENDS+= p5-DateTime-[0-9]*:../../time/p5-DateTime
|
|
DEPENDS+= p5-DateTime-Format-MySQL-[0-9]*:../../time/p5-DateTime-Format-MySQL
|
|
DEPENDS+= p5-DateTime-Format-Pg>=0.11:../../time/p5-DateTime-Format-Pg
|
|
DEPENDS+= p5-Rose-DateTime>=0.532:../../time/p5-Rose-DateTime
|
|
DEPENDS+= p5-Rose-Object>=0.854:../../devel/p5-Rose-Object
|
|
DEPENDS+= p5-SQL-ReservedWords-[0-9]*:../../databases/p5-SQL-ReservedWords
|
|
DEPENDS+= p5-Time-Clock-[0-9]*:../../time/p5-Time-Clock
|
|
|
|
USE_LANGUAGES= # empty
|
|
PERL5_PACKLIST= auto/Rose/DB/.packlist
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
post-extract:
|
|
${FIND} ${WRKSRC} -name "*.pm" -type f -exec ${CHMOD} -x {} \;
|
|
${FIND} ${WRKSRC} -name "*.pod" -type f -exec ${CHMOD} -x {} \;
|
|
|
|
.include "../../databases/p5-DBI/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|