libpcreposix0-32bit-8.41-lp152.6.104 >  A ^ޢ"/=„qv8x5&y"2zԺN= ߐ5TaCyg&/ǎmm^]ڂy?g_o?&tXu((j䩿G1‹V* 3Y-.@D!UL.6z9R7~9.xrwk׍7ipQ+ۨ8R^DP_)t}pR um: !?nkt{lM:Mیv>z)cfbf0a0968ea7d49aa8578e967a5daba9f72891346a71e3d5e2e4e6d394b34652cf5360252605e5129d1825769f3ce259e10c747b.^ޢ"/=„$v ic*82 TeGY`ėKOpE^q /(^>L Qԯ d ~IMjC:AhN6;<( UԈl5Bb/~fun)G5& E D%G#ϴ_L0D3ij@!Vv€_Ir> ->4 ꝃ/FB_cp 6#$ t \y"΋SHk*҇bCbӨ 'p>p>?d ' Y$(04GP] w     08BLlt   (8 9 : >G H(I0X4Y@\d]l^bc\defluvwpxxyClibpcreposix0-32bit8.41lp152.6.104A library for Perl-compatible regular expressionsThe PCRE library is a set of functions that implement regular expression pattern matching using the same syntax and semantics as Perl 5. pcreposix provides a POSIX-compatible API to the PCRE engine.^ޢlamb57%openSUSE Leap 15.2openSUSEBSD-3-Clausehttps://bugs.opensuse.orgSystem/Librarieshttp://www.pcre.org/linuxx86_64/sbin/ldconfig%^ޢ^ޢ0cc650bb42cf7e34267da6522dea7c48cd689443eddc3691c9fba2096f1c5dc6libpcreposix.so.0.0.5rootrootrootrootpcre-8.41-lp152.6.104.src.rpmlibpcreposix.so.0libpcreposix0-32bitlibpcreposix0-32bit(x86-32)@@@@@@    /bin/shlibc.so.6libc.so.6(GLIBC_2.0)libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.3.4)libc.so.6(GLIBC_2.4)libpcre.so.1rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1ZY@Y@Yw2Y1S@XYXW9WaC@VV@UB@T@fvogt@suse.comkstreitova@suse.commatz@suse.comastieger@suse.commpluskal@suse.comastieger@suse.comdimstar@opensuse.orgastieger@suse.commpluskal@suse.comastieger@suse.comastieger@suse.comp.drouand@gmail.com- Use %license (boo#1082318)- add pcre-8.41-stack_frame_size_detection.patch to fix pcre stack frame size detection because modern compilers broke it by cloning and inlining pcre match() function [bsc#1058722]- RunTest needs much stack, on s390x more than the default 8 MB. [bnc#1046102]- pcre 8.41: * If pcregrep in multiline mode with --only-matching matched several lines, it restarted scanning at the next line instead of moving on to the end of the matched string, which can be several lines after the start. * Fix a missing else in the JIT compiler reported by 'idaifish'. CVE-2017-6004 bsc#1025709 * A (?# style comment is now ignored between a basic quantifier and a following '+' or '?' (example: /X+(?#comment)?Y/. * Avoid use of a potentially overflowing buffer in pcregrep * Fix issues reported by fuzzers in pcretest: - Check for values < 256 when calling isprint() in pcretest. - Give an error for too big a number after \O. * In the 32-bit library in non-UTF mode, an attempt to find a Unicode property for a character with a code point greater than 0x10ffff (the Unicode maximum) caused a crash. CVE-2017-7186 bsc#1030066, CVE-2017-7244 bsc#1030807 * The alternative matching function, pcre_dfa_exec() misbehaved if it encountered a character class with a possessive repeat, for example [a-f]{3}+. * When pcretest called pcre_copy_substring() in 32-bit mode, it set the buffer length incorrectly, which could result in buffer overflow. CVE-2017-7245 bsc#1030805, CVE-2017-7246 bsc#1030803- Enable jit on aarch64 - Enable profiled building- pcre 8.40: * Using -o with -M in pcregrep could cause unnecessary repeated output when the match extended over a line boundary. * Fix register overwite in JIT when SSE2 acceleration is enabled. * Ignore "show all captures" (/=) for DFA matching. * Fix JIT unaligned accesses on x86 * In any wide-character mode (8-bit UTF or any 16-bit or 32-bit mode), without PCRE_UCP set, a negative character type such as \D in a positive class should cause all characters greater than 255 to match, whatever else is in the class. There was a bug that caused this not to happen if a Unicode property item was added to such a class, for example [\D\P{Nd}] or [\W\pL]. * When pcretest was outputing information from a callout, the caret indicator for the current position in the subject line was incorrect if it was after an escape sequence for a character whose code point was greater than \x{ff}. * A pattern such as (?abc)(?(R)xyz) was incorrectly compiled such that the conditional was interpreted as a reference to capturing group 1 instead of a test for recursion. Any group whose name began with R was misinterpreted in this way. (The reference interpretation should only happen if the group's name is precisely "R".) * A number of bugs have been mended relating to match start-up optimizations when the first thing in a pattern is a positive lookahead. These all applied only when PCRE_NO_START_OPTIMIZE was *not* set: + A pattern such as (?=.*X)X$ was incorrectly optimized as if it needed both an initial 'X' and a following 'X'. + Some patterns starting with an assertion that started with .* were incorrectly optimized as having to match at the start of the subject or after a newline. There are cases where this is not true, for example, (?=.*[A-Z])(?=.{8,16})(?!.*[\s]) matches after the start in lines that start with spaces. Starting .* in an assertion is no longer taken as an indication of matching at the start (or after a newline).- Explicitly package %{_docdir}/%{name} to fix build with RPM 4.13.- record minor vulnerabilities fixed in 8.39- Update to version 8.39: * Some appropriate PCRE2 JIT improvements have been retro-fitted to PCRE1. * CVE-2016-3191: workspace overflow for (*ACCEPT) with deeply nested parentheses (boo#971741) * CVE-2016-1283: Heap buffer overflow DoS (boo#960837) * Apart from that, this is another bug-fix release.- pcre 8.38: * CVE-2015-3217: Call Stack Overflow Vulnerability in match() bsc#933878 * Other fixes to assertions, crashes, buffer overflows and performance issues found by fuzzer, affecting applications accepting regular expression from untrusted sources- 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" tag/bin/sh8.41-lp152.6.1048.41-lp152.6.104libpcreposix.so.0libpcreposix.so.0.0.5/usr/lib/-fomit-frame-pointer -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.2/standard/26359ab9b4edf476346242158356f1cb-pcrecpioxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=c7e30d76654383ccc24fa75f7500e89bd7998357, strippedPRRRRRRutf-840c430d8bf733dd638c9778e2bdd274ba6f21e303ff5d2fa44cedc3ac2514163? 7zXZ !t/'o{] cr$x#+mJ0*ez4B'x#D] cZ-8``}5xI|HE=яPa~ "&Kʹ_q8fdž%j+6!A}T[2XL)@HRNBJ]?T^ Q;˝H\4:> o8)oZ.~w g6-0 l;^@b EԀeep@8Øk}rKr@UW=C׈P>VVv{CXSK̊rN[;ʰ5] ϩԥCgYi)u3 ׂuǖiTM7;us铸?sT+D#qGlc莰F5ti2FG➶M %Ǝx/o`R6y1645ظ| #$;.~A/RYmRjrzx䲬0ITM+<,7Q{dR>1+jE)=U,~elIU ť(ŁWY0>yNm'ЇjkYp1 *!\CS@z4#]x_V^gU,.%:wukuQb})&}б._xSq-}h755 FpLi[=|O 붻4J} (LϽRY8S5y)esHօwLGȳR]$;*Pb8VlS.1^˓{EKgm׃h&C"bd8,ұ?WQ*/':/ӯ| TuB.(^Fa,t/RAÎK Leդ|ۓLLPQ2+Iq/5 S.mn>+,Otf?V*LbcSo$46,CUt秛=<[O odknvDmqk§ICO*΋fޑ~dD7 r$Ϧy*SϨ*XpT;MJ&t2mx*h4poGIZXy~4vmiqi-i7t:s̷HHk+2ɁT`P,':x>C/GvtS\-YC9ɔq^65y.5.2rk>]Eʅ/ @\tuˈcJY|h?Ӂ,A'+&Jq:QIo9DoLn sEemX1R̒aҦ|FNXs~J־,]@ŷfM̽-Xn/11-!NÉ:ȸ /~ Nމ,>}brEsؓ;K,'6|z(wUkV~faX*f[niIq@_RhMJjtn[B NI(C~i% \ag/? ;TpG/>Ȃ)Wwm " E8PC5&E "JړoӼ^, 9-2D] aͫ㡕 ~544PE لKqɃ8/JJ>9T®i!Ř a:0P.URrfȸ&3 X8gٗ/ܙ@|;+fjmNUxtD3;EPUjGc?·j1E .ov )a{GCQIy4EU$hYЭ:"~϶ 6grBB63| n&GgTM$[>02P(⪈;j~64ܟCGka6T<%; .UcN,T v/Zs `hRn`C<xV #v]Ե͢&\uZ;N7Trwb-M<[tXOOՅ5.+/s?kbQ. $ݗY8wQJ +6+Ċ *_ E@\2Ou.4j I,1 2QD;]r' |t)szN>s$Vs |n aj.xfĴ1:c#HၰT .UH}]dsp%hd0moe.XXid_&60mxSBs,~ mBfAj/*%?IZL!ޏYSmĦ|MM 9)݈#'$A}fYZFXprVwLD4JxڏzwKhs&:b4snvN|hM}R#Qxށa|(G4ݖCV0O|]%7:sc.-FCf*FT=~"މZY? ÄNHB8odE!ju^YP2p Q$ӻ/U-ı%kr5AZvEQ? ^FT=ҸJ&<l`ukW q0Hp p-R Z] WTUH$3PW4Z7"ܓ ŀkΒb汹e*_j.YVtgi~Gq:D*iE=6[{Y/!$ZA!f#}ӈ*7rЦm LJqI9ii'a@(}ة;S4-%Бo[XΈP"Ӥ\2Ne kR@~9Rɰ @~}vK\ o!瀉6 [gw]/oo!>\=A9c-!6~8yi<ϐDh †xr^>%8zTf)ۧ84F_3Ϟq%6CQМ@IWy=m@r6I1wI(s )欂0`lN O YZ