libpcrecpp0-8.45-20.10.1 >  A aop9|VqlPL0Ȗ!@ƊdG[@O8l [N3ȸ;–5HY*)3]N̰,* JmS8=MWVC"Եq9ow/I(mїVE2AY.djN9 yjIi`  ̻mmJ֒qg3~iw!cr^WhZZbZ]dm@y S="v6bd5bc6bb7389e18adc69f8418281708a3952910a75d5832d46c104f5b81a9f5337d656b808fdd50c3be48eba1e863f2e61e3133a4aop9|z6Т (c1]9?pS(DdlK&eeo5I4?D63g]gdS`'}4ꉸD|4TB]'[19Ilcَ:_][m_}/~5zN#s߸&)B*(گ&;Q,ٶO9V2bh{Rr_V u6=9(0&$ϙ0^8!)= Waa]"K >p@'?'d  M 5Vc y       (2<X`(89<:7>$@$F$G$H$I$X$Y$\%]%^%<b%Hc%d&he&mf&pl&ru&v&w'4x'<y'D z'x''''Clibpcrecpp08.4520.10.1A 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. pcrecpp provides a C++ API to the PCRE engine.aocabernet PSUSE Linux Enterprise 15SUSE LLC BSD-3-Clausehttps://www.suse.com/System/Librarieshttp://www.pcre.org/linuxppc64le Paoaof2fda55498e2b07c49496790d78255552617276f361c8d90cecea1b7c90326aclibpcrecpp.so.0.0.2rootrootrootrootpcre-8.45-20.10.1.src.rpmlibpcrecpp.so.0()(64bit)libpcrecpp0libpcrecpp0(ppc-64)@@@@@@@@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libpcre.so.1()(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(CXXABI_1.3.9)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.20)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)libstdc++.so.6(GLIBCXX_3.4.9)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1an@`qZY@Y@Yw2Y1S@XYXW9WaC@VV@UB@T@coolo@suse.combwiedemann@suse.comfvogt@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- pcre 8.45 (the final release) * Fixed a small (*MARK) bug in the interpreter (Bugzilla #2771). - pcre 8.44 * Small patch to pcreposix.c to set the erroroffset field to -1 immediately after a successful compile, instead of at the start of matching to avoid a sanitizer complaint (regexec is supposed to be thread safe). * Check the size of the number after (?C as it is read, in order to avoid integer overflow. (bsc#1172974, CVE-2020-14155) * Tidy up left shifts to avoid sanitize warnings; also fix one NULL deference in pcretest. - pcre 8.43 * In a pattern such as /[^\x{100}-\x{ffff}]*[\x80-\xff]/ which has a repeated negative class with no characters less than 0x100 followed by a positive class with only characters less than 0x100, the first class was incorrectly being auto-possessified, causing incorrect match failures. * If the only branch in a conditional subpattern was anchored, the whole subpattern was treated as anchored, when it should not have been, since the assumed empty second branch cannot be anchored. Demonstrated by test patterns such as /(?(1)^())b/ or /(?(?=^))b/. * Fix subject buffer overread in JIT when UTF is disabled and \X or \R has a greater than 1 fixed quantifier. This issue was found by Yunho Kim. (bsc#1172973 CVE-2019-20838) * If a pattern started with a subroutine call that had a quantifier with a minimum of zero, an incorrect "match must start with this character" could be recorded. Example: /(?&xxx)*ABC(?XYZ)/ would (incorrectly) expect 'A' to be the first character of a match. - pcre 8.42 * If a backreference with a minimum repeat count of zero was first in a pattern, apart from assertions, an incorrect first matching character could be recorded. For example, for the pattern /(?=(a))\1?b/, "b" was incorrectly set as the first character of a match. * Fix out-of-bounds read for partial matching of /./ against an empty string when the newline type is CRLF. * When matching using the the REG_STARTEND feature of the POSIX API with a non-zero starting offset, unset capturing groups with lower numbers than a group that did capture something were not being correctly returned as "unset" (that is, with offset values of -1). * Matching the pattern /(*UTF)\C[^\v]+\x80/ against an 8-bit string containing multi-code-unit characters caused bad behaviour and possibly a crash. This issue was fixed for other kinds of repeat in release 8.37 by change 38, but repeating character classes were overlooked.- Do not run profiling 'check' in parallel to make package build reproducible (boo#1040589)- 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/sbin/ldconfig/sbin/ldconfigcabernet 16347143348.45-20.10.18.45-20.10.1libpcrecpp.so.0libpcrecpp.so.0.0.2/usr/lib64/-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:21543/SUSE_SLE-15_Update/84a31ffb47b66c2aa97b17970f8cc06f-pcre.SUSE_SLE-15_Updatecpioxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=4bc533d56e954154b5d54b8e444db5c60a56d7da, stripped PRRRR R R R R RRRR7sS7*+utf-8ce6f08fdfd094c947e67afdc3da88076e5de0275f56553c12206d84be9a9ad5b?7zXZ !t/ 4] cr$x#ϴoޑ7ɔ'KqΆgL,&E@iQ[9iI%jWK Mn]\5.oN>'ۆ,N$_x;ZH#2@UHzxDn?O;vh-ˠהꝝN:GD܈1F? 1/)X X)Ln𬗗*;fۧO2 ;@v-6j?Ro ?˓ <(-o]{|^:DX=մ{ǾzM}|~[ "dٰsN[R(֒#KFlpvLU *#)-&bR㦀+َ4#. H ʼÄ y7VF9$bѡmٱ85 +DǟiTĮKx'WfI^_y c~ާ^,[;s7ʔceCef{6E{s2UY3:nXso?T7_[ݎ˛'/=BZSTЂ$Mb+{#c {gƝP48iztOCo&W!^VyPȹ|:v ȿ}zR<AhO (?Yl32 rwI`$G\ma~AAZYt2`=m<۷ Uq aQ"{҆aӓ4UAW]Wa_䷿DQ)fgK@N088wzŇ3^ˑ 4]p,>}f! cנƅ7}na[6O@fJQf4 xE 1񟚖ݤ8 Vx.1# ;8*_[\Khl:hz~l16^O4SFŁ5kݙg).ܩ̠-[.W 7 Ιˀ.'PR2}b)j-0<D|$] id:?7q2wmZ?[sXe@HE{A >)rNs@y NP?9#BKW{KL~}. .1)Y^$}tm;F)ǹ"Ml4z< OY )PՠD(6v22ˢ'~_X4 ݟ4%2?}ZCcsx!M+? wI@f';$j':\_{"ě{(R#K@N H2>E) &j'hY{Ƀ6JRz<#Xg?P&Q:ӝg,PN}S_fH^~AVn$I쌝0UrΕhD-{ A9<&5rRޒuHulp-#2ZMBl,7dHrjݠ( FbW/ڵ,L~7klCRf xNį" 4b;)?f7:ӂFJz.QK$s:K1(t-x~#7!oU }KSļw JK 1.ƹ#. 2͔ai8 燈}8;@ ۆȁz/y/Y>˶/όŢXf a>lKCULAY%&h3^N>ۭM ㏥3k?a-E at #7gl*і [(M> ]I8Py<^nˎC@42A =-C b[wl!9{A 70J#zlx)^J_@cr'TK ,j7Z' xh+NMTZ(ӝ)){8cC  ݺYp"sI`XC.ɷ n,C)ɠK2PChGRZִriW/j4|4j1R LB%"]h:f^c DeU;??]I5 9 m=KJje=%jSqj,g2u|>5(dF$Ɓ%utxSӀΰ흂)|,/Gk_Ztђvԛg៯@Pg.'l#LΌxy^~$][kE2(⓻€TK>zeι0NhjҘ UR :UM._o0bx = &?KnFIJj@k/xt;GƨXSmHHJir N4ŜJRۃRGrƙ3Mg7ӕcn>nA0yePƹZO Y/tI-$ mj fP|U7ufq<4E%\e622t} OZ,B(pq`v"X|F#>3&3c-0Fz{B,Ht+}yVrt`rsYIƲ"^)PQ*Z‹7r7qMKxR\3Vy'!{[`3WhFiOgw6@sM~wDfp?84<ȭ/ ;wC'tڈ CRFs4iuڍ^#S*3r#}8@;@(rb5re +{{+B&xItՀ& pN)auy, %!.O*CRW\f)EH:# 㾸G_> LA0kb~0Fn{jǥ>Rv)jz6Y 6,2N[@л"gO#m؟ɧYlkm_ <³GY>:+#pOU,qM㔲 @<;-o<4,Hbdfvb-g|>QqnuZ$Gݿn4fDč8zMKj[c* "j:#H#ߑL,ʴmuН}w`bnahPܛNa&D=DQ?}zܤ{b_xXڦ!]+fPd 2◟x?q1bg4 Pq9}m (M).7ݸT}BlѰc7q̜A)N㷞DW4#} A:+-V#:4\}/QQ@@.$#3_+6 !fXaU+h'c-r CJ%}L^!jhZb4Y3nTԭ;&[&Dg`蝆:۾\ׯt\{ٙ] ^L%/Є5Rx-8Ȏ4\ zXKf~;!TΜQLbʾ|8JJZC6$Ft d b$}e {xmYX8+-Uϧ݃cl/(icW&9eYAV(Y1&"`&tỊP剡褀P("3O*V5i4oͻD/xw|9}B. kQd.Pߣs413;Hd$ޕCa#}Q%lM9- '|#1h?=A [LM*fw^ oLci}4gwwx_!W ҮzX;ћS5P}{LV!/VA+:J 6:cR` Sh"BR3'jSV'$8=%AYVt>G[h<h0 }&{fz.w[pXd8UdW݉>D-s-:7gL6Z^=yqNC9+Lj!reچ͘$Y [?2|?RXCVlp"wZ/"։_^3PqܶZA-(- 3,uttg\x/wcRuױb+.)$=ޝܙ L?." f3ۺ4=r3)!2lh%!^L6cF*\bkp*R>?Z[N扁nmeSV2[a86+( 5/fRN pm]s4bdal# $P ;zf)<)Ǔpld;3F`=yUIeEIE&p晴I*1t1$@*lbOĊ\2B. R p Aی{Cƒf¢ Z-ms &}LCVv30^H0t> ꂶ{/#jHDU7rGuFzds,jeު5{ m }ՃC6=[6Bx@?ԋrB[|\[}zCBO5o (~x|g5jA5vM3ۦ ຳA AQa.d;]UCkǭAu/ XS@G_DwDc<@+Ҫ ?|w3N8G t!$^3:"8GJӓB]fb=@݈oЍEbZT#ǩ޲ur÷sBMW4·/~d͈ 5'G]N[pgȼh>.\,ƗB+,ل ;<'S|X3Ahk*|} [J\#"tcw~gsLSi_I׷bf/K8u%e>RG q%2iGC*QCYՊZCfߟ釵H);%k#ZCi' Ăӫ29L!`$`޺r_+`V_IG06\E1 Gbtyh?]e{Eèې-iBYb#i&_LrEִM>1B`)BŽ cLs}}ɏ'ykAxʗͷ>EVB&|tT OZUz(vye`ou^c\mf-5IZW#Q}GMrSлCjq}}]rNN"&Y!Loh7B\lEWS*O/ᠿX-M_Cg'G\dJ x-HC͕o@^4:$oovCT~ A1/)"o,& WD+|)|{,2ii,!N$?;Ƿ@"`u)L,Bm>ɠl5@̇v,t*Yzd+KmUHEˎ$v|8>:/Ɓ!͠}w>@g L(ݢKP*KG7CȏPrtFA)U3#?鏐υwtVS=>I$IQt!д6JmJjoNH2*߃0w^=b<p?t) "J]i5օ}t`s "">% 㗮mu}1eZYo~a5Aτˬdn!#z wldƸ|H"0\3j߅*ύ&_9(Vc>C`M;#;\Q DZ3=#mvʅ{z'[Pg_,Oq@Y0n0T_̒%QT!F[. )?cwtV`6p(@ǡ;퍓NёXs0n+bmG2ݑnЏf{AB򏫜ӧмIp򠕔RgS43C[Ô ǀ+b*qK' @)XP^. ) (@eĄbBp1+đ@H=>с+Z2pqöBk:L m 3suGf\tZsrpzzs9G[='5U]M<5(ܪ3pe( ۷4׫kLgaxHԱ5=r6gSS9Ko$ Cdޭ氥Ÿ#* RJڌd [;#D;OB˴R%mSB{,c Y9XWmf|+|  :ULo|[yjlU̓p8V;񇮋Y+()X5Hm|5\ .@SnA\QGF> M֓ \"ɍ|Γ;G>%LI9~GNCydloFBlfO3˦n{Li+&Ofu1[L7  w0R 5^#洆3FEH/Uh@b GR3kEpޓ5"Vyh1q7 ]bs76&id2!ɆJxQЬ5 K+ rݙ76˦VZ}Yl))-M7-zJv 4l77`i(\,'rt.p]g2lk;?i-Y7sMSst Y/{lmfу ?5kN\vHb [(Y)23Cd? =+c0V:KyKk7-@/i!_ ⺔osM3+0%[ĘϸyBTj4s 2@z4brվՏ-xmOd%R:05J`6z , 6 9{#jPio_>V8^_< /Pc9f(W(({B KK+GZj|>V# e<ȋWW#"lݛy>VN=/6̬TUd|wDP5J0䔐d1Ix &$FXzH:D'P{ `Nd=2-<W,,kml;\ݸgYCƈƯ M =d4?34]R N )5c~3B ;RGc|cʸOg׽t [QXnῪpYY?>e,{ ,&s| yި0QqUkv8Mc&. g%/JHsroAl->BhTiƿnA\h'l'343Ɗ]= 9>T *ce|#7ekL$|Zp9Nqk,/\WU+IF4'#x^ZUIK㔫\Es^ДXD"318$&"pԸyq32#_&b5zpmM2۰#sK P x:!L2R1Gu,n#, Y!A>mF?/c݈Y =}Q2Ϊ|$:q~*FH/dEڅ+C n=ۦ!F#ݽr)lI=Ln)#~"pcI 76`*{oP.O:Vһ)?s\[E6)Ƿ'iG"AnsR>Fbs¬d >p^ x16z퇿̬ϸpq:ѓ7[rW*|ՄڵaVgw&`R,' 3exDe^(Px Gި0a"0ig]1Ec=Il=p=ExqZXPo+F{%Y$zR|SRPW5#wdUdK8W012bPPE"Af8ч3aOJItjt?V8O-01hq>yHŸ6_q]73˴[0/ߵXK۶^ '4 .|'bPJlA!(rj7-_H-DWB F:A/~&Wu%$-\?PFiKA bOY \>D 騶iJٞ?1BOso` ]99iyH4{my `QndM w8 q(^i؜] $y9'Ao{mfoxw戢!8Ly#H 4ra]מ=.ϜcUhJm9|}FI.QP]K`^6Щݼ?Do`߬y\)'`2G0$<=O|Y!$Jޣ z _ 7ulC1[GX2Z.MV[y$_$][+4b'\R:AUbJt2JjT調4 E{>tFD`Fr+wn{ lI,9٪rӊڳ~ynϏIG@O|]A@ ׆Z+TzDFٓ0t୆+|ˎ̥Цjh YZ