From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 12 10:40:02 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 41F7B22E for ; Tue, 12 Feb 2013 10:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 267F4395 for ; Tue, 12 Feb 2013 10:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r1CAe2ET053468 for ; Tue, 12 Feb 2013 10:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r1CAe2rK053467; Tue, 12 Feb 2013 10:40:02 GMT (envelope-from gnats) Date: Tue, 12 Feb 2013 10:40:02 GMT Message-Id: <201302121040.r1CAe2rK053467@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/176032: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Feb 2013 10:40:02 -0000 The following reply was made to PR ports/176032; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176032: commit references a PR Date: Tue, 12 Feb 2013 10:30:41 +0000 (UTC) Author: miwi Date: Tue Feb 12 10:30:26 2013 New Revision: 312093 URL: http://svnweb.freebsd.org/changeset/ports/312093 Log: Liquibase is an open source (Apache 2.0 Licensed), database-independent library for tracking, managing and applying database changes. It is built on a simple premise: All database changes are stored in a human readable yet trackable form and checked into source control. WWW: http://www.liquibase.org/ PR: ports/176032 Submitted by: Gea-Suan Lin Added: head/databases/liquibase/ head/databases/liquibase/Makefile (contents, props changed) head/databases/liquibase/distinfo (contents, props changed) head/databases/liquibase/files/ head/databases/liquibase/files/patch-liquibase (contents, props changed) head/databases/liquibase/pkg-descr (contents, props changed) head/databases/liquibase/pkg-plist (contents, props changed) Modified: head/databases/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Feb 12 10:20:51 2013 (r312092) +++ head/databases/Makefile Tue Feb 12 10:30:26 2013 (r312093) @@ -178,6 +178,7 @@ SUBDIR += linux-oracle-instantclient-basic SUBDIR += linux-oracle-instantclient-sdk SUBDIR += linux-oracle-instantclient-sqlplus + SUBDIR += liquibase SUBDIR += lsdb SUBDIR += luasql-mysql SUBDIR += luasql-postgres Added: head/databases/liquibase/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/liquibase/Makefile Tue Feb 12 10:30:26 2013 (r312093) @@ -0,0 +1,24 @@ +# Created by: Gea-Suan Lin +# $FreeBSD$ + +PORTNAME= liquibase +PORTVERSION= 2.0.5 +CATEGORIES= databases java +MASTER_SITES= http://cloud.github.com/downloads/liquibase/liquibase/ +DISTFILES= ${PORTNAME}-${PORTVERSION}-bin${EXTRACT_SUFX} + +MAINTAINER= gslin@gslin.org +COMMENT= Database Change Management + +LICENSE= AL2 + +NO_BUILD= yes +NO_WRKSUBDIR= yes +USE_JAVA= yes + +do-install: + ${MKDIR} ${DATADIR} + ${INSTALL_DATA} ${WRKSRC}/liquibase.jar ${DATADIR}/ + ${INSTALL_SCRIPT} ${WRKSRC}/liquibase ${PREFIX}/bin/ + +.include Added: head/databases/liquibase/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/liquibase/distinfo Tue Feb 12 10:30:26 2013 (r312093) @@ -0,0 +1,2 @@ +SHA256 (liquibase-2.0.5-bin.tar.gz) = 8e395ce32f0b35fd7eaeb1b718adc8286ea6002af193b1f0812accf0810b6320 +SIZE (liquibase-2.0.5-bin.tar.gz) = 1859514 Added: head/databases/liquibase/files/patch-liquibase ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/liquibase/files/patch-liquibase Tue Feb 12 10:30:26 2013 (r312093) @@ -0,0 +1,63 @@ +--- liquibase.orig 2013-02-11 22:36:23.000000000 +0800 ++++ liquibase 2013-02-11 22:38:03.000000000 +0800 +@@ -1,51 +1,14 @@ + #! /bin/sh + +-if [ -n "${LIQUIBASE_HOME+x}" ]; then +-echo "Liquibase Home: $LIQUIBASE_HOME" +-else +- echo "Liquibase Home is not set." +- +- ## resolve links - $0 may be a symlink +- PRG="$0" +- while [ -h "$PRG" ] ; do +- ls=`ls -ld "$PRG"` +- link=`expr "$ls" : '.*-> \(.*\)$'` +- if expr "$link" : '/.*' > /dev/null; then +- PRG="$link" +- else +- PRG=`dirname "$PRG"`"/$link" +- fi +- done +- +- +- LIQUIBASE_HOME=`dirname "$PRG"` +- +- # make it fully qualified +- LIQUIBASE_HOME=`cd "$LIQUIBASE_HOME" && pwd` +- echo "Liquibase Home: $LIQUIBASE_HOME" +-fi +- +- +-# build classpath from all jars in lib +-if [ -f /usr/bin/cygpath ]; then +- CP=. +- for i in "$LIQUIBASE_HOME"/liquibase*.jar; do +- i=`cygpath --windows "$i"` +- CP="$CP;$i" +- done +- for i in "$LIQUIBASE_HOME"/lib/*.jar; do +- i=`cygpath --windows "$i"` +- CP="$CP;$i" +- done +-else +- CP=. +- for i in "$LIQUIBASE_HOME"/liquibase*.jar; do +- CP="$CP":"$i" +- done +- for i in "$LIQUIBASE_HOME"/lib/*.jar; do +- CP="$CP":"$i" +- done +-fi ++LIQUIBASE_HOME=`dirname $0`/../share/liquibase ++ ++CP=. ++for i in "$LIQUIBASE_HOME"/liquibase*.jar; do ++ CP="$CP":"$i" ++done ++for i in "$LIQUIBASE_HOME"/lib/*.jar; do ++ CP="$CP":"$i" ++done + + # add any JVM options here + JAVA_OPTS= Added: head/databases/liquibase/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/liquibase/pkg-descr Tue Feb 12 10:30:26 2013 (r312093) @@ -0,0 +1,6 @@ +Liquibase is an open source (Apache 2.0 Licensed), database-independent +library for tracking, managing and applying database changes. It is built on +a simple premise: All database changes are stored in a human readable yet +trackable form and checked into source control. + +WWW: http://www.liquibase.org/ Added: head/databases/liquibase/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/liquibase/pkg-plist Tue Feb 12 10:30:26 2013 (r312093) @@ -0,0 +1,4 @@ +@comment $FreeBSD$ +%%DATADIR%%/liquibase.jar +bin/liquibase +@dirrmtry %%DATADIR%% _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"