ant-antlr-1.8.2-14.1.5>t 4 DpQ/=„svʳC!5!j) ]諭=},OÔxԲr>׬ϔE0X(`-nOEz~&jIEJb<>c}U/BxjGy{OhKHaQCǩd=sݎ5{P\(Y>c$N_H}bLJQ5p+&clq5RZkbmnbhzCQ/=„d|yp ~x0!WYxmVʚe~9CGڿ;+>5܅ q1MW_PY;;Dj^O @lRXp@8*oq=L]Bjf浭FҞd'W6O7vxR hLTy>P: V~)KpYR *ʮg|eL)صl7)D%2T$6NɖmR!jIUtlMD׉|ejW\C703cbf3758da6249652d4735ca2be3a218ee83ed9>>%?%d   , $,0>GR k    &  4  P      ; ^    a(8 9 :i >!@!F!G"H",I"HX"PY"\"]"^#*b#c$%d$e$f$l$u$v$w%Dx%`y%|z%Cant-antlr1.8.214.1.5Antlr Task for antApache 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.Qbuild315EopenSUSE 12.3openSUSEApache-2.0http://bugs.opensuse.orgDevelopment/Tools/Buildinghttp://ant.apache.org/linuxnoarch echo -e "\n" > /etc/maven/maven2-depmap.xml if [ -d /usr/share/maven-fragments ] && [ -n "`find /usr/share/maven-fragments -type f`" ]; then cat /usr/share/maven-fragments/* >> /etc/maven/maven2-depmap.xml fi echo -e "\n" >> /etc/maven/maven2-depmap.xml echo -e "\n" > /etc/maven/maven2-depmap.xml if [ -d /usr/share/maven-fragments ] && [ -n "`find /usr/share/maven-fragments -type f`" ]; then cat /usr/share/maven-fragments/* >> /etc/maven/maven2-depmap.xml fi echo -e "\n" >> /etc/maven/maven2-depmap.xml # ant-antlr filelistvQ jAA큤QQQQQQQb0c255fee3587b32be9eb4cc4772b44e39897880909b39795378e59762f0f66f0412690c9a4063c105bf867b6d0ffcc45f60e618240670cc5f4f0c5aac22c161../../java/ant/ant-antlr.jarrootrootrootrootrootrootrootrootrootrootrootrootrootrootant-antlr-1.8.2-14.1.5.src.rpmant-antlrconfig(ant-antlr)mvn(org.apache.ant:ant-antlr)mvn(org.apache.ant:ant-apache-bcel)mvn(org.apache.ant:ant-apache-bsf)mvn(org.apache.ant:ant-apache-log4j)mvn(org.apache.ant:ant-apache-oro)mvn(org.apache.ant:ant-apache-regexp)mvn(org.apache.ant:ant-apache-resolver)mvn(org.apache.ant:ant-apache-xalan2)mvn(org.apache.ant:ant-commons-logging)mvn(org.apache.ant:ant-commons-net)mvn(org.apache.ant:ant-javamail)mvn(org.apache.ant:ant-jdepend)mvn(org.apache.ant:ant-jsch)mvn(org.apache.ant:ant-junit)mvn(org.apache.ant:ant-testutil)   /bin/sh/bin/shantantlrconfig(ant-antlr)rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)1.8.21.8.2-14.1.53.0.4-14.0-14.4.6-14.10.2N@NtMwkKKK@Jd\@J8I@Imvyskocil@suse.czjengelh@medozas.demvyskocil@suse.czmvyskocil@suse.czmvyskocil@suse.czmvyskocil@suse.czcoolo@novell.commvyskocil@suse.czro@suse.demvyskocil@suse.cz- use dist and javadocs targets to make javadoc build really configurable - disable javadoc build on arm to speedup the build of java platform- Remove redundant tags/sections from specfile- Update to ant 1.8.2 * performance improvements in directory scanning * XSLT task honors classpath again (bugrep 49271) * distinction between core tasks and optional tasks is abolished * new task augment allows to add attributes or nested elements to previously defined references * Lexically scoped local properties, i.e. properties that are only defined inside a target, sequential block or similar environment. This is very useful inside of s where a macro can now define a temporary property that will disappear once the task has finished. * can now import from any file- or URL-providing resource - this includes . This means can read build file snippets from JARs or fixed server URLs. There are several other improvements in the area of import. * Various improvements to the directory scanning code that help with symbolic link cycles (as can be found on MacOS X Java installations for example) and improve scanning performance. For big directory trees the improvement is dramatic. * The way developers can extend Ant's property expansion algorithm has been rewritten (breaking the older API) to be easier to use and be more powerful. The whole local properties mechanism is implemented using that API and could be implemented in a separate library without changes in Ant's core. Things like the yet-to-be-released props Antlib can now provide often required "scripty" fuctions without touching Ant itself. At the same time the if and unless attributes have been rewritten to do the expected thing if applied to a property expansion (i.e. if="${foo}" will mean "yes, do it" if ${foo} expands to true, in Ant 1.7.1 it would mean "no" unless a property named "true" existed). This adds "testing conditions" as a new use-case to property expansion. * A new top-level element assists in writing re-usable build files that are meant to be imported. has a name and a dependency-list like and can be used like a from the command line or a dependency-list but the importing build file can add targets to the 's depends list. * Ant now requires Java 1.4 or later new task include provides an alternative to that should be preferred when you don't want to override any targets * numerous bug fixes and improvements as documented in Bugzilla and in WHATSNEW - merge the nodeps and trax packages to main one - build ant-antlr.spec using openjdk - add ant-apache-xalan2 and ant-testutil - remove all pom files, as they are included and build from source tarball- fix bnc#595144 - Compiled binary in ant remove test.exe from source tarball- fix the compat symlinks- return back the /usr/share/ant/lib compat symlinks http://lists.opensuse.org/opensuse-java/2010-03/msg00007.html- build against log4j-mini to avoid build cycle- do not use Release number in Requires of subpackages- do not assume release number for ant and ant-antlr are identical- update to 1.7.1. Upstream changes (full list is in WHATSNEW): * String resources only have properties single expanded. If you relied on resources being expanded more than once, it no longer happens. Bugzilla report 42277. * A String resource's encoding attribute was only taken into account when set from the resource's OutputStream; the InputStream provided the String's binary content according to the platform's default encoding. Behavior has been modified to encode outgoing (InputStream) content as well as encoding incoming (OutputStream) content. * with fork now returns gives -1 instead of 0 as result when * failonerror is false and some exception (including timeout) occurs. Br 42377. * ant-type attribute has been marked as deprecated and a warning has been issued if it is encountered in the build file. * FileUtils.createTempFile now actually creates the file. The TempFile task still does not create the file by default, can be instructed to do so however using a new parameter. Bugzilla report 33969. - added maven pom files from jpackage project - synchronized ant.spec with jpackage.org 5.0 - used ant-antlr-prepare.sh for generate of ant-antlr.spec from ant.spec to keep them synchronized. Build is branched using value of %%bootstrap macro: * bootstrap == 1 means build ant, ant-{jmf,nodeps,scripts,swing,trax} * bootstrap == 0 means build rest of ant modules + ant-javadoc/bin/sh/bin/shbuild31 13593522321.8.2-14.1.51.8.2-14.1.5antlrant-antlr.jarant-antlr.jarant-antlrmaven2pomsJPP.ant-ant-antlr.pom/etc/ant.d//usr/share/ant/lib//usr/share/java/ant//usr/share/maven-fragments//usr/share//usr/share/maven2//usr/share/maven2/poms/-fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:12.3/standard/50c06ba3efd830e31d7485ad545c360e-ant-antlrcpiolzma5noarch-suse-linuxASCII textXML document textdirectoryempty (Zip archive data, at least v1.0 to extract Zip archive data, at least v1.0 to extract)PPPPPPPP P P P P PPP)LQPb]$%J$\? ] crv(vX04T2\"('Q*MNrǼRP`ʴÆ+lA1BV tZpu@wY ~K Qx (-3AEF'x9uNW[G*c=K7ޚV\Jʯ$`*mG!F M۬d,{&rslZM?)c! &S9k`}Uhv\/*$Y1i O\eo5كiNuy&qG.S/ mEP p^y`2߲} U?wwI,ƨ[-ymi!dK|(Y<\!J~ksqHOEs KI `-y#k>(NU^_[|JBY1 =4td@A9OߖKg>g267e^ 8,Xw)7:^'sOux,9y~|y%t>sɼy"!#v+f!Ϸ.v3AKx,vgX? *~_Щ["8Q-:kŋJ \CA qvoBhK}GԆ2ͺi ishv@X\| MBʂ p2Dx'rV=\ml<#i9D˵\5e&JICP;{4IF5[V,K"x65eqRfq@32hEk= _h;ڿMOh[rd̦~7&y F/n&@sEquQf12@\NiM#R6!݇n,)z(1 ܬBS&W;B|>o]sOD66fo5аGՕ"h~)u mFWG?Aڠz/BVK6W/&/6 o /j4л+tJ1 ΈТZ7I']VĀI=1\n$_:/WA`#RcAۀ?4kzp. "L?ؘ2k\`tǗB"K[щQ6f۾z)M0M+/hVVw'Vyr-4_HRV}| oWQtfeo eĢjmoV|6d'~D9JzN+Aa {z%lO(׶N"@] j5@tkwN9#h˝Osb,EP$Qvcฟ̾'mL N ?9B0k8,U"CG6&:d70oD4 =p48,hǒR2˝:\w~ǦW,2ྜw2g!*5rܤe/4 Ka6Ҽ7SOqm"6rI/\Q>,,il\$|&:o(Y!} _ލ,#F9KNMʄȖ-`*GpAdL(N<>IϤg#0&Fg@x` %BՆ@]Y,gt cέz ىà̷F$k~FfO15[bZs"莸~]cNt3 ēxֲlT͛\ˬ ~f 1QpcP|Dfo0.&UQP6S} N<eӝvcz-x󣗜N4iOi3Z1??0nxA O*]x}%B=ԓF}NF+y/Y5Lھf˥Pts)HeBh:~Rȴկ^0Jta8:O3և.dϷdRP~n5)cqA[d`aq@z@7+9sS_<3\\%0IIr Z :,ߒJ w,x~n'0ogttMl~7  р@ r).kWFI.lK=UnEtY|tbWT~u.M 76s6BPTw]gA7y%bnyR9+MRD Uΰ/K', hA @! u/h.$:\;d''-)eRa}W#3! Gg8SH`eWcuQ!]0*pfG A2.?'7z'hc黄qj\2Fu?,:j/`ice Β,Y8K:8Q3NѲ*&Թs( U0ٻuehP=^E=ӝS9`eIo5\0*?,[(T670&: PR08a"Fݓ6VjW7&<`[&z?1W_{N`4 C'^pROe#4p3nrbhQ@M^ U: %\86ct"tUF/|Ah^e!x\)_)7 %@aZ9MS-̳ד63Be.ԓtvǴGD#3<%`)eeR;dMTz;ߋ3{}F&Da7|GVh]s匈-lʐO)L&D s8^qC_CYep%/6%cd5zM<,P_sTY+ hO]Bsܺ4xjV3TOld? %~@&zWcJ:qM G;+ 8( Wݻd ^Ev.8C1ZGYL[^ .v l p a^[|vH!KѹުdݹG&|V~VElU[qP A'c}̣ǧM@x] ]\7H#v/v&LYG,GHcPFCӱ Gu%FsۡC*GӔf?O~"9 $_}KߖUㄇJK McS<;-cȋfՏKHqEO1t؆.I$jM0vR0h~kdKu5l?ކ].Io]k2OoZJӰX!_ !2v`*v*I$ EwκA‚>gp Vw/qv =iAlp0O}eD6C}8+ι@qӳ~fKx]ZK.#'O@TdR8> juYnJFgxuȴZLs"z\/#dƎ#!yLe%Hg̥Ä{wbBtْL=-: W7 *?wlbN!Px!ݙuZz?C5e6gpn~Xu:i6q xG{!7x@ąŽ 7=1 d7K1-FPrA,˜MO96Npʲ| ?=ׯ8ğ\Ufo{61 PbW]ӿ62uy2MP GW!0722Sb;4/R#-鶧Jۗ J Շ*chBlw _ƅ]cBp,Hڥ,gxirKBM;\x51eQMMdY]N%|(*nW[Dz;󅗷0D,SOXEcQŗjSӊ'{ _5Sz{Ի"|аI 3Z9tV!2H5G E5B/w?wOܧ8ׇd)lRPWV {fEtthg2VjimLj}1YkJ߮6UdZwP#+k~P"0IDf A_V{wuP-9zV@KEZ R !'*!U8 0?9&D׬t}b,  cr$|w%KUuizܣ=gV6]re}amRoT*'\$ 7wS7FYڈOTk I"RmHI7/'*%6 = Ō @xC17fd4={aU "DA4M2i A0'{TtE6l>y8g ¥u du-tlu;ϹhtX ZQ Hq yjDJ 8a10/%O48 !2-%s$*5!P93C['x TdlC\xY8k$Iօfq+d$i|z[|+ua$RT +[6 bAQ-_ln3gCXGZOx5(̇zn'-w WUMPod_MŊ5KyTv1[?Gj֍V \<uV|!ϔ{{2HR&5# 5}?#B3:tUjh@hÑo*ȲKe HNFj-kRİn!x }PmJa e4XbOg?+#Xrw;:dpiczfUVb:/4T#Mщ Q^"̐ޚj ϠXh6/ V$GMGJ Yzδ$sVi{N#Ż{ z }HQX[RApFQLw/Z2,McƏԤ<΃Ynwyn`i#|f#$%Q`@GΆ(`kN)ZYOxgE}gJᮜl~!Ą^ hfg׸#ۓ&+K@2J3ckrU>:xA3 !gʄ$>"TO0ͥ*R50A?Hј<ieG? own}@OG kJ A.AOQ;:6Jd:rdԼW H+Z9&d= I= [08Ϫh07QK4 & .PĀ(>|YPe(jA7喌pcf?wKy03 m