perl-ExtUtils-Depends-0.405-lp151.2.1 >  A [N/=„NOl} PZF>$o B0=7-*Ӛ_\Gp@ct'c^,i5ϓS|4߽8q5L}okvgcC H9jX; 'lZyPcZud0sftؼOd-ň'2 Ro B}sI)Jl-O]ly#(ẅɐߤ*(c zVli8aSCnU;qp ȗ'Xmɧ!8mrQ?7-%NXREyycp ړ&>p>?d ( ` ` d l p         4  B  P  l  s  |     ( X l ( 8  9 @ : FGHIXY\ ]<^bTcdienfqlsuvw0xLyhzl|Cperl-ExtUtils-Depends0.405lp151.2.1Easily build XS extensions that depend on XS extensionsThis module tries to make it easy to build Perl extensions that use functions and typemaps provided by other perl extensions. This means that a perl extension is treated like a shared library that provides also a C and an XS interface besides the perl one. This works as long as the base extension is loaded with the RTLD_GLOBAL flag (usually done with a sub dl_load_flags {0x01} in the main .pm file) if you need to use functions defined in the module. The basic scheme of operation is to collect information about a module in the instance, and then store that data in the Perl library where it may be retrieved later. The object can also reformat this information into the data structures required by ExtUtils::MakeMaker's WriteMakefile function. For information on how to make your module fit into this scheme, see "hashref = ExtUtils::Depends::load (name)". When creating a new Depends object, you give it a name, which is the name of the module you are building. You can also specify the names of modules on which this module depends. These dependencies will be loaded automatically, and their typemaps, header files, etc merged with your new object's stuff. When you store the data for your object, the list of dependencies are stored with it, so that another module depending on your needn't know on exactly which modules yours depends. For example: Gtk2 depends on Glib Gnome2::Canvas depends on Gtk2 ExtUtils::Depends->new ('Gnome2::Canvas', 'Gtk2'); this command automatically brings in all the stuff needed for Glib, since Gtk2 depends on it. When the configuration information is saved, it also includes a class method called 'Inline', inheritable by your module. This allows you in your module to simply say at the top: package Mymod; use parent 'Mymod::Install::Files'; # to inherit 'Inline' method And users of 'Mymod' who want to write inline code (using Inline) will simply be able to write: use Inline with => 'Mymod'; And all the necessary header files, defines, and libraries will be added for them. The 'Mymod::Install::Files' will also implement a 'deps' method, which will return a list of any modules that 'Mymod' depends on - you will not normally need to use this: require Mymod::Install::Files; @deps = Mymod::Install::Files->deps;[Nbuild77openSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/ExtUtils-Depends/linuxnoarchH8#?A$AA큤$[NV\o[N[NV\pAV\px[N77d0dbad7f6dd0e80b34571114655c8c2f0f6fedffd81efc4228c51fabe485978716ea11b2f9b27112e24cc74d6e07f8cf38393b771d00e9f9ec37332305e639f5b29dd507141883eec5461e2c7ec518a6a953de567285390e1070f8515ad8b067cc00046c259c48d6821ca808f8c88054c0362c9fae39ac5de344fa73ad8a99rootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-ExtUtils-Depends-0.405-lp151.2.1.src.rpmperl(ExtUtils::Depends)perl-ExtUtils-Depends    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.1V^@Tи@TRNMA^@M@L@L@L@L@KI@Jv@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comvcizek@novell.comcoolo@novell.comanicka@suse.czcoolo@novell.comchris@computersalat.decoolo@novell.comjengelh@medozas.deanicka@suse.cz- updated to 0.405 see /usr/share/doc/packages/perl-ExtUtils-Depends/Changes 0.405 - Remove MYMETA.* from MANIFEST file; closes autogenerated RT ticket [#108554]- updated to 0.404 - Depends.pm: sort deps in save_config() and get_makefile_vars(); patch submitted by Debian's reproducible build team for RT#101602 - Use / to make ::load filename, not File::Spec - perldoc -f require 0.403 - Avoid using Test::More::done_testing() for to support building out-of-the-box on older perls. 0.402 Sat Oct 18 18:06:19 EEST 2014 - Set Data::Dumper::Sortkeys = 1 in ExtUtils::Depends->save_config(); patch submitted by Niko Tyni of the Debian Perl Group; fixes RT#99260- updated to 0.401 - Add README changes created by 'make dist' from the POD - Rename test modules - Test old/new schemes with .pm files - Move old/new scheme tests from middle of other stuff to end - Rename test packages to 8.3 unique 0.400 Sun Aug 10 13:58:24 CEST 2014 - In addition to the package variables $inc, $libs and @typemaps, write an 'Inline' method to ::Install::Files for easier interoperability with the Inline module. - Accompany the 'Inline' method with a 'deps' method in ::Install::Files in addition to the @deps package variable. - Make ExtUtils::Depends->load use the 'Inline' and 'deps' methods by default, falling back to the package variables if the methods are not defined. - Make the docs recommend the 'Inline' and 'deps' approach for creating ::Install::Files manually, without ExtUtils::Depends::save_config. 0.309 Sat Aug 2 15:23:03 PDT 2014 - Depends.pm: use $DLEXT instead of $SO for library filename extensions - MANIFEST: remove MYMETA.* files - use DynaLoader::mod2fname if available - Added Android support 0.308 Sun May 18 16:22:11 PDT 2014 - Fix win32 test failure in t/02_save_load.t (closes RT#95301) 0.307 Mon Apr 28 22:04:38 PDT 2014 - $Data::Dumper::Terse set to 1 broke save_config - Document API expected by ::load function- updated to 0.306 - Fixed typo in RT queue URL; fixes RT#88960 - Makefile.PL: converted to CPAN::Meta::Spec v2 - Updated license in RPM spec file; closes RT#88196 - Updated contact info and added git repo info to POD - Add comments for find_extra_libs method (closes RT#43900) - Fixed typo (closes RT#86572)- update to 0.304 - More robust detection of gcc toolchains on Win32 (Closes: RT#62455) (sisyphus). - Don't assume dlltool is called 'dlltool' on Win32+gcc. Ask Config.pm instead (Closes: RT#62455) (sisyphus).- fix buildrequires- update to 0.303 * Fix a race condition when running the tests in parallel.- switch to perl_requires macro- recreated by cpanspec 1.78 o fix deps - noarch pkg- add perl as explicit buildrequire- enable parallel build- update to 0.302 * Create import libraries if necessary to fix linking when gcc is used on MSWin32 (Strawberry Perl, for example).build77 15283851560.4050.405-lp151.2.1ExtUtilsDepends.pmx86_64-linux-thread-multiperl-ExtUtils-DependsChangesREADMEExtUtils::Depends.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/ExtUtils//usr/share/doc/packages//usr/share/doc/packages/perl-ExtUtils-Depends//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/dd4bff62d19cdb296d1d26418f0952bb-perl-ExtUtils-Dependscpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PMؐe (~ utf-803b0c7e2ebb17538a0d4a005055266fb31df92997084e2772afc18485b373d35? 7zXZ !t/;f] crt:bLL zt5-g˵E%n5dB'VoO\v0tMT b9(cncp8Y?ʼnJf)CGν-$d"`Tv"0Gd>ŋ%#ӻݖITCsU7ʧa_}J[82W__ʊTаՌe\``$&V 4ƍ/ҸtaWls7}!lػ]\\G)ZH0~@-˧~i7.7 %`ڎC ɉIy( ebtmc7lpRRt,ob/ BrP 31Rq SD:ç% 2+hķSX!>;@noCwsj@nC}maL!| nB/.mE>cuT`sHmt2/ؙ~ 3 uG)|FIPwHmYrWѭyf=Ǔ\Pк(I0g ]7Bf 4`M2@YVR_!Ali ꍍJ$Ue.^] f%z7~\SM:. [rM끗p>Z7=k鯰iG0Jr7~O2]o 3co#X||z;!6x+j;a@4]ӑSGifb+Y9âq]=('@qԾ&"m66?u:1|j):\ʔ۫) 25q|`<*"i7gğb YWaP}61Hx .vA=/C@!B<&! ;@yR(C.'1X8փ Aܒh o*(c\IyC^R}.mJry7W9{td0YN/sB\$o: u+)@b!d7"p*-wokYiL+'k.3]VUÆ$xf,,w[p$ 5 5lIvdNL|>UHYĜ!]BjLn)0B L?ʹJGUsݾD“9. M[rgx" |ЭdB2vZyM"z1IU3 : 8ON`!f'9̪m6#9or-mu5dCWu{s^9W BP .$V%:ӵ%+,yfvp".u&1Q]*}0 ~8U~oo\cۥ^p;m|7T?8%qʦ6r0rfEYi@Nx%ŕ#vI CWV7}q(89wp:_0(]zbv8,k/ihZt #= ~OޅQ1UWQZȌWP" sdr6# %nc@E=Sݟ6*3q N4Gz$ HYfQkbc@oz~D  1ZA Uk|qJY"eUB+CO5)sq&M̤sp_$(a](\+O\?r?1fdEAv r{(n,.y&rA]US ކbT"?n Df;Jg(< ݣݵ>/{c# a ,ATqΌ#  /,~˾[wh.Cs&nYHE.1 %Er ǾU *Ref8fY7^T+層`4Y2HCM59#wNJN}W9Kvqqeܕ޹kOwcx99U+7YmqaiX5P&~bϟ% Q AJBL)/Vyl)x0co[RpM]FFٔ:"Fم^6״C:B[h+.E`U7<LZXMr_)\.K l Rn\? mO WE ']Y8I]isFfBߥ"oGGC cKhQ,dYnq ĦӜ"` @G'؀UJVsdkd6[;y'QqзC7ߤE%}1t> `օ3( { |P0`Ԭ pA$(F8]:J2SGs1Uv`DQ b;=&:!XVSW&:cjAVh: 03u$3қT6V-)UʻwKOtCĞTCtȴQeHFڸWޘ$|>~'mЦ6WIM j3>IDпhbp ^VgI5]k44+Pq'E;<}-V?>e.A JzpJnO!57rd̉4\{]j9]Z,Iǀ<'$u.wŧ~6ovX.`8%bK#Ss Ie0bLLk/LFNA HwL1n4{,&aTv(.qᄦE"N*̩L٤*LC YF#O^9~BEac3!)iWwWAemz#dc dϨqE%k/1kKT;F@TrHw3}7J vX$Q31^Y:A"֪nVr`X q6.k˰\2q+ȳa: ӓ$7S!3NFk{XzѰ j +!En<%[(E1Tؤ_dvzY}kp@wD{kBE:؞9JW0?rqi.[.Jd۷U8[z噗gDmUôfx"(Bs]w??s*bl[5AyP;o sw'Koqe>ag#tf2.} AQL\GϊM(F$׀LqNVk-7nVi J<&o@&6&⁥7ԹH>qu'mBz>%R= HمdE+K@\#-/*'c ~]3*фe|{X*5 *g>~TTx 2o~ֵ5ೠ \b'uRc̔+ֻN332@J.ڏtA' 1uWe؇ Pڒj,&;ױ8 3c H5W=D11%Q ,C3^!4@-H|m9S\EAŊk/uyJ4ڮY;*^?3 I>t@It%#DHݜ+Q%Z(gf:Sv} \)~qb~_+CI3|c!y LeDI5gbvb 1D#uzu=/d2n,Sv^gT=hLˁE= o*KA/U#KáƼ 5A-mP'H7y>{o8+3WZ]~ԼinVJ`#DMZJ^N:NetV ٴUMqfK@]#%>۸)bk|#=>TTg&\[kp7Ƿ;VcߖКc~s,&:Ƞ2 N > K "U`m9RI3ֿbX9Ak>33+y`^[), Utli3}+L:4ozCZb%xax/GfRT1@9.;WщAߔ2]Z`X TDWCHGeb,>&%+g>8/[7UA"xd-Β'#`I!ԼTЩ{&D :;5b-+C U.ߚ[@I܏ճ^~ʸv Cj ɥ&`L:HZf!T a8fvPg h+JׁPZaz%R{"_%%ʤug3:].%N`oLE@I.ŗ+mֳ+AIG)5 kcJH4XfcIƩ!.тm".kUZ1,F^IȂwC,/5Pu?4pu.hk<-zG+,wM o턕3&ÖZ);"khm%Y8*}y*cBJ[8zƪlC䰡=sr($|Ԭ.!Jؿ{;^Gb 2r]%/'K`ǩ*tit7q_($dwԁv2>BuԜZ[1]r =!` .jsڗ&\G!/P;볗UFj9v]Y*l79 bQ~̶"X8`{f3X pCF*~EFӏrjVjYoZ̠u;@e|s&vOk"qqZd0!j ;o̶O9HIهBYb/v^3nR5_om9u8&G~s>¸SZweb͹`X'^OzLk^@ptPPIW5]oEsVǝiwg8w PKZCJJ?"/;#qg=o(Y6EŕmBYzxMr6µ'vܧt?#@Zwa`PNY j\Sn0AIcx8Rݤk{b 9WEgt^+c/U_:4(o.KIFus|CdTߊhTܧ[]z_i_3&slKI9e2"$.x#z{qMC, u^~*@X=Ywb$٤ š?^lmye0%cޣ 0G+_Toof΢(?MCQEw|aA G!oK 0ڙΨl؄{,,ic Hʬv'N]ϧ;M֞ᵐi*Mdkڎ 372Or}RcPG@ E,=U7`n@.pKGxQغww .r,eݕ QF n9vE;"oyQ*ItE<] [4axq@DpҔBYW[ {\e Qf 1:b@4  A҃UzIj`V֌geȉ<aCB͞VO jtp p ,ߎ]Eҧo~fF-Nvveh &۲.O$05L-Ye|.H+g?uK,YeQ'-$[ح~t/i33]f]k1-3f.6Z+&6$0xC_zb\HLв̊n&!-#짇P:\9T?ЈsGxʽ8*X%1k43ߐzi$]ouh!Җmk. H7nGjOAb#=:ƝAQQ. LbR5>=Z~rb&hF']J5fH/6!ŶbU/h3MEԗǚ7EYFN٭; nq!Nz(ӼcRϡĂz J*1 C^U,vxKh2h4r{ʿ WI9?-0Bdld@J/^{܉^3x\xȆ87 T%| Qڱѝmq 0d3T8]X`-: ܧ&Ww9S m~BJyq,݋Qʧ*"lC+[̳UM_eW5Q}!4g9y'O~ةh$V J?+qZ8b.an ) )=\, kD9f4dP@QM&BFZ"L# IԽDJaHmedTC:_.{x/wչ7-lI!u lpGʮNLN鑯D~c\Iˊy1[ lzymc_r䑀Nc:/:!` l7bd[ś!(! |)A}UCA%B>%)VVbmEHnmI GWޮK|P{r3#b|~|@ޭ{I+˟̈́uGp\^‡|7&=4cRb/#N")GGÈ H+xz:In;٬[ _ &Klep/9rHf;tJS%ec4o(aINpʐI| 筸..B85L;8Ԗ*3Wu!~!WH&/~=j= 9^Xo:'PB{d {4b@O5%-""x\Q6Gy"]~4,WlMK&S]f1O . n iKKQР﹧wE 9Eg ;8n5htn/(|)b&,KPQIGI&LG [opkijD9}tqVr.ZKα##z_:T nV@T󟡴^ek nTLRinacE$޽2W]̆̊'Ӳ*/f8u8b*BsbeMF&}gCi'.Ny8%pu-~$ރ'ͺJ[۴C&Z ("w;|pLRg4졀< X+aG6<ƯD[c}(' s^18|_6yꎆZBqT52k@ #C9^$8yŒ hVrt fhTX OVzERQ O|k ήXyI Zr@$oX:3jQo ]&p̘wwN ġc|iv"m&W|cM۰iz_h,yZ^#Ch8:^N濯 [㖶 >0HWJ  V(3ދ4/{AR$qF1/Jc:ۍn\Sqm4 7lS賓QUHƸv9WZۤ/ xe`-y5/t*m[*Bp'kmF'G%0+a%D(nEa-Hd= E;&DFTe)e2աyyLlr5Qk+dN3.H3'w:pPp6GB6L'.|`0n$ - aM.;tM3/Oս:[0Y?*pyK/?wc:\C$ގ<`|/%OC2ȩ|Q]B#{״I &xpиn?3m1HJ6arLFF ƢWzV;3Tٿi+_QaLWԧP12gf0ǐnMi T%! DPQDΠp>~y,ƞ)Hh7J=<^hITu䶺>#G…轧C1v"X%R1cW{zeXuQK}Sp؇-󜒒k3l1:{oKM fRL9_R۴RkHjZ֪ U.(9UNC&$eq~ҼjW-'_wgE7WNq&NXN޾>#'Ą*a Lii[!ux*E𪉫YDF$΢R2?רXA*CgvИ֡zF;ͭ*1SP~7NqIJe xQ9N/R.A#5,uj0Z!3z(cHT龩6C n@kS T#O"Ux0o)]h,Fo_+ R$5i3V؟DQyUـ8J鏡tPͷbk:*:TiQu=lf:7o|tt ~B`,G\672&"] =pu⟴4/ N^X &`܁u=|:xE'w,;b䕢b?d"|q:vXxX 9{vZ1rcD* ܤ멒WݢZߠ߁I"@U4γف.>엥u(rg𠘎EE3yx H~jN>b99t<țM"ԉ*:A=?!#[=yr~jʢF +,?I+zm) X> ˫4X;avF/Ș_0 )ev/3g^Gr5 yL[QQ;զzfLCEę%v3 *Q*yC |H 1I({ty+O 9, kI 󉷱9!H97ڷf LZ[-x*u R&V!tHxFx\O|,> G+eq [ Q[@%Fu]W'nۦm6hf=τ۵쥫ABc6m 55|^qC5*Wv~m=>jNrE$Tq&Pp& ѼFnc80qo%gy8eaɘf5h\R,PPHm/cEcC#F׋s }t} "(f`1yG(Ό+R?֥>)c{Q"V5 n1JE($HO*W]l˙@.D-p>I EÜiGRe߃2&adkr'U*~K@#uVQ^eѴa ᜐl'P:fN*Dߒ\p<7 ZmPs8RAӬ,Y ,Y@.i T<]x;@wtYoL] Nfև/ͷxXCROD֐}haU.SFS感G}ц‰ >.eO4{„wSd ;ƤpAǯ2Qdȟ-R"GmƑ,?LbW`Rv ]cWߗ>iÕ4ٛ:mA )Ƌ5{+R3 r3!YRϩHoS6]("m+ɒR+iqIX+F8 JhmCpfQ X;^D !8kA1,~c' ]zI4"GѠP>d:3ox q3@ΕEs@=χ@U@r`&^^~lZ|_nv?^OX@wOTL/tu0- UGڅJ(@(O~pec0UYM4CWJ>M٢)AGfNCZn|d,ȟu4Ď/I3EMQ=[EK@YktyXג?>V@2 9> /H8dK$h'& }˼u1[nJըAQM!5؃ejYr/RY:q0 ST7p^5h:FPMU}C x׽ߒ<ҥp{05xuXF¹xR||iψ$ǢUgn؍+MȦJT |Ӷg%z?wSR=iV*W#hPh*0c i@,vaEV2b6̷2O V _BBx+{{ÉԻu46o;ԡIӲ1̖6B 4H'ƒ]%wrp.~`< V] %\P$2BiZ"o_U5^q@`#q iK-;~PdioaGz K8Q^.IBqY+/ ;QCDe7|\G˔4UvCx^TgF* S* /#e޻|FNP*,xs!e5?~S+YU=>D oȮY.eM`_Q;]l2Ls VL2HS I-ע@d! îvg26Uw\B YZ