perl-ExtUtils-F77-1.26-bp154.1.18 >  A bxێ!M@eeeƀv%Pƌ|FW՟yL|I۬dV6|=rB5>p>?d $ ADHPTqz    .  @  d        6 `     U( s8 | 9 : F4GH Hl I XY\ ] ^Zb>cdZe_fbldux vw( xL ypztCperl-ExtUtils-F771.26bp154.1.18Simple interface to F77 libsThis module tries to figure out how to link C programs with Fortran subroutines on your system. Basically one must add a list of Fortran runtime libraries. The problem is their location and name varies with each OS/compiler combination! It was originally developed to make building and installation of the PGPLOT module easier, which links to the pgplot Fortran graphics library. It is now used by a number of perl modules. This module tries to implement a simple 'rule-of-thumb' database for various flavours of UNIX systems. A simple self-documenting Perl database of knowledge/code for figuring out how to link for various combinations of OS and compiler is embedded in the modules Perl code. Please help save the world by submitted patches for new database entries for your system at https://github.com/PDLPorters/extutils-f77 Note the default on most systems is now to search for a generic 'GNU' compiler which can be gfortran, g77, g95 or fort77 (in that order based on usage) and then find the appropriate link libraries automatically. (This is the 'Generic' 'GNU' database entry in the code.) The target compiler can be explicitly overriden by setting the environment variable F77, e.g. % setenv F77 "x86_64-pc-linux-gnu-gfortran" % perl -MExtUtils::F77 -e 'print ExtUtils::F77->compiler, "\n"' The library list which the module returns can be explicitly overridden by setting the environment variable F77LIBS, e.g. % setenv F77LIBS "-lfoo -lbar" % perl -MExtUtils::F77 -e 'print ExtUtils::F77->runtime, "\n"' ...bxۉgoat17_SUSE Linux Enterprise 15 SP4openSUSEArtistic-1.0 OR GPL-1.0-or-laterhttps://bugs.opensuse.orgUnspecifiedhttps://metacpan.org/release/ExtUtils-F77linuxnoarchYAw A$AA큤A큤$bxۈ`+Sbxۈbxۉ`+M\2Hbxۉ[u~bxۈ30ccaecd393851c9566549b2b627a00b15c48d6e9e42fb7e0082d40a39fc87b0072cd0f70d86091b25ec63217252bc1bb21d629d42f6e379ca5262518034125a5d423c651bb2a242a4fae2a5a7153f43a29b6109a0eae640502c9530bd071950ff6e5e841ddba7c9d3198e1c29b1c563f279e967ab90292b7c6049aaa88d08979034b98992c7662610828affe58d6e6a5bda33f529e5c901fdc5dbb6d50db2bcrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-ExtUtils-F77-1.26-bp154.1.18.src.rpmperl(ExtUtils::F77)perl-ExtUtils-F77    perl(:MODULE_COMPAT_5.26.1)perl(File::Which)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3`+]4S\1\ @Y@NHM'@L8LL@Tina Müller Stephan Kulow Stephan Kulow Stephan Kulow coolo@suse.comcoolo@suse.comvcizek@novell.comcoolo@novell.comcoolo@novell.comcoolo@novell.com- updated to 1.26 see /usr/share/doc/packages/perl-ExtUtils-F77/CHANGES- updated to 1.24 see /usr/share/doc/packages/perl-ExtUtils-F77/CHANGES v1.24 released Jul 21st 2019 - -------------------------- * Fix of library order of -lgfortran and -lquadmath which effected MS Windows- updated to 1.23 see /usr/share/doc/packages/perl-ExtUtils-F77/CHANGES v1.23 released Jan 5th 2019 - -------------------------- * Use File::Which and List::Util instead of bespoke code (mohawk2) * Improvements to docs (karlglazebrook,mohawk2) * improvements to tests and warnings (mohawk2) * tidy up of code (mohawk2) * simplify out of gfortran handling (mohawk2)- updated to 1.22 see /usr/share/doc/packages/perl-ExtUtils-F77/CHANGES v1.22 released Dec 2nd 2018 - -------------------------- * Fixed some minor typos in README and F77.pm v1.21 released Nov 25th 2018 - ---------------------------- * Adjust ordering of searched for Generic GNU compilers (Nov 2018) * Addition to pod format content (Nov 2018) * Use Text::ParseWords not naive split (mohawk2) * Modernize t/require.t (mohawk2)- updated to 1.20 see /usr/share/doc/packages/perl-ExtUtils-F77/CHANGES v1.20 released May 28th 2016 - ----------------------------- * Apply upstream FreeBSD patch thanks to srezic for submitting * Fix fallback compiler logic to support gcc-5.x and higher * Limited Improved gfortran linking on OS X Yosemite+ to OS X v1.19_3 released May 28th 2016 - ----------------------------- * Apply upstream FreeBSD patch thanks to srezic for submitting v1.19_2 released May 28th 2016 - ----------------------------- * Fix fallback compiler logic to support gcc-5.x and higher v1.19_1 released Mar 6th 2016 - --------------------------- * Limited Improved gfortran linking on OS X Yosemite+ to OS X v1.19 released Dec 12th 2015 - --------------------------- * Improved gfortran linking on OS X Yosemite+ which avoids PERL_DL_NONLAZY meltdowns v1.18 released Jul 7th 2015 - -------------------------- * resolve rt.cpan.org bug #104495: MinGW now needs to link to libquadmath.a Thanks for the patch, kmx. v1.17_01 released Jul 6th 2014 - ----------------------------- * Graham Bell's fix to "Add check for GNU fortran .so files as well as .a." * Typo fix by dsteinbrunner * Fix Cygwin table to use Generic GNU settings- use original .tar.gz- update to 1.17 * Derek Lamb's patch to avoid an uninitialised variable error. * Diab Jarius's Solaris Studio 10 patch and his gfortran patch (with mods). Note g77 is still the default if both it and gfortran are present. * Rob's big Win32 patch (Nov 2010 version) * ** IMPORTANT. Added in simplification of GNU fortran compilers (g77, gfortran, g95, fort77) etc. suggested by Tim Jeness. I used his code but made a slightly different implementaion introducing a 'Generic' 'GNU' database entry to which others point. This also superceded some of the above patches. * Removed places where .gcclibs() is added to the link line, this appears to no loner be necessary. Routine left in there (but orphaned) just in case.- switch to perl_requires macro- remove /var/adm/perl-modules- add perl as explicit buildrequiregoat17 1652087689 1.261.26-bp154.1.18ExtUtilsF77.pmx86_64-linux-thread-multiperl-ExtUtils-F77CHANGESREADMEperl-ExtUtils-F77COPYINGExtUtils::F77.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-F77//usr/share/licenses//usr/share/licenses/perl-ExtUtils-F77//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-SP4/standard/4572327e672344ead4275364c4f2f3eb-perl-ExtUtils-F77cpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)P̓w>D [utf-8471483a8e388ce8762368360993b7c5c068388dd5468982233efdb10b196f515? 7zXZ !t/5] crt:bLL >,pc"jCHGg?hl+[GǍ+Kj~Nz 1 RI<qEjt A+W<{{P;| $J vL[~B\"ߚЉG@bdv,Xܳ(OxC X[PӢÍl|Tw+iQ hGlW`?' ?rm՗ݭ߬k/'Y_sW &4r#k91q|+fxp>|![$d r+=b\#}_hxm+"nSzA $ Y]Z)׶eM{@BN$C PaqE3_ӜSP.'g8/OFkP.)LrϷE޿{r-?7 k`!.f6pM!A^y ;Ys@]2jִ<1iRI%ARjJK+ֲLCtH6v vFpӘ'uv/p\Rۡ=\nW`-\1A|4*~Y5R;/OfjgG\͚G6> }*Q4v&A+! 0(ǐϢҾ*b2Am jn38n޺_vcJ 5 ҋ#9/#)uC3"L ޢ/EK\o%P>P$->MٚtIVԜt C>q_-$:w37M `m*P%Z+V:cqCVJ$2v*}bL";Awuszyjp>ԇ$Z^oH֨' Xzy)47U귉o9TƵ;?Jآѡ[K>t͝]1 %2oH͟(L[UadR_05wƅrodBl6D4 $3'pzO O~/*@9gj9^piO;!ERр=1; ^ng[M|'$c 7$;XKG j.VOt pҮNk-jl<^Z>7| 8JVqjKڥ8Z'Y`T5Q;ɽ ȉD<; EǦg.mm6T\8r,-{_4 _7xQ_XŮz$* ajB]s=ws43q.mCghwפ"rC ż|z! dHXx㡑UI-CWDpUs3+ `]2΀R<\6MFk \~2#}gf 1d FQ`+Yzc]F ]C3@>SpE o,H;z]W}hKui]QT&"w*q`"vzOmy9m SQjAP-hF]JY}+fدhJA$d6 fPeKWT&ɟI?GZ0rdZfClZ8Mefh޽~(J3f qw y$LyT[:Θxg8:X(\VPww"C}Ĕ j: 93~/ )^TΤf.=R*0~ %jOT:|D(k :p`0'1PJSC*:ǻ }ݢP'J|ڈxѮ:0fܢk``N bŌj#kK(_[ϸKMḶt-툯?C~̤DGJ1R{sAAjb2V +(7kg@)g/o`iZ)ۙF/ U&}W& ^xtyX$BGBA Y2O TOfg0Hv$"<T ι^C'v_qo=gPKDGZ8[#Y%m(/N0mG?,Eo1쪄,<3#oKIzF)51FQ F5˫ZTdP}$ })<"@L>WLjNc[Ui#ߥ _hH.{cjJ1xCyx[͇+12!]Qյ`Wj ^}E w''4]t/@7;qQOugiTH|fn>W+Y.a4$pNb75 3@ ַ"A)T%`rW~ amUa-tv%" EUN ЄAvOGW# g4fP`D?TA'44o !]wVpHa")K\μOW9Jí}Q-}?>5ǀNfFY 9N#L+Q֯-z Ȍ"B؊kEdyt䖎#*0UʠÀj&Aݘ2~G|]i` &vtŸyK\w]Tz]ZuT+?hqaHr'_ nF/Mu$II\XO"#s&Z~G*^ڕlTE]LRb=W!]tN~ ^fqEYPc+eGG2Q0 ˣ c[ tGmy10ҳ\b$$ʢdNVxKViC 3 m'ܡ@ѻGɣZ5Vc@'VXD2܁L~Ot :mz7oyRvB,19T?j"4˙!$U (s6@afߕ( ( GqwY ؒˬyoS%WO{=:.kg8`xmgs;:̓bA\_ضaKzܞ!vYnR<\U!xI!F"r h: 8Py^:I4~y-< )lW|,/ZmZ7KW@DA8"U TqEk:̂w70*XNM*WӰkvKzp:5O:|ȖGD(Hs턘-sPc5|!UA>%HF1wQט?,ov˱qH-ӛ`^? 3ۉn9֭POaU4 (OՒndp(B}-,yF? h=Z1fueg0b-02Tٸ*f`#~D2xZ_n@˳P,|/3]9[cs1^%a V7@ s11)Ng9F({6jD7|iSz|:0 4z㙾v+<z>`9f4kw.}{+07S'Bҭx5;m8 5|&Szx'9>I39|hDt>0MYw؊oxy.rFZb&مP[r,ig6vSbImNKgbKz wm:BJN n6C{)3L*LMwD͆]AVw}_$+w@ooD̺b xK룐kzb+ְbXT!fQ$EW,D-B*=ZϪjy~,QP+ᴯПjHBvu* CpPF#cT[]h~ab|O^ޫpZٴfߩ])$ FկERjnn-K (SWXclU ox؞1 oQՋ"3(耞U~ >D\kUn0T8S'~^tQ=+m8AAaJEkojq`RA2Zeh^1fɶ&:,E@4^~>?8}BDn{69h N@!, A3Z#w*@I89!*ʰ g]M"˥8o8cL@1\Ue2 LlGͦ\NJ5"bZn)[c;C+]䖻(J?3/&U@13}>+g9=Dx3JD?IkCדxD:hoW5sMf)1,Cڭ) q%ʅ0Ռq2z3Atϳy &stdڟGshr>Vz"ëf-J*zb32@wps^ʁW5囋4Di*e֡maAc-jVhcRsϴEsSO>v/5hv zɢ^Vwps:!dㆃWLWR*ִ[5 , j &q./'QhgŶoű 'bFl!DsINR)԰R eِv*X VpTzӯxj(uǽ %}쟨DaX}yfrz+S "K3 $MS,czK(,sfeu2J.`Zpݜ ѠH?.X`BΨ穀, ZVi֚jF8c"l]̿ _M %DgC Qt֋Ӝ۽ܢ«cw&Člz%Xw P=6H~ȟ˾]@K( jw$a7Kёtܙ^[ldFb-}*g ۛ|XR2QW@ :H)$kǧ}))EaskQ~7'>IQ0< y0%fYNŽyL7߆z ?A{iqo_)/VNJ_6Ubmd'CFUjlq:I\y%`޽K&oR8n\ T@ ӻ/~֠ϊMplsoY^֝ѐpb=\e+,nrH K";rr%*Xĉg~ֆK[nϧb/@M(pwN%VQS(FcG-AF6̅zg:oM:u4ԃ[-w#g^j&A4 Y"b,9!̻_\~q-9|/*AMy/:7᯦P*SNw 蛗Q5zLZȮ(0SJX<8 |>z;, s1Tt"*k= IF0lo>wYU:֏L eO5F4Y\!}Z>X^e Z}LMzp1`q &D$Թk)kf2 {!!jǽh;}eli]ܶ'W#X' OVtLY}y~1ttO}EeN5OWR%<%Q;2 b':vӠ,R6h7|^)(Zرlb_}CZaoOI8WA<1|pȏ9-ϸ1slWlqz#\Q''(An+NRokxX2@1ygNdp>Suc]x[iBכQـCLNSTRL51ދ "՘}!m3IPhdY0+ɠJaNrC2Ҏ )ꞓ ڒ3.X"_PyRF+Y7UW8|p.pƔI;w(Zua!<ByĀHcѳUYc}\HyRڧʹO^Cn[WWW+rO WCYz /pQigoM p:eGrʦ(2\4SqW0(N8WB@m:CH" H8=]9;AbІᓎ O{Vox 4h gB+dq!}Qĩ:+(m-<+۱@:\sH'3 6+A;p"Kԑdk}=+(́gjpϯ'6LRw`k܁rj$ԣ5nMvm=qNz?;i!M.O0I`qPJEuϸrk¦ L\/n\Yf2@ ]òp`q4՞ i̭ kRb$ȰLϿ&^eEt!۞hn35Z4* @jlNƝk-<+"Ck\z4 " ɹpVw8Sjs( S~>!?`@Ģ䗗n!M˭Zv6P~*(-Tј0k&[:5߸.Iwƌi/lkg.U*E e#zW'^2"bD Gjc)B +3qΊ;{x~HyZ()Y K7MO~vyjpis88Wt@Zb9z6T gboAooWL\N'E9Wsh;:8{=~?bd=\(,ʶ.r"^Mj`tΗN@|HC5 S7=$#*]q' <~nֳaөN z@$d#iuğl-e7OmOe"0ِ(xqjbo KMקb EiA |521U;53޹Fvvn/8P_ԶyF1[*Ǖf='\xf[tUjP:=sHZMMaeʧNV9m>şFiDf|$dR|f #5H{vZi: 8jٶu? {2~gheڷ> L‹U^2k*OM[Қ;0AaĚB  Aţ7 {qyMRF;D?/%XHb} )N hJ3R,]Mou,erd}FڏV:ksFd}S E:@-^'~ 6<-ѡl<ڔUl?nZ;tj?8Ȗۤ:˴or= ۋR r E6$_c]ә3:4mdnT>akD-G(%p}{z Na"NE3Vi&V~ӷ&Z|wPy@zѱ /elS#ae `O7K神/ g7|K[&,%-gMI* AS&>y8erA73Ij{e+! R+gbrfǔYXݰ'GʪHw%34z]ß:%Il15?JԠӇ P?%>߬ZB#ٜ.),n2e 8v/mku۾Џ,CM=j  YZ