pcre2-tools-10.39-150400.4.9.1<>,Љd*Ep9|Ъ*I05s7qd(S D2:!WgL?<ؿ3UzȰA7g qseN˟l_?X?3]W+>~_iP ,,.֜C,kQ;MWppےȠ^'pbu9^ڍ%βBb ;'tÑX,tե[u/Y)gu7dKO/pE^a>AF$?Fd ! S48DHa    , r x,l($8,"9": ""F@cG@xH@I@X@Y@\@]@^A>bAcB<dBeBfBlBuBvBwE0xEHyE`zEEEEEEEFCpcre2-tools10.39150400.4.9.1A library for Perl-compatible regular expressionsThe PCRE2 library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. PCRE2 is a re-working of the original PCRE library to provide an entirely new API.d*Es390zp36SUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/Productivity/Text/Utilitieshttps://www.pcre.orglinuxs390x$ :gA큤d*4d*4d*Ea.Ld*4d*4dd2db6efcc2065cc860e0738c23df47de51597deab9397a183c47a5a0f44697fd4010027cb6e3125d118a78917ee60c9d43fda549c0983b30ef0e03223a7534a15bc778a1f7e1f857d57abab4181749a06ad1d1f9420d5c9e3c23ef8c991b0254f3d420f15379d8b27aa691a79638219435bc62db8835b3ab07b2885e8f502a0acec36b51a70c72089defb5ddb3dd956c5b8fb86bc6c0d6d8072a62026d230aarootrootrootrootrootrootrootrootrootrootrootrootpcre2-10.39-150400.4.9.1.src.rpmpcre2-toolspcre2-tools(s390-64)@@@@@@@@@@@@    libbz2.so.1()(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.2)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libedit.so.0()(64bit)libpcre2-16.so.0()(64bit)libpcre2-32.so.0()(64bit)libpcre2-8.so.0()(64bit)libpcre2-posix.so.2()(64bit)libz.so.1()(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3ds@b@b@bs@bs@b/.@aauJ``v@_v@^@^}]]\\O\HW@\} (e.g. \g{+2} ) is now supported. It is a "forward back reference" and can be useful in repetitions (compare \g{-} ). Perl does not recognize this syntax. * pcre2grep now automatically expands its buffer up to a maximum set by --max-buffer-size. * The -t option (grand total) has been added to pcre2grep. * A new function called pcre2_code_copy_with_tables() exists to copy a compiled pattern along with a private copy of the character tables that is uses.- Explicitly package %{_docdir}/%{name} to fix build with RPM 4.13.- pcre2 10.22: * The POSIX wrapper function regcomp() did not used to support back references and subroutine calls if called with the REG_NOSUB option. It now does. * A new function, pcre2_code_copy(), is added, to make a copy of a compiled pattern. * Support for string callouts is added to pcre2grep. * Added the PCRE2_NO_JIT option to pcre2_match(). * The pcre2_get_error_message() function now returns with a negative error code if the error number it is given is unknown. * Several updates have been made to pcre2test and test scripts * Fix CVE-2016-3191: workspace overflow for (*ACCEPT) with deeply nested parentheses (boo#971741)- Update to new upstream release 10.21 * Improve JIT matching speed of patterns starting with + or *. * Use memchr() to find the first character in an unanchored match in 8-bit mode in the interpreter. This gives a significant speed improvement. * 10.20 broke the handling of [[:>:]] and [[:<:]] in that processing them could involve a buffer overflow if the following character was an opening parenthesis. * 10.20 also introduced a bug in processing this pattern: /((?x)(*:0))#(?'/, which was fixed. * A callout with a string argument containing an opening square bracket, for example /(?C$[$)(?<]/, was incorrectly processed and could provoke a buffer overflow. * A possessively repeated conditional group that could match an empty string, for example, /(?(R))*+/, was incorrectly compiled. * The Unicode tables have been updated to Unicode 8.0.0. * An empty comment (?#) in a pattern was incorrectly processed and could provoke a buffer overflow. * Fix infinite recursion in the JIT compiler when certain patterns /such as (?:|a|){100}x/ are analysed. * Some patterns with character classes involving [: and \\ were incorrectly compiled and could cause reading from uninitialized memory or an incorrect error diagnosis. Examples are: /[[:\\](?<[::]/ and /[[:\\](?'abc')[a:]. * A missing closing parenthesis for a callout with a string argument was not being diagnosed, possibly leading to a buffer overflow. * If (?R was followed by - or + incorrect behaviour happened instead of a diagnostic. * Fixed an issue when \p{Any} inside an xclass did not read the current character. * About 80 more fixes, which you can read about in the ChangeLog shipped with the libpcre2-8-0 package.- PCRE2 10.20: * Callouts with string arguments and the pcre2_callout_enumerate() function have been implemented. * The PCRE2_NEVER_BACKSLASH_C option, which locks out the use of \C, is added. * The PCRE2_ALT_CIRCUMFLEX option lets ^ match after a newline at the end of a subject in multiline mode. * The way named subpatterns are handled has been refactored. The previous approach had several bugs. * The handling of \c in EBCDIC environments has been changed to conform to the perlebcdic document. (Incompatible change) * Bugs have been mended, many of them discovered by fuzzers.- PCRE2, a re-working of the original PCRE library to provide an entirely new API, version 10.10. Not source compatible. - copy of the pcre package, with the following adjustments: * required name changes * adjust pcre-8.21-multilib.patch to pcre2-10.10-multilib.patch * drop upstreamed pcre-8.32-visibility.patch * --enable-{utf8,unicode-properties} became --enable-unicode * drop cpp subpackage * make test -> check * enable 32 bit character support- pcre 8.37: * CVE-2015-2325: Patterns with certain groups specifying a zero minimum quantifier caused incorrect code to be compiled, leading to an incorrect memory read. [boo#924960] * CVE-2015-2326: Specific patterns containing a forward reference with subroutine calls caused incorrect code to be compiled [boo#924961] * CVE-2014-8964: If an assertion condition was quantified with a minimum of zero, SIGSEGV or other misbehaviour could occur. [boo#906574] * further bug fixes as listed in ChangeLog- Update to version 3.16 * This is primarily a bug-fix release. * The Unicode data tables have been updated to Unicode 7.0.0. - Remove pcre-commit1472.patch; fixed on upstream release - Remove obsolete "Obsoletes" tags390zp36 169018426110.39-150400.4.9.110.39-150400.4.9.1pcre2greppcre2testpcre2-toolsLICENCEpcre2grep.1.gzpcre2test.1.gz/usr/bin//usr/share/licenses//usr/share/licenses/pcre2-tools//usr/share/man/man1/-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.suse.de/SUSE:Maintenance:29904/SUSE_SLE-15-SP4_Update/02dcd34daebcd845f33bcf7c6c18bf09-pcre2.SUSE_SLE-15-SP4_Updatedrpmxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=6470529913e7be0b9845917b54dce0612b95f109, for GNU/Linux 3.2.0, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=7313ccd8133a2272d7383b5bf37bce9827aa3a5c, for GNU/Linux 3.2.0, strippeddirectoryASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)HTML document, ASCII text (gzip compressed data, max compression, from Unix) RRRR RR RRRRRRR R RRR?:zA*.!Bpcre2-docutf-8d4bee1a7f96b3e762c7bd54e40020ff5ce74848e0d68dc441b719c02108680f9?7zXZ !t/wC1]"k%/A 3B4qcteƌ6eS}^?fI | r&M,~W 8죣OkIf* ie,7ȉ4ߋ8Du8nY iZ暀 ǀP,mǥȻL1@m8D'E*H'mL2H z|0Pnd-D|JHO`$ P l(mu@x%OO& :2KI@OEGl@@1!d 0p=_g2gKwWu!ׄ12enj%u `Z>b ӯXP^mlL7'O2̆ڊm!АOj}>*u1vl]c^[+Mߺ$_ClǺ@./|=&zmqV;=>ͅvd[6]QRφ [u2bA=썜PYf1knc{ݾW7d Őݟ+zQj. _/fRd;qa'm6Hh38.K\aHx;w_N^uMGlNJc{ B.tqh}<_= |j={ 8jpqP#cjS{lls3@S*$ _?Ωl (KRehh;Xg E "ՓrT[yŊGJw^X@b=AOm ӵzcAȕ~Z)V_'2u;ٲKE2r*UBgFߓ/(&ySg棯@M5 'gl&D1h2^g>6cX0 dH4| v]:IW,6>y]|yҮc7dU]Ǥ#1*A΍A"A+),#9pc =n'6JjXS SdNBr =ȹJ1C .pɬIL<$Oz%26gVI WICSGnj4$$T٪%q3` ʞˁeGV6ìiTYj_H\ CDܳJ 皮wgοk|>29of=y Cr'.fZNo`p)+e&+j?OR˵i>)&G|w~[ʷYRfv3**xkWv֘U2<ÔtWOv!ţ^,A'Ds o>ovNfaCWcY?Ex&75,y&ɰypijP;W.bBmdA&vǤ~}` d6'!W3)bH{m]m|TjdމzeZrUԛm=q%H0]i\G ÀD#Z&_,. _T1ʶ ngFm|}hրmzq J#Oe-r; $1FȇGMzn8!y{زv n eRфn`dS25(!k*dҝ.=Il JO]O)o4&FenëݨI4Oh >GpJK.;b)dSݙk:s:mu3UK݄I龸uiE\6 avHY5Λ *hSH\zyOOe.[=R͆PIG]c%:E:kV*JFfo*hd@HluPaIz[̀U>Z}D42,)Z`:Z ~3/yhv,x~qzmȚ4gvMJ5rsq;;A-9$*4pVهPy5[;~f"B)? gﰧ6EK#{=/Geje,:{N+Qul6(m;w'>7xP Ė*YؖM sSv)kOwsZaP -wF$ ap43 In ߵMA,8.R!0̭(go%V㐡}QE  Ȑm拷[$ #ْL=b~/FoWh{= ('_ ztx8=!+9[< {"gsizLuL: ST+xO1])ԂI|p$榅^C*"zϳ_Z8ҏn=sSr$ܥ3X!!4).+Lк"9(N#f1Iw:pݶORZRa o*ġ"j.Be7I9wڌ3hRtI_[Le:YBHq%$Y9i Ƌst6-zزVIꏪIUbI 9g8 9R[Āih oWZ6 E6dCx8l_]BqU_Dr^VʹZ}0kt'#=Ov+0ju[,;`eTn" -gҵn)钩\q޵Q*h(iՐo9ݳUbRE`dAAFy5z.] %%GXq?ڦ `GIQj*Į]Wﲷh](=WǏyv9-yj1!Ǥ3\e <'?a:B@QʳV6saP-`wp7 ~nǞAy穴ÊVfw) !Š@#Ӄ'6.1(&R0Iڬe4G%Oa] rɚ&tqcpρޅ\2G}-+;TB ;tsm}$,nhc `)-u /N]Jh,8P)̑(輢^8fI گIƘFҽY!oBxCʫv~QXgȅX1I@F7|Ɂm1?aΨ> @(:0jXT!ު-z}椂5_:z!b(ڇft{.)lA*F.6f0V"V5QLjo4Yr)cJs7"K[y]>/P@L/)?\m9W֣4V֖qK!RWB^ꀯ.Fag!\dPP]uTZVKh-PJ?mwMf;tVb08_dFQJI>?Vw3d0e@l+!)5nAemG@K$|@ֲJKI$g{5 J!z,8`[0VN+H*rĘz{[͹YNgJl/ C+MaM,2\Ě-qfF?QaQup}^N $YKqW0m"|#핲>gB?n 7ϐoD`S=NZ}Mg:ntL3yʼnܙ-٣2EͤxWGApqigá/ 9ӫ=^(n=.sEg2=p%MC?Uq gӥeK[jb~}VoK&+DqQ+jȜjMuS]Jv|ˡS E9a9U3ƆkN%G9m` Z_T.i_(iW>q ?gb]Sn "U ;tע2h6flN,FIn&^f7ӏ%=; TN-#Zr=F" qJ88v! YU#Ǘ y2 +ơib&w6 '=v9n.̩m^JϫFUo` 5Ex}s" S?ɋH@Cؙ\(50d!w+ 8VA`m cq8ˆoհZ[&_:kq؝Mf % EUN1=ՖQ1|G:~exfgϱ jFh7QX)\Z#6 7+&->{,0(c&Ys?2נ)q2nЄE@Lċ"%(@Ln`PTǾJp` Ȧ (5x~< }њK s-j9z#DbJ%2H-ocmOµ mGi)RMa7zTPW)~eAO]~jH8gdAOvM Hػߟq+ŠN6寙ؿ눭g;LkEoo7-##\]ᒉyVy%)[ TSc37[ V)B0$a Ц@ץ2t#l!An-q8WgrhkϞq=/һ"KŠWih6 0RނR)C=yZy=<)zE㌵Q)vexzW[{80(c-'YF{ZUVY0֪@EqrmZwҠ%ձO:nW )prO #u(hrhp=Ī_% <zYɋ_h`EOD 5}5dm8b(s}*^7E#٩~9 #*ܯRKpSbX $3AV@jM]BP/(^5iTM9#"Ix.$H !|Yg#ME:G= !Iَ~ vAgRz UmCSX A5sch3|pGd`cYUR,=d*,hrSa2N4I-^ YFw-,D*KVW8__( >PKn r]~Uޗt X3[n+ WtѱpzNDN*4^z!G{\mhP|x*~W)Yhdd)ѿq(:9XLY&I "H^BOF̭fȏ~;B>a>?^6ڭ& k)h!H˗6l9KkJYj;#u6BR[qJݴ72:X*55q --EkNe^GaߒA,; / UtXn''쬣FDǧr&Ke23P^uz|iX kQWCPlH ة=əs(i35q")0 PaS;i?X}˓a3 wY;LenhިCB>HWh8̢:pjƀD I*5(]^``r UԸapP8.c8j2vsa}";N#2 ڀ(:m|}(zb+,^/!]= ߠ S A#3(MWX7LMqS-C&|^giCӡ nԫy{fDޕ:Q@*y\C=)ix@l3CY2'CLpꩢE`N`iY/J ] ȷY1VV/Ed >?,VzbT.sZe3[<;>|7KX<*U D9-ѻQ2lMW i9mah L.Y}V/TAެ/ZBВBrDhօ:N*1hh'XCITco{Rz]LrWvs1W.:|LEhTR9wXTVɹ $@`u[Zusf=-đڎI}v"P-#u|[ǝ^W(kȠ~Ǚhc9G")$MǢKYߚP~<%1v4AFNH g{{LjV=PDDtigUZ)g!!oP` -%ߋzրa[m1ţ\7Gnmj'?Y_.CRȭ_q!bϧAW~!7TQVw6V+@d9!fhHDOhK Ng@xuhK>1KTj(Uܭ}"~5^a-"lOѿ7wBZűvhcmPh)^z[ ǼI[u7t ?҈fRE ּ/7zp|[Q*r)u>F?@c|P+ $*I1,]ѣHd"%J/ 6c=EӄQ{: Gf}{3QЋN Hm@7K ZIEM ˳q5b}nUUq8.eUU .w^i9b!N#n SlRIHѹpo EMg-(4smҩT0MjJ,lz"q*ZS^|BÔ+mf⠜]-BPkߛ2[0?+m23gS4N`֚$F0V><*)#+{A2 C~ds6u17^&'mqTa{5$ѴXI.eC$ D߭W&G{\^@GE*y\eMRaNy(gJļR46Gx}cB֦{a-/pSQ >. fn5k䋇B2\8ŽNlE~{b73WL)N$`iq0")}Oѝ WEt𧹤޹7z\b"8[fکapË71m[33S}!%@D钹R[xi[߼G~+JSO4)I&g\>5٨Xx:FX&0mAIxy00OF1dxWT-:1H>m~i1LKv5OmDLD?䋃/KXl?ofNa`E-h"1䡉'b_GUFnYō(4A';}p`|kxe<}P9+n Q7LW+eioyfR h_  kMnnE48{RdHFe"X??Ex%Rfdt1{Svc.yܩ mSkbP}..ɸxF v~eձgvl0 }on;f~Sò⧣݅Ǘ&qՐ!3x^|Λ0]q+S|,]a-,[@f,>_Pp߰h lWl4+Sp Q[J{} V1 Ek9TkW~ŜSiq`x'l!WG@ˬg2XGr<[.uq³P&?rT`:BbOP0)͉ }~TQX}at>cҠ4 fro ɀ 5rK 临4bp|>֖pQ#Pwvx\X;NꚑRrs~t8zPv,Hi݉pNYղ9<=8.|VknBeJ|^b/g]& #P$@o=WcѢb~ݨ鐸CmM >CW6]R4ၨOOk":BQ*FP枔ixHCshvw|:M$G3r/O0߮՞Wq9]{[1ɸѨ[؏י}# M)~ QuDܥݍ`]j $N>o:V8cF" Uq/ߍ$fF10gv9\ "Wz=KNqP g'#lR  GbBr;@W1< qR!z6+exEt}lg2K_U ɴvy^%l9D7PA"> 1{8JvbiU=Zy Дg{״Z ) $( AYW%+7[xf`ž;,ZwIBA-MmYY9Hl;zܹt?ޤU߉AX;'6|Ϫm ra~ 7Mq[tŷ!.gTj:Lt KZjth¦@db%3{Zy3P FN`H^LF .\V#‰햺>3=YϽ%ԶmT?3O-"kan9-U=tJ eq`:DYӂJUR "5bvo-JkI Br3mXj n]~o,AR5ufiDmre}jx r^! ? T4GO+sNw@zuW9_dWs#:bWPeA<`h'E0³zׯv\n%c`UIy]Q/ t1LPMjGܛ$>ڦlp]V#la yע>T3Bش$9vUxq{H>Ta4?2*]&.AG鼦dfSu1Uv>Jd"GT4e7uCGlhRYw2!.!^4* Jh*_W;m Y'縏 K6N5=+{go :xlZyFA xe/ȣ¤ r>΂G$rFMbt۩L F$|f5ʱِ5T-g#.X`˵{*@q}2KTv4beSA;e/lhq hlp-O;@y&&/tΙ5!2 S ${ձ%DxbֱOvb~68(۞MpuF}=tOTZD奈VVo^?"b,^"IV3ŐLtJUôX1,P~0r;QoqŚ޿pUK7:[t?H8HvYLHc-5댡RP)ތR~W^D!h{ʁ&e5H|f:<+MQX_0fI>a\ޯM3qM)+pM[H"`Iުޖݎg ]RbT}Yt{/BIWѷw T=|")3ۿi|;ݺ?!| \kPa%<=ξI< 'GP߻ףь]kހ1k}i8f$ VG;7O[GW/!݃sU>!ŽZ*=W["uҐ1ߣʌفcBYp T _TY-miDj;*> %jHݿy}+U]vjܭs=^T'HJ$Ƈy_xoOoٖ0ٸH@[ N 54a튈b)H|WI^v > qiaH$/*b@ U"%+ږ\%GwCRK`.Dž( :V;:_8iJ? ŬdZ"3پ z*UV}Fl V=2߱U,|HHߐ@؞썊AURKu?E!VhmH^m[sO I}lq`XUCIZݔ+Gk J`W 3 >(f zQfeYͯ׭m?R>{]Z7ZftrS--m\azҿ]Hp< a"w3H>8▞I:@dz:{{Xaxn:/ do ;lS{2NZnV6Uca'ŞiK ^ۻņs?^'$C=9lS^Pƃ5=mP f|@#Vu؉~ꚉ*kM'w >RU؊Y`6CԥPnLi;ބ0|QքŤwzM-dǹwZH 5ɓ6߉$:xIsˆL=QN Q-1J%މG[1_mLx`B*:V(9zuEe'no 什Il7 D=i}h&6Ca3ٳ+nPpD?(^*Ym0 >TS5-^efpqKņ}8*~`7WjԊm4 2WI8_,lIC dgUqMcfFh CtY`$ڣNM%UƐhtEN$>Y0 v"ԆpA~Y^9+xڠg)N.jI#}\RpvQO"#(cG25^S2ҾBctx\ 3 )&=,v|j_K}R݌vdI! ?"TٜXӒ+:WA2U9@lAU`J&K:CܡڰV5c?ຖz/u<\-M.zZSr a`OL@HGj@0ۚn3c̵!z=5Y<{a A~3Ԡd;M?%R1$ qmc{!&tZ'XW5Mb{G+/Bf'yǎ`R9F_ӶCgi5 BU?rڙD^r? _/в"iŵRO3.:}_f"wPz&V̯ qͬH\$0YaDӦ7Nt$ayo)q=~ DDyHP& ĉt;Z!*]}rș<}[XUP~Ηϱ>^_FLFX6{sL4U$?*g̚42Oʌ 6Au1cAͲ)_\1)}&zMҖzJar{R Zaä