ant-1.7.0-199.15>t  DH`pI6G/=„a!"&캀I%: L$+6"NBZF:v8 ͨPSZ=8.Ǜ40Em2*AT./̍s?StH:>/@{g᤟v7J*8 l#!ڜLZ3QLQټߜVh<+?+xd   + $,0>Gc |0 h        $  < X   (8 9 : B'F' G' H'I(X(Y($Z(4[(8\(<](^) b*yc+d+0e+5f+:k+<l+Cz+U+e+p+tCant1.7.0199.15A Java-Based Build ToolApache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. Why another build tool when there is already make, gnumake, nmake, jam, and others? Because all those tools have limitations that Ant's original author could not live with when developing software across multiple platforms. Make-like tools are inherently shell-based--they evaluate a set of dependencies then execute commands, not unlike what you would issue in a shell. This means that you can easily extend these tools by using or writing any program for the OS that you are working on. However, this also means that you limit yourself to the OS, or at least the OS type, such as Unix, that you are working on. Makefiles are inherently evil as well. Anybody who has worked on them for any time has run into the dreaded tab problem. "Is my command not executing because I have a space in front of my tab???" said the original author of Ant way too many times. Tools like Jam took care of this to a great degree, but still have yet another format to use and remember. Ant is different. Instead of a model where it is extended with shell-based commands, Ant is extended using Java classes. Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks are executed. Each task is run by an object that implements a particular task interface. Granted, this removes some of the expressive power that is inherent by being able to construct a shell command such as `find . -name foo -exec rm {}`, but it gives you the ability to be cross-platform--to work anywhere and everywhere. If you really need to execute a shell command, Ant has an task that allows different commands to be executed based on the OS used.I6build04openSUSE 11.1openSUSEThe Apache Software Licensehttp://bugs.opensuse.orgDevelopment/Tools/Buildinghttp://jakarta.apache.org/linuxnoarch%]&l!- a ¶- AAAA큤AA큤A큤FI6EI6I6EEI6I6I6I6I6I6I6I6I6I6I6I6EEEEI6I6"I6I6I6fd9672bfce9a1ec2eb2676d9287f1744ab981ac130a0da149170de2049429cb408ff30928397518311bdd0964a1cff8c0dafb6e922846031ee8f670ccbac0b2d9454315d08c1f7b560de4ad5e9d45dd4cbd3a386c74ce2366db1a3459b15c228e38394591f9c1a3bf3062c0e0de19e07a6bdcf9d151bbddc1135f74df81a4575b8fe249d2f0f14d048af3c2dc64e0e26a3a3689112b96bd7db9860e59963674763342370835cddd610e330f97d82f4a0feb47ff2b8c221a4c2f47f1f580a383a175df8d7d2d2f02bb7309343e19cd33a58c06dd74f8d35a81ea795fc72991cbdefd1b078448f81d822628fc7e1260903../../java/ant-1.7.0.jar../../java/ant-launcher-1.7.0.jar../../java/ant-launcher.jar../../java/ant.jarant-launcher-1.7.0.jarant-1.7.0.jarrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootant-1.7.0-199.15.src.rpmapache-antant JJJxerces-j2jaxp_parser_implxml-commons-apisxml-commons-resolverjpackage-utilsrpmlib(PayloadFilesHavePrefix)rpmlib(CompressedFileNames)rpmlib(PayloadIsLzma)2.7.1-21.54.0-13.0.4-14.4.2-14.4.2.3IHz@H}H!F@F.E@D_2C@CQ@mvyskocil@suse.czro@suse.decoolo@suse.demvyskocil@suse.czskh@suse.dedbornkessel@suse.dedbornkessel@suse.dedbornkessel@suse.dedbornkessel@suse.dedbornkessel@suse.de- [bnc#440645] - ant fails without installed jdk: - added a java-devel to Recommends:- use xerces-j2-bootstrap to build (as early as possible) - add java doc dir to filelist of javadoc subpackage to fix build- avoid another build cycle- build using gcj, to allow a openjdk6 bootstrap - change a source and a target level to 1.5 in build.xml- disable junit tests and remove junit from BuildRequires to break circular build dependency- 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. *