perl-Struct-Dumb-0.13-bp155.1.5 >  A ddRI%z ~4.]MبDu쒨q˨ o…"eWߥuI98c/o!CFV++.(%'S@Mfk2rgl_=q]ǟ*\@qQ[dS`mJ/K7GĒBeiـ|͸T7a1U2ԈLp0(*ysƫn\4@}_B]ʣQh5(12Q72kǸ 1Qաz:UqGFsX4Nd.6ߘϼ >ov ƕ8qPw+1|)`fȾDx述q}\@z_TeZ#̼HStZz$`-b|02"&B}>%/DTMm2uQ/dzX{F*9:"vY`FMq~rY|zWН4a4X '$#ԭ6If 17f55a3cec0aaf974b6135954d63470f9e0c0b1bfc6536e542689d5d1ac71e482081c5db5f117b8bceb17b8e2f153d05e203187c`ddRI%z k@$3+OMK' }ҘDjm_]ʘ7_ckJL"5 jM*v>2Ƒ2KɎ+t <ƆËe>=h;x,qZ@4{2l~GGX i>ZD*~f7aW?e ~Q[KAʾAgz>5k Ea{|= @;&{$ zuQK;EB8n0;E9S(|b&+S"n47$J!naÇxD1jsSWh%1JVR6К9:r;!PaCAuu9\m7f 25&.Gŗ/Y75U#>p>(?d " Q   2 8 @ `  p          8 `     ( 8 9 : ~ FGHIX Y\0]P^bc5defluvwpxyzCperl-Struct-Dumb0.13bp155.1.5Make simple lightweight record-like structures'Struct::Dumb' creates record-like structure types, similar to the 'struct' keyword in C, C++ or C#, or 'Record' in Pascal. An invocation of this module will create a construction function which returns new object references with the given field values. These references all respond to lvalue methods that access or modify the values stored. It's specifically and intentionally not meant to be an object class. You cannot subclass it. You cannot provide additional methods. You cannot apply roles or mixins or metaclasses or traits or antlers or whatever else is in fashion this week. On the other hand, it is tiny, creates cheap lightweight array-backed structures, uses nothing outside of core. It's intended simply to be a slightly nicer way to store data structures, where otherwise you might be tempted to abuse a hash, complete with the risk of typoing key names. The constructor will 'croak' if passed the wrong number of arguments, as will attempts to refer to fields that don't exist. Accessor-mutators will 'croak' if invoked with arguments. (This helps detect likely bugs such as accidentally passing in the new value as an argument, or attempting to invoke a stored 'CODE' reference by passing argument values directly to the accessor.) $ perl -E 'use Struct::Dumb; struct Point => [qw( x y )]; Point(30)' usage: main::Point($x, $y) at -e line 1 $ perl -E 'use Struct::Dumb; struct Point => [qw( x y )]; Point(10,20)->z' main::Point does not have a 'z' field at -e line 1 $ perl -E 'use Struct::Dumb; struct Point => [qw( x y )]; Point(1,2)->x(3)' main::Point->x invoked with arguments at -e line 1. Objects in this class are (currently) backed by an ARRAY reference store, though this is an internal implementation detail and should not be relied on by using code. Attempting to dereference the object as an ARRAY will throw an exception. _Note_: That on development perls that support 'use feature 'class'', this is used instead of a blessed ARRAY reference. This implementation choice should be transparent to the end-user, as all the same features are supported.ddFlamb56SUSE Linux Enterprise 15 SP5openSUSEArtistic-1.0 OR GPL-1.0-or-laterhttps://bugs.opensuse.orgUnspecifiedhttps://metacpan.org/release/Struct-Dumblinuxnoarch4G)A$A큤A큤$ddCddCddFc c ddFc ddC95e67ba8f422f66a388635eea4213d1105e0bff635898bee0f7634ed58d7f030eb54442a28a06f2c502789fa38b1c475fa0b05d406cf48895bf9ab71826ab0de26e537a8da741916eb18685193cef4656ca3ed66f730e197a6d441055bd26fd02e3685e8f634a9de8a7f7ec81d17d523dd42fe74cedee312fc809561fc3be7fe9ae3e54f2d28dd5470e5a6a9b2410a1af5a2b1e41dd27c53bd847d2290addef2rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Struct-Dumb-0.13-bp155.1.5.src.rpmperl(Struct::Dumb)perl(Struct::Dumb::_DestroyWatch)perl-Struct-Dumb    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.3c X^@^@V@VqR@VVVqU-@Tina Müller coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to 0.13 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.13 2022-08-27 [CHANGES] * Use `feature 'class'` instead of blessed ARRAYrefs on perls which support that, as an experiment to test how well that works- updated to 0.12 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.12 2020-04-21 [BUGFIXES] * Better ways to detect late-loading of Data::Dump. + Avoid touching its $VERSION + Check it is loaded when the destroywatch is invoked before actually applying filter- updated to 0.11 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.11 2020-04-17 [BUGFIXES] * Fix for detecting Data::Dump being loaded afterward Struct::Dumb 0.10 2020-04-17 [CHANGES] * Optional named parameter versions of constructor functions * Apply hackery to Data::Dump to allow it to print structures- updated to 0.09 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.09 2016/03/09 17:49:17 [CHANGES] * Allow callers to allow ARRAY dereference for special circumstances- updated to 0.08 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.08 2015/12/15 17:45:46 [CHANGES] * Support perl 5.8.x (which lacks overloading.pm)- updated to 0.07 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.07 2015/10/11 12:37:51 [BUGFIXES] * Provide the other conversion overload operations and allow fallback- updated to 0.06 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.06 2015/10/07 00:24:52 [BUGFIXES] * Ensure that structs are still boolean true 0.05 2015/10/06 23:12:58 [BUGFIXES] * Throw an exception on attempts to dereference a struct as an array (RT107583) * Throw an exception if accessor-mutators are invoked with extra arguments * Give AUTOLOAD :lvalue context so it reports the right message for attempts to assign to missing fields (RT107577)- updated to 0.04 see /usr/share/doc/packages/perl-Struct-Dumb/Changes 0.04 2015/09/30 18:29:01 [CHANGES] * Support creating a predicate test function- initial packagelamb56 16843305660.130.13-bp155.1.5StructDumb.pmperl-Struct-DumbChangesREADMEperl-Struct-DumbLICENSEStruct::Dumb.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Struct//usr/share/doc/packages//usr/share/doc/packages/perl-Struct-Dumb//usr/share/licenses//usr/share/licenses/perl-Struct-Dumb//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/2d60c79c545d2dd502cf4993c6769bff-perl-Struct-Dumbcpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PP.t1utf-8cab94937cad9c7a3cc0797e4cebd6297636fe31d38cd9e1daa0e618ec4f059f7? 7zXZ !t/Bw] crt:bLL rOsay:oBDqVK'i:3v  Le77A U['|/? ii/>W5[S{ch%]gshQYAGte){4oShnR1&nL)s1;-寱Rd+e|}ChM8X^7IEsep(DYO: l?녔&C*ӿ FIzoEɝ W>0#rQ<*3|$* kO.֑AYm@ꅾv@~R{^*h[1ߩRUluk3c";7)XlӬh;1HM5sG9I2Q'UFpljBrKv|]D$[&1.xkmhy%2/CKI;TDب R۳pR6Q$ȏ+ VM*@g¨bݷ{6DzfvAM}O wca3r~/' p d&LWѴueiK+z̦m*+y$ ?ACn\|Fs+iCdr<\m ~q_5{eup (: nX5kR=#)S@̺?r_Ьp'. J-YwzGJW^|yӴ (惂\`q.gN6,Ai+ߜ%kI}&Ey13䀢⤄~+듷"hX]~jKZ]*8,5ceD05:lNu6{;(CB Җ7DXO8IvX>n,]#3bhE3 C*Kj`ۊXVz?&9BƂ]x.O#9٠;(r SEoBfQ8+ 4<_<`c8L Kŗq(Fy1{wI8;VB\6&3}zJ9ӫsIGoXtSQh|EXq K2ȳ,D bv`r3S_e([4\%p|؇8 NbKΙ ~rpEpi$KERcL>P\c)}'LSʌ !Bc!6gX q+]s7t#U @9]W Ȧ"wg؀ս+ W m UW+VSr]4hKVoJN c0IxJ {_SnY #30c(:nyn YJCfZ;X_wh۠ FvO)ǝ:;{cy/ea'/'ʓܫ~š~#sp42 F|Qi2ȹPA)8D~qpbw&rٙ|! L4r:5'91 .7M{U0C).'D!i$Ąρ#C$m`N1]ΕFCw?nq}=U>(:ws*Gn&xq xUsyOpJG2 T&H$~ SD˓âg{Y=9PY#[[6c~I+mu3ֈ7g[Cg;;B58_n6\\~hz>)Dܶʮ^bvHSJf+g5 $[-Pu>n u˷5;xCY:2a:sÍI԰nMNmaBؑ1{Ms٥j .3H;H{6 On0Hgs8do~VO84ms^O ʡKV'-,UO: m{NHW6L^]nV&W-ủ|w4>&,v7b2V}zQf` .݂zTY3#}ݒۈ` ּ5u2k\n=.=F!^O/˧F$5ZIE/ ozI= 37z]Y 4TPG=!6܉95Is*Y 8-R{nIݴD[ݨ~vd1"M\qWH 9 RY9NRHt6uS!̙E7'kR)%*6G|ED֠cbRt0k.Ȯ/(hAsآȭ,Ivb< 2;j|Q '8¢y[S>n[m q+ƩPHџCٝX_Uh"FBq6/ֈU+zGOLA;/8OI<=nfcEAx-#bMҾo }Wh[i;QKrGQ0*em;u_xZ2Ӵ(>%xv־ހ@^:F5z9*Qal."NTs#|"І"]<܄X[҂:3; BWTU]\.^^쬯C'fk6|Ю϶ bv]y tm9ӸRbGobu<d__ lHĽ-1NDȗmq/DzdhN9СQ4\½;M d TG ̟ Me"G^㜌p;~ {U:PC~3cVq*{{ 4t[x6Ա蚍D8-|.;EK;UC}DxSaMbu*!x?el,jV-yUt` w54冹l 4Qdݲ(Ʋ!a+ %|$ u*#b JtQB-N=1YC-'[I.aG-x^ {A@"s(eYM'bfOa#L]uйA0ymc5 48;`A,(đ6%(vWys;)S 3\mWagݰ2dO}5éBjb~'37&W6Fuy+ k:}9N;sxFү-7c$d5}i77ᬥuA٣mQK\} P0Nf`>s^Ҳz( ũYQq+j΢T)|\.lc&pKɀ4:˸Y3ꝣ0&ө[猓:[\!dmU'_,Kx:21J6`NM^;.W[ 3}{N6h>N]6RU`qĸ⦕OoJ«cSؙ. r1'Kom+%eg鑘CvRvhRʡ{(7lҮ.%ő eTh,$1F?]x|!vԮ6kr;1C3ȀoJW bhse!S[)!С ԗqa%Õ}]˦istϖVa'ǵ\=" YvK.^aTbv'kPAgq=<D\E_+BO 2{!&2LQÂJb"M-;1UBg$ l0 ,Il jGDJv4q y)'xz% _F2tOI#+$Fq$ɼjMJú7`bKh ADyw):քhd!#KLE syt^cU6~}xqIV+Xi%,Ev@:,PH78n{iC'_O^! ѥO]̻XWpMK+Y87eK.&bQ&բ݀2AF |mRgC)l{t^To_BTB} u fl.̀N(rN6'>+BF/ϕD >SQllc} np@ѳRcYk p  =I !Dww֥F|dy·oqJ> jQ86bui,{ĤV -&˝pePƢ0Oě|dgN`tlG|_)#ԱD U dB*rvARTQ#u҇hlv`ݤ)=2vMGZ hswdIUMTJ9hɤ qW>Thro"Ƙ!Q{msqPZ=k$=ċeof~ӕD[t@qB. ~A Rs:9Q!tA{qg F2|l$X*'Ln$qnJQ-`L7>{4;D#y${TE>$ O,5vvfa H=Ѧ%d}p]o[gPx"/ ҰsD*@g#/2F<Bmu7DwFٽBZ\5RdJ%Q3`g󉀜t#CE/.7 xӖ`W~+)P}>:SűXt~ JqRF:&VD:+ıQ(fm/M+,TPW.\Qw^]l0b:=<u)E&-W5w]c;E1u^jX !.R5,MJȠr_h% 0 kn/\QbU{ 5`P} s'dTz .jWV3PU":HQVi'Mw7֫$ZD_.O:x,w@FަR 0#ɷ7ӧ6R$2*>ǐ&͊<_ UZf:Gā,Sܬ eMAMD\ V^vHFHD _I 0sp{+`CT&ws074_e6AKZbS\dw'3UWf S1ɔ;t`$ao)q+ۢ%@x{8_\M]ErZ+u;>n0ﱃcJ9SyF5tI|GŻk1 '*<48Vn"P ݳdc`g|c gg*%98w L#5;sp K4"1"FViԢE@n>lx)Z!?._ȐY7&Ƈ>a sf)!eDeLm*UVq%ѪDauh*c *{)G72v}aգq0b% _I Agk(1Zх]Ys, e*'S,:IH3Fr٪G̪bk}b\C D]7  LB0ȜЀL4 2y$:4De-D oN@hǚg)z֨a `A15JΆle>KjA:5a1ʙ}K!Cx¼9ݑKfg$e;pȢ|9lPn˚N j;@a #7ѯ|jZ\ 8Nukm *0.@{ EJb@gf)%'? 0дfJƙ i:2rfc}L3Y`):.`*vy<ޢȍ,Q$&kuP󎈃 ;W9UqhcǤٶU!=%Q#5+b@XGکS|T7Xt1 k436r v WTЪ9̓UQy=K@)81;`T-}+׋ ^Ab&S#mnG'w z訞Ryfmp" I"[Ϳ{gj3$POϏ^5^=$_B(Y)HFi- t\v}`8Y9N#_!IGS Kߞ=c5J=AK6H ! :c7meohR֗4RJ-qOͧF6z$ A-ˡzAHy'` hݵV!hEl6i @;L7r> tʀܸ怊Y*w9UY/#!r]*>Jbl!d95Ny0iA"ąchqrbÚ(rncQ^<5=-vç%,))l(S6*;/s ~}|0 I,c oG\d|;OF ϗmQp[h 3]JrPjb%xZq7v4 BҀfR85+`lA^gW>ikpr/N[fuC#<1or ;=bFNJ@WIT"Ko`Tv2W;rSc3I{`ѭ,yאWxe Im`B2VQ[=}H';iAB$Wd>ajM2û:y*P{(Õym!ɼ >|_i7(x3mUFڑ56pO O BdHz?,GKed#(_k> 8ufͶ֒i贞exI' Ƶ^2|ΞdH7;+JlG Vݹ fg'gfzz4 z;t(4!xO(bcjAriՇ7@Dր]WvsAODBVf۩cC $`D?QVÍ]/z`Ф0ExgOP˷ipr ;JpGѻ*5i?żzV=y4@~dv阈kb]B@u0S eUlis<5#^yA/L~c?RF4mnSaJ5g\]i1rʄ4=܅ꉓ;;:R!-*s+zE'U  Pi*TH~Ꮕ u0%sF]Uť=@5l6:*_J/ED5mY>Gm,(z8ȴ_nPs=mƥ@P^UbX;#*oثO񎗢,d Kn!eD vT}Y4fn|jA>`+(V|_j^o@z 6aj6ClmIF@|c'kN!2$Q#m1⣌C(l7ߨ;DѼjF8[߉'iQT, (:OAnmZل*EKP|qcSΦc-3k>&) E>Lk4BGNv]>u^4_*[ǨߡdzQ~;?L7\r%/`~S[֨=ы5[/qs7m#B%dԊl}xl4$;(qJ1zVH__8Ʀ'0i MЁ8$7e P!ݑcg܊)goeh ϣj+ rTrFpF ,ez:fbڏyG 6sL Û%??( AcA)Ji,ju-$kk&YJ>̮!iʳ ׭@A/c_$tz۷Ρ``W zrPBi2 2}ͤj} s%-D0|#U3bl**P_8fNbg 21o +_⳩ח_Nb.e5({v*W egh%:Aq62Ba>>Y dd7šu%~ z|k^KXvQ$t ߀[P}mWR8KuJO/mzq|+RvBIċ%d"yHk] ہ.N!裚cv,9, w/4|=\K3Y1W9sdwwGbt:ػtB˳T1cP;!Q7qo+X+Ky):[Cn [Km|qG|-]<3hϗצIyKIzR$BR#*'c+ ,{)ἰ2m0Əޭ ۣcM~X#qmu8=tY$8$;2FTtwVS1–:MVAՁ.+u]@͋) Ҟ[X_no@9yuGTҚq7ׄ-Q5wRݧ`:wĿ߄ЅЗ.3 2J#_kC ձ&r x/Y 1@JVl W,~6Y=1,9M^If{(7 nvpuj(7:9MڀmhG@xBlr 6Pf@T&3;X'pC=7BTוaX %o4 \d_jh`[5IoESLt,(K!d*g.1s{d9bwBWdxS3=Jmաaиnǡ(Q$I{ 4>#S<%d聟"9HUnXR 1H$İZ8 mFuxϗK| { xc-V 5gGk蜩-T &? = Ƴ{W%ϋ#jajdۺn_ݰz _p5{Hժz e>dg`&nF Ĭ8p|ݸ ٜ;nFTf&ԙinV(4B4ёt'_pwO~ eՇ7?C -6 '1VPD5ͷ.J,P܂{qI>=pJb{f:k<n ň0\4E١yMG6xă<)f_ԝ-*SMem"r ?|]q(%yVU'iІ%T#(u9? DXN0}dsɪ B,w6qLðw#q?t!xʼ.wj-G%ۡZbwaJ c0Q:ʛfTzkp.IX-v Nd^.v8q1 d bV$5sÔz@ ,vGQwZ5_6)-/U֊I[]맪 (NJa:u)kPD>MwEH[a~rir@`;ڛ ^HiEm%1+߉5XլlRye1rVRE\t џ$bpu)^g]'wtMgw*.HbJdh,N&*ݣ 7,SRK].b{AkLy J'[Nr4@C#lFP9uHO#U8T $x a5T.i)y#c[+x*Ph_a7 Ū9._$fG> m_ثO"f͞ 0QEի S_cfc ne#Iƻ ݰq]zbM%v)MSua zd/9`ysn5 S _4glpRq2G^` ,Ss}t0m+6f(?MfF[)uB߹$älAwjOVxE:bk٫ϛ3SW7^#vj5]t&{tiSHX[T %@WZn1G%?kHTٔ|9Z ;A?Tm3P$c G׿7Z$J I{\-6YC_8at0BRD%bJhݪI=m؞=L#aQ))sv1֯349ZX]fڷh>X^Pw6.# AȠ*.օj2Fuz0X|[uc}MUlKь`If7HU !nu&X QA߻0~ |_rlo ^f͞4Q6SIF;\evzːPY1z \^V,3y9!&.Y0CNY0!X/'uRT=-f"\R /E|I7MnD+VE,'tOU%2ܐqK;[dd5!=wCKMw@{"/bcP8 3߯nTqmMaiT)r=t +>dWC+&{jd{Cz eԝ*3͆p*]|20{w@z[g8Z>Y֍b̀q[jh:L#nDOqyUK79ZKl-e.˰Ւ1~+ Ϩ!jH~8Q-VeR* 'ł ub9 =T']mc2|§T2mׄ *?yJsUBnèФA. #NҒx涣EIGY[EVN@j`PS\+abpzȻim)*[qBӾ>Izx}}p0$"Fuvۗ[s;( :Ois.˽ "'!e$ZO +#X0WP*uIgo_+wYu)d9\}14Q[kS>[B?m'? ds_n^hp*..|AxncTg!~k"yKVtZ {JfseuUVQ85#I,BR& BI|hk9"Zh,y`ajaoڴ/yZ5pW8:3޽X@UUқ40 Kbƈj|b /McL -fyIbY>C2,S%ב?2a#Bt U?3]a䉅F,~`l.#k汅'"_ `b(}i(궶\&t!)Mg 7$TҩH}l.oeC-4ziSX־Ĭc*򘕒쉃-4S鄱7 xf |w]öW6}*`)܊~2ҧ[= 8})5Jp}`^h C*H\䪳TakFN20Wy(7ݪrgxmv()rn,[P=0\-7"mQΖJjAp;r'U 2wo Thw)*²uUhF̫w#K>f-Ao2'ڠwr:v5b0e|> uvr^AL샼7}0"Hκ/뾔.'}B5nwjol\NYv ̫Gճ!g ͎,~W݂S>ltyrd ɻ-=#WWvҊ (Njy߻w+]@::vl ˧O8ԁur6]uj촥)_6NYoҋ{7MϏ,VYz(?ئY[܏xݻOR\ZC(2 dXRXJnZ'ƶ YZ