svn commit: r388305 - in head/databases: . p5-GitDDL-Migrator
Jun Kuriyama
kuriyama at FreeBSD.org
Tue Jun 2 04:51:37 UTC 2015
Author: kuriyama
Date: Tue Jun 2 04:51:35 2015
New Revision: 388305
URL: https://svnweb.freebsd.org/changeset/ports/388305
Log:
GitDDL::Migrator is database migration utility extended GitDDL.
Extended features are:
- save migration history
- rollback to previous version
- specify version
- specify SQL (sometimes SQL::Translator's output is wrong)
- check differences from versioned SQL and real database
WWW: http://search.cpan.org/dist/GitDDL-Migrator/
Added:
head/databases/p5-GitDDL-Migrator/
head/databases/p5-GitDDL-Migrator/Makefile (contents, props changed)
head/databases/p5-GitDDL-Migrator/distinfo (contents, props changed)
head/databases/p5-GitDDL-Migrator/pkg-descr (contents, props changed)
head/databases/p5-GitDDL-Migrator/pkg-plist (contents, props changed)
Modified:
head/databases/Makefile
Modified: head/databases/Makefile
==============================================================================
--- head/databases/Makefile Tue Jun 2 04:30:01 2015 (r388304)
+++ head/databases/Makefile Tue Jun 2 04:51:35 2015 (r388305)
@@ -409,6 +409,7 @@
SUBDIR += p5-GDBM
SUBDIR += p5-Genezzo
SUBDIR += p5-GitDDL
+ SUBDIR += p5-GitDDL-Migrator
SUBDIR += p5-GraphViz-DBI
SUBDIR += p5-HTML-FormHandler-Model-DBIC
SUBDIR += p5-Ima-DBI
Added: head/databases/p5-GitDDL-Migrator/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-GitDDL-Migrator/Makefile Tue Jun 2 04:51:35 2015 (r388305)
@@ -0,0 +1,26 @@
+# $FreeBSD$
+
+PORTNAME= GitDDL-Migrator
+PORTVERSION= 0.07
+CATEGORIES= databases perl5
+MASTER_SITES= CPAN
+MASTER_SITE_SUBDIR= CPAN:SONGMU
+PKGNAMEPREFIX= p5-
+
+MAINTAINER= kuriyama at FreeBSD.org
+COMMENT= Perl extension to extended p5-GitDDL
+
+LICENSE= ART10 GPLv1
+LICENSE_COMB= dual
+
+RUN_DEPENDS= \
+ p5-GitDDL>=0.03:${PORTSDIR}/databases/p5-GitDDL \
+ p5-Mouse>0:${PORTSDIR}/devel/p5-Mouse \
+ p5-SQL-Translator>0:${PORTSDIR}/databases/p5-SQL-Translator
+BUILD_DEPENDS= ${RUN_DEPENDS}
+
+USES= perl5
+USE_PERL5= modbuild
+NO_ARCH= YES
+
+.include <bsd.port.mk>
Added: head/databases/p5-GitDDL-Migrator/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-GitDDL-Migrator/distinfo Tue Jun 2 04:51:35 2015 (r388305)
@@ -0,0 +1,2 @@
+SHA256 (GitDDL-Migrator-0.07.tar.gz) = b78ed88c042f1fa6a1221ad8393c1cef4ef88c27fcb10d6b81429703a4adf8ff
+SIZE (GitDDL-Migrator-0.07.tar.gz) = 13631
Added: head/databases/p5-GitDDL-Migrator/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-GitDDL-Migrator/pkg-descr Tue Jun 2 04:51:35 2015 (r388305)
@@ -0,0 +1,11 @@
+GitDDL::Migrator is database migration utility extended GitDDL.
+
+Extended features are:
+
+- save migration history
+- rollback to previous version
+- specify version
+- specify SQL (sometimes SQL::Translator's output is wrong)
+- check differences from versioned SQL and real database
+
+WWW: http://search.cpan.org/dist/GitDDL-Migrator/
Added: head/databases/p5-GitDDL-Migrator/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/p5-GitDDL-Migrator/pkg-plist Tue Jun 2 04:51:35 2015 (r388305)
@@ -0,0 +1,2 @@
+%%PERL5_MAN3%%/GitDDL::Migrator.3.gz
+%%SITE_PERL%%/GitDDL/Migrator.pm
More information about the svn-ports-all
mailing list