bf0b1868a6
From Michael Moll via GH #29 ( https://github.com/NetBSD/pkgsrc/pull/29 ) v3.5.5 [CORE-2851] - includeAll tag with a relative path duplicates the database changes with an absolute and with a relative changelog v3.5.4 [CORE-2851] - includeAll tag with a relative path duplicates the database changes with an absolute and with a relative changelog [CORE-2863] - Issue with Spring boot 1.4.0 - 1.4.3 [CORE-2898] - includeAll broken in 3.5.1 [CORE-2948] - Changelog with includeAll will not find child changelogs in Spring Boot's executable JAR [CORE-2978] - AddAutoIncrement on Postgres does not work when no schema is specified [CORE-3123] - ResourceComparator is not applied for includeAll [CORE-3139] - ClassLoaderResourceAccessor cannot read jar path resources from SpringLiquibase [CORE-3015] - Oracle: diffChangeLog TIMESTAMP WITH LOCAL TIME ZONE correctly
33 lines
896 B
Makefile
33 lines
896 B
Makefile
# $NetBSD: Makefile,v 1.2 2018/09/01 17:57:17 tnn Exp $
|
|
|
|
VERSION= 3.5.5
|
|
PKGNAME= liquibase-${VERSION}
|
|
DISTNAME= ${PKGNAME}-bin
|
|
CATEGORIES= databases
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=liquibase/}
|
|
GITHUB_RELEASE= liquibase-parent-${VERSION}
|
|
|
|
NO_BUILD= yes
|
|
AUTO_MKDIRS= yes
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/liquibase/liquibase/
|
|
COMMENT= Database Change Management
|
|
LICENSE= apache-2.0
|
|
|
|
USE_JAVA= run
|
|
USE_JAVA2= 6
|
|
|
|
SUBST_CLASSES+= javabin
|
|
SUBST_STAGE.javabin= pre-configure
|
|
SUBST_FILES.javabin= liquibase
|
|
SUBST_VARS.javabin= JAVA_BINPREFIX
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/liquibase.jar ${DESTDIR}${PREFIX}/share/liquibase
|
|
${INSTALL_DATA} ${WRKSRC}/lib/snakeyaml-1.17.jar ${DESTDIR}${PREFIX}/share/liquibase/lib
|
|
${INSTALL_SCRIPT} ${WRKSRC}/liquibase ${DESTDIR}${PREFIX}/bin
|
|
|
|
.include "../../mk/java-vm.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|