33e30e2c14
Changes from Ant 1.10.7 TO Ant 1.10.8 ===================================== Fixed bugs: ----------- * "legacy-xml" formatter of junitlauncher task wasn't writing out the stacktrace for failures. This is now fixed. Bugzilla Report 63827 * sshexec failed to write output to a file if the file didn't exist * Fixes a regression in javac task involving command line argument files. Bugzilla Report 63874 * sshexec, sshsession and scp now support a new sshConfig parameter. It specified the SSH configuration file (typically ${user.home}/.ssh/config) defining the username and keyfile to be used per host. * "legacy-xml" formatter of junitlauncher task wasn't writing out exceptions that happen in @BeforeAll method of a test. This is now fixed. Bugzilla Report 63850 * Building Ant from source could result in the javadocs target failing if the optional dependencies were missing. This has now been fixed. Bugzilla Report 63438 * Fixes a potential ConcurrentModificationException in XMLLogger. Bugzilla Report 63921 * Fixes a bug in junitlauncher task in forked mode, where if a listener element was used as a sibling element for either the test or testclasses element, then the forked mode launch would fail. Bugzilla Report 63958 * Fixes an issue in AntStructure where an incorrect DTD was being generated. Github Pull Request #116 * Fixes an incorrect variable name usage in junit-frames-xalan1.xsl. Github Pull Request #117 Other changes: -------------- * org.apache.tools.mail.MailMessage will now send a fully qualified domain name in its HELO message. Github Pull Request #101 * The runant.py script should now work with Python 3. Github Pull Request #96 * tstamp task now honors SOURCE_DATE_EPOCH environment variable for reproducible builds (https://reproducible-builds.org/specs/source-date-epoch/#idm55) Bugzilla Report 62617 * rmic has been removed from Java 15. The task will now throw an exception if you try to use it while running Java 15 or newer. * a new property ant.tmpdir provides improved control over the location Ant uses to create temporary files
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# $NetBSD: Makefile,v 1.51 2020/07/17 23:40:43 wiz Exp $
|
|
|
|
DISTNAME= apache-ant-1.10.8-bin
|
|
PKGNAME= ${DISTNAME:S/-bin//}
|
|
CATEGORIES= devel java
|
|
MASTER_SITES= ${MASTER_SITE_APACHE:=ant/binaries/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= tonio@NetBSD.org
|
|
HOMEPAGE= https://ant.apache.org/
|
|
COMMENT= Apache Project's Java-Based make(1) replacement
|
|
LICENSE= apache-2.0
|
|
|
|
# Up to version 1.5.1 inclusive this was known as "jakarta-ant".
|
|
CONFLICTS= jakarta-ant>=0
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
|
|
USE_JAVA= run
|
|
USE_JAVA2= yes
|
|
USE_TOOLS+= pax
|
|
NO_BUILD= yes
|
|
|
|
SUBST_CLASSES+= ant
|
|
SUBST_FILES.ant= bin/ant
|
|
SUBST_STAGE.ant= pre-configure
|
|
SUBST_SED.ant= -e 's,@JAVA_HOME@,${PKG_JAVA_HOME},g'
|
|
SUBST_VARS.ant= PREFIX
|
|
|
|
INSTALLATION_DIRS= bin lib/java/ant share/doc/java/ant
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/ant ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/bin/antRun ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/lib/ant.jar ${DESTDIR}${PREFIX}/lib/java/ant
|
|
${INSTALL_DATA} ${WRKSRC}/lib/ant-*.jar ${DESTDIR}${PREFIX}/lib/java/ant
|
|
cd ${WRKSRC}/manual && pax -rw -pmp * ${DESTDIR}${PREFIX}/share/doc/java/ant
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/java/ant
|
|
${INSTALL_DATA} ${WRKSRC}/WHATSNEW ${DESTDIR}${PREFIX}/share/doc/java/ant
|
|
|
|
.include "../../mk/java-vm.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|