perl-common-sense-3.75-bp155.1.5 >  A ddI%z `D2-pfAD2.`;cL&)jb[e͆c_;AuMGV?f5 $|u Zuy.! %M ^ir \.~M"}_2# (b4vK*oǞʒ}Jif(ق(K"'2zCP0wGևUcfbTR*"ݟ༢I6 5)7V_r`U͓e[·鲰>.zUU;=4k?0Ie;_W)„O_|;(h» .&$& J [Z+'Js#1~+ d^<:dbXݔ4gvd#?ZY=YRZB]^3#~jm-[PQ_t*!Mm$C9+b7GA %vE0j)Fd{,@"\duYbWO%@FGL ԾQޱ,c8ET.vhB;U'қ'Kâ zt>, I?vni]e;"ZM3f6,VjvOjIϓ?O/j* mԣ |9Up> ? d # P 7 Ql         4       8  t    ( ( 8 9 : FG H I< XHYT\x ] ^: bcde#f&l(u< vlw x < y lz p    Cperl-common-sense3.75bp155.1.5Save a tree AND a kitten, use common::sense! “Nothing is more fairly distributed than common sense: no one thinks he needs more of it than he already has.” – René Descartes This module implements some sane defaults for Perl programs, as defined by two typical (or not so typical - use your common sense) specimens of Perl coders. In fact, after working out details on which warnings and strict modes to enable and make fatal, we found that we (and our code written so far, and others) fully agree on every option, even though we never used warnings before, so it seems this module indeed reflects a "common" sense among some long-time Perl coders. The basic philosophy behind the choices made in common::sense can be summarised as: "enforcing strict policies to catch as many bugs as possible, while at the same time, not limiting the expressive power available to the programmer". Two typical examples of how this philosophy is applied in practise is the handling of uninitialised and malloc warnings: * _uninitialised_ 'undef' is a well-defined feature of perl, and enabling warnings for using it rarely catches any bugs, but considerably limits you in what you can do, so uninitialised warnings are disabled. * _malloc_ Freeing something twice on the C level is a serious bug, usually causing memory corruption. It often leads to side effects much later in the program and there are no advantages to not reporting this, so malloc warnings are fatal by default. Unfortunately, there is no fine-grained warning control in perl, so often whole groups of useful warnings had to be excluded because of a single useless warning (for example, perl puts an arbitrary limit on the length of text you can match with some regexes before emitting a warning, making the whole 'regexp' category useless). What follows is a more thorough discussion of what this module does, and why it does it, and what the advantages (and disadvantages) of this approach are.ddobs-arm-10SUSE Linux Enterprise 15 SP5openSUSEGPL-1.0-or-later OR Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttps://metacpan.org/release/common-senselinuxaarch64>91D.>AAAA$$A큤A큤$dddddddddd^Udd^^ddB'Adda36f0f146e247bdf891305f64c6835cd843f245b1e34825f97570fcb596d4db9639b184eeb5004de157b949247e5de7df04a8f1437bf11cdd154a5b08729459e3f36c6c56837d282b6b69e42f962dea919ff6848439346c5dd2abd539ad95e4a0ac89b755f9f71e47f812d72b7fa2e4d9556c5e9901775278a3312aaafca986e8de3540a3cd7ecc9a9dcb48975fe852c082fe17d4462f87bb72aa7cc47f083adf61f27bd17de546264aa58f40f3aafaac7021e0ef69c17f6b1b4cd7664a037ecrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-common-sense-3.75-bp155.1.5.src.rpmperl(common::sense)perl-common-senseperl-common-sense(aarch-64)    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.3^%@U'U-@QB@QW@O@Mp@L@L3KQ@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comchris@computersalat.decoolo@novell.comchris@computersalat.dechris@computersalat.de- updated to 3.75 see /usr/share/doc/packages/perl-common-sense/Changes 3.75 Thu Apr 2 09:53:01 CEST 2020 - make build (more) reproducible. - removed "portable" from the warnngs list, as 32 bit perls (as opposed to 32 bit platforms) are practically extinct and it warns about a weird subset of operations, i.e. 64 bit hex() is not ok, 64 bit addition is fine, makes no sense. Moreso, other than hex/oct etc. harassment, there is nothing in this category that could be otherwise useful.- updated to 3.74 see /usr/share/doc/packages/perl-common-sense/Changes 3.74 Mon Jun 29 14:39:26 CEST 2015 - the generated README file was empty.- updated to 3.73 see /usr/share/doc/packages/perl-common-sense/Changes 3.73 Sat May 31 22:37:21 CEST 2014 - remove "deprecated", as it turned out to be yet another time bomb as p5p don't care the least about backwards compatibility anymore (https://rt.perl.org/Public/Bug/Display.html?id=119123). - switching paths once more as this turned out to be a doc bug in eumm. this should not affect anything though.- updated to 3.72 - install paths were wrong for current MakeMaker (reported by various people). - CPAN failed to parse the version number in 3.7, try to work around. - move pod to separate file, to further improve loading times. - make it arch-specific, adding a test that warns when an old version is still installed. - due to a logic glitch, warnings were not enabled at all on 5.16.- updated to 3.6 - work around more 5.16 breakage - $^H doesn't work as nicely as p5p make you to believe. - add features: unicode_strings current_sub fc evalbytes. - disable features: array_base.- updated to 3.5 - localise $^W, as this causes warnings with 5.16 when some lost soul uses -w. common::sense doesn't support $^W, but tries to shield module authors and programs from its ill effects. If you enable $^W, then you normally get to keep the pieces because you change semantics of other people's code.- update to 3.4 - remove "regexp" category. this is rather painful as it's a large class, but unfortunately, somebody thought emitting a warning when you match more than 32kb of text is in some way useful, which spoils the whole category. - use META.json instead of META.yml - apparently YAML parsers don't actually exist. - recreated by cpanspec 1.78.03- switch to perl_requires macro- update tp 3.3 - removed "exiting" category - this is too useful to create new control statements, and fails utterly with eval, as eval will catch the (fatal) warning itself. Kind of hurts, but this is just another warning category which is too broad and has to be disabled fully because of a minority of issues. - noarch package o remove .packlist/perllocal.pod- update to 3.2 - removed "substr" warning - while it overall is a good category, "substr '', 2" is entirely sensible. - 3.1 Sat Apr 3 04:56:36 CEST 2010 - removed "parenthesis" warning: sysread $fh, my $buf, -s $fh; # ok sysread $fh, my $buf, $size; # warning Made no sense to me, especially as $size is in scope. - no longer hardcode warning/struct bits, calculate them at installation time, for when I will no longer be alive etc. - tweaked documentation. - fixed perl-macros depsobs-arm-10 1684330982 3.753.75-bp155.1.53.75-bp155.1.5 aarch64-linux-thread-multicommonsensecommonsense.pmsense.podperl-common-senseChangesREADMEperl-common-senseLICENSEcommon::sense.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/auto/common//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi//usr/lib/perl5/vendor_perl/5.26.1/aarch64-linux-thread-multi/common//usr/share/doc/packages//usr/share/doc/packages/perl-common-sense//usr/share/licenses//usr/share/licenses/perl-common-sense//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/8f6110abbb61bd1594c4591f49a225ca-perl-common-sensecpioxz5aarch64-suse-linuxdirectoryPerl5 module source textPerl POD document, UTF-8 Unicode textASCII textUTF-8 Unicode textempty (gzip compressed data, max compression, from Unix)P),"|Q,9utf-81ae046c02120fd07eeb1587cf48ae54f894d8d6450e6e2c51b52a71790b0f3fb? 7zXZ !t/_+!] crt:bLL rkϐf8UƐ+F䎾iM:+.'9l,?UKs;* @:Șy#-wK؎! +jJ>!'NV zQ1=pg.Ⱦ<"d'O+J P~QǙK WVPEY[V=4 G*|9;:nKUR?x͇GU<2S㯅LLWBUH7UhAU!d:!/ seKgwYZO&WWwy$R D%`pc&O=9: t"XaV{,įA"[ L6b0OgSfAtE]FCqJIRZw˨;qz \)}H +`($tw@_&mi\7[W>,&qwequMհ9 Id^BbakTvd$YVca0n򦕷%ՙIODqA4c[(Ol@p9yZW 0 c0v{\Lr;;pޣ\1IZҘ> 9@4 = qAV!zB(ccv^3 -[_F?sv-Ha?¤y0س\|Xſ(#h^F gxJ/3t٫]TlR^c3j!4$W,/3h6 q yj|!"YH8?, FhY; O .e`P: T%g طt:,e`V4 q Ku)L'G\-DR3k$H֠X|7Gl-_eyz/,[g9gfnjĉJ ,6Y ٣4IpxTyWy&%-<1w'cK *EOY(W!eo\}k[=Na[4q +!4ط<9EHgܕ@;}NQ̛ &)_4 yO5bq@hn2gڗX2%Fșd 8!za4+0dB.aG?ˇWP=ZH]<ܺ|H8n,TGByFY%[n$S>`Iԩe|:O6<.mh[{ՠvkvŸ9m90{bba`a :5Bq@^cVvKyEm%FD\&ْ~ pWá;We>hYn4gCyesiW_xB1`KUPC®s,RvؾIm \ RQ.a@>bG/9*k:-tB\k8m P,7aW/izâ aBAPtd5i/wYli7QE+ ѰU=޼\k>fQ.5S :׷.ysf O! M>PFA(pi3q/{2-ȄXI756/tZ u;q hRsC+)"NMS] D]*'úƧĴ"{sڏKx>K\*R1VM_rȷ5kcvAdKGnD: t\ffvQXjvdEo_\;e ei0k\qu4`q-}Gt3vG13Zg=s$@gϣؿʓ6q/u8qwm)bGkH l4/ 9b2%E-;Eݭ*&Unid(۬'}u?wc! -,}*=w-LXu$NIfqF Bp^S[}5 9V}gښz{<St;XXuK6-'2L KEajwkjlVW("#xp8LVK,[滹aW]MRuE=Gaދ?z.{`յ>~w3.Z&~;!q1. c\(cƜg}YV-Λ1#\^&h2w|xxՉP0*wNhmƢ~Kp5YHiMn*ӑl-MIy2Ke3I=Ȝ}e"{3VWT^J8%XjB}] ٟ|;)$R񊼚0xŹA,O x XC 2uQ"w%mq9cFo RURH6}4[״U2*HWz`SA^}C@ޖ< PIjzv' أ$(67eo. ҴrgB4 W A)y>S Ff$;R}x*q̵en}_pr{v[)HkeЦng\Ea'G{Ðvik~'5& {\G bՄGrpRRU/Q`&"Zf7d꿈tuv.OQS`K<6ʤyT"`6a 4.6H(|}b0`N QƝ`?`,0ˮAVyl@)mQ7W Ig:G}b]f]kѣ.9y3e-/ƛzw!nϛ> >h'@#j?-թO)]>GO>hA䗄h7qKN7GLBSHX٠zkYC(bvOy1Xl;}N4| G-A&Apv,Xa!2C" ƯK$|W-?ıc3"C" [a=%8_,isHr @c,[]bZZD^$loX" k63܎i؀I)8}o?bANJʝr?jNQ`'$C n~mo iqs*ɀ*ƎF ]K2"ZaOk-{fZ$t=euGXuّ~^ U)rs[Q1ˈxVWg (Z-SLv?qzؗF>ňXX$-l ip߄Ȫ'#XLJP7X'xx$v{o{N҂n6Yˍ׍J5n",z2CPOpQ%zo f5xTHa& d7_.Uп6?-Y\.fϲ(qm}$?]e02mjf'nys=T\7q/ # mKCIhA]FO!`̅t[xlss(RnZo(ٛ8 u%ķK?A}m=qǯhTclUF?‹[Ѹ*Eeݸ({*c/Q>{nm7*†$ȼu!oqx?8$F =hG)ן@i4i'CDHZ[AxհYTHYR{lfd~&70|O0qU-M\'ͣL>h)2R#{~=Ń*cF^_Ę7κy2$(^ c]~RκwʦrSC[[ItebdXylXX=`غ35gR:f~xnʥkzkh5b>_f "4y'Edc{d[i0?")vkCORH~1iZI Ϧf?7<V]f ޔ)\_qyKBJIıDR]Sh0PuO;[[<ә-/lg?\R,½u$X>T. ?]1 nNF0Q9Jcvd(왪um\$I]>&hi%_$8"ZS}mkwv z:%WW߷$>zaYלK>/2?z5/2He{oF@80aMઈ-ev%=H1lgg6G;("N+eC:9y|zb N^۶F8*?"hq\ՀQ-lN&cek^M/("ïw0KgIu|ylcD2tpOvf5k1O]0T=O4F︕6< ._9LY+Ro{jV;*6'gE{=ٌriW͡(fC 0MQgta0)2Yfxyx01^>'k&xx3d +Li}(z.Q--~ åE1lW_vbrlO ̻FshȏV,57y"iMoErʕRsn*,qZ1H5 [jq VP 6d`Qz8 N&-BF~0L3V&~]y`;00L9)#/]ԡm OVimL122"یgX!)r $1 +zXKB߬+ OFC_egM]_? گs/:htaT=V'θSw;vn=M2x|M[u6Zu>)l2RyS0"^hݘȋ)|*qp Xv\j7W%&^.ySm+3Ki=e+yqAMI/!~{c!1.[jiZ#/``o(lrgvJ#tN#d}Q%9HS,s#EwHKwߒ_z^'dCnc*cbOʸߖBJE #FͧDSrOzkTLOE>?J7t&*2C!jw=r'ր 2xK茮엡MvBQ:'=1>[u`w 0? ;$ӥy$--߮OC|$?;b Y>eZ\.{׿ԷgGe˨8.q7j]}@OCK^&N 7SpeU 9¡R:i{\ƛ9[D(k %=5k+~}2~vX?Jg 7J O6?]*5*HR{hE$Y鈚{^@~{rAl5g%6`1""r6x$C>79'uiz%_p7J ]pFUW@ r06f/8m>irCt+OhU~+21e1<*x8I1mR5z 7zA[>El/dG oY!lf̍2"hdg 5HR6U8sfc\1H{/!#LQEWPmI^#ZSwGRK:SP02f:5݇mpY\b|wtҠnt*ɜ9:i6 Zj EL&x+ݯ5v[wq?ikBqTY~3ۗ@^vr y\t+J.tnK|E-4+q:)5BPx}VT]Qtӵ Qԝeܓg!L%R$ 2!LtiNJw]57EF!cYde;螘! Ҍ1u>TKIn5ܴKR;Ӊ 嫲YX$fd%;A|5NoLMcD^Tl0UuzOx1)Jch@ęOyj-Vs+Vsy8 PZeCi`*u<-ohg.橣'JCd!~AZ[9,Ge7J}NQ8rB> ̈́Ը:{KJ줣vąbdsC6t;o \Ȗz@GT$& Iݏ}!vVc;`t2c0ż< o 2, [ˊ "'SB ;dT/;[2)3/هa +9ju>C,\|2^jdgȮ 9Fēᇚë-Tf_-ƀnT-?gX o.> g~~Y-2be B$=0QȌ#v-2׳ɧO>#glB(9m 2Qt#݄*F2(5T9 ty@fǩ@i~A}ruS׏m lCo^'FO|)*7p|U4q /f1&88W e 1RuScz l6 FC0-ޥ|6!pQsu҂e Na+y<[:K:}?sْ)16WS5;AL!iǛ xҪ:ZJ)lvf RQ;KD2/T{:(F'͗ bv/.!6S~fUvi[0H8}Y`B^4A_ؖۏ#Qp (yFRf&$=_, C69EB4f3#'q\9)棞Fl3rC+_.IC:@ߟ1xù]t|Jz+S"ңlhSμ!IDl3NG#^g k]UH &q~K+GU I{mGV%I{#ۼMvQu.l`l}"{_Y͌q$ӏAr(]!oLaϬy$ C4}7+{Rj*Jg,-PjLFFq+6Og2*OiSfO0.W E4 :Fl??ywlM)zfϦq73ў7o3Z򐹌`܊RŜJs&?+]̍s:5~0 %tinAvnsKǧh.UQt-{c'Cq`i<<\cvA6@I[b,fe5fJb )Zވfz~'N#a#Jť#񽶇i*3D*p9zmQ冚邆~";(n7PLx7HJU B͕e$/%D;_wCV,Ԝڦ  {q]4=,^b.b# ۇk4țA=w* B^EZ&x&MAc#%_-ES Av-8@ba5/W(VjpnI`'=2 j y((F+Sa?aFXobĤX@5Jd}ĘˠFQ%now^pX ci; )^+q8-Y`rӮ#J,L b3FH3#I v ()hcwN膌Go驥f}/r\W)_(dfQ{H+u?2p?bMbg~*۴xG olPhswܘ6+c zMyuT@q\= kr="*w`*[.!@\o9h3ouMEқx؄~(RwbFkJ~NXz3;jl9^WR2J 4zVzW j"6:y $C܄98y߮w&Ժ1uDTrlF eth۬Xhy-OTsOz/ m;Rk,sjdj{0j5iӀH8*Zee뗂Zj( uMCD|sjx\}}"^%KE.9c|li2ybPȭ~3ݩyw%[Z-;)h{Mўm\ߣzOCRMP虯 { jH/-kw/v? a~roE(J>:,[<5Ҭ^ܐ(rGE~uJއL?E'ZL5m.t5|LcwΓi#xj6-급kL|^˷|OE9XoS