perl-Lexical-SealRequireHints-0.011-bp154.1.24 >  A byj!M@eee5A-'RTp<&u#8cݐcF:Pe(Pe[Y&ɺۄ x}<3 ^ǽx,u8ԯP~1;8zO] Pwk'8^!n$>5? \? dq{]%9kJf69ƫUF2}H7=V5#ҟ1`{ 0->k-BQec40fb1345bd373eb02c6e49949fbca1a5314b47ee3b2ef3ffa46ce6ebefaddbab443a75d09b5a8972dff711a84246b7a56931eaVxbyj!M@eee^Q+4lrd(PNPB #GK 4  *}5rv_Xzp MT_YKTEV\<ƻX^@3)+-_`7It2ǭ1<}gDhFzTCp$Ԍ8f 8`-@NBUAqb% ;9ƇG3W%h!~+p>?d & 1 R       # = X                  R   <( 89 :\FG H I X,Y8\` ] ^P b<cddeifllnu vw x y$z0@DJCperl-Lexical-SealRequireHints0.011bp154.1.24Prevent 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 '$_').by>s390zl25ySUSE Linux Enterprise 15 SP4openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Lexical-SealRequireHints/linuxs390x+ AA$AA$mA큤$by,by,by'by,by.by+by.by=YjhYjhby+0e6427ab38ac6a590e0aba0abaf68a168b36feb13bea8bc88341f3cd7adbb818e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b85563f8dbf3ccc31c9bcdd247e273d6a8ad094ae2c373e87e23de447069290bc12c6c358e3a8a6978e41abd903805bba462995e1a3887c17b2e793772dce883b8444837fd5dbc4151e271f239cb0ce49486cf7e215e9f948abdafab297d89f6b24d41ef458539859a6dfe90d11fffce719d4819598d40dcb2bb47ed2d859ac6acf9rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Lexical-SealRequireHints-0.011-bp154.1.24.src.rpmperl(Lexical::SealRequireHints)perl-Lexical-SealRequireHintsperl-Lexical-SealRequireHints(s390-64)@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.2)(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.3Yw2V@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.07s390zl25 1652102462 0.0110.011-bp154.1.240.011-bp154.1.24s390x-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/s390x-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/s390x-linux-thread-multi/Lexical//usr/lib/perl5/vendor_perl/5.26.1/s390x-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/s390x-linux-thread-multi/auto/Lexical//usr/lib/perl5/vendor_perl/5.26.1/s390x-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:Backports:SLE-15-SP4/standard/9b4f92390b556879114cba91edd16f05-perl-Lexical-SealRequireHintscpioxz5s390x-suse-linuxdirectoryPerl5 module source textemptyELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=e54e42f3ee5e21315d43953b8a5c5a2c923069c8, strippedASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRRr 71kutf-880eb7b1ad8c2c3ad0b1f91749a5c41e84ff745e45932fa32f59b3a3fdfb2bc3e? 7zXZ !t/3] crt:bLL poVPw*4,/A.*?vcY5IpU!u/A8%y]4\g&FX>L8eVTr,sݯxzWyFˍ0\oN[<`IEqļn,Ţ P]#geP+Qku-3̠۷: rcJӆ[ 29&'ΦLSԊobFD 84Ta!_OW^^(Z]E3 ZmġAKOjL 6tICσw\OL`߫cn%\=O(t-#W,f`{^GZ+ sQFBh[2$X[jd:HhͭUBssLv+"lơAmigE: @sqWs%0PҶbqv1 Gu]?3CZeZ0 '|#DszWL[sGpX9 MҺV$ŏppl).=U")2H vxh! n #0A*gRW埜2X#^UzQ"߱r>iEn"JŠa*u*domS30;c=Du`7؇ X$7 &*֬pItV-zu볘%Oa#Y&%)֑_͌v$ֲmzGA/RЀ)\O/mcڷ4?\B6_d;V,jZw z{~փ!cBT8Iy~!OZ\u3[JKrsѺ[-{gQa?5}01>?k`+ő͌g(Qde07^:Gei0ާdi/몥 wE#Th}uV 'W/j{HEq5cIXGA- CC=syVp9X&yOy g.ʕ5Ozߖubo7s;bQc21a'\ JAw`kT2 hډyOjE+M;z5@ÐJT R(x yQۼVa*mU7qlN"l%iHXΒGXNXM yQbgF/Fio 6N9_0out>*FMa`u/.R㮡k]55`߃bеqPw9ZYTKK&Gô N\Ys}  Iifl\}|z^ l[tCYN]b>J<e,J }*(£FĄkmj.IsG8b>>)I{y:[7QMq64Twr|%I8/}\33+ lK# 4L2a5'Dh0W5z _ )\*>`%{ů?Ke Ȕ^)5ޚ'J9+U1A7Vl1Ky1W!5ȱ[)*^rv-wuF:גٟE{A~+miOU~ർrGLP48y y%o2Iջp bfC9BI/V2P|H{U !ڡ~DC]{]ZWfZ!6=?8FoLLmO6AT۩0)θ}ŻY"E٩_;m DxwH\-k;4zHPE[7̔t{ַ#Q^{6 pH}4[_uYo.eytF"0K߀ c&0sK\ZQ+A0ꐳ*Y$][aR]H0{;+@ӌv _֗&Eȑi|7ߢkf:PtqI+ҕXN0)R^l#mNT]fx4xr :nv P6ov`vIJd 슳&GBWc{ÜSj`TЯΜ*(RPC=Kodϛ'qEI@Kpwr3]6O<%$,N/%欛{P=*,M#>X>?J=1x sf }~ !hktbK`.]mħDzXoawnrOu}w`UxSORUgՅpk@:˄n@"^ ,,qzv&쇶.7ȻZ<&1гEm&o .(TZZk=A.yѳzshPMCU=%bDof\c}t vN,&Q>? b-IoXHC梏Rue c*졻B<8w}(>m'wG̊;N)Hw. ^C(RϒF] Bt%]˨ܔZա8=H=i1n ? Q0"$Lf8aXk/^st+y9KicXI4L픛k@@}>gkm{VSQGUsWZꙃYZ~2 S<`OhD8+/hR]yXp~S&4uvNo"]ҞwȞe^ V긂0o6Bpm`nsS!|Ukj 0@p32(O/ma/\Ϙܖ*EUjxٸp0̅1댅ft:^,yjf>_zBs\GgDhfiY^Ef1CL4ہ$€̖݉TK?z$m٣s:pAPVM|R$6;0ȋs&QT|ZT{]ޅAg^8jvE.'7]Kb1jÏ" FcPZd0P|3h߅zPÃ9mJ7{d2ܧ똚,R 9cϤzcV]hd(\%ıFVy2 nL r$?YYu rWk*Q7gJRfG[А 5>^՜?N% bӪnZQra#:8ʬ Xu{' Xٕ.fƜ'1#P>@9BR֐-ފiE$7{ S= ծ7RSrz|~-Cqb<8buA %G #$ S4(>;T$XQ"3|?1wƷխfsP%Q?W"s"N>1p0O_;!g9WEJj\fn'C #@V!+F;]$7PqGecC5㽸lv&0mW<8],hF۝wXx:d6=yϛāGVLi=UKZ ⾯ qJ@ΰ['4.:%!KP^Dĕ+]&r79+L1)BwZ" QPK5}M R rLʚ%_xtӋ# tc~ 4zE*&+6¼0T36Sn#F! ek lN,՞nm^k3Q\Xtx5PΕ@bѭЬ/`^{C9:/3{N q^h*LxsⱆTv@m0YeOLH8ӿXch] 6n&%it)DhO3ig ڨ􅒃l M2EU]et Mqx42t)A} d[+!}k>v G߉hv/aZ˳K/Š ~ԝ-|ֶ”*ѣ--ct?$X9z `1D521gD-[^V!܂x`:D= B=,b/75Y\*1I=ž>$muwV6}YIHt,@hV.xP?>Q{*8RyMom큷G(QIRs]Rca9,Dd^)o$\z(E5qd!C}> jc]CmT!(,f̷jtp$"9}Jv@mophm_A{h:*_ Aͷ6"Vcf:U-VAo-=YHȭ螴,a]Wʮ۹0˕7JF(AmTW)V  O%VDg9A-Tௐ="ou9_! cODe+lPaVPN'!F d |'"=oILDZ"H;X > ŞrW+PqSP-X>n/ԹBT*Qsu ص#禼4fw⸈x!u {~1:[M.= Z|:KO__B@' 0ŠJ aq+nFơp(>%huv:J7MdS?m82KC16{5Uh?w[cZ(ɩ(pޙj!-k+bAx0/&썥i^jƔѧKwڢ,ˀBح鄒}Br&op̣ quIቜ;WUh ٽDs)[$ģ&v^QPn FX<1wLu񵇽>bJ3wo8Qq|1B2bIcZt1vbݓўa0>{ʝ H[Fx:EO >3B n~K1ңލ˶F]ÍeЄҐv6{.r2D"\2 _Dr-ͯh9̡3^߁UMN{;*T˪x,{p pg0]= /NN](#0<èdliFpEf~+&i2!;ͧG+ =Ӷ_9aJZr=%) Zw{ W|Zf{P?/$phKe8i-٠BQEt (8V8) |zgq}IY@}Wdgn-'\S<0*(yk"鋛NEN!;uԃHfw:~1F5ݿ"֤h}텱]~'\[fd6~0YaL/Cakp;?Dlz2]%o>E_xgULdKEáLY3͊eLצ^'VHrTPTץalKAsMꦜs>5 GIضdcSc'P坮ўT/zR^s(+G8fw2J T!RQ0Zu O}RV+0qNQ>xSZ1ylRN Ә"MBdC/q^\[w};5"4S{,U!6W}$hfI1 Uïh{\= ުe霅[lQ̘W@=Y|N>YӀ9%iffe"rb5,'rc\ӏKK,}ÑFk'kexE1T߈^/H軟~F9#A!^;MTAt)C0u1\P+c '<ܒ,eZt)pzb$Up;,S_GɎ'D!(.̈́Hͮ<]GE K2^T VnQZ[d|!@ygͭáj!Tџ~G I=8c dhZ;#BXBS+ -hTzA/b5N[֖˿!*r5_KM x OQ"Z7τOW#ߊ'LȐOP xwkݎUK^ %p鳡iIvV =;lVV&)q;`#04N |K!s !suB{p~!F+_<_n]wn>.sp1.?6*UG1)S &+)ydcB}RJ+UN|(R CĜ`@@ab7}+q^I7z].рXb[\F$JQ1L!PbYmB8"eu48qQ.ReSak Rd;3cݴ!fw#5bBp4Ƌ}_){m]"?&PxurH/أ ЩOB z.˫"~7o WXea!4G!a5_1n>X}Mָ+CYA,S. q]nϝum+ub)d1'~x |LexwBP晖svM^tCgܤF-iU W韸[e6ܴq F)"_}e|̾D_@V9B``;y?E܀ !e/]7Os\AKvfr$Z!?\[Zy﫸'jx-ЏR#A1^9EM;.PLd?yS${hvxd> :4+o3uka ݈ʢ:i'TρG pMQ˕4 O>$U"8md=$ @K(Ձ[)~!Wlq׸0O# TxM#.XaYb̗/Q͇Byj1ȹ-XWA5Q͊kA ~,p`9[w/eO:-ͫg=%*6~E)Tk%\\DŽ֛_Hv_ * LӘW˵V}Ƃl;z,xxy]t"_ijɡ񓮗\ &xm~W9 ۬8d) ;viɃ$N6Us 6Sb@4$E`H]X;mgי* ueʬ5j8Uִtii5ճp(2PB msC?0RSH?[ pΛsem 5\p~I+ tM7k#Մ7h,BBgOqňzFZX}BscOL}҈ *n_Cp@pn]aM3, N>QaCX8>#F]N{lO$^G &<- -UBiine  }rA*Re*&К̃=j|֣,< X}w7>c` *=zi6Fa ZgoYmQialT9 \Q/6U} F̴_FJ7ȳlMOln(2T 娐i 7RT06 (.TK'ሺM?yebN,g Ma1N7^Uq!D5쉄T`uJzBƥX%O(h8'lkd 583\#9k^2—68W(?& '}zb)f$" [& S&'Q̹3g,nΉڞX>sb6NSV-Њka:z^:&[wUR%#l1^խL͖.괷&しlL2P(ylɗ`&-28C Q|d('7 ?u(;[#3az34b|) {.&);GV>(b~֊KZ}M@æ`gu:Dr?.6_? ˑ\OԘQ\lk qgxg^,}{1.u t ,m]Ȳ?(vCSt/G ]}# vLMK~'}*ll$ s J|'[Hp j*cM-Ew 2n:t< ;!v _ dOV+pnMZ/q_Obu|$'4Я=LfgsGE(v=oD*o4*^  ($![I!ʘY!w.u6G_fȦB;֩aG ʸblZmsԉJsf*NqOaԞ |Z`MDXLY=EFHxͼxRu)Y[aRK%9^&pZWVĉpUk :ˣtCA=$ST0OCuBPPxC .lSJX:fW.Ρ!!'ǜҷ9:D$@Ƀg.{stTڿ2s("Pʛ;t'u\'CUc(3xT~ʒg g8ԛHBZG,~;ޯv=;jNqIqhj:{!g(M_#"5\|^5 KcmG(ndХ@k^ JS#Tf}8B-%F{z59׭r}M)]/ ȇpQ}ΪX@O2pVxfR;Bt[H҇f/+ g( YZ