ports/176032: [NEW PORT] databases/liquibase: Database Change Management

Gea-Suan Lin gslin at gslin.org
Mon Feb 11 16:00:01 UTC 2013


>Number:         176032
>Category:       ports
>Synopsis:       [NEW PORT] databases/liquibase: Database Change Management
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 11 16:00:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Gea-Suan Lin
>Release:        FreeBSD 9.1-RELEASE i386
>Organization:
>Environment:
System: FreeBSD colo-p.gslin.org 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243826: Tue Dec  4 06:55:39
>Description:
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/

Generated with FreeBSD Port Tools 0.99_6 (mode: new)
>How-To-Repeat:
>Fix:

--- .shar begins here ---
# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	liquibase
#	liquibase/Makefile
#	liquibase/pkg-descr
#	liquibase/pkg-plist
#	liquibase/distinfo
#	liquibase/files
#	liquibase/files/patch-liquibase
#
echo c - liquibase
mkdir -p liquibase > /dev/null 2>&1
echo x - liquibase/Makefile
sed 's/^X//' >liquibase/Makefile << 'f1233d9175b1775b226a077de41018da'
X# Created by: Gea-Suan Lin <gslin at gslin.org>
X# $FreeBSD$
X
XPORTNAME=	liquibase
XPORTVERSION=	2.0.5
XCATEGORIES=	databases java
XMASTER_SITES=	http://cloud.github.com/downloads/liquibase/liquibase/
XDISTFILES=	${PORTNAME}-${PORTVERSION}-bin${EXTRACT_SUFX}
X
XMAINTAINER=	gslin at gslin.org
XCOMMENT=	Database Change Management
X
XLICENSE=	AL2
X
XNO_BUILD=	yes
XNO_WRKSUBDIR=	yes
XUSE_JAVA=	yes
X
Xdo-install:
X	${MKDIR} ${DATADIR}
X	${INSTALL_DATA} ${WRKSRC}/liquibase.jar ${DATADIR}/
X	${INSTALL_SCRIPT} ${WRKSRC}/liquibase ${PREFIX}/bin/
X
X.include <bsd.port.mk>
f1233d9175b1775b226a077de41018da
echo x - liquibase/pkg-descr
sed 's/^X//' >liquibase/pkg-descr << 'e1e40be1057f4d977386986df0df280e'
XLiquibase is an open source (Apache 2.0 Licensed), database-independent
Xlibrary for tracking, managing and applying database changes. It is built on
Xa simple premise: All database changes are stored in a human readable yet
Xtrackable form and checked into source control.
X
XWWW: http://www.liquibase.org/
e1e40be1057f4d977386986df0df280e
echo x - liquibase/pkg-plist
sed 's/^X//' >liquibase/pkg-plist << '1b7498759786d41da38ec0f6bae36677'
X at comment $FreeBSD$
X%%DATADIR%%/liquibase.jar
Xbin/liquibase
X at dirrmtry %%DATADIR%%
1b7498759786d41da38ec0f6bae36677
echo x - liquibase/distinfo
sed 's/^X//' >liquibase/distinfo << 'b8506645fdc145c4bd683adc5959661e'
XSHA256 (liquibase-2.0.5-bin.tar.gz) = 8e395ce32f0b35fd7eaeb1b718adc8286ea6002af193b1f0812accf0810b6320
XSIZE (liquibase-2.0.5-bin.tar.gz) = 1859514
b8506645fdc145c4bd683adc5959661e
echo c - liquibase/files
mkdir -p liquibase/files > /dev/null 2>&1
echo x - liquibase/files/patch-liquibase
sed 's/^X//' >liquibase/files/patch-liquibase << '3507e6d8af36ad37f5da6dc24e23402c'
X--- liquibase.orig	2013-02-11 22:36:23.000000000 +0800
X+++ liquibase	2013-02-11 22:38:03.000000000 +0800
X@@ -1,51 +1,14 @@
X #! /bin/sh
X 
X-if [ -n "${LIQUIBASE_HOME+x}" ]; then
X-echo "Liquibase Home: $LIQUIBASE_HOME"
X-else
X-  echo "Liquibase Home is not set."
X-
X-  ## resolve links - $0 may be a symlink
X-  PRG="$0"
X-  while [ -h "$PRG" ] ; do
X-    ls=`ls -ld "$PRG"`
X-    link=`expr "$ls" : '.*-> \(.*\)$'`
X-    if expr "$link" : '/.*' > /dev/null; then
X-    PRG="$link"
X-    else
X-    PRG=`dirname "$PRG"`"/$link"
X-    fi
X-  done
X-
X-
X-  LIQUIBASE_HOME=`dirname "$PRG"`
X-
X-  # make it fully qualified
X-  LIQUIBASE_HOME=`cd "$LIQUIBASE_HOME" && pwd`
X-  echo "Liquibase Home: $LIQUIBASE_HOME"
X-fi
X-
X- 
X-# build classpath from all jars in lib
X-if [ -f /usr/bin/cygpath ]; then
X-  CP=.
X-  for i in "$LIQUIBASE_HOME"/liquibase*.jar; do
X-    i=`cygpath --windows "$i"`
X-    CP="$CP;$i"
X-  done
X-  for i in "$LIQUIBASE_HOME"/lib/*.jar; do
X-    i=`cygpath --windows "$i"`
X-    CP="$CP;$i"
X-  done
X-else
X-  CP=.
X-  for i in "$LIQUIBASE_HOME"/liquibase*.jar; do
X-    CP="$CP":"$i"
X-  done
X-  for i in "$LIQUIBASE_HOME"/lib/*.jar; do
X-    CP="$CP":"$i"
X-  done
X-fi
X+LIQUIBASE_HOME=`dirname $0`/../share/liquibase
X+
X+CP=.
X+for i in "$LIQUIBASE_HOME"/liquibase*.jar; do
X+  CP="$CP":"$i"
X+done
X+for i in "$LIQUIBASE_HOME"/lib/*.jar; do
X+  CP="$CP":"$i"
X+done
X 
X # add any JVM options here
X JAVA_OPTS=
3507e6d8af36ad37f5da6dc24e23402c
exit
--- .shar ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-ports-bugs mailing list