ORLite::Migrate is a light weight single class Database Schema Migration
enhancement for ORLite. It provides a simple implementation of schema versioning within the SQLite database using the built-in user_version pragma (which is set to zero by default). WWW: http://search.cpan.org/dist/ORLite-Migrate/ PR: ports/132406 Submitted by: Cezary Morga <cm at therek.net>
This commit is contained in:
parent
959ae461e4
commit
8e4871b771
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=230130
5 changed files with 45 additions and 0 deletions
|
@ -340,6 +340,7 @@
|
|||
SUBDIR += p5-Metadata
|
||||
SUBDIR += p5-Mysql
|
||||
SUBDIR += p5-Mysql-Diff
|
||||
SUBDIR += p5-ORLite-Migrate
|
||||
SUBDIR += p5-Oryx
|
||||
SUBDIR += p5-POE-Component-DBIAgent
|
||||
SUBDIR += p5-POE-Component-EasyDBI
|
||||
|
|
31
databases/p5-ORLite-Migrate/Makefile
Normal file
31
databases/p5-ORLite-Migrate/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
|||
# New ports collection makefile for: p5-ORLite-Migrate
|
||||
# Date created: March 8th 2009
|
||||
# Whom: Cezary Morga <cm@therek.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= ORLite-Migrate
|
||||
PORTVERSION= 0.02
|
||||
CATEGORIES= databases perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR= ../by-authors/id/A/AD/ADAMK
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
||||
MAINTAINER= cm@therek.net
|
||||
COMMENT= Perl5 extremely light weight SQLite-specific schema migration
|
||||
|
||||
BUILD_DEPENDS= ${SITE_PERL}/File/pushd.pm:${PORTSDIR}/devel/p5-File-pushd \
|
||||
${SITE_PERL}/IPC/Run3.pm:${PORTSDIR}/devel/p5-IPC-Run3 \
|
||||
${SITE_PERL}/ORLite.pm:${PORTSDIR}/databases/p5-ORLite \
|
||||
${SITE_PERL}/Probe/Perl.pm:${PORTSDIR}/sysutils/p5-Probe-Perl \
|
||||
${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI \
|
||||
${SITE_PERL}/${PERL_ARCH}/DBD/SQLite.pm:${PORTSDIR}/databases/p5-DBD-SQLite \
|
||||
${SITE_PERL}/${PERL_ARCH}/Params/Util.pm:${PORTSDIR}/devel/p5-Params-Util
|
||||
RUN_DEPENDS= ${BUILD_DEPENDS}
|
||||
|
||||
PERL_CONFIGURE= YES
|
||||
|
||||
MAN3= ORLite::Migrate.3
|
||||
|
||||
.include <bsd.port.mk>
|
3
databases/p5-ORLite-Migrate/distinfo
Normal file
3
databases/p5-ORLite-Migrate/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (ORLite-Migrate-0.02.tar.gz) = eda31dd7462eafdfff1ada76281c5a15
|
||||
SHA256 (ORLite-Migrate-0.02.tar.gz) = e070a5a9581bf38726cbeef25376b1f8a20309385522c0bff855380ac43d7e1e
|
||||
SIZE (ORLite-Migrate-0.02.tar.gz) = 25715
|
6
databases/p5-ORLite-Migrate/pkg-descr
Normal file
6
databases/p5-ORLite-Migrate/pkg-descr
Normal file
|
@ -0,0 +1,6 @@
|
|||
ORLite::Migrate is a light weight single class Database Schema Migration
|
||||
enhancement for ORLite. It provides a simple implementation of schema
|
||||
versioning within the SQLite database using the built-in user_version pragma
|
||||
(which is set to zero by default).
|
||||
|
||||
WWW: http://search.cpan.org/dist/ORLite-Migrate/
|
4
databases/p5-ORLite-Migrate/pkg-plist
Normal file
4
databases/p5-ORLite-Migrate/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
|||
%%SITE_PERL%%/%%PERL_ARCH%%/auto/ORLite/Migrate/.packlist
|
||||
%%SITE_PERL%%/ORLite/Migrate.pm
|
||||
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ORLite/Migrate
|
||||
@dirrmtry %%SITE_PERL%%/ORLite
|
Loading…
Reference in a new issue