From root@Hilbert.suse.de Tue Jul 10 13:22:51 2007 From: root@Hilbert.suse.de To: commit@lists.opensuse.org Subject: commit ant Date: Tue, 10 Jul 2007 15:24:52 +0200 Message-ID: <20070710132452.BF2C4678182@Hilbert.suse.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1705775219187373285==" --===============1705775219187373285== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello community, here is the log from the commit of package ant checked in at Tue Jul 10 15:24:52 CEST 2007. -------- New Changes file: --- /dev/null 2006-09-20 18:56:23.000000000 +0200 +++ /mounts/work_src_done/NOARCH/ant/ant-antlr.changes 2007-07-08 00:14:38.00= 0000000 +0200 @@ -0,0 +1,292 @@ +------------------------------------------------------------------- +Sun Jul 8 00:14:04 CEST 2007 - dbornkessel(a)suse.de + +- add links to jar files in /usr/share/ant/lib + +------------------------------------------------------------------- +Fri Jul 6 19:24:52 CEST 2007 - dbornkessel(a)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: + ------------------------------------------- +=20 + * 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. +=20 + * 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. +=20 + * Removed launcher classes from nodeps jar. +=20 + * filter reader uses ISO-8859-1 encoding to read + the java class file. Bugzilla report 33604. +=20 + * 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, durin= g 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 s= omewhere + where it is used, or fix the depends attribute of the target in question = to + depend on the target which defines the reference/datatype. +=20 + *