ant-apache-regexp-1.9.10-lp151.3.1 >  A [F/=„~iqג;}St(秩H!LBؘ'ɹ-x Z"}#-:JjT4rExOO-WW槥ޅp{UhWqaWeۍVK0.ES^۱j3OdBo Cjٱ'_LU%;mefD ucJ&NUDWt܈B|SWD9ax%/e"6=ek2ńzOorVFJSZVfݲG}X]|%hkoVü?RzV b??)T|k;.u6ADET<Wq;'knH*L5>p>5\?5Ld % J  $;AH\ f p  I t4P( 8191:U1B1F1G1H1I1X1Y1Z2([2,\24]2H^2b3c3d4 e4f4l4u4(v4<z44555HCant-apache-regexp1.9.10lp151.3.1Optional apache regexp tasks for antApache Ant is a Java-based build tool. This package contains optional apache regexp tasks for Apache Ant.[8morla32= 1.6- Do not generate poms on ant core packages to reduce deps and allow bootstrap- Fix bootstrap to avoid new cycle bsc#1041966- Disable javadoc completely it is on the web in much better form - Remove if0 conditions - Remove patch apache-ant-old-gcj-build.patch for sle11 and unused - Fix build with split javapackages-tools- Version bump to 1.9.9: * Read WHATSNEW file for full changelist- Add reproducible.patch to allow reproducible builds of ant itself and packages built with ant like jcodings- Revert the previous change as it broke the build of most java software stack- Add profile.d scripts to set ANT_HOME- junit4 test did not work (bnc#915686)- Add xalan-j2-serializer to ant-antlr requirements- Sync the changes files among the subpkgs - Version bump to 1.9.6: * Read WHATSNEW file for full changelist- Do better quoting to get better error messages when it fails- Fix build with new javapackages-tools- to bootstrap 13.2 we need another split because bsf depends on things that depend on junit and as antlr requires bsf, we need a 3rd step -> split ant-junit to build in between ant and ant-antlr- Fix building on SLE. - Added patch: * apache-ant-old-gcj-build.patch- Update to 1.9.4: * Read WHATSNEW file for full changelist * initial support for Java 1.9 * has now a threads attribute allowing to run the tests in several threads. Bugzilla Report 55925 * TarInputStream will now read archives created by tar implementations that encode big numbers by not adding a trailing NUL.- fix summary (was antlr summary)- SLE_11 specific spec files for ant/ant-antlr. These build with openjdk, which introduced bootstrap breakage in Factory. - Update pre_checkin.sh for SLE_11 specific spec's- Revert the bootstrap breakage.- remove dependency on gpg-offline (blocks rebuilds and tarball integrity is checked by source-validator anyway, plus it was commented out) - remove apache-ant-bz163689.patch (was not applied anywhere)- Update packaging to build the openjdk and not gcj- Update to 1.9.3 - BugFixes: * Ant 1.8 exec task changes have slowed exec to a crawl, apache#54128 * swallowed the status code of nested tasks, apache#55539 * a race condition could make tasks of parallel builds to interfere with each other, apache#54393 * 's mailport still didn't work properly when using smtps, apache#49267 * using attributes belonging to the if and unless namespaces made macrodef fail, apache#55885. * Apt is not available under JDK 1.8, apache#55922 - drop unused macros - add gpg verification- use requires_eq instead of manual call of rpm -q- install compat symlink to /usr/share/ant/bin/antRun to make scala build- Move from jpackage-utils to javapackage-tools- Update to 1.9.2 - Incompatible changes: * ProjectHelper's implementation import and include tasks defaults the targetPrefix to ProjectHelper.USE_PROJECT_NAME_AS_TARGET_PREFIX. ProjectHelper2 is not affected, apache#54940. * FixCRLF used to treat the EOL value ASIS to convert to the system property line.separator. Specified was that ASIS would leave the EOL characters alone, the task now really leaves the EOL characters alone. This also implies that EOL ASIS will not insert a newline even if fixlast is set to true. apache#53036 * The CommandLauncher hierarchy that used to be a set of inner classes of Execute has been extracted to the org.apache.tools.ant.taskdefs.launcher package. * Any FileResource whose represented File has a parent also has a basedir. * Removing the Perforce Ant tasks replaced by tasks supplied by Perforce Inc. * Setting the default encoding of StringResource to UTF-8 instead of null - Bugfixes: * post-process generated docs to migitiate frame injection attack (CVE-2013-1571) apache#55132 * Parsing of zip64 extra fields has become more lenient * TarInputStream should now properly read GNU longlink entries' names. apache#55040. * and used to be too restrictive when evaluating whether a given set of options is compatible with spawning the new process, apache#55112. * Corrected XSLTC error in , apache#54641. * and many more, see WHATSNEW for details- remove xerces-j2-bootstrap depenency (bnc#789163)- license update: CDDL-1.0 SPDX format (note that it should CDDL-1.1 if the (c) owner and license steward is Oracle)- build ignore java-1_7_0-openjdk as well- revert the Recommends to fix a lot of build fails- use new _mavendepmapfragdir macro instead of hardocded path - change java-devel Requires to Recommends- use dist-lite and dist_javadocs to make javadoc build really optional - fix arm check (ifarch does not work in a noarch spec file)- 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- ignore openjdk for build of core ant- 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- 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-javadocant-jakarta-regexpmorla3 15384369201.9.10-lp151.3.11.9.101.9.10-lp151.3.11.9.10apache-regexpant-apache-regexp.jarant-apache-regexp.jarmaven-pomsJPP.ant-ant-apache-regexp.pom/etc/ant.d//usr/share/ant/lib//usr/share/java/ant//usr/share//usr/share/maven-poms/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.1/standard/4d65cdfc4d00fd4be9daceded8e04afd-ant-antlrcpioxz5noarch-suse-linuxASCII textgzip ERROR: Stdin has more than one entry--rest ignored (Zip archive data, at least v1.0 to extract Java archive data (JAR))directoryXML 1.0 document, ASCII text`m.oHgutf-8719f81586aefd1c227d0fe971a8e239f2072ca4c83559f74b8cf05ed84de1654? 7zXZ !t/5'P] crv(vX0|N ~R.1r'WA~zwt4s9=&β_T1?/I%X"x{"nJ<^d-%ڴQ`KdR &7Hk;P$r y{ Bhʛ =4_6Նؿpt[0&[ÄQc>.#ًJ_ հ&LgoD 3{!x`{6Ix4Te>[r'C[E+GHl9g̻=K繳13i˖L0(g~'f-vjtm;E$.lDDRhg=N#y/$Uu[1^3l^GLs,X c-JޅS&meTo0FIq䝔.&MCL *嶬ȉKAA`f@>z=Kh)+TQ (s} Cm"D <4ϟH@}$p:sܥ9 b>[{Qjy,8= SKjŲ }N~Pt PRv̙<02h>ݩ!=.ۗF8|ъVͳ 0=%E  `J$Hk4$p!qaG1xiptvgJuO 3Ћwi AF z${t_/TVϷQ߻(`TܢMc\ee#޼5޿hlMnڛfH(w⦭WX1P"a1yɜ JuvF,zl:,+'$̲eN)H,+R9-r[HF{PZBN֡ȉӜBnZL1,y Լ.r6Z&ϝLZ +{5?bCUNNY?y-mfm}YwR0boؿSB+A9OY*CLK^ӶӆQd=MW)zOD+_XkLW⃉腄xثO `Gw߸!/W/4JKX֙t}, ar/?Ԣɞ%OHsK+;k;vǒ2FWKL)؇(ᆟG3ćKkI;J; pRoa'qh\`/~7cY4U)WBX?0#pknۯ! /)"OG`gz ' 5QM0 )ax"o&c+rf]Y#t='zYЖŵ .7qW_IVmbܹ)f^z;O^ڮ愜S\ 6#GɞYr>L;NG]{o+ʍ]4 W'=Ɖ?%Wm+R |8^xgCkaSZ"u^0(8Kq3,Y!g]|WMEZ`yg/#ns؂e3L0)wcTXsҌ2o=;֪Wx 2-18b2Cֶ} !K3(q.TKv`ku]SG PDwc53ꪼh>!:(@BZ\)k&c]gQ3Q[4^C'80lFLW;X =WqC(zck-wʄX-Ge~1ᔧ8Assb8[ PP˱PeZUNLQћz0zduv ?rsV['I?ClߖU|aҢ󽓸Io_,,N 0꧵, (6nC7%<ܤ܇lE3܀Ax/bJkq ky +6 by+1y;݋2 3M vcIyeXmcd5U ΁UV7JljKoZI,|EA6 dyqG8;9fe^؁xxˆܮ܋.QVӀEWLj!є,8)ǑFޖBԢ[.T8#YV}YWgW9곶T:|BBE9|s ARCA.iőoHD;DbS) {K'_B-~pDCRc{oTB 1 ]l Kȥ`]VWi=< Ŭg:R -m[=Q= ܯQ +lQN0E4QmzV 8jk!0 "z  >ғIlWR?x0wr5ޟIՕsw Bv Mnb@bPŊQSYgʆ e?,(g`wR<s&KPt`Y<$ŒINQ61Cu߂ eUG}K@E!=HQ٨u3!NUc:Š[ssYv%2LD=9ݧWXNҼWC;@6b& DiF=e-"F&C2WL.~qj䆑) 5}6u*wk=Ml ^짲p`kCvEjjwmtU 4U5wU ?רs;{e)E\[DѠgq3Mvix8J<: 'F*GA&$|?X:߂)ԫZ eo<+[1Gє ,f6$S&^:36p8b+CJvAeX`ŲdƏXҋmGlmzی/ɹC;/'#H[)E ::xCεa*i0*bvvIR`J W#0z>>l"yOR$TvHdU^woI&K̄f;nqX]u/+ melGp7T[]H`^;N/ey\e 0R_}WOaDhٞLIIeHPae; }`%Fjf3L>̨ː0S-in*EOdN2FU@d$C,j)U_Uh# 6;2ao ,ʜZ*SQUZD(EGi9JI+=Jwv_T}W<B8V9uu25h ;JzCoa{* J *?@wiCJKcp c/^js"AJH@k1 K+j 8B4$[\Kemq5iQu= }+G_]CQ5vqxv#ܦZƭu=-~W#myy$-N6||Z31X;;R?Ϫjbʉ8Px0Qdŗ}dSn)~&IPʴ{LOv 9 8.@n,0Ύ~3֍!LwGKfv (aIbx%i[ Aenx#y~(a3P + B9XɎg'!:ɓn{0s>/ˆM/J_y$!L!6.`maljE) בT7U'l;\0g %*vb~~j曔PdJ;ic( t3dŗ48S 3 ˌ,8qPqN /Ew!>Wpf&x&:G鼗h n?ATStc B=8W-N!_/uUua$5f\s z-Sfq&'⧬TN oG|޽oi-\pG<'I{=9ĜZ5g I"6>MxxyufjBUg+%)J|p\׫n7y- ڐSFXm{>"BkV\R%լ(n&!O-,w*i$kcԁ0Ru Tc2>J'q+ղdf[_hDY;XŠtB CV{b@+|SE'r[~ߐ:+ I7Zv*sy#E{@rp*|[TV noKP S$є _^f>~".(3{Nlx]fYrS57M2I W7pΥCqEЕ]-20:?S'z%˩ kM`;CP̞[b_7ᤵK%ʝsc4[Qf'K\OH#iQ+fEi1~}L<6zJux5͏c^!m. 0HC|rn ldN9=, x"uv'3"<څd 61(LXȂCc>M/F@Zl!Ģ"c#K1YaўZ~p#tѠIyg);P8s<t/"b<mӁ3giT^R5T:𑎫851:{{Mm(>˭&WqULlKzAV3۲RŗCP tr^1`[#@~I̍v'Kpe ffJ"|5f죽cU +R)s+`&x~r;QNCGgɞLsFp 9z% tr<,_鈽Ix[kZQPȣyy47K1ؿ?|uG<%ˋ2 7O{q#ETDT)Ldr 6$|˹Cnb݊1\yjb-nMI5^`%iNs1Vb, .)~mJ6sILr->[~&,v{HCSL&=m b=w$H.ڐBDd1ߑ#L%Ja!9 |53FkIi+P~k%}'&cz&Qu1s\V6 ei-$ 3e%|cWka6,I@mI!V1!dW9(5/-R!܁HхW? X W:$#dbŤt*;xhO3E Mr16qYoգk|hD7ѱ=!kne g*=qjlǀb`@Umm,%VL2wz" @o|6 ROUfSAB}.}qv8Tx+BUܒ͟O>d /$YA0l#w̌bZ@ޖbN޹)[*#MܦxۼZ,yFD+ )je9A\a",r=+T;*y/S>:'L8\Mk.)sOp,[pk0єX/-[A.7ܨ2*NׂnxO?Q rKav܎V2$%:q動rrpMpD R@Jc7el%}g2o4`vh;C)16/sJ./J*ERp-bu|&,W P2SBptɨ3$gn%ȸYO9y5Z;4ֲ;jMWjɆE, 8 kR-W{17sZz癇k[t.GѪGo}"QzcQ qhPׅhwmܿT iE !gs}?E؃'wrt *?,OOw(NԚҲBmhc$MAI`0:P<@PM?@tzò7j}9#Xڜ$%cPPbgsKY{=So" HF`Fv4[ciڳ^oPs'B߮ǝ [d`E Ru7_R=D<묅.Tq8cLjd#=bk Nw: `?tCϤ}\nh No+~&{³=3~7sXZ鸫uVC[2F;ˠP[3 > NKj,=awG=-}MZjDmhA@S=)}}-NTD'F^192?xm ַ֝j6p9|]&OѰaj6vL_n/2W}=FB(^$5`Vop02sk'}ID1;}S`Zx_kKA_- dBiSxܞvI 8X$m?~ M3zI1'7'S@αD0 dHfWhKW4fSw veɻgƠ̄PZLMcԛy ?bcz/!EܸA79t\x>!/4'eo" $[*[ҰTKB`_V;X%϶o*B5oGy`uz8L[4c~88bRW(6X8ifvSƉt^Ly;BT. s?r4m0-V!h'~1ۉݴ or<,{u!u 5vr_|1 ƕ~=MųԺ vgA ca+JB #B_<$J_j7D]G{!]ahuWΓ|ݕEbuhr>(=y!*sJ*a^s 2O˖d._o['H8CJuc30JN1ObSR[Ok8 YZ