perl-Lexical-SealRequireHints-0.011-lp151.2.2 >  A [{/=„'og}cNt?"* \:6NUaŠ-ϠG7*Hv5?q,uLjMvC8 ^pPߟ]cCwy`&a:N-(hXEz &Ң* t |sx̖;뀆|OS޷9\!_[<;́0;C΋ ݵ}L!?);_)i9992a6d60274e4199470e9fb7b78bcb5e5ca9965b8fc93b4b3742a6d5fd64f231fb5dcc3d9ad28b22f6b086d498c4173e712a6710V[{/=„*PzC<~+ 0A84/}ؚAKEhWl-u6'c/hi&}xL{ٻxn]Z׆AMoDV eӸezgQ=J0Q ~ pL6X6/rI*v׃p>?xd & 0 Q        / J                   F |   ((89:LFG H I XY(\P ]| ^A b2cdOeTfWlYul vw x y z(,2tCperl-Lexical-SealRequireHints0.011lp151.2.2Prevent Leakage of Lexical HintsThis module works around two historical bugs in Perl's handling of the '%^H' (lexical hints) variable. One bug causes lexical state in one file to leak into another that is 'require'd/'use'd from it. This bug, [perl The second bug causes lexical state (normally a blank '%^H' once the first bug is fixed) to leak outwards from 'utf8.pm', if it is automatically loaded during Unicode regular expression matching, into whatever source is compiling at the time of the regexp match. This bug, [perl #73174], was present from Perl 5.8.7 up to Perl 5.11.5, fixed in Perl 5.12.0. Both of these bugs seriously damage the usability of any module relying on '%^H' for lexical scoping, on the affected Perl versions. It is in practice essential to work around these bugs when using such modules. On versions of Perl that require such a workaround, this module globally changes the behaviour of 'require', including 'use' and the implicit 'require' performed in Unicode regular expression matching, so that it no longer exhibits these bugs. The workaround supplied by this module takes effect the first time its 'import' method is called. Typically this will be done by means of a 'use' statement. This should be done as early as possible, because it only affects 'require'/'use' statements that are compiled after the workaround goes into effect. For 'use' statements, and 'require' statements that are executed immediately and only once, it suffices to invoke the workaround when loading the first module that will set up vulnerable lexical state. Delayed-action 'require' statements, however, are more troublesome, and can require the workaround to be loaded much earlier. Ultimately, an affected Perl program may need to load the workaround as very nearly its first action. Invoking this module multiple times, from multiple modules, is not a problem: the workaround is only applied once, and applies to everything subsequently compiled. This module is implemented in XS, with a pure Perl backup version for systems that can't handle XS modules. The XS version has a better chance of playing nicely with other modules that modify 'require' handling. The pure Perl version can't work at all on some Perl versions; users of those versions must use the XS. On all Perl versions suffering the underlying hint leakage bug, pure Perl hooking of 'require' breaks the use of 'require' without an explicit parameter (implicitly using '$_').[lamb24zIopenSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Lexical-SealRequireHints/linuxx86_64+( AA$AA$mA큤$[[[[[[[[YjhYjh[0e6427ab38ac6a590e0aba0abaf68a168b36feb13bea8bc88341f3cd7adbb818e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855410e99ed5493b23b89e453edf7d90ca163af84d8d5c1c5fe8b5bfb97efc8eca26c358e3a8a6978e41abd903805bba462995e1a3887c17b2e793772dce883b8444837fd5dbc4151e271f239cb0ce49486cf7e215e9f948abdafab297d89f6b24d41ef458539859a6dfe90d11fffce719d4819598d40dcb2bb47ed2d859ac6acf9rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Lexical-SealRequireHints-0.011-lp151.2.2.src.rpmperl(Lexical::SealRequireHints)perl-Lexical-SealRequireHintsperl-Lexical-SealRequireHints(x86-64)@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.2.5)(64bit)perl(:MODULE_COMPAT_5.26.1)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1Yw2V@U+S(coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to 0.011 see /usr/share/doc/packages/perl-Lexical-SealRequireHints/Changes version 0.011; 2017-07-15 * update test suite to not rely on . in @INC, which is no longer necessarily there from Perl 5.25.7 * no longer include a Makefile.PL in the distribution * update op-munging code to the PERL_OP_PARENT-compatible style (though none of it is actually used on Perls new enough to support PERL_OP_PARENT) * rename internal gen_*_op() functions into a better style * consistently use THX_ prefix on internal function names- updated to 0.010 see /usr/share/doc/packages/perl-Lexical-SealRequireHints/Changes version 0.010; 2016-03-18 * skip test with lexical $_ on Perl 5.23.4+ where that feature has been removed- updated to 0.009 see /usr/share/doc/packages/perl-Lexical-SealRequireHints/Changes version 0.009; 2015-03-20 * in test of require for version checking, work around [perl #124135] which was introduced in Perl 5.21.4 version 0.008; 2015-03-20 * bugfix: don't localise hints around a version-number require, so that "use v5.10.0" can have its intentional effect of setting feature flags * bugfix: in pure Perl implementation, use a ($) prototype on CORE::GLOBAL::require, so that the argument expression will be in the correct context * better error message for refusing to use pure Perl implementation on Perl 5.9.4 to 5.10.0 * document that the pure Perl implementation breaks the use of the implicit $_ parameter with require * in swash test, don't fail if utf8.pm was loaded unexpectedly early, as has been seen to happen on some systems * test idempotence * fix test for thread safety, which risked false negatives * when preemptively loading Carp and Carp::Heavy, avoid the Perl core bug regarding the context applied to file scope of required modules, in case of future versions of those modules becoming vulnerable and running on an old Perl * declare correct version for Test::More dependency * typo fix in documentation * typo fix in a comment- initial package 0.007 * created by cpanspec 1.78.07lamb24 1539965085 0.0110.011-lp151.2.20.011-lp151.2.2x86_64-linux-thread-multiLexicalSealRequireHints.pmLexicalSealRequireHintsSealRequireHints.bsSealRequireHints.soperl-Lexical-SealRequireHintsChangesREADMELexical::SealRequireHints.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/Lexical//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/Lexical//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/Lexical/SealRequireHints//usr/share/doc/packages//usr/share/doc/packages/perl-Lexical-SealRequireHints//usr/share/man/man3/-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/9b4f92390b556879114cba91edd16f05-perl-Lexical-SealRequireHintscpioxz5x86_64-suse-linuxdirectoryPerl5 module source textemptyELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=457284bd325379c8d7080033b1b1749e7eea7f5b, strippedASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRR0bl̓(vutf-8578e7530133f2b5dac50a30597bf3591e6a47b2ca59a81cff6ad92c61ec65880? 7zXZ !t/3] crt:bLL Dq6*k.?`kIPpA^s+%$X˓h:%C]Sӿi6s"VTg0q:M:.D{]Oo$]h޹Qjt0Ħ"<*Jb}dwɼ֨LK,~*:\VPtLsxg%2-pJ7 "Y֪$9s(e4?B\80WyA~=ĉ sC?S S5]=~=Pl| =vUdb7d_xvvoY%AUru0Z`P1%*w>"H+.4\ޒ>O"[shK K9 lWWFͯ}eUX1p$ ui҇ģ6۶;g/,plǚ2+WPg>+Y볕Fli=X*'ښ⌙"p&L o"5FT { Z7t@%>6$-;]RX!3vvM', 8Q^xڷp'2o"|T܉',XK==.0@<_aïIf:%!<3D;"*Q ޱ"Dɀ%h6Xg@PPi7ZctceX#|F*Vl 7DU`iŃh_[hK#͠ټYBsc5>G-P'hSkEyw}3L@[uid6tL `px,J2u@Я-G +y51u#vNb0ٍ8^\PJMd)=K?|7W?,MdV!~3zO%2s ;J)ɶmD=p$=G30C eZ /¬GhٍCHŋ_j.6+c17̶:K\m`RE.haaR&^6~oRJt.BH]%[ јzQp@Lɱ#!µDJcdŴptr uU"jo1W~yYʬC<CQRvÄuNbR4Ӥ0 -_Q;ϊ<cVkRX TYLw1{ >_\CL Qv; H*ʤ E"pS(ʌdԽDX8BYZ/E먆mpCy%.$6e. V)rj.[F11S\R\f)6(MsOLwmj!-QVquN2(jt؊8(gV}÷#Khj<2?=@HlX[,ԫkPBRα\ͿbGQdxו'oH`4x m*BRKρN-zЧ:^#Њ(U|D\\#LBX^xR,ݭ=!Xx>`Ow!yatҩcPj'ox jW:{˚J;<qvvQ-ss̠NM#h[h9j~AGwd' &Z~Kʙa@yVo<W)\}]]7۲c:_V_@°8mqԌ H/I_ |6E Ɓj(?{>hxUB )]8H$7[1 unl k = ֓S!f&<*݀ZpeZ< $Ԯj}YXwuo\Mä41-b޻ KUͳm};enz=W[~p?LZ]=,s,퐐 24»Dk,.5eRD!b{L c>(DH)ف^Ӯ\*59^_([=va  \ҿh*ގd,%qlM2HZwUGcN?i'&gk@'wwT.8Ï<0gjL:o6Klo`IO ^;VWB_RY᳴N k5\>iLhVs+&`jv8;tl [`14d|^`j<3ŜbU2L9AprdiSGW,x# %!3e=JJtG*e$w dN[9(qDfrtc}xE~S3Lpݶ/n[o($TOz"[[*.8H*v?)]q 8c+s4@R^LL Oةhu]h7MqO(h,pF3‹gPH KO琜'HM{8F5-m|$QA4veӰ֧?rN^_碾I]ʻݚ6c=ٵ~7.k#HSN̩솢o*QRuQ)09$sx?xU^vc-/D 2ذ D_ qI#;aru;*ߙ ,E OB[^CCy) HYW-,ZaI]["z?.uЊ:\i>8 UG}Jם+8X{gk#212`"6 ڼl9`x-<0_ڛIS YGhZYXswtD7P j "阁4-~H?0>A.(~>zΓg/Q^|t+7҇Wk@Lז6[ V\@㗽M j01q"!]:!*?a8䑌55sL^/,Xض=ڲLevؔQ-ͩ#@@XM,.̸@$ bbH!bOcYns7k2X1.*_%9MPD,tYaEӱzǢ.=s:rM:.' emE[xxCW`ly+Q1׋Np3mpn\L7J2w(q_*ˤz)b3l܏%|V[)-g%wE@PqEn\ ]Eun<@3OFd{i9K`Wc<۩4[BT:,QSg-@TqB !)??[ɡo okm+$ԆV.]Ixy`%T ͳ2=/Wܵ)$o]s $>iY34?\]4گgeo9%y",ĥОIRJh"*μh|l^e^m?i5td1qo*!3zU-FAnQ\U4 |'_li`Dnq!WoX/lOh^R3e;ɸ/[y;oeay@P=9g '^LFܹ-t1 ShQb 7iw}ȲPpX:t vܪ`g\vD$Itq[`T*Dɾ+Xt*\z?hǃ4 TiaN7V ֋R!y-PRU5L@:<{VIjv+8=㥪7tbcAĪq4 TLLfpXPLd7܅?EE^bNj8u][QHh<D.wPDv6mDAk#{?޶`1]+_=uE0C@ۅmA7tP~HQ8 &@=vVli/f*BNU^`&L˗s;QXW.Ҁiliώ|5'fOu TB/Q(U61lmƣtz)Fg ]1ո>#KA[4w@:੟=1.Nܩd`<-'F 4lC:4X6V$"+h~jJ4Ok&AU㥳*3è[*]#Wx- xN3IJ0vc!J+03h"84JX]Zxߩv i)"/KBGl9gQeG=*@rZ&?*C4W{$kNghe}-uXM&Mx*gJA*]Y9>wsQ=J2`dmI}vCrm0 y"ԡF'\guYу09:5j#n) pQ$_5NiޫwRgXh~NS7 6\M'3ۀ gҽHxJ[7̵g"Q8; `$_sW]p8;>e}^.ٷ ɪmf Bi=b\*AW+N5mC֪AB*#*dw7KJy-Hۀ&ܴ/' 'o*sD<=AB/@? Ok$b{#l(xlή.~ǔ ع5y';QbXqKMeKY R*y_/c8B@QM"~,驒eЙ /qQ~|y܊{ւ?*ua:Pou#4iIn) l *lyg%p#;kI DK D6e;rgɚau4T~OoJpʵA~,|},dmDqA p$JB6g LsŬi6eF}RQh* ǃfK#9.5ڤv_5`TQK05Hީ~lK撝.'þ='=@uQPT aoTLEDYtP-"6e&@ f-ϊNJ#{ɢ4 HLn{o=I@kI=p}L@}LyΗ ;[a`.|oҔlN5n%8(T!E%D: HqY+6;7"*$o{6V bJE_U* Cn- 08m3=h^D5KP99 [ewO Q{/v/Otr>uB?ȴ/WTlqa8ݫ@2jmIFﶭ, l<Zvg﨑Ia3<뫎/N>l$32?pՁ.%o͢ /&t]m+ѽ2R\~Ʌ2]O8? e EƬE6bݒV ['΄mVQVCr$.ůI;4W|Wa1D[ 5ps^A06$G۟G RyoΊo3I.Gmsorɬ6_O`y2cֽڷjK*3ѣBI=1eLOSB";$_rrA!3zr9:w[g!!gYȢidZ1ȿ]Ƽ HI F%?D=p) X]xh b wۮrkұ0zI66oͺ><: ^|ˢdFULZN+,1&z闓&kG'Cei4l&(3wN%" h|pNUs[+F_ ݗlx`wz <;ET3NyV46 -H2 {\0kx_@@r/^z~ dDz \3VG.0,|`\$ %⯩pYlbWT`%Z86|YR)CaK/⸼O>oWq_lY\8' ^(7X>eA{IVN9uw<2-̪д{<`, h}ٷ$ne-nT ʑG/v$%x%o(G݇-1wz}T"m.4.d}6ф&7::A7SmU ԥ4uE΄\E&%KRj  C>FzNB?Ct]iY%ɖ#Y֐6cG݉luQ*!gj3.iyݨQzreycrU [?|_I QOC90|4V7:Oq#0wk &jR~;z]ƙnm s|jRkU BLL󘝎\{kC SRxsJ2|I|M~m>w&eh$SP9Ƒ$X %,ͳ)nCq/)`qX5Nޤ&;Z0ɻve;nַ0Eb0UDfFޗ&Zk#tu_ϵ -qSHd.o1/ӇK{nLgگJjfAGSϐة~Lb_p pZ^#Y"ax~;2բ놕 Fe !X{ŽؖѳLAV0ԀfR\1L,?x'(#s2iL@˜?=<2 zk`6ݺboEټ妪 LĢh<_n;mH0ji[DZ$Cq|)NK̆Zȝ@O;J2[ "a"MålյC]&́!R_7Cdv%_NAȳs{Xtƛ-eY4 ڨ/EmhYʳBZHbRzWSm"3>FNOiw@'F@_]+ *6h~]0jbI$=zDp2*P Fl ?}[4|)]b%سXlgMMQF}TŻinJ(vl-0V\utըsTVJuO:sҐޮ@hT!?a"B/6zof'UuW ^YG<]m]nZ>MB~Jk3WD%\$u]+ h@/]uq_ї>2_īg4bq7!fZΙO} ο7aA۵$!{JX2g՗΃5v2(#WdaF*r\w!m$QOȀqީgxo"w3Aٔ桎0 J,P1ЈrJ4P<@.viol*ɊrX]<:W\Z%$mHTS} sǑZ#:wjI.ze yerO.:,, 񻎩Bj">ܠ7#ƦœO uR>ݟQfĹU!V8<2TeJy`bB]8#6_`"T~ ZtՓ@<}<lBRU@Xc!Ʋm.uJOν 6jC *]T-k,ձa@PlJ@3ep:"&t7"+>/8~խ؆MiD 8}̥\E+;T_.r7Iz&QH-& ˓ #rbP/f39bҮ鐳+s <.aa< (x%*;fZPWl-K!6!QP,fWdX۔EUޱBΪ,8f3JmU.6_6WW@mHj4yvUFSK=4o t?Ys %DE6؋dX}pmDt`m`;r"ʹBV)A(URBmc[HUmt\ *ix<3:(2 :# CeNT9RЅ%Ӱ2 sާ!18 ʍq] 5͚B!!RڌnQ>( o@ U;cPˡN)cjBGix U}iI[ϟx4TV];p)h&h#ՙΛ źpC0Ub֒KF5NBN"nK_ "Wbyaq{ &~V%|Dhcdp{yd|[aINh DgƤ֚7o+^Nt.;PIvX`Ū&%(f5(XZe4C(oWY kq$ =6p"{qt7BPHH#qd5?6x.@9Ԁ]qK5S31;?(}s~d`^0#Xw)/_"U2`FzƻU꥕g3[\H[֩1Nsb<:J:ɻU{ \Mϔ> Ŏ8{({ B0`!봈a9k[t!q{f⎠J>0]'S/[Dw5uSMz1^nG1CxTBapffh({]jn9hK'}D͟ݝHZxt}Q49ҡl= ̎>o|@p%XUϡbz|XgM e=@d6V;!]Hb)T3ͼUhq+k%5TtA0{zqրΤ#ݑcK~x*jBGOPVxxFL{ I0?*RrJB]!1R|CU%Zc%s SБ$?a[$2)_`kҧZtUM&C90 .|uKog[ գ?50!Gu[R@,[lw:5wPϻq8-8z@WM~W彚Wx>n5*RE~gC[_'w0:ipgzl=lFepp@`rDmҔĚ*̗aPEzRX}NNx, y%h9O44#Tӹ3.BZ;nKq NӞd#8[}<HԔl=0H}7_07 {'wJ^dҧ# v82]f3ѩ}/1ZEԆ}sU- @`XUnSx2EiA褣q&S2NS{UVLt}DbL\qkK۞'_Üݫ=+R'rEaWsLV]S.NЋ1Fե7?]{vٓ ŖCoR_U?'[Ls o I؍2ǡd <,BYCz+s6-C7wy8pw tšeWfKJBi_خeDWC*yPt.S tC6ц!gaOו\P4ņRbUE|.90bv֋m򻈽fgl YZ