perl-Lexical-SealRequireHints-0.011-bp155.2.11 >  A de'ҊI%z z6򱦂FDUMm:7Z!?,s"(%q`nok+>>ŧ61Z׌yU ,dʢβh>:J6GGt"CWp6v_8Y) 5'ݿ0! ^v @40* "5>}|=,gH*O7py؀~34.VЕ*]adEKտ8<ר̱2 TyG^@P#Z|,^TEyDI/ l)JXx-8ҕҡKcu6Y4P|ɾYR u HHH/7n}{P$E H0IS*^ 7ƒoY&/%,6b{u] t[\ΧR99[F& j$1<`gæ>^^E+Е-] w<97* 99NxcPudû/j:ۦ$JI5A#G~i{i}@;PڞA@B{ioQ*azvD+.P#2fzY8E@Cr`g Jޝ ǹy ((lbpUv7i}P >p>?d & 1 R       # = X                  R   <( 89 :\FG H I X,Y8\` ] ^P b<cddeifllnu vw x y$z0@DJCperl-Lexical-SealRequireHints0.011bp155.2.11Prevent 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 '$_').de(ts390zp28ySUSE Linux Enterprise 15 SP5openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Lexical-SealRequireHints/linuxs390x+` AA$AA$mA큤$de(ede(ede(`de(ede(fde(bde(fde(sYjhYjhde(c0e6427ab38ac6a590e0aba0abaf68a168b36feb13bea8bc88341f3cd7adbb818e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b85573a83336fa05adec5dd4a2f541c08e3127167d0421e529ee09b43b96e3daf03e6c358e3a8a6978e41abd903805bba462995e1a3887c17b2e793772dce883b8444837fd5dbc4151e271f239cb0ce49486cf7e215e9f948abdafab297d89f6b24d41ef458539859a6dfe90d11fffce719d4819598d40dcb2bb47ed2d859ac6acf9rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Lexical-SealRequireHints-0.011-bp155.2.11.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.07s390zp28 1684351092 0.0110.011-bp155.2.110.011-bp155.2.11s390x-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-SP5/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]=002b50c930812fdd6a2dfae1c51b63414d7cf6a4, strippedASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PRR8*{ɉh{utf-8f5e0836f590745f12a910d8e19cc56c808869eadd780e347672df839e6c52e2b? 7zXZ !t/ 3] crt:bLL d-%"+[m"Vc7r3wE1oH ӰOu2SkAo%\E, Mȳ*3o;RzV5V@zf5M/+{CX쏚ϱGY#sqUG{>^H^` QnASs*v &Q1dJlY#5fm8OH$ߑiVȕZy_v/B\D$zq[F[ƒYA_ÒcL2FεXHNl 6{k}ңܧo-eT0P,>i#lq<6)&?G:D˛yh/AYCoU#R2#i%vV9q+*+,R-*l;˖7y> Y{⛟B)R]ycnFMwN=x`] fm@Aa{5ߡꇎX9R/};WU_Ȟ>x`E͘#Sw\~tjfwu.4uVG v iEL3sov6EӔ)}Gvk)=Tt⓱ ZDd^0k'{@491F>7& wx:D/UfVm%'=*$ݞ<~g4~KkRީy靜~Ңg4c<}-&,E: d)X"b7̛U8oC;Ҩ3Gn+-*9 %}ғ~. Eas8ζnA p@Xkb,ΤYe v{10A]%Bo-,Z* =6fLv >izGFEpH}[2r|]kH[Ǐg㝝 8Tq7$vV -o$e3Nv@ F]\1H {$ri2;iAc gF`,qH(>"s!ml4mN̊~@ab >3fA6Z,T6W$+xq j_gWfMy Ѽ ,>`y`NYKju՘w%b̭a'-RYGtec(3ﵝcsOTQ(i0YC!k"qYdvOX]e;r:B1U9p8XG;_+;n h9Ʉ6BYcfEmh߀Sp% r3 Qru՝7xP*UYpr!!ZEҫ,H$v>ݏ9u Vr0gnD)F闱=#5b< 꾹?j(wy \dK >\/"篥͍g>YpJ*7fH1WO9yLumwc Z ;Bl6R\޳I|(F %;Voկ`Tlsׁ VUDWlWWW7촗CnO9тT$_z' c3QfDz,{J&/I8v[ֹ{'[m̜{q0†RHxyoۗnCjn:+UQɡʳm̚m73-sV{ܲ, f4atiM k4HpΟ D?HPr>uӊa;XS?7_ȩTL‘I=܇ƣU>HN8\q7PsupYaZOBboN3ʐ2@g׆}E0-]Į}263veg]lVv)|*rgwbJ,CK7 Iڶ'A'έ7An(,8);ꍎ}5lC ~@>Aj1Gp.2'}-'Tb*g#whxt_߮y#$;/m*+*&8L54"=!pt0f:;!0WRQ xct9!j~nQwbFq9E!8T:́uQKG@`'"+7աkTPHO/(pG..ZŵA=z c Thеoe9If%ƈrtQR.<0&PM})Aj; u܆7+T˅ߠ*;_ԧuonG"y-G`W6ku~I;BbOsYlӅ#B(T7YNk?3 ]ay-E(+yiv@ޅT$cވ7q J`mW<0Nl2&/\sj=7$ w 6QnT`y fuMFYw'Đ->jהn$Vt&*>YF|يnρr -a8ѭ~Q=27G̔=}lx;\5xq6dB!!@64] ^~V\"xH`B1 `[dS,g*gz3H2ϽF>(sǣI% iƙa̻'^~E=[a񼜔А47 ,m]F6Gя5ա~]V] ^+յu4lN^ֿrmͮsilX*V`wLWuxZ:sJRY3ZJ ,y8z@YGKȺ}?Xa֕2q5O96:(Q_w ~#|6dyqRtbBĹyOP -l6|l'/'w)z l>8O}@{sq?C5UO_.nbę"r䗒ҀaVm,ګe@tH\8eS^jx9X_jPPEiz}_񻨐p @475{قy T5 G\t#,$Nf ΆVkG|çwD;e8 "[g]Xf ?%{*=)gʎXTOL'׏8ͶqAZ6`'wXAyKBK7 6jXd,[yCpGc:&izG|c N ҁi&{ݫL*sRiIֶS%᥵ :r*X a w})>D]T@a(J^!?Jo{$H\W})2b@L͒2]IOgƔR^ ¥"|:rM0z$r8{PD4(FC-lR%#*Wyvg^s 8zmЕ7k'ڄ D\FR"tDD`%b5fm[Govi@%VZJ[M0tͫc8c- >kI6 'L@Ӯar#BȎ9p @Pʿtĝ{a$7C@^ZRlFψwYϑTͮ޿IM^V|G"Ӱj(7KqLԢ[]:ӿTTx4HTd9!Hg]=5cQ|U.(3C-> :oirG cWԧceav'Ԕ7sF‚黌j_4+ӸV[wO:0؅Ƃ="1,F#S'hk|+/1awN/ +TYF14j΃'{RyȬZ\,4 CV"al@Ⲻ/Xb])^*V@ku,Q^i<:]lIl1Y! 13oaKE t"D#M"*PC˷Ƣh^a vOg:C!nK!j„lW*xܗfFV1wʚ]5}M=;{& S[  QxV'[> !h 6,T86Pg0 Aq LA@Z57D%Nj"̜&MTRbܘ2(U>ԡ)M*rRggWn*L|8JB#1=$3a?3ZH:.*QGN?{#O–cID(4z!fA Jb'AYC5 h N|F[i&Ty_=jD,bBE bӻ,Ɠ3ض8=1q~O( >rwK`Ӏ |.>87ח9v|&%rf6d*ҢWEB? ?tn_ܫ( 懨 tF"M4ٸæEUA.KWkgG H.-t7:L !s6j-:6]zF+A-#ð"rΤV]2j#{0 "mͷle@eɻ8-B?vN@\e Ť"{bI ˞MYTƅI75v@~ytUE-&y*ӄCI uÑ9ΪXE%l'(=݋fwoH:Sszpg Bb ĠD5qVˈ lډ+8Ô6XKO%>:[vUu\R㯂T0 dis8Hbnގgt(M\'ؓʞGz: $Zz@(v9ĝ/myUw/+ uz725e ZLa4OPMopjҼO/M޶y/L1 /B-2U{n@O  >‡p^P?f; D-a,?򨡛'i6ш-qOí{$3~=LǣW1'D 6]|wz K:ɐ0/Yz] OUC$RDdƀ b/72Rs}M U @{|NJyH-3wtoMZ0Ea$@/;knG}][#cbCxԺ#o^u[ ̤r5ߠ;%`6_zKŞCaTL (k8t\2PC)(⨴ʺPS͍Nֹf2)%2&'hdV.y9Rhc*4?^o2Ea0Buv%trn2R`vCdX)  !А9!{ f{Gⶑz);~1FW52 8N΀ȷx(C5[dTB^slŧ♎tS+~"DJpk= i|}졫`o+cr1%C4d(j*n,x|D2_g82hC-DXg?V}wup>TzB6`M|߫xA88^=VStJư9)xoU V;)n쉫B3n4FҀ#ɐ;9H^ex arS,5Wtt|BOk{TyDmgK/y]2F܉$!2K_-!O|X5(wlp KM;(dt$nuPjX\FlЪf M wR%Zu{@v )bTZ[K_ZgÁ]^~2!ijI?~Э<(>!0ZwM#dtٖ/(Dze* -;,Z}|ePv’Fߥ6pqI}èQP2űĝ'FSb,Ww͘xV 7ۇ=,x/A\*L$%ai+| * @g? bvY,)*Wt],ROPCBo|ՠp@/!\3Qf'w# ?"aF?D{ngeƶ\C`>$S@@z79߮~ =\h+eJ ԣAv]M%V@rկ&@Y*jZh&%j zqJø ?ɜ7PwIlH(lr@1 #-:@ iԏ͢eT&syY#A&|ȳS /3`74߯_:Kj^;])Z*?+vI혹$nmG$ K%z=?TpRj 1H[!pV'=M' avBO:&8)Ơh!r'?ƒ }ٍcڌR GӋQAQ>z_^S8KG" ?`sr9h 1QkJMzfvA )ʝ0~5p} u.[ד7|,x Q̈́EJ6`z;OF {8% Mco7?@`bAB4 83׻.'dx8AvSY<WZ3%>bwgSe1Z-|R _LLDG$Q-=*F_Bx& WҟX$CS):^fA!bkŸjH=&8/ʀߧ+ϜWFh&zOlŮSDs7)Q zQYÑ =Ȓ[p47{ܷbI@|esvEk LD G/>tw˃<ɡ*ɮsxr,(:jY4'1rStkH;B'ɿZ5n*ԓ}c`GKuȟfv$D`JkL#2% V'((X:4 B,''>?W8HD9;LDž?',L(ζ#xۭBv_,TK?}A؏qQO}PXr+pfK_nIf(Kw(GTq! ?yX_ s9(A_Vujٲ۹/L{$}jAۤ){;TT.:jH)4 'WDA;2thCjh-+'1ԝY/p3K-tKYnγu SٰqD|Cmx$Gefb q!Shxր5uV$Д?%m"إ+gIs-Owzm/5dGeU 5PIr7"(:4|졁q)2fN3ȷHOkOn:a~{ B|\P_`^r.p_H*2,a)a(駺5bA瀊5TIYHc{|:p]O 7AI ?LOu4!{&#`$*K\0G};HXV_Ρmc %SW'/~(y0V! OcҋnܿELZʚtd0gAeCn ی7%2%%jê8;HS-ԣuF9E߳*Rl'mD"9Joyw +P@koT3!y>t ѨӰ~Iηpie:+Q 5FIpA YF̗ѶaU!$J-AEئKQ4붸4, `F|~> ^Y&Sż,%) UqrwR܀D-J}Rb :мqǏYLmZdߺ|rAmCc3tg݄hy$voq^,[ gz R H7b+3f^k-.pc L5t0[6" x$4k+ ~_RA̞~ ӁaBg,ukuy^J%a;<3oC1u%\M͟uC2HbQ;IvyK)q CZH/^~J1/%J!**P'ғpW 0]E,ZeD '1B @%=5$.i ˬ@nKol4l ׁ9?e0^OΕrO.cvc}nIZ&0lƏ* s͆??RC/SaIV D1t/j.*2LsA`y* )S2]gȒ@EZWXn)zkGehl;kY>{>gK,wLN&F񗧺T; |+TԣUXE (.sS/A0bM ZyMɯg,n.>v_q)ЦфLC {+ң"U^I Hzy`JW.@!70jS#GKD銿@At-T _V j;sXjź6={pWl/'mgy YZ