From ede40d9e5be48c249717d2e62535d543c286b527efdbbe0f75e91b59eb45790f Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Tue, 10 Jul 2007 13:24:53 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ant?expand=0&rev=3 --- ...s.patch => ant-1.7.0-use_system_libs.patch | 0 ant-antlr.changes | 122 ++++++++++++ ant-antlr.spec | 185 +++++++++++++++--- ant.changes | 116 +++++++++++ ant.spec | 109 ++++++++++- apache-ant-1.6.5-src.tar.bz2 | 3 - ....5-rpm.patch => apache-ant-1.7.0-rpm.patch | 0 apache-ant-1.7.0-src.tar.bz2 | 3 + ....6.5.ant.conf => apache-ant-1.7.0.ant.conf | 0 9 files changed, 500 insertions(+), 38 deletions(-) rename ant-1.6.5-use_system_libs.patch => ant-1.7.0-use_system_libs.patch (100%) delete mode 100644 apache-ant-1.6.5-src.tar.bz2 rename apache-ant-1.6.5-rpm.patch => apache-ant-1.7.0-rpm.patch (100%) create mode 100644 apache-ant-1.7.0-src.tar.bz2 rename apache-ant-1.6.5.ant.conf => apache-ant-1.7.0.ant.conf (100%) diff --git a/ant-1.6.5-use_system_libs.patch b/ant-1.7.0-use_system_libs.patch similarity index 100% rename from ant-1.6.5-use_system_libs.patch rename to ant-1.7.0-use_system_libs.patch diff --git a/ant-antlr.changes b/ant-antlr.changes index b61400e..ec3751c 100644 --- a/ant-antlr.changes +++ b/ant-antlr.changes @@ -1,3 +1,125 @@ +------------------------------------------------------------------- +Sun Jul 8 00:14:04 CEST 2007 - dbornkessel@suse.de + +- add links to jar files in /usr/share/ant/lib + +------------------------------------------------------------------- +Fri Jul 6 19:24:52 CEST 2007 - dbornkessel@suse.de + +- make packages noarch, as jai was removed +- update to version 1.7.0 + + major changes are (for a complete list, consult /usr/share/doc/packages/ant/WHATSNEW): + + Changes that could break older environments: + ------------------------------------------- + + * Initial support for JDK 6 (JSR 223) scripting. + <*script*> tasks will now use javax.scripting if BSF is + not available, or if explicitly requested by using + a "manager" attribute. + + * The -noproxy option which was in the previous 1.7 alpha and beta + releases has been removed. It is the default behavior and not needed. + + * Removed launcher classes from nodeps jar. + + * filter reader uses ISO-8859-1 encoding to read + the java class file. Bugzilla report 33604. + + * Defer reference process. Bugzilla 36955, 34458, 37688. + This may break build files in which a reference was set in a target which was + never executed. Historically, Ant would set the reference early on, during parse + time, so the datatype would be defined. Now it requires the reference to have + been in a bit of the build file which was actually executed. If you get + an error about an undefined reference, locate the reference and move it somewhere + where it is used, or fix the depends attribute of the target in question to + depend on the target which defines the reference/datatype. + + *