perl-strictures-2.000005-lp151.2.1 >  A [d긋/=„.'x6=N?xhTt > O܌ę<{_<-JhV Sf"(:YuQ?};v6op';<31m}CؿIG;MiϯԹq`v+B%O0-#b#DSR6s3or dB8{uxR 朌ܨ%GǏ/GIZ!?O!WCdb8e656a38e6d6a271b53807ad4fc730c4dc7c9f4d57bb81f444581b207e9f0a09c836c865d56346e0e82b9f4cef0afd35f02716[[d긋/=„Q$i|34Q!c<9ЍV.GoUg⧂D[E$aQbBͽCBZmUhbF ;ԘP"b)Oғ_y- Ѩ'x:{\"ۗIk^'{M% &}er%ۆ-- >,? ?>_R$1(M-2W,Jx./gS_:,mR^juh;Ljj2T>p>?d % Q - Gb                D  h   ( 8 9 : FgG| H I XY\ ] ^bNcd]ebfelgu| vw, xP ytz|Cperl-strictures2.000005lp151.2.1Turn On Strict and Make Most Warnings FatalI've been writing the equivalent of this module at the top of my code for about a year now. I figured it was time to make it shorter. Things like the importer in 'use Moose' don't help me because they turn warnings on but don't make them fatal -- which from my point of view is useless because I want an exception to tell me my code isn't warnings-clean. Any time I see a warning from my code, that indicates a mistake. Any time my code encounters a mistake, I want a crash -- not spew to STDERR and then unknown (and probably undesired) subsequent behaviour. I also want to ensure that obvious coding mistakes, like indirect object syntax (and not so obvious mistakes that cause things to accidentally compile as such) get caught, but not at the cost of an XS dependency and not at the cost of blowing things up on another machine. Therefore, strictures turns on additional checking, but only when it thinks it's running in a test file in a VCS checkout -- although if this causes undesired behaviour this can be overridden by setting the 'PERL_STRICTURES_EXTRA' environment variable. If additional useful author side checks come to mind, I'll add them to the 'PERL_STRICTURES_EXTRA' code path only -- this will result in a minor version increase (e.g. 1.000000 to 1.001000 (1.1.0) or similar). Any fixes only to the mechanism of this code will result in a sub-version increase (e.g. 1.000000 to 1.000001 (1.0.1)).[dlamb227openSUSE Leap 15.1openSUSEArtistic-1.0 OR GPL-1.0-or-laterhttps://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/strictures/linuxnoarch9%%&TA$$AA큤$$[dZ2Ua[d[dZEZR[d[d15f1af76f03e49196a8b70f7ad42518eb67cf5bc71e3c7e890555f64a3a6652b1a8f0eac126b8863a2e176b18634ab743354784ed59e66795c2f38455449ea36f3e3b0eb0fa1a10149dd29f2e8fcc61e42a4754bbc73c130aee2351b24675d2266dd798f43079cc323b06e36647d2d763f317abd26713ed9debbd9050d9f7d134862fa6e369d71e5c57c73153f42457e156620bce1be5dfe11b82984257ac9977c05ff8531ea2ac61bc82a61f4f9178d30d9db74ae63dc91c588f8a315d7d748rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-strictures-2.000005-lp151.2.1.src.rpmperl(strictures)perl(strictures::extra)perl-strictures    perl(:MODULE_COMPAT_5.26.1)perl(bareword::filehandles)perl(indirect)perl(multidimensional)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1Z'Z@W+5V@U3@U-@T@T&@S 4@R;QO@Mocoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.compascal.bleser@opensuse.org- updated to 2.000005 see /usr/share/doc/packages/perl-strictures/Changes 2.000005 - 2018-04-20 - update internal list of warnings for categories added in 5.28.0 (no behaviour change)- updated to 2.000004 see /usr/share/doc/packages/perl-strictures/Changes 2.000004 - 2018-04-19 - update bundled ExtUtils::HasCompiler to 0.021 - update internal list of warnings (no behavior change)- updated to 2.000003 see /usr/share/doc/packages/perl-strictures/Changes 2.000003 - 2016-04-19 - update bundled ExtUtils::HasCompiler to 0.013 to fix potential false negative (RT#113637) - list optional XS dependencies as suggests rather than recommends (RT#107393)- updated to 2.000002 see /usr/share/doc/packages/perl-strictures/Changes 2.000002 - 2015-11-04 - use ExtUtils::HasCompiler to detect compiler rather than ExtUtils::CBuilder - more comprehensive testing- updated to 2.000001 see /usr/share/doc/packages/perl-strictures/Changes 2.000001 - 2015-06-28 - update for perl 5.22 warning categories - avoid using goto &UNIVERSAL::VERSION on perl 5.8, since it segfaults some builds - also detect development directories based on .bzr directory - various test cleanups- updated to 2.000000 see /usr/share/doc/packages/perl-strictures/Changes 2.000000 - 2015-02-26 * Incompatible Changes - strictures 2 fatalizes only a subset of warnings. Some warning categories are not safe to catch, or just inappropriate to have fatal. Existing code looking like 'use strictures 1;' will continue to get the old behavior of fatalizing all errors. The new behavior will take effect when no version or version 2 is specified.- updated to 1.005006 - fix extra checks triggering on paths starting with t, xt, lib, or blib, rather than only triggering on those directories. - avoid stat checks for VCS directories until we are in an appropriately named file - various cleanups in test files- updated to 1.005005 - include minimum perl version in metadata - make sure meta files list extra modules as recommendations, not requirements- updated to 1.005003 - added support for PUREPERL_ONLY (rt#91407) - fixed using strictures->VERSION to query the version (rt#92965) - extra prereqs will be listed as hard prerequisites if a compiler is available- updated to 1.005001 - fix skip on old perl on test script - detect mercurial when checking for development trees - avoid using constant.pm to save a bit of memory on older perls - update to v2 metadata - fix crash in 1.004003 due to qw() list being readonly- updated to 1.004004 - fix 5.16 crash due to qw() list being readonly - check only once for presence of extra testing prereqs - explicitly specify no dynamic_config in META - add better rationale for the extra testing heuristic - test-specific strictures now enabled during 'dzil test' - switch to testing calling file to avoid firing on dependencies- updated to 1.003001 - fix test to handle defatalization - try and run for any checkout t/ now we don't blow up the process - defatalize lack of extra testing modules - disable extra tests on perls <= 5.008003, things do not work there as expected- initial version (1.002002)lamb22 1528390881 2.0000052.000005-lp151.2.1stricturesstrictures.pmextra.pmx86_64-linux-thread-multiperl-stricturesChangesREADMEstrictures.3pm.gzstrictures::extra.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/strictures//usr/share/doc/packages//usr/share/doc/packages/perl-strictures//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/e22ee2fb20fd27722840436aa4e9d3b7-perl-stricturescpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PP&;Kte(utf-81961bfebba02d602c807fb2db0ae5f8b49b78df46458d512f5cd5644cd283fd8? 7zXZ !t/S:R] crt:bLL {ke?thg:ݤ'~ }f U:,MU ob 'HP Dj_"c8ɭ瀷7R3 s65FMVcol4{ I:Z8Xܠ%._EMM!iՒ?D lZ6d۱`3Fx?S};yoW00dP`Õ9(>0Y~4NyJ<ٞh0$Tp,IΊֹYY5;C?x|J"ԄrSlnNO +U F0[;ۣh/'Kڌx>N3g⭂"s_=YXPî:V-HW?huWO vuv _*?J% )da DSߪ {sQKM>N* ǧqǟ5-ݤMʂ/be~ػ&"mt%x,Sgn@o mIHӬeΛ69iO2^a[6d${{t-= ln2p/i ,$5~(;58\gx}9N0j9@C+$-9* ;X̻<>= E2F885i):^ptuJ"4{ jh(vVzEcj#HZ4]*v!Ky :5 ə5ҳ wv)ͥ(2j|wH٨b_7E@Dᖟ1n |wBb w;A<[\PROx|~V"|=p\^K!MBY+KRgӴ#q&ʚ(VlswY/A/&tܛ)4fb369a0KWSF^KZ)!"TOˍWp_wR7)Fq!y\qIȷcPܛ&_p~NT,mT&iQq0ne8kZ%Ѣ1 N@wDb_z2-*|;Hu] /R7SpSP\iv䵸41ڹNu!@MLx/3\*/ٮ@S]A+}@V삑hb&!ݼ9y go/o&5krt0M.hV$P[e,0\Ȱ}Ϣn4W ՗lm΃۳UFc!gm_R =b!~ٳ@k`Mޱ8?H?/ZkK_ yhjA#N/ d^f/[NPy &֍iS=s@z2܆"ђf}Qe+6^㶏~40Zs]uJTf_N^MN54=3r^= &t_Sw."No8fFnsq`{Ť*\˛HlB=w t"&7z5=7/ҵl:ZTTd&k .b10n%МWu|+eӫYT.M'Ğ686TC?XICF>mcw@Y" )~@A,EsmLG^~52u;OPuDQ5uVS$g'l8]g^6t_THh/nt` ߟ\z  @yc#O'0rh6 \r`cFߦ~pJ_3I' Md(i~6XWuS:߅ݯHd,2YJI:zXƖL̨}JU]lk{UM~nQj>Zxpb6ש77sFQeDHrc&lv [Dzd_nښOFO !%yJf"  S2X)+5:0y&.R7h_ \wD3J8t~_q/̀] YGK0kmn:dŷ,H`Hhu&V,;9?Y~h<4vS$Ks eի ^'=sJjAҗ{.[rQś9>J╒ yVnt)h Y],z%i͐ȯ~K|~}mJ;=Go+H\wfV{ Yȕո-$&@Oahݰ*T0$=nÎ~GS!(Q""j |+*fҽ!|$o 0ea98}gc%Nu!*-Sc#9d@q޺9 ~l|Nr6L5L(gņ)6%-l{DI:+,RhYtQPgK3q̶= cw|BGi=+l|wP!+nuvzA:&u>|=#JESg"cC𬿢$ 6 Ӫ,̵%;F5,qԤȼ&<[vc= c@RչVMۚB _&0|Y"m*V$4~N0xHѺ:@+^#oh4Ƒ\b lJ_~˗:9˫]>.B(?,A\zQWW^8:G!`=f~S Iخ%Kٹ R5iMGU9A\wz\H 8&w7"9zⲗ %{we]/4s}~;YNToICUHMÞ4:]`Ĺ)sn |)VY ,,I&[Kʇ;cVucSb"ni0{]Aca~YΕqVEVb҉mHT_6uŲc("4⭿TOfH*vW;6۱g7QlТЍi\IFkZA 뜚S-C7&DC1+ ;M6jt |iM$3s)Y}tV'O1`LB$RR0>6$/P2CuaBݜԦC\8oh xn!B l&viZ0.c+RaZSp^N>?-*xQ7 0O##q>Utxblppn! 4 f`!6H 7xP,2/_,!ѧ7|÷Qy bO`>Kؑoh mp(Xnte=T}~5Ik31mʯ}~On>Zd'׈|2CG& =@ϞQG rh1*rG,xut@` r qIt敎 +@F<2PZtj .kS W`6&QK{֮`ʫ9|Td( FXhu>^ >ψ0wxr{`)Cϵ=ܧ^j{3r!p'IdM N w;YJyJ pU4p?: _PswM!I6)wI3@L"%lz*fbvP. 1S]A'AFJ* k;kIyTEfѪSo8zH[;$UowR\,\kښ"&J4uud| qOtJq6EA,)u,[](Җ^>b7t$ќh5Q{7B9d]K!$5tK'GvB睟Q±F3ȁR\d&π(P2` 7䎿R}|z4m J#uc[w- uݲb7R8Pp%wN$9 Z9oMdYPHEHTp-1ap>0cor<(~Ђ7l*w6!!Qw͒Hr [yw〓4 3CoOcC)yvhV;X2?t!:9j#?cCXzʼn9au}|KT?}D]3ͺ Ի ,YbY1oҧ=iZ9FmPeΧ^UDSl9B`!.@岣%*)/.1k=*%f +_Z_.f f֟&=+.A$ҤMϿY9g,ϑZMltf3gIprTG/N~e/y+^lN$OH/ԏ>RuM: ݢ+Qb9A(u6HNXc?V!V$'@} IK v³oSt#MxV&Ѥ^5驰U!qYaا{iuaT SIܻ_p9@n}5D%jc?N 3J Q8/Շ9$2ēC(7&$|-SӇH67*{: 1pK% K"cw54i4x0!H ı>MOlc $hIfB`躈2f6i.r]M<4 '~aك$\w[`lZ4";[a7T"5c3b*tq!ˑ= 2|{/ Zu ] mnsP͞O `%X"/U&)V(J:ZгE`a"ih"Ge,ķTH\U0!`ށQWrrF^πa,.;(=mJ %l1gƅYsjɅt*ks;3OG}0ԏWBGb:RH݅+ρ4z]\tB;KZ%ۈTyej0&m-)V_+,7R>e)5ԯEA '. FZKmoZjfh"H RF^_*oՄоxws͡1Ξn6z @aoOd>O`Ȭ<[DE[$}EYDn꛸0qJI@H߽z\9g t5#o֢n9Ɛ%rx2+-QwςU(57Var1ˎcѥUK5&Z;jHrgsQ %6 ,DT e `]yO.- lCeuA1Lc rffs!ꥷvq A2Ohy $T>\=/s'DQu֊Pn640\AVwrGM~BKhR_-,ˌ^Q>m\iWǾjjFt9>=&O4StD8.x1t x]lZxo4W} ,${@ns8p#BߧVN@뼧q4-olN-HҊ!eIV}2l|)9k˙.ߦDŽ8Aá6:vg !ű:J*p4kvC *~!TIxv"g\)7+^S ߏ,S\ބ8 u0_wLnr{x ht҅#eIˡQ3}j:!::h>b]=8/3҇"]Yt&OU/ Zgf)N%e9y\%qqFfޭ K;y[¥-"ɷKƎE pDrZ=~ bh9HfI9E9Q߅_N"_XDM{b y*c~z?]om OL˛ZV?EYٞqgǔא4:vK̃Tj6Das'I\c= 3@33-sm")^oW$R3 i2T)!6rZ[RWy9}[u?*ՓIՖ~ũDo:Qmڞ*>5(1 1: w5tn="Բ;Sv7sB_fj.pCf,'xj!ʊh޼PjV!cFZk%B^M˂9q$ETa&!qJ,OǶpCA`11B$nf9^WﱤsWoWg{&s;L U`.?Cbwм$Ǖږܲn/\*jH׭G(kiZ}EDWE} *vffْH |UH;Tgy{˭c"xꜰ):cx'mK%aMz$syjСc9]<,!ļ<)1` z~חk,M tmu uLQ[3zg?i![ 8Qg^0H;( *nI\JR~Tӯ3`ƺDRG mɳYY/ Uu 3GET9P2ڥ.Os} u.$)sq\o</RTzO>q'f[酵NtM~Rj׼Ĉİ/il!Gh5G(?A~P<(IF!V#ڇo>64#V5L,#q-CJv?jHmz(&%n#;.<vc a+Z4"ٕ BQV1[gU'c!7j{h;(&7RA G*7L7Z~ fQ+,cT0  x@R ƐW{r}bKht,8fɭ.裤qJu(e谐n߯wTNoRDi3fAuCeFqIk7ԥM=?KȡD6ɽws4FH0+v|FE-_ !9I)0ħPӲY %yhf HxrcD8F\*׵m!lk0pf=))Y8L`$a`S!ϮCpw,@;POU |m\.}m=2OXOzZ\Q1y-(+'rڕT(7̱`oS]X[0I_cgUGC9V͐&HjX]}7h|EhJ}%ڑmSfOޑ][AH^l8XAka>YyJt2"rV:]!)UZE$iK[myw%3AeӢn3f3蜍11Rc2S:V G8j4%m7#V ~eY nw_dEi`)".El (~tӲUs굊.F65qj4E'@$kX;5 B9\/QDjXEG| k~ aC;HF\]%NZG:/{#F,~]֛dm^m{dT,)JA_ -Yf9+.-O˻P4ַ?'-=^8)19q HYHԚzYCSxå AUI$YKIJpcu7uUi;KF{Ae\l5IW{8q.3PiE]D1;zܻJg<L5Vq@c()}@Z"H>C8kr􆢈3Y9$l \!^7lrj EHzf zcazk%, 1n|~(!A=0(t!ڮ0lQ=_/=b<TKySEPFSW#z$=([oگpkp9R:tlI74ZmrjrѶMFF :F+W#b5XYņz Vd"W =n6nF xy2PVb٥2czcuNF!&ZxiaU5ON`un}ez2lyMIٴoAđF[z4Si䎛pR`W$8;rǫ3^GjWe!rIiǘ]LfܛGkό508FKk@Qty"'$ k̘+psQ¤%  {Dzuc?T\ 0b45WHŶouԞV YZ