From owner-svn-ports-head@freebsd.org Fri Oct 9 18:43:35 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E8659D1B8F; Fri, 9 Oct 2015 18:43:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2C735F6E; Fri, 9 Oct 2015 18:43:35 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t99IhYWK064508; Fri, 9 Oct 2015 18:43:34 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t99IhY4Y064505; Fri, 9 Oct 2015 18:43:34 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201510091843.t99IhY4Y064505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Fri, 9 Oct 2015 18:43:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398950 - in head/databases/liquibase: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Oct 2015 18:43:35 -0000 Author: marino Date: Fri Oct 9 18:43:33 2015 New Revision: 398950 URL: https://svnweb.freebsd.org/changeset/ports/398950 Log: databases/liquibase: Upgrade version 3.3.2 => 3.4.1 PR was for version 3.3.5 but several releases have come since then and the MASTER_SITES changed. The latest version required an update to the patch. PR: 201839 Submitted by: ports fury Modified: head/databases/liquibase/Makefile head/databases/liquibase/distinfo head/databases/liquibase/files/patch-liquibase Modified: head/databases/liquibase/Makefile ============================================================================== --- head/databases/liquibase/Makefile Fri Oct 9 18:33:09 2015 (r398949) +++ head/databases/liquibase/Makefile Fri Oct 9 18:43:33 2015 (r398950) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= liquibase -PORTVERSION= 3.3.2 +PORTVERSION= 3.4.1 DISTVERSIONSUFFIX= -bin CATEGORIES= databases java -MASTER_SITES= SF/${PORTNAME}/Liquibase%20Core +MASTER_SITES= http://github.com/liquibase/liquibase/releases/download/liquibase-parent-${PORTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Database Change Management Modified: head/databases/liquibase/distinfo ============================================================================== --- head/databases/liquibase/distinfo Fri Oct 9 18:33:09 2015 (r398949) +++ head/databases/liquibase/distinfo Fri Oct 9 18:43:33 2015 (r398950) @@ -1,2 +1,2 @@ -SHA256 (liquibase-3.3.2-bin.tar.gz) = 879eddb8545a30c816fa674e278b4b8293cc936884eac4bf3f5cf5af47e39784 -SIZE (liquibase-3.3.2-bin.tar.gz) = 6517290 +SHA256 (liquibase-3.4.1-bin.tar.gz) = 693919918e217e7a88c5140e82f279f31f636233a62cd2108abdafa4f3ed0a02 +SIZE (liquibase-3.4.1-bin.tar.gz) = 6718242 Modified: head/databases/liquibase/files/patch-liquibase ============================================================================== --- head/databases/liquibase/files/patch-liquibase Fri Oct 9 18:33:09 2015 (r398949) +++ head/databases/liquibase/files/patch-liquibase Fri Oct 9 18:43:33 2015 (r398950) @@ -1,11 +1,13 @@ ---- liquibase.orig 2015-01-08 14:10:22 UTC +--- liquibase.orig 2015-07-28 18:54:25 UTC +++ liquibase -@@ -1,49 +1,14 @@ - #! /bin/sh +@@ -1,54 +1,14 @@ +-#!/usr/bin/env bash ++#!/bin/sh -if [ ! -n "${LIQUIBASE_HOME+x}" ]; then -- echo "Liquibase Home is not set." -- +- # echo "LIQUIBASE_HOME is not set." ++LIQUIBASE_HOME=`dirname $0`/../share/liquibase + - ## resolve links - $0 may be a symlink - PRG="$0" - while [ -h "$PRG" ] ; do @@ -25,8 +27,7 @@ - LIQUIBASE_HOME=`cd "$LIQUIBASE_HOME" && pwd` - # echo "Liquibase Home: $LIQUIBASE_HOME" -fi -+LIQUIBASE_HOME=`dirname $0`/../share/liquibase - +- - -# build classpath from all jars in lib -if [ -f /usr/bin/cygpath ]; then @@ -40,12 +41,17 @@ - CP="$CP;$i" - done -else +- if [[ $(uname) = MINGW* ]]; then +- CP_SEPARATOR=";" +- else +- CP_SEPARATOR=":" +- fi - CP=. - for i in "$LIQUIBASE_HOME"/liquibase*.jar; do -- CP="$CP":"$i" +- CP="$CP""$CP_SEPARATOR""$i" - done - for i in "$LIQUIBASE_HOME"/lib/*.jar; do -- CP="$CP":"$i" +- CP="$CP""$CP_SEPARATOR""$i" - done -fi +CP=.