svn commit: r398950 - in head/databases/liquibase: . files

John Marino marino at FreeBSD.org
Fri Oct 9 18:43:35 UTC 2015


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 at 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=.


More information about the svn-ports-all mailing list