perl-ExtUtils-Depends-0.8001-150400.1.5 >  A bvp9|h*7Cphj0JyZ=DQN|zT#U ~<>}wUq"Qq#e8 O'^-dӥs5f;̔ ~o`JsfPPD9'ְRn3.qs l$}9(vf.l ~aőоeo k/5'T§"$ZR^6Co4r928f07bd5982748178bf47661e584457cf71f41c9fb72d6f7e1f4bac2579b435e7abfc65e91f5298305f1813120ca0e65aabd72c]ȉbvp9|1E_ǭ/r6HPg$g'"DG "> y*c{Et.ԫ<+ o">*T蚉wE-!ٚ ,8Ih -b<. i[Z渴k[ K Hl9rt>p>?d * b d h p t       % , H  V  d          $ @ p  !( C8 L 9 t : FGHI$X,Y4\P]l^bc-defluvwXxtyzCperl-ExtUtils-Depends0.8001150400.1.5Easily 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;bv^sheep27SUSE Linux Enterprise 15SUSE LLC Artistic-1.0 OR GPL-1.0-or-laterhttps://www.suse.com/Unspecifiedhttps://metacpan.org/release/ExtUtils-DependslinuxnoarchDd#?A$AA큤$bv\`bv\bv]``bv\d3e989c1c7327ec5c7bbe056cf39bcec2a4b71bddf1dd6c6426a5ecd2b4b060c4d32dc4a75183c3da752cbdb103dfcf54ef94240286c481ea3750e43488a80fcf5b29dd507141883eec5461e2c7ec518a6a953de567285390e1070f8515ad8b0d136f64fa13e125861b389b9c28f7c617a8fd64df8aa854b2b022362443d6d09rootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-ExtUtils-Depends-0.8001-150400.1.5.src.rpmperl(ExtUtils::Depends)perl-ExtUtils-Depends     perl(:MODULE_COMPAT_5.26.1)perl(ExtUtils::MakeMaker)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)7.443.0.4-14.6.0-14.0-15.2-14.14.3`Z\V^@Tи@TRNMA^@M@L@L@timueller+perl@suse.decoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comvcizek@novell.comcoolo@novell.comanicka@suse.czcoolo@novell.com- updated to 0.8001 see /usr/share/doc/packages/perl-ExtUtils-Depends/Changes 0.8001 - Remove hack (cf https://rt.cpan.org/Ticket/Display.html?id=45224) The hijacking of EUMM's `static_lib` method is now obsolete, as well as causing problems. - Also added a couple of code tidy-ups- updated to 0.8000 see /usr/share/doc/packages/perl-ExtUtils-Depends/Changes 0.8000 - Bump version so https://metacpan.org/pod/ExtUtils::Depends shows the correct _ExtUtils::Depends_ module - Quote directories with spaces- 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 macrosheep27 16519586220.80010.8001-150400.1.5ExtUtilsDepends.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.suse.de/SUSE:SLE-15-SP4:GA/standard/3814b8f6052c2c2e083414b45763052c-perl-ExtUtils-Dependscpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)P>)Ǡ]utf-8ab635505ea2d40c0f87dd9290dd1a4514312500630fa56309bbca0bd99005d57? 7zXZ !t/:|] crt:bLL hY z1zoYmK8=_&*ǻa>4 TR:wT9TEJGL$V]:~ٜA AhhIXF8@D'9)lF=IȆJ T{"͡d[vRI"kFsKDBs&۵ r{Ї)b(J"ڊҔ嚢 wNFJ(ZMF:.M0άzczifkMcK*A ZWePyb^?eq;#ErI5yOȡQA)BQdj:~8Vc>WQmUPz>A(UIvH+sYf֭y)KGPٛ/c6ȅ`0Y|hUr&"I"gwbqqWpn3w)k9 %s.WeO#[2$&GC0 ?P^q11 0O+?0L.a^dwQΣ ]B;7ss6ӽAK!#xҩ$L gydJW]SJ^ °|g),:*\gȾ!KG[_ }Y+M$q}?th`=`,̞g>b u9Ӊ(#b%-^0ҺZ[LaQ`w8P#n˻ȞMK'3wnq<` `w`w`?oj:FI]]Tas4PYcTGe뎧& Pvǂ:0Hȼ//#Զ_&1O}Z;pr\AUMtX~Mׂ{~ߖ ?dg|Ï_*pY#\[lh("Z]NXhMI0Itԡ obf%L%++uێC?Cy})iun}OP.Ju2ļ*:9zK]rհoB6Vdkf{?1G%Qoc֜F^т : RY^p2W𼎯"/M0 ^Fxiax8Y`>%{TYs!PUtEQu2j>!+QS;5/V0[;Fc#I_dii]gMSI |[g׹ӤM/ANMxfLmTi:ӒL`ҝblLR7D;)g^oޡJ) |^d1q쐓ļ ϵ G :ާUy61蜴 DMid&.!6#$z^嗊Ev`KߧV7t09ey۞ iYHNDo w8RiY`1q}Ec 50dHL~3ݻX0 Hf'(T}7 0Ď0z-E Uq/)na@1-9[GC~ pp1:'Usad񣜀n-!SuV"+d7H!VxYa uÎb>Z`HmR.9SR(܇[ PMVsf&ٿ¬`fiC s$h-M:9QskK3˰=d3YN_Lg/+)(CYZt DݸB_=-`3=/C|lRzI&ٲ` V&T4IKHlS5 ʨX>F_;<(Un$Vb.~94:=MDA"$ ):'GAFjBRgmD*uc"@>Fa8CZL=@Ƞߐy5> F--فD2,|juٹ^FE(Ru!O T2!8% PCbm}2=-=jEd_|dO>+f[~Fk *lBGh $*Ń!̴\vbu-~sh5HtsqG&2 ^"9DY\pHZ+wX 'O~#XTۙtqi ,' W]hJvjpXs[OL/u_gQߨ:A$Ni*Gh] b̧6 %?zbzEh>&Hsjin`|@ uӌkfN_TE3|AA& {|AS6sX0m}0Jf G ?ACYs^2hȑ5p i-efrrY~LLo(G;yct4&!9,]T؇[/;3)` {q UuG?e#d9ؙ0B)M[gZu1{i6Q-_جDA ̘2E`@ӝxL`XwjEQ ɡKkn9ACߟܪV}:vzL؎RP\qPTXiܵy167EbmBRW=,VM4%@Y^{FH5ټAlrFhc ;e=vD_7 x*w( ?`j=G{ AS4aKE"(A]EE|%dFe8U/`"BY;D|G-޹dCK"h{w6`a )/ @ݻftA%V>bpY``/&/h*rr8006 FeҬcipIu9k @子ޫWFO1qэs^X1ԆBnzbsBj?Ӭl[[:u9WV>OfnӉlQ`īU@&FZ5wG4*f,T &Ҩ-oYg-9ֹe0,bvhVWkUȔT$L+S FL(cɋVXڞ Y Sw16=|v>.{k6$Tq5x¿0sw[ptSLyK !_&D;2"qHs(CuP~8shu"<'.M?5cRMWvs^,*.D7Q#̾:+i2Мhp@2s/DsLlxHjoF]_2|qISZ]"JtjϿmZxp?)(k \_,i(?uM,%d-2zf;rN3M-j4nDPb%[*o}oz#& H tÐů1vR題9 ]+JpdNV|+ J8FA͠\g7UH)ǨR눒r#[uёZ$Yþ7ϠfPv^$АTx IHh;9KPw6=I+b7X4hIou;=!HV8*C~m-P-$gLoHjN ADnX2fxORk8WU]'v Wl[#?ɨK@܋%Y Y_z$R_,δ%3[{֤+ʃ^'wI`o 7nenb:#糇?O[ *ބŽ$ԽEhGKƓwA%Ht3@Bv=e('yo1tۧB!Ϭܛ . #I@ubZݣ?J[zۏcSBݰp5iy'5\^Wž\-t\Zjo#IZNk@+yCckxBȀ/)&<&L/'x 0Oi(B$-mf Ct{m.vrpw35dwo_:HyzK8NÎKA4{@_}B.&JZ6*:+ r+(>U_4Pף{R%.~Eg[AFw,smen (:>W@jB >Xo,hpb6Byt \ˮzxT ΋ VOg'*d#"Kee.82?䒧&Q-6]f>4ص[߈|{"NO9d$J1ʠ$P,H֏U}`# s_[mk%px{nIZ\djĻ۷*^a-9C_Eg<}QQ: R>rFdlFo[Mt.FbkxKSX]`v}L5,8.--YӖȕLd{$pxC$rʧd[0u}lwMm˅C;CKWE ;^SM1=0(eD$^
nM(;I+ T]ȧ׋N'lߤ8^u=F ;sTh)AmϜ;U$ᯜOEk۝i W/*__S}>IR&kAacQ˰NBgyU*yAޜ}[v ENQ?.naL:u ܆vI T[IiHoVQ=QDč]o$zFS<\7xkb]P8#j*> G`p+?!T/E1wMn3n#Gu@7 wŸi}jr;TOg`mAx$Xvss?c%e@s*4baxX=Uw >IpeM4nX(12Xd\#/ෟ}M0HmǗAfLww'T=FtX'iYES ?z5N. ^wO-׷0e!0d y3BRR.0ٵ^u>iU;lnilDMGdPdIkJ"rDG3,EwA^@`,`̠(QtDڻ#F-"$C'.-mbrI*s--1hhӑb^ʘ:+G~WA4쿋v[,BtY#(RtU;"aB#=15"6܏BG|KJT*JA}t6xF@4Ma Ǹ1^9"ml5F:|9-B;ʡXϗe0Uw3Xg?5yׁܵqC듆=CxŭƞX6F#OQM̓MV=,pIzCK/=~Bq=wV9R Di7}6; b xGTۃ,Ŷye|dIvIpz_C8ՄE~g{|܄p჉(}‡i0r`8LL{2^l+؃aM04jN*2G_$~P 5OTwPh!6lMЊͬ3*mM6kYO7Qsv]hi2eֆ6|y>iڧ6ZGゼ2(ͳ9PV!{5>ѯO3)K9ISq4n1@\#~d]MbN6>)jW(F\-zHGrET-J$m6Cx|x<j z\p"a|}Br':^rӺG(<]Y:%]SE}i+ϟ!1 xA" Ijkݽ62qiZ`K.6; Wns;eiBS!lɱ` }سka哭 *< f%F ŀӰ>RCx6~vhnS])l,' 0ݳnf3v86p]ӚjUsǺOj8 .K\wjz2y8ipzyxHpnYB"W2plQ;g+-nx# W78x趛BhJiQHa8+R*Jݔo0O#q120 b08SRz0" u&ژ]?Zƒt1~E]5C*.Bd\9]YW@SE;_J cuIIOnk3jK1f`ƻ)CE};Mg$SyX; P!_>Mh>N߫>q=4T8ʌ nB>lmMrQ?Q"&/-ZOl]R\y۠ٯ5& WUYGb_eU H*/etU~/{w~kr>XgR]`"dJw<H d˩wĶ0֘ϸ- 4X<?(6H)7.1L]i2 r!/amhP=SQ~͡=a~Emy% 3ꁛ@+TR?eK sW(JnCo鮼*oʑR9YXb>4NjeXY'O+Uc-}QJBIV2E?e-gL]:*1W:E,Y ` O|2!_cy%tq+X*z_Ӕb0)&'fBWg+(%tjmqkwu߷ym/DL`Ij6S;JW; "ִ'JZB K!a{&w )_3.ZGXHK}Eۺa؄ee42Bx'd9Gov_{b4K,C_,}BƌY#k@{R{főq~F$%YRtzL ͆ʃMo {a)k̓ⶴk Y^νz7Jd'H+د:Qɸ;Y,DTųSvz=l *PųVg=dFͰ M-FH/ע &#:0@i]9_|S`X4tR 1b*Rr5T=nAneGP`'|RQ׉(s&4.[w/~yv֧^7(wM?Rt{BW~.O`$4MS{ث˗½3π{һƵxо cە)xTrA=,-OCLl!Cg\ >m̫T>.tKNntUFwU|L_$~RƆ;_!oqߑi5-xm񲄙X}?@$~%N#'Hw0U_d=Zu}YHT0$z_ezw`Dà]W]5 s=p%sSW@*.Ð]t~ ;ɪr\_| ݝ2X+M^)Ͼՠ{E u*40Ğ[] .ɞa3P|Wqc)vizH}*f(9{[WXpFn-ԍàI/hfD~CInz䞺 _hxUTS'.L~8BŦeI$qv0pDG ;)J;f2#E5:a#|r{a:m$fjb 棻d@'cj݌aɊ~s[n*9+zQWɁ['-qF8|.{:qDdϡ X$ wjl,%dD છ h 5S9*+4=>lr|e~p򀡢_wpN8v97 `7]yB |kE]CIHyf~d6Y7.YwP|ascUv·|-T}ѧT| Mύ (*6A(o}C3yydVQεbZ-$E*fN0eˎi:ەAM.K9yW)$.,'Qx;s=A弒'2uYT@Nq/9CcF^,!VHpdd)*yK~ڌ>=E;e2Lr+^Y@3~HvLLVDCd|/m. Ica:b׌t&6Q%:=vC7];\O}S@{pwm̴Oi/]Me׳`C[FPܑD "SÒë4Sn뻐uk' Ǥ>CW랁F޲R‒u Nhot .b J4(;|2SOw:٬Z;\FcnLz8쉃1EG7*EL7SJ*j@ߍJ̕ep~%_S]\f=˧'#sĬcVv~pfVgL]pb{4w;?_G${iӈ e vOT{UeSSbPNRM/ )7$M3BhI8Zڶhw,Ҍ&fb1YI"=}Knt€zGbx\TrYᤶ^e3>px;RҤPg2>atT8xD]Ch ͦ-nq{C@dRݏW3ԯRn0NsSܑy٤ik`Ad|n3kӆM%b]`u& YZ