perl-common-sense-3.75-bp155.1.5 >  A ddsI%z "> 2F6[Fy1.7d<(,n<;# ȸ }mTc(O-_R.sWzFߝK:9f4 !T3#Vя*/qeٍ:u%E6qτj/=^11Рgřy MNXb2$1׻,T~Ayڜ,5 󌞼@'Ur NmZگwmdsV6sSAѭ{VWq#.HkWU+5a^9F}k Dd`̋yNRKKࠈ_)_NG3x X9143094dad806e13f31fff8ee5cf4ff1c71fed4bc676474436dc7665f8f65cf383c3e3db8df319b56eac0ad620f2e150d9a4844bP<ddsI%z buEeQ+DUl.~؛Wh$Ěu(;_X:N7,čS̀Wo:,f. O_ xWQ61k%FXH V B EqRfsž[y@tq7W\%76yH4b𙶶g ĺ1递``H= ۧ]0ҁP^l$y_hOw;^'ļjRQ@c-0-P&<$ :4 9V9; XM d~/':{i{'cВ.5(ь*ZoQ,b(B7om%/Q}QPˤ>AH ^X:~u4!uȢx{ZcGbH~vke h^a`11cUGf0 D=k; QoCųѭaS2X:.t8o[~Q2qͺy(<.?zF)\>p> ? d # P 3 Mh        0       4  p     ( 8 9 : FG H I0 X<YH\l ] ^- bcd eflu, v\w x , y \z ` p t z 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.ddklamb03SUSE Linux Enterprise 15 SP5openSUSEGPL-1.0-or-later OR Artistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttps://metacpan.org/release/common-senselinuxx86_64>91D.>AAAA$$A큤A큤$ddjddjddjddjddj^Uddk^^ddkB'Addja36f0f146e247bdf891305f64c6835cd843f245b1e34825f97570fcb596d4db9639b184eeb5004de157b949247e5de7df04a8f1437bf11cdd154a5b08729459e3f36c6c56837d282b6b69e42f962dea919ff6848439346c5dd2abd539ad95e4a0ac89b755f9f71e47f812d72b7fa2e4d9556c5e9901775278a3312aaafca986e8de3540a3cd7ecc9a9dcb48975fe852c082fe17d4462f87bb72aa7cc47f083adf61f27bd17de546264aa58f40f3aafaac7021e0ef69c17f6b1b4cd7664a037ecrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-common-sense-3.75-bp155.1.5.src.rpmperl(common::sense)perl-common-senseperl-common-sense(x86-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 depslamb03 1684330347 3.753.75-bp155.1.53.75-bp155.1.5 x86_64-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/x86_64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/common//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/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-sensecpioxz5x86_64-suse-linuxdirectoryPerl5 module source textPerl POD document, UTF-8 Unicode textASCII textUTF-8 Unicode textempty (gzip compressed data, max compression, from Unix)P|,tL$utf-8fe410299b4f94bc0541700a8be7181338feb6ca283ad91a06d99d676745e5d36? 7zXZ !t/[+#] crt:bLL r )^%kx;8H<:+=W[37o捄9_N64Д:;p cʾp}U.59fk^0Hs8Ql"rIOx;bϖ3x?ҵ',C%_ˀDz@f:rM(+=ͪ%DI@ْV޳Ի/ޭƁqbδpo8&Fc_!<񆇳lDgaԊ@ݟ+WMy .Tt`Ep Y>f9T}9N6U1]J'4L'r8LBP FpV5rĺd+ )S"Z$h?v]^SNo75A.-:Nm9Z|eY▉Y0%c ]We g奊d 4~^xFn2ӦqZ;ʝdXx$yךp XCԘ_I 坊4&d3ZD C\/M >;.5&֗3ColsD"`Z an|y.#8T Y$X< rQ Od.￯b6K;mQsJT6QD$ & ]Fms!\(i2 txk.zE>.#Nef΂ Y$׍Ζ͔xNcV${W!6{ΚpMHD5J1+mgl_*o QY9/H_VzD ;'0 O.r[Gh[etLsma}F@@hwFq'ٴrC|hJb ' ᳧/s^A:Aad@uƫ9' 8lJ$?m\#MD;,= Nwl|_/hA#jf2O5daW1xxcx[n뾲 &9 8YU"_7'n0Jc7cpwh`ϰ}{Ќ؀ Uu$e[Qi[X=8I/ax{Kgo}k"hR x6{[Z wYE6xle쳼>zɠP#X-(?0zk<7̄0b?jp\;OD1z3_8!P^x!)L`5!1_hMwk阮ٷ_vm3*)ID`sؚn0웇cpW~r7oOgr1l?R຦4\?C/'#Ÿ-s?vKK½RZ&4:*-s{$Ҟ@[o/Da: ~%o a+G_.*g-#%6-wbRtײX&yxecN |_؎\XV~~di\4Lޒ@$b&H$H,Z0ϗ>r]4b'#d{I!6|3vp}né Dfې @7Sdx {Y9u f^&iO6  PI/jgcLM$bZEiZ* O|j0dG^\eB=qb}a^Ϗz08IM'Ic] }ḮӺ(;K.v_2)ZKwBb!%&3S1p{k!6ܓ>TP A |ߨ'lp7lTImXק_W+fFVGl`?+x:y,"4'EJP? 0.Y DW=B G@@@[dž:P\A*NY"Oh94R竊UI6搧hD4!1G3&ZAl"m{ae`C1Eڽf'C9 {\ƍǛVz}e( HE+ v0|AB.+F&ol{O{WFGByNQjÓ|x:_\e.Ԙ)rs5uQGⰁ , lZ4 =w;_ _jȑ="A,kfg^~ҐAl~ mZ6S8ʼ4ӕU.x {"$%/1 hSt⯂%]ݒ6l@ǜ_St*BV,j})Aݰ|yx1}3ũT2"F39d젰`:t x" u q!(Y5ߢS`=Rk Z;c'g&)PNdZ.d.v1K dBdȔC߫z֙QϪA1n?;?so|Z7}pHDF7X&M/`} $e[7u:}fe|vg_<(CfͷzQ:yYkBj!sGp3OLfMY֘ʪR?LG7TcĹ,՘W6j :Q>zԎud9:ɯ0e"> ?b憔CjSu"x*fq=]r 1x$k ӜEk ܘm![~|P FB L#nd{کga7Tp̳e/(KܐῙpT[Nyg(_'/TpXx}Q)>Lu/?)kb٭!?#ԠOi&x ~IA*g訹Iuao@fտT!FߪL]~ hw_|KE df)zwx6~8p>PM,fD+m" Fk,x}}y`L~Ë́*{Wod 9UΜJ# bx;j¹ { tZ&ܰ):0q tBG􍳖TƣQM-G<{p.R^I FI$7w=gkDhq\ YhُWm~pp6`p=מ^O xҠuZB>e!+.`l>HK/UmxܨᏔB8ǔnxύz1d@>Şv!pXy;R'%KVF! rm7{SΦL&5M#' ផeIf,AwoiK"HuDn?86nl6Y ۺ5r|=x,2Uuϕ`&.[ԃ`}S zEG1hM,Ј˶u-h;+\D4PMX/255m^TpAU6d{eIdM[[* j-}:\d$H@%Tqf3( ɏ7]iRhVvxnA 0˅[naY*]f &,$J&aa2;50YsBѱMٻl^:ѻŕ /,Ɖ\޹. ݗ:c~H#nk٧!KѭZz 1( vb~I ,!D+!'t@ K仐CZ˴10 jdzyRR(j>EFDlI8\Ofh!U@Sye$.ϋ} T3IjJndDIa0+̓oKbQc^Fz-| .w7+ʲDg`Ck0AԒJuwQɩsI-d?dq,J8%o]//H‹tNW4?H唡f j-=f3$eWQ-@:1Uo|sD34FX(WAR'j}x; #s/*Eqf8ꑃaY @8&3搔195JP4o3Aj=( rYBsZpl46X/.'nK&9^9F+VfkСdVK 39"e4~.zIX,+7r -Lr SKpk@•U—AF- -LeՅ^[o9*[ξmOPhG6CtPT۩GuG lA <(;$˹ /ZJFq@ *z-4YLf5:ڤeQQiG}pyvIxvhK")/IK>C+8*K\xes)K~}:_o!Ӿ;HtEp V7Ϙ2S=Y9X5u mY-[@~H@ PBCGCjm*'ʥ2Ovx}tC4bv *toa̽ЩWS=A|!g6!| s&I*T١&H.:j,+rӺ^!νcrFI J1~^HZ`OtPD7eV:oN҉۾A,:蕃;92VՈd_4LjׯWue,TFbPyCfT`'5d XCs4QL5"c#g =WZ ~hH2@]Z)߀62+a`J`r(&̥gQrv4Sp >3m1J!J;0|7tHC6ż̭z +q"G4eI`U.sZ(ےw8`g ,%-Csmy܉Q xUCJQ^iIW=on+c~ ~ /ӛ\?EpP i&1^W5dCAT~,o lbY/\B 'wCؤwzj5{j#|Z;{b&!xM-e4rÐh<b?% -3$Iilȷ;1=OvZ셹& e/-[LKN15Mm! ,IO#e84KFhftPȮ.)B'~4K*Byxs!㜜0B# r RųUWY'J@n]toKQAJ`ceϴ+*a2?n!\d!5m5@͓Z#3{1[㩪4%/`%[}ᆚd)&]lya_)taAnP=DV)sR-&C``&pX%yTǶ'tb@Mӕ*ǚU)l"pnQJq7^ee?g<-@o/GƧKY IT^RBHìЎnK"[0xiF˥e+CZ_ysڪSi&N|opmѻ}%NA.E^ 0rfRu !6D&E ā.34EyTY2j (SjC0~|}=ZxIJbkzL#-JoJ{">9"m_fNnddx,p'I+ b: }ga4z$s7PV!jBˡ1w<=;÷-~c;,CQ2|Kz+8=ϱIi=R6F> edAs2C"bAg{$=D}'7w7N!FAyGrU+2zʌݿ=XQ} eLWlWt"' Ex