perl-Carp-Clan-6.04-19.1.1>t 4 DpQ󫸋/=„ѣjn\Cc[^^-֛/]%sIf=I w*";=&~;Lg3U1m0!+&Txd<|Ң-:= ] ٪F[ C[_VH^cN?!e1B [^.a1 Q#$ DGYŤf[a!asߏNҜ5EI|NEz_OUY- 2&$]Rs3L  M;zXcOQ󫸋/=„us[/"$PuNHZrX9k܇ ]hʸ6?0c |f|MKɵ]3C2vrLՊ7 x?;zPiMp.`4'}mh { TcLrY_Z;jM%EWN(rq& $\ɛ{"IU{̇́!hc3J ᬰ*?Dc@׋27Sf\{:#RI ܀e34ce6abdd7a4243a18a712e6e889847e56ec4eb>:d?Td  4         8 _ e l             2 d \(z8 9 :P F:GP Hx I XY\ ] ^mbcdeflu v(w x y<zDCperl-Carp-Clan6.0419.1.1Carp::Clan Perl moduleThis module is based on "'Carp.pm'" from Perl 5.005_03. It has been modified to skip all package names matching the pattern given in the "use" statement inside the "'qw()'" term (or argument list). Suppose you have a family of modules or classes named "Pack::A", "Pack::B" and so on, and each of them uses "'Carp::Clan qw(^Pack::);'" (or at least the one in which the error or warning gets raised). Thus when for example your script "tool.pl" calls module "Pack::A", and module "Pack::A" calls module "Pack::B", an exception raised in module "Pack::B" will appear to have originated in "tool.pl" where "Pack::A" was called, and not in "Pack::A" where "Pack::B" was called, as the unmodified "'Carp.pm'" would try to make you believe ':-)'. This works similarly if "Pack::B" calls "Pack::C" where the exception is raised, etcetera. In other words, this blames all errors in the "'Pack::*'" modules on the user of these modules, i.e., on you. ';-)' The skipping of a clan (or family) of packages according to a pattern describing its members is necessary in cases where these modules are not classes derived from each other (and thus when examining '@ISA' - as in the original "'Carp.pm'" module - doesn't help). The purpose and advantage of this is that a "clan" of modules can work together (and call each other) and throw exceptions at various depths down the calling hierarchy and still appear as a monolithic block (as though they were a single module) from the perspective of the caller. In case you just want to ward off all error messages from the module in which you "'use Carp::Clan'", i.e., if you want to make all error messages or warnings to appear to originate from where your module was called (this is what you usually used to "'use Carp;'" for ';-)'), instead of in your module itself (which is what you can do with a "die" or "warn" anyway), you do not need to provide a pattern, the module will automatically provide the correct one for you. I.e., just "'use Carp::Clan;'" without any arguments and call "carp" or "croak" as appropriate, and they will automatically defend your module against all blames! In other words, a pattern is only necessary if you want to make several modules (more than one) work together and appear as though they were only one. Forcing a Stack Trace As a debugging aid, you can force "'Carp::Clan'" to treat a "croak" as a "confess" and a "carp" as a "cluck". In other words, force a detailed stack trace to be given. This can be very helpful when trying to understand why, or from where, a warning or error is being generated. This feature is enabled either by "importing" the non-existent symbol 'verbose', or by setting the global variable "'$Carp::Clan::Verbose'" to a true value. You would typically enable it by saying use Carp::Clan qw(verbose); Note that you can both specify a "family pattern" and the string "verbose" inside the "'qw()'" term (or argument list) of the "use" statement, but consider that a pattern of packages to skip is pointless when "verbose" causes a full stack trace anyway. Authors: -------- Joshua ben Jore Steffen Beyer Qbuild19openSUSE 12.3openSUSEGPL-1.0+ or Artistic-1.0http://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Carp-Clan/linuxnoarch!. FA A$$AA큤$QJq`Jq`QQJq`Jq`Jq`Jq`Q16846e519817c2d76def9efbb1f9c725a06faa906baa42b1829dddf373533163f921793d03cc6d63ec4b15e9be8fd3f85b6922c48e20324d7eb6b5120024c08b079b27cd65c86dbc1b6997ffde902735f5ef02d66a24fc1dc2060adee25b95b737ceca3b2c2dba588679499078ea6c1erootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Carp-Clan-6.04-19.1.1.src.rpmperl(Carp::Clan)perl(DB)perl-Carp-Clan   perlperl(Test::Exception)rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)5.16.23.0.4-14.0-14.4.6-14.10.2NHL@L@KPXKI@G­FvsE@E$Ecoolo@suse.comcoolo@novell.comchris@computersalat.deanicka@suse.czjengelh@medozas.deanicka@suse.czanicka@suse.czanicka@suse.czanicka@suse.czanicka@suse.cz- use original .tar.gz- switch to perl_requires macro- recreated by cpanspec 1.78 o fix deps - noarch pkg- update to 6.04 * Solved RT ticket #50796 (inform type of license) * Made the test suite compatible with Perl versions < v5.6.0 * Re-release to resolve confusion in CPAN caused by intermediate release of Carp::Clan 5.4 (backport of bugfix #50560 below for Perls < v5.6.0) * Forgot to fix the bug of duplicated prefixes in _longmsg as well * Fixed bug of duplicated prefixes (RT ticket #50560)- enable parallel build- update to 6.00 * Removed the circular dependency on Object::Deadly. It was only used for testing and would only succeed if you already had O::D installed.- update to 5.9 * Test::Exceptions is mandatory for testing. * bugfix- update to 5.8 * Stop testing that ->VERSION is a specific thing.- update to 5.7 * Stop PAUSE from attempting to index DB package. * test fixes * bugfixes * Use named lexicals in diag(). * Use exists &foo/defined &foo instead of symbol table hackery. * Changed f() so it accepts 1st parameter of carp/cluck/confess/croak instead of 1/2/3/4. * Renamed files.- update to 5.4 * Made Carp::Clan safe for overloaded objects. * Added diag() to 01_..._carp.tbuild19 1359213468 6.046.04-19.1.1CarpClan.pmClan.podx86_64-linux-thread-multiperl-Carp-ClanArtistic.txtChangesGNU_GPL.txtREADMECarp::Clan.3pm.gz/usr/lib/perl5/vendor_perl/5.16.2//usr/lib/perl5/vendor_perl/5.16.2/Carp//usr/share/doc/packages//usr/share/doc/packages/perl-Carp-Clan//usr/share/man/man3/-fmessage-length=0 -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:12.3/standard/fea1e1751ae980d077ee931f02ad2a14-perl-Carp-Clancpiolzma5noarch-suse-linuxASCII textPascal source, ASCII textPerl POD document, ASCII textPerl5 module source textdirectorytroff or preprocessor input, ASCII text (gzip compressed data, from Unix, max compression)PP M&ȼ\sl KtF?`] crt:bLL(}`NabiDY>jytD4~rq';LynTpZ 9!b̈5ݯ=>ՙJ7gX\waT8/XT؟:$WNنP)Xxb03 X>p?$7r=F@c! LaI7)M.ЍNupf )[03ബdjU}p VA+ɪ& ϟ$"E6߸n&QfQJ(C/q8,"ZBj|O!{haeZ=tJ^ySwgmC5ǤDzUxt؁߬r?I`-`$L 4&JQ!V*B̘*uS <<՝4PD( 9oM   nnD8~lW*~|*@nTb[z \|'=N{_elS0[顧[Ьp42iX.VLEO8AH+<5]0N.wefmg5PDQè%PX.~X#>ܞ0 LݔvDdog)^@"(]k|'.~a)Rp/oz|paHI~:t`YQ/k\xcTFwy%p/Ή܋bA# )6Nب$!,mi6,vp*4˅/P劙( 7. z:s螴 \<DV8ʶ(*.BK\k׉M/k,=E&ߴ&In,aƴq891馕UD֨G*Ey'w̑ݳ g'L|QMLWhQD }0HղZbXF qΒcw=᪏da:gYPeme)PтbwZ,L\{q M*Ԣ,l7#51^=g{7$={H˓[dKPo"<}o_ `o)w4[esźSbhlճ7ͮPg=2VjÈ\ NYU>OwyKHX)f9hzI = >I膭η ):P#)|i7^Ri0 2ЅYnE$U8ELSD.XiW۳=|uQ o1+*m"v-Vˢ.xT;QWW^x ^dNWHklBg@.ը.S S鵸?KvܥrºۥOlӄ68FY!Ɯϰ~d}( X:q)$Q?F&,^'證䖫0oW'Mѥߒ?]z7]3hDžʑ C#791SՐ8upk2SFͷd栈ɍ2n8k}9^T@by{O&_}H+`v ,o vsqsi>/7um$o:{|9ϪĆ4P{9[DI2lLQ_F>V@Fbu`r$LGuPY&fځ,~4,t3o"QZcrgA5B08E [l?.{vNNs]BJ|A2xFbg~-C(]UZ|..ѳ.62WL]PRpF"}2-? O7_hiuBQ r"[_~rLiUc6E`zk9 S{)ro =5Eۯ)ky*NgrơwF gF Z]bq}?eq@en]ڌ)L(ԍN _)#6gB"e MfY=q(Ѻ$"3 KMI`foI{ W l~-ɁD;$ƀP^c͆Cj1axI&-jx<Fp_F4%:̸+Ҍ ץC.}ovClF~0~.D i * jkK4:y`NMK-ʆh\8H<1$)a'b"Ʀ+*Xy\E} Dx+M+}gb7L/UW.LϜq2w“L}ɹ.=J4B/| CEY'T-cRuD95C~l*Sd=4nwGxlL\HH#!'Ʌ/c@ˈϏ$E̝0BR ?a|eb=" zE)]&FQAlXpj7 r<ak9`Vj;?M߾RQLN|e(tbkt2.ɿ!ɓ2J:fm7+հJ//̬@tblL9cr(QڡWv[G/ X 1#2v ;r1D;[s!:wG4h%N9l3VWo^'_8WG 3X= md˰ˤ)5񝱼vm>81UTΉ mwlMabpD̛O',@hiQ4^6n 8Ec^W3bu}6   3F-4;:ҾT33@,h*٩kCS[/4(0' WUH><ޥ=ϸEz8S̺ Fڌ\Ehw_Hxb4*pޔGHy?y`1*_ frw@:6e 홋rn]b?@>:rƺbULy(Cf%z\֗+ QQ%G%DieZhzFkw~=`(+4aWd*BL)7=$Q+0o} m-Z%o7 eѳoz)])5_ G 1ocZ=x &Ewz#^9 ΖG:- ڳ(a!@Oy"5qiҬoܗtƀb$7g={S=Uٳaj1ךJF"?O~xTE`͘^^=~FH%V Vm Ls.x k׻k4?`+Cpʶ%6tW )=XdBcƕv5)jw͉ QFTu%L+{-Hd#XV3}ʫ(YA\>\*xQe%?׉Tޚi'Vd^t Bޓ.IsU`"wk%=ʉ;Jn΀~Z/X}@x Pp0"! U"7x}7o&̹m !DuEEP ӤziL$QʜQ`l {ZoZUIzthk$5Qڥ<Ě >8Q-/K /pr1HȎ̰6 -d_ wDS”`S&_"`~P3T C)uXM.sٝSQV.8[?hVuh0K20јۢ=?b?wg~(VIaY"*A0c-XWKԿܘiN91,>RP0&x2$H[N@_hS0~i-pеvŔ'wGY&B`s|qE`"3@45 Q<\U/8ѽ2VIPRB%\4^tPC'tuuN+* f: }DIWƤFnҷU&鄾s}L5>R9x%dQv%9DzRߥN Nꉖp%Ɇs2Gk`$N֊Oû"L>n:OP{( (!Zp$Sy8<[!S'#>S/jd*4[mƟ`/D煯;[Q{m= RZ m)!pBGOSCԻ chg,T^=FmoĺlgMUH6Ql0n \5~3d&2CΎಯ\KlꝆ|U{s{r12A%R`0fQZtd3p 27~wwR7C~&!J7oCd^`^-=4[˲]Da<_n[*N?WXjŝ&2NΉY H=A̍(m4b@_.Rp!%gb|6hu"ATnj|v.ok1OMVO~3&mn|- 'AL17a*GgRL"eHm֯(1菓XE{B/9dq;;,zNv7}/l5n-}~G'_oLPr[UȾHt Ka)Va=i_N'E'T蕜Pψ1-cK%9,nJZOt'Pev;ܢ}{c֠C݄#+^ mXY˴ eCJrE@ԮH-5P&҇c.d*\IUMfuد# (NcֆCꦩ0PNKC۪h,&4֛>:o |qPfQQsh{9ce^郝|֯3=Dڡ[k`1#G,mItuyk}> Xw=ϐ pT'OZ =Cs,:e'q~54wLڌ#,d'.OtH\w4"`&׵FCTwc1.B>%@BC<&1H{}"ߝjxA>بT0l >\{*f nr_ȲD/OsO&Z-@8HDX~e{ɠK&NYq2C5Hy0xc&$ wK1S-*yB7Do744d ONQƉASn,U^d`tϗѯ9 e1gռ`&AhY8iD!I0Se+H~zGm-,e%2aHmv.g5#ţttڏG {Ygs\r.u5gz60W{\_kJ][wZٝ|:^*ꙍAvB% ?%蘱Cwc D65ۉ ~D48?NJS5ҩN8 aQQt@z(aPӭ;5)I>z' 1 Tc{,ہ;JMM{, VYpn3`|'UNzVDP56/ b?sl_tz!ʵY@ܠIܮdu})= 0\-1\]S X)wqXoh w @Nl֭;}iOBǛ}W#ۋQ94ۡO<[\n-/Vw =;i+)ؽԇ4N!gpLZ'mѣi sbkEhk yy)^GHGоR\".ە_TH7}hx2^.w!G%!pH?chE0}F̽SL?&9Җ 5@,89DKp+ݭ^yYCG5{lDBd/}[T3h|R8q#_l l_ÌQ3yF簜[LU\D?y|n4/4M򔞑$ *F[.x6bw!Vn!H*lɴ-k" Ḁ66s3 6h&WMi( xD )ruM)VV~ؒӫugdH5 |gIYpN῏d|Dan_1ϸ!PId5٦Wb2m%^ڃ,FϪ^_Ljy  )-T'?h(W~jl/݈{Yod`d!p 2j,#l񇉧rWK# MI a(-!?aUA9PuKgjt5nÂ/0);"4æ=(S~B[8t lř L(mϪ%?io'qZ7{Ū):HGMT eǧ̈*!s|Q:+xgY<HiT~ K8qLa:kTGk/\6}zZgqcM}LF#$lHk~v\zy/I+AQ0wR t LŴCu_1Ƌ|.ۑẖd㞴== F6Qw9xu@0, *yLWSw'At=rKȦJ`3\U^bC€ ꖯ?5qˎ/$sOOW:[6ʮ ݁ 4A\p5jCx7 }ӓ&^d n`MtArV4ĵCKfqUsFumelSj\cT.#u@ >SYB=B6Xָ*O,=g7sd`}բ- h3# (+'\`<-|Tߓ 4+*Si ~53%OsB*zCϾvxcQ־\1!9k~ ]@$kX; tΰPkݢ12d-1WAٽd/3)8WYTRU{|<ǻzejեA.eAVKaDg4-ގ]V{_Ric*t{l{[RY;1%V]6 P K\ z-=T=(3#Z _r&z ZF9O|onSV&pgM\).>\勎WNN^",s*Y\dNgp*#)T3r"%??vfĞZۓM|0#tNWp`Йu#`M6D9sopAYOxQ{͢(GGRrcPnXג-  ױgA,-v6ZvܔT1 ^ 3Sss1hBޠU+b &%]&1PY)|7JF]me<4 }%3bPwpVlH+ԑ|(?n7 -$+ݏ7"&bO<5;u1QHAJRLDUB5|--ƲKoOiO ]㻱8y(ԆXٿX=MRC?`+gú6Ѳ$T=88A}'+I!QC+:]KRb5BTGB /cIz$`-ΚQ͵JugJ,N+ po^혢)oGAr s4#wi^EFHX# wk3'⸍rCޒ |HP$£cz#ӓ8lMyR JMD#8c'F 1Ih'v eCz`"T\?Oi*ӊJ_ϓ,״c|볡rAG_5F?h2~xO uWdA>K-gB[%t~.b3hk]]D $-/hט1> ?,eA)FA蚬a(G'w|D4Q\s,Mn<':J} Uxb*5X>%#JOȥE=~9O`_K޼9RnP.q(P- D9z=Gҿ LlK홟]9}Hga!sKMih4/Թǟ &"롋X0kWqnE;sBJ+6cND8];I'dC _@JyJU#F`0{%Ӄmc=tH˷{<$F݃O=j8w++G~ԁjR*W2`?Ux\6|)Hgsl 0٪"_ǔS)39 G(dB"42w5+_|";G%2U^ɹ~7}l훘- $Y$rxВ @7|XSzUlьYidߕ jؗwif. .Ӫ/>pˌJT:ꋘ{lHc]}e)%p=fFmVa|-e`,[Z~F^v@D<[dQRG 斁9Fc_;?L{#KCSFXpPseaT7DjgATZHϵGSF@{XE}OE/#<6;`v [rࢇkKǽ1Jpw *kƇކEY({*W̭ϨI5&Yi m!!܍sIYmJ}TVn}H,*H PL'"CĭS@PKP@x3lgA+<Gm&1JpΖá$I _,+ԎAkA1A!>fũJZw\*^vxr-IQR~ gC.f03} KFD˼^(3D*tZP1p+8{O?[#># z^۴W8;@L-_Yo`@`x0FˬIi) Q[J;tK/3n4y1QC|?!FiN*AA73!DȓOdʰBOCKJKof̤|z]╒ =SNfIeno Z^¦T>_>6P<5~7n>o8ՈN9[Mh:ͶG$BhILӓbK؂ 0{ ZOQ_t8h?>mms*j;iLU5пWvX#CP+UVs(qܲAȉ^n.bMKxY7΃#@*<L*@m-.a8(% vp ܁gOH~On~W+o_y ˓:!:Q\o8]Kd[""trT#Yj+im1rWx$/Ud&"75qT-Ȏ"g1;(۰Xr*}]~x-fo+~_wyG& -hD,".jl6?9Ё0~AU , F8y&4x )8F G@ tU계rQrMpA]bT[su\ADW )G}GbiMB`$?AտEi[ ?M6dH~h|_324Y0Ļ@scR:d́x1QyrVUf:Z 9#loÂIv8{\;šwpm~YO ER"G #7f c*A~#eծݼ~fRPD0y$68-l +Ouh.:'7Xc /J,9 TVcoNSLۘ+0pVɘTf懕"N*cg5;c-9$CqOQťksf? OԏTݸ їK',r.0cv@:-l2H |=uz'.`ɨpuOh;cyVHs ^2^hѹ?fgQQO8y@ش3,Q}^[y8XiF77!/f:Tlr#g#;TAmьh+Dw~ $Se^wCLyy-)u~$;M$LKӮR+jIG+3ȸߨ;LT>iaZ447]pb!iRk+!Eyo1$ 悀eJ&A͂B[ǹɀfA/N_ctF$E3v8lu+O:2*nZ mJo2 ٮ0Z7SƬjK;6(,D,3۝G\atW3-OcR! VP nle6Q-:zljuٍ>nqj'D:{u$~E1(:C>(Ǡ*YvS|0h|'~7 O2u<8 eQP: QnMFfFd"xp^Gu,8M,Yh/İnvw /ڢfƃ\e?*r,C^6_ll7f4^a%v׾d/",`}颤GA״Y'&v.{?pn?E=ⵗM rQS"t?W>+,Jpmf奞)iHY jJ^ӧnZ@degW/mD.mL%EsAin6$EgГwݐW7nNo Č\VԸ: