??????????????????????? ?????????????????????????? ?????????????????? ÿØÿà JFIF    ÿÛ C    !"$"$ÿÛ C  ÿ p " ÿÄ     ÿÄ   ÿÚ   ÕÔË® (% aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥ BQ¤¢ X«)X…€¤  @ adadasdasdasasdasdas .....................................................................................................................................??????????????????????? ?????????????????????????? ?????????????????? ÿØÿà JFIF    ÿÛ C    !"$"$ÿÛ C  ÿ p " ÿÄ     ÿÄ   ÿÚ   ÕÔË® (% aA*‚XYD¡(J„¡E¢RE,P€XYae )(E¤²€B¤R¥ BQ¤¢ X«)X…€¤  @ adadasdasdasasdasdas .....................................................................................................................................PK!f\rr Makefile.PLnu[# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012. use strict; use warnings; use 5.008; use ExtUtils::MakeMaker; my %WriteMakefileArgs = ( "ABSTRACT" => "B::COW additional B helpers to check COW status", "AUTHOR" => "Nicolas R. ", "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => 0 }, "DISTNAME" => "B-COW", "LICENSE" => "perl", "MIN_PERL_VERSION" => "5.008", "NAME" => "B::COW", "PREREQ_PM" => {}, "TEST_REQUIRES" => { "Devel::Peek" => 0, "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "Test::More" => 0 }, "VERSION" => "0.004", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "Devel::Peek" => 0, "ExtUtils::MakeMaker" => 0, "File::Spec" => 0, "Test::More" => 0 ); unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) { delete $WriteMakefileArgs{TEST_REQUIRES}; delete $WriteMakefileArgs{BUILD_REQUIRES}; $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs; } delete $WriteMakefileArgs{CONFIGURE_REQUIRES} unless eval { ExtUtils::MakeMaker->VERSION(6.52) }; WriteMakefile(%WriteMakefileArgs); PK!ŷLChangesnu[Revision history for B-COW 0.004 2020-04-23 14:41:21-06:00 America/Denver fix CowREFCNT issues on big endian 0.003 2020-04-20 09:59:34-06:00 America/Denver support for Perl compiled without COW 0.002 2020-01-29 12:13:52-07:00 America/Denver fix unit test error for 'uncow' strings 0.001 2018-10-26 11:42:52-05:00 America/Chicago First version, this is a very alpha state use it at your own risk PK!cN N lib/B/COW.pmnu[package B::COW; use strict; use warnings; # ABSTRACT: B::COW additional B helpers to check COW status use base 'Exporter'; our $VERSION = '0.004'; # VERSION: generated by DZP::OurPkgVersion use XSLoader; XSLoader::load(__PACKAGE__); my @all_export = qw{ can_cow is_cow cowrefcnt cowrefcnt_max }; our @EXPORT_OK = ( @all_export, ); our %EXPORT_TAGS = ( all => [@all_export], ); 1; __END__ =pod =encoding utf-8 =head1 NAME B::COW - B::COW additional B helpers to check COW status =head1 VERSION version 0.004 =head1 SYNOPSIS #!perl use strict; use warnings; use Test::More; # just used for illustration purpose use B::COW qw{:all}; if ( can_cow() ) { # $] >= 5.020 ok !is_cow(undef); my $str = "abcdef"; ok is_cow($str); is cowrefcnt($str), 1; my @a; push @a, $str for 1 .. 100; ok is_cow($str); ok is_cow( $a[0] ); ok is_cow( $a[99] ); is cowrefcnt($str), 101; is cowrefcnt( $a[-1] ), 101; delete $a[99]; is cowrefcnt($str), 100; is cowrefcnt( $a[-1] ), 100; { my %h = ( 'a' .. 'd' ); foreach my $k ( sort keys %h ) { ok is_cow($k); is cowrefcnt($k), 0; } } } else { my $str = "abcdef"; is is_cow($str), undef; is cowrefcnt($str), undef; is cowrefcnt_max(), undef; } done_testing; =head1 DESCRIPTION B::COW provides some naive additional B helpers to check the COW status of one SvPV. =head2 COW or Copy On Write introduction A COWed SvPV is sharing its string (the PV) with other SvPVs. It's a (kind of) Read Only C string, that would be Copied On Write (COW). More than one SV can share the same PV, but when one PV need to alter it, it would perform a copy of it, decrease the COWREFCNT counter. One SV can then drop the COW flag when it's the only one holding a pointer to the PV. The COWREFCNT is stored at the end of the PV, after the the "\0". That value is limited to 255, when we reach 255, a new PV would be created, =for markdown [![](https://github.com/atoomic/B-COW/workflows/linux/badge.svg)](https://github.com/atoomic/B-COW/actions) [![](https://github.com/atoomic/B-COW/workflows/macos/badge.svg)](https://github.com/atoomic/B-COW/actions) [![](https://github.com/atoomic/B-COW/workflows/windows/badge.svg)](https://github.com/atoomic/B-COW/actions) =head1 FUNCTIONS =head2 can_cow() Return a boolean value. True if your Perl version support Copy On Write for SvPVs =head2 is_cow( PV ) Return a boolean value. True if the SV is cowed SvPV. (check the SV FLAGS) =head2 cowrefcnt( PV ) Return one integer representing the COW RefCount value. If the string is not COW, then it will return undef. =head2 cowrefcnt_max() Will return the SV_COW_REFCNT_MAX of your Perl. (if COW is supported, this should be 255 unless customized). =head1 AUTHOR Nicolas R. =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2018 by Nicolas R. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut PK!.MANIFESTnu[# This file was automatically generated by Dist::Zilla::Plugin::Manifest v6.012. COW.xs Changes LICENSE MANIFEST META.json META.yml Makefile.PL README cpanfile dist.ini examples/synopsis.pl lib/B/COW.pm t/00-load.t t/00-report-prereqs.dd t/00-report-prereqs.t t/01-basic.t xt/author/00-compile.t xt/author/minimum-version.t xt/author/no-tabs.t xt/author/pod-syntax.t xt/author/synopsis.t xt/release/distmeta.t PK!|c  COW.onu[ELF> @@43 ')&*%+$,AVAUIATUSH;;H(;HPxHJHHxLc2H@JH)H;EfMcN,;H@J@ %=tD;HHPH@J,;;HhLH([]A\A]A^D;HHhH@H5Lff.fAVAUIATUSH;;H(;HPxHJHHxLc2H@JH)HuP;EfMc;N4IIhH@N,;;HhLH([]A\A]A^H5LAVAUIATUSH;;L ;HPxHJHHxLc2H@JI)IEuj;AnHcHH;I;ILLL`II$;;L`LH([]A\A]A^H5LfDAVAUIATUSH;;H(;HPxHJHHxLc2H@JH)H;EfIcL$H@H@tH1HRHua;HH;I;ILLHhLHE;;HhIL []A\A]A^@H@lD;;II8H@L,H5LUSHH;L H HH1;;;HH5H;HH5H;H @  A C y$ E ( J 0 N*8 P6@ [H \X ]h j x N L Z L  y  y y 4X 6 y 7 y0 X -Z.Z   Z  [ y  / b d Z e [ fy gy h [ R  Z [y ZD F ZG [Hy   9  - !  ` L%; ' ( )9 *- + DIR GIV!vLUV!wLNV!Eu" y!/ OP!1 op(# #0 #0 #I #wG#E  #E #E #E #E #E #E #E #0" #0#COP!2  copP$y$z0$z0$zI$zwG!$zE  !$zE !$zE !$zE !$zE !$zE !$zE !$zE $z0"$z0#$}0$$wG($ Z0$ b08$ b0<$N@$ NH!8  `#' #0 #0 #I #wG#E  #E #E #E #E #E #E #E #0" #0# # 0( # 00#wG8#b0@# $IH#VIP# 0X!< 4P#e#0#0#I#wG!#E  !#E !#E !#E !#E !#E !#E !#E #0"#0## 0(# 00# 08# 0@# 0H!G r" !$ %#0#Iop%$0 %%0 %'0 %(0 %*]( %,Q00 %-Q04 %/]8 %0Q0@ %1Q0D %30H %4P %5X %6` %8b0h %:]p %<]x %=] %A0 %C] %E0 %HI %KU@ %LU@ %N0 %O0 %^@0 %`0 %a0 %b0 %n0 %u0 %z0 %{0 %}Q %~0 %] %0$%L$%0$%0$%U@$%] $%]($%G0$%$8$%$P$%$h$%/$%/%ISv%0$%]$%0%Ina%$% $% $%0 $%0(%Irs%00$%08$%0@$%0H$%P$%0X$%0`$%0h$%0p$% Px$% P$%N$%0`$%6h$%0p$%0x$%0$%0$%0$%Z$%$%@0$%0$%0$%0$%0$%0&%]&%\&%/\&%=(]&%?[&%@Z&%Bb0&%Db0&%Fy&%Iy&%J[ &%K0(&%L00&%M08&%NZ@&%OH&%P0P&%Q0X&%T0`&%U]h&%Vp&%X0x&%Y0y&%Z0z&%[0{&%\0|&%]0}&%^0~&%_0&%aZ&%b0&%d&%fQ0&%hQ0&%lQ0&%oy&%p]&%s0&%t0&%u0&%v0&%w0&%z0&%}0&%0&%0&%0&%0&%0&%0&%0&%] &%08&%0@&%0H&%0P&%0X&%0`&%0h&%0p&%0x&%Z&%;&%0&%0&%0&%0&%Q&%y&%y&%Z&%]&%Z&%0&%0&%0&%y&%Q0&%0&%0&%@0&%y&%Q0&%Q0&%^&%0&%^&% &%;p&%Gx&%wG&%wG&%;&%y&%b0&%0&%0&%0&%0&%x&%x&%l&%l'Ian% b0&% b0&%b0&%b0&%b0&%[&%Z&%3&%! ^&%#s0`&%%b0d&%'Yh&%)0p&%+Q0x&%,wG&%.wG&%/wG&%1wG&%3wG&%6Z&%7&%8&%9b0&%:0&%;0&%=0&%>0&%F0&%G0&%L-\&%N0&%SS&%Wy&%Y0&%[Z&%\0&%a0&%b0&%c0 &%d0 &%f0 &%g0 &%j0 &%k0( &%l00 &%m08 &%n0@ &%o0H &%p0P &%r^X &%s,^ &%t,^( &%u0 &%v0 &%w0 &%x0 &%y0 &%z0 &%|0 &%}B &%~ &%<^ &%0 &%0 &%0 &%0 &%0 &%L^ &%0 &%( &%0( &%00 &%R^8 &%wG@ &%wGH &%X^P &%0X &%0` &%3h &%^^p &%^^x &%0 &%0 &%0 &%0 &%0 &%0 &%\ &%0 &%0 &% &%.Y &%.Y &%.Y &%QY &%^Y &%Y &%0 &%0 &%0 &%0 &%0 &%0( &%d^0 &%]8 &%x\@ &%f] &% j^ &% y &%X &%"p^ &%-eG &%/ SV!O $$sv& % &( &b0 &b0 &4AV!P %av&V% &28 &b0 &b0 &7HV!Q b%hv&% &8 &b0 &b0 &88CV!R %cv&% &7 &b0 &b0 &(7!S %&D&&6&b0&b0 &S9GP!T P&gpP' & ' 0 ' qG ' ; ' b0 ' b0 ' 0 ' 0( ' ;0 ' 08'E@'E@ ' f:HGV!U  'gv&L' &"7 &b0 &b0 &6 io&'&M9&b0&b0 &8!W '`$?'$CR`$e($ 0$ 0$ @0$ Q0$ Q0$ Q0 $ Q$ U@$ $ Q0($Q0!Z r( 0(( ( : ( T ( @0 ( ` ( 0 (  ( 0 ( Z(XPV![ ( xpv &<)&0&l:&&:!b I) () ) ) 0 ) l: )  )  ) 0 !c ) *) * 0 *l: * *!d )0&4W*&50&5l:&5&5:&6#: &79(!e d* h+ (+ +0 +l: + +H +0 +>H( +`H0 +H8 +Z@ +HH +;P +b0X +:\ +Q0`!h 5+&^@,&_0&_l:&_&_;&`#: &b6(&o9;0&q L8&r L@&s LH&t ZP&u 0X&v Z`&w 0h&x Zp&y 0x&z `&{ 0!i R,@, @( , ( S ( S ( S ( S ( S ( S( ( S0 ( S8ANY!j ,(any!-)! ()!0)!0)!0)!0)!0)!0)!Z)![)! Q0)! b0)! L)! ])! )! 0)! 0)! 1!{-!|X!}G!~ (!l .0!j.!X! ]! ]!X!X !X(!m w.(&b.&c0&d]&e1&f1&g0 !q . ,/ ,  ,&G ,' b0 ,( b0PAD!r %!s 5/ (,+/ ,,  ,-G ,.  ,/wG ,0 b0 !t / 0,L0 ,MZ ,M0 ,MG ,Mb0 ,Mb0 ,Mb0 ,My$ ,M0( ,M0)I8-SU8--0I16-f/0U16-9@0I32-yQ0U32-Eb0*b0 n00+x0-0-< b00(0!w 6!y $000& %V%011(e1 .12 .3y .6 Z .7 Z .8 Z .9 Z .: Z( .; Z0 .< Z8 .= Z@ .@ ZH .A ZP .B ZX .D2` .F2h .Hyp .Iyt .J x .M9 .NS .O2 .Q2 .Y .[2 .\2 .]2 .^ ( ._  .`y .b2/#1,.+2#1 `2 L222 ` 3 L03203031 y L3+A31L31 y1L32<32>3u32N337434 Q04 Z4 04 043HE& 4he* ?4 *$ 6 *% f: *)dNHEK&K4hek *-4 *.b0 */Q0 *52 &5&Z&L&]&i&0&6&0&6&6&6 56 50 5l: 5 5< 5r= 5<( 500 5b08 5@ 5H 5P 5x=X 5b0` 5b0d 5(h 5b0p 5b0t 5~=x 5[ 5Z 50 5 5 5 55E5E  5;564D&3 &"7&Z&L&]&i&0&6&0&6&6&6) &7&Z&L&]&i&0&6&0&6&6&6W* &28&Z&L&]&i&0&6&0&6&6&6<) &8&Z&L&]&i&0&6&0&6&6&6)-&M9)&Z)&L)&])&i)&0)&6)&0)&6)&6)&6(+-&9)&Z)&L)&])&i)&0)&6)&0)&6)&6)&6.&#:)& i)& 0)& 0)& 0.&f:)& L)& ])& f:)& 0?4.&:)& :)& e(-&:)&)&Z-&5:)&5)&5Z&: b0;1;%:.-&_9;)&_)&_Z-&l^;)&m^;)&n (; 4o;+d;6o; 5; 50 5 0 5 @05; (5&< 5'  5(  5) 0 5* 0 5+  5-8< 5. 0 5/8< ;H< L 5:}< 5; #end5<  5C 5DH<%< 5<55Z h5m= 5= 5 > 5^> 5x> 5> 5>( 5>0 5>8 5&?@ 5J?H 5x>P 5o?X 5?`<m=<}<55 5= 5 [ 5=5=/<=10b0=/Q0 >1<ZZZ0(b0=/ZX>1<0ZZn0X>=&>/0x>1<d>>1<~>>1<]00>>1<]0>$>>/Q0>1<>]0>/0&?1<00n0?/0J?1<>n0,?/(i?1<i?j.P?/<?10y0r=<?b0b00u?0P5h O@1rex5i O@5jU@5l05nZ5o  5p (5q 05r:81pos5s @5t 0H=5u?0 5| @5}@5~@5*A5 Z[@x5@5 y5 Z1u5PzF@"5\*A5]HG&5^*Ax&5^"*A@5h@5 Q005cA5@05 A5@5 b05 b0 1cp5=A0 5A5@5 b05 b0 1cp5=A5A;0@5B5@5 b05 b0 1cp5=A5 b05 05B 1me5A(5 B05 b085 @0<5 @0>@000@5>C5@5@5$@5<1cp5=A 5=A$5b0(1B5A05Z805C5@5 Q05 Q0 1me5A0 5 C5 @5 @5  05 Z05C1val5 y085aD5@5@1me5A1B5A1cp5=A 5 0$5 y(5" y,5# Z00(5&D5(@5)@1cp5*=A5+=A5, Z5- Q0 5. Q0$0`51E53@1c154 y1c254y 1cp55=A56 b057 b058 Q059 Q0 5: 0$1A5;A(1B5;A01me5<A85=E@5>EN 0E L 0h5AzF5B b01cp5C=A5D b05E b0 1c15F y1c25Fy5G Z5H Z 5I y(1min5J y,1max5Jy01A5KA81B5KA@5LEH5MEV-h5;G)50A)5 [@2yes5JA)5 cA)5A)5A)5B)5>C)5C)5C)5$C)5/aD)5?D)5NE5Q@ ;GXG L 5_@7KLL',,!G ,"G ,# G ,$ G(// ,G, G,%GGGG/ ,MH,M0,M; +>H++Z +`H+0+, +H+0+; +H+0+f: +H+;+( # H#wGsv#0iv#Luv#]#H/0I1 IH-#VI)#0)# wG)#0-# {I)# 0)#  wG 081I 83 Z 84 Z 86  87  88 Z 89 Z 8: Z( 9*&J 9, Z 9- Z 9.  9/ [:HJ :MJ$:VJ$:[J$:bJ$:i`$:nJ `J3L `J3L `J3L `J3Lw H;+OK ;- Z ;. Z ;/ ;0 ;1 ;2( ;40 ;68 ;8L@4PL3>&L3 \^+>^ ]^+>c^>0 ;0^+^> ^ L0_+ _> _> Y> ^ *0O_+D_> O_?&0?(1?-0?10?40?K3?L3?X0?[]?\y?]y?aL?e0?f0?i?0?0?y?y?5]?0?]?0?$?0 -` L?`!4Y!6Y ` L`@` M,` L`@ ` *0a La!N a 12a+'a!b2a!c2a!d2a!e2a!f2a!g2a-!Za2nv!Zi2u8!Zaa 0a L!Za-![a2nv![i2u8![aa![a8 d9 1:cv ;;%ysp% 0=% Q0?* @kAkbBU  BQ BR BX @k@k@kAkHcBT BQ @kAkcBT BQ @kAkcBT BQ @kAkcBT BQ @kCkDe91:cv;;y &I: ; 9 I$ >   I : ; 9  : ; 9 I8 I !I/  : ; 9   : ; 9  : ; 9 I< : ; 9  : ; 9 I'I4: ;9 I?<&4: ; 9 I?<7I : ;9  : ;9 I8  : ; 9 : ; 9 I: ;9 I: ;9 I : ; 9  : ; 9 I 8  : ;9 ! : ;9 I 8 " : ;9 # : ; 9 I8 $ : ; 9 I8% : ; 9 I8& : ;9 I8' : ;9 I8( : ;9 ) : ;9 I*5I+!,: ; 9 - : ;9 . : ;9 /'I0 : ;9 1 : ;9 I8 2 : ;9 I3!I/4 : ;9 5 : ; 9 I 86> I: ;9 7( 8.?: ;9 '@B9: ;9 IB:: ;9 IB;.?: ;9 'I<<4: ;9 IB=4: ;9 I>4: ;9 I?4: ;9 I@1A1BBCB1D.: ;9 '@BE4: ;9 IBF G4: ; 9 IBH1I J1RB UX YW K1BL.: ; 9 '@BM: ; 9 IBN: ; 9 IBO.?: ; 9 'I<P4: ; 9 IBQ UR4: ; 9 IS1RB UX Y W T.: ; 9 'I U: ; 9 IV.?<n: ;9 UUTTPVTUzUT/]/kTkz]\^~V%~kz~~ $ &3$p"~ $ &3$p"|~ $ &3$p8Jk1PUUT(](dTd]T]V^~\V~d~~ $ &3$p"~ $ &3$p"v~ $ &3$p8PdlPs~PCC1Cd1PUUTk]kT]"HV8=^=[~[\~\~=A~ $ &3$p"AE~ $ &3$p"=Av~ $ &3$p8kqp}"qup}"uxP1'8PUUTk]kT]"HV8=^=V~V\~=A~ $ &3$p"AE~ $ &3$p"=Av~ $ &3$p81'8P,'')8U'')8[h8 /usr/lib64/perl5/CORE/usr/include/bits/usr/include/sys/usr/include/bits/types/usr/lib/gcc/x86_64-redhat-linux/8/include/usr/include/usr/include/netinetCOW.cinline.hCOW.xstypes.htypes.htime_t.hstddef.h__sigset_t.hstruct_timespec.hthread-shared-types.hpthreadtypes.hstdint-uintn.h__locale_t.hlocale_t.hsetjmp.hsetjmp.h__sigval_t.hsiginfo_t.hsignal.hunistd.hgetopt_core.hsockaddr.hsocket.hin.hstat.htime.htime.herrno.hnetdb.hnetdb.hdirent.hdirent.hperl.hmath.hop.hcop.hintrpvar.hsv.hgv.hmg.hav.hhv.hcv.hpad.hhandy.hstruct_FILE.hFILE.hstdio.hsys_errlist.hperlio.hiperlsys.hperly.hregexp.hutf8.hutil.hpwd.hgrp.hcrypt.hshadow.hreentr.hparser.hopcode.hperlvars.hmg_vtable.hpthread.hproto.h K  XXX# = C.J < =X JJ<K f XIlaststatvallong long intold_parserPL_locale_mutexblku_oldsaveixIorigargcIorigargvsi_errnokeeper__pad0tbl_arena_next_spent_sizeIin_utf8_CTYPE_localelong unsigned inthostentls_prevclose_parenPL_no_localize_reflex_stuffIlast_swash_hvxpvgv_readdir_ptrIstatcache_freeres_bufIcompilingIdbargsnew_perlblku_oldspsub_error_countxpvhvPERL_CONTEXT_asctime_bufferInumeric_standardsigngamprevcomppadIe_scriptsv_u_servent_structPL_sv_placeholderIpreambleavregmatch_slabIDBcontrolxpviotbl_maxsi_tidImy_cxt_sizeblku_old_tmpsfloorImain_rootxcv_outsideblku_type_PerlIO__localeshe_valuIutf8_totitleREGEXP_spent_structnamed_buffPL_freqh_lengthop_firstIdoswitches_netent_sizethrhook_proc_tnext_branchPL_op_nameblock_evals_port__in6_uPL_no_wrongrefin_port_tgp_refcntprev_markIdef_layerlistsaw_infix_sigilIrestartjmpenvsave_lastlocIwarn_locale_spent_bufferIcolorsmg_objje_old_delaymagicmulti_endPerlIO_list_sPerlIO_list_tCOPHHscream_posIargvgvdespatch_signals_proc_tgetdate_errxio_flagsIsharehookold_regmatch_statexcv_xsubnextwordIminus_EIcheckavuint32_tpad_1pad_2ImarkstackPL_bitcountIdump_re_max_lenxcv_flagsPL_warn_nlIstatusvalueIDBsingleutf8_substr__u6_addr8min_offsetPL_warn_nosemipmopst_atimsival_intIlast_in_gvIreg_curpmshare_proc_tIhash_rand_bits_enabled_call_addrlong doubleop_privatelex_formbracksbu_dstrIrunopsIpsig_pend_ctime_bufferIcomppad_namePL_magic_vtablesImarkstack_maxXS_B__COW_cowrefcnt_maxsbu_iterssi_type_IO_wide_datainternalIreentrant_retintINonL1NonFinalFold__spinsinput__blkcnt_tcontextPTR_TBL_txhv_max_protoent_sizePL_no_symrefhent_hek_grent_ptr_getlogin_buffertime_txivu_eval_seenPL_curinterp__locale_dataPL_hash_seedpos_flagsIstack_baseexecImax_intro_pendingposcacheop_pmstashstartugroupsbu_strendre_scream_pos_data_scop_stashoffs_addrst_sizePL_opargspthread_key_tIperldblastparensi_addr_lsbIinplace__locale_t_pkeyIDBlinePL_bincompat_optionsIsv_arenarootjumpPL_uudmapgp_egvnewvalpadnamestatesxio_bottom_gv_unused2Iphasein6_addryylensize_tlastlocsubbeg_asctime_sizeIblockhooksend_shift__nuserssbu_oldsaveix_pwent_ptrIosnamen_addrtypelex_casemodslex_brackstacknumbered_buff_STOREIefloatsizePADLISTIpeeppPADNAMEIregex_padretopprogram_invocation_name_modexcv_padlist_uminmodsp_pwdpIutf8_foldclosuresPL_checkIsv_yesparenfloorPL_op_private_bitfieldsbranchlikeJMPENVImain_startqr_anoncvIstashpad_archlex_statemy_perlPerl___notusedIenvgvIperlioGNU C17 8.5.0 20210514 (Red Hat 8.5.0-10) -m64 -mtune=generic -march=x86-64 -g -g -O2 -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full -fwrapv -fno-strict-aliasing -fPIC -fplugin=annobinIpadname_constPerl_xs_boot_epilogIregmatch_stateprev_rexstderrIisarevIutf8localeIsignalhook__ownerPL_Noop_optc2_utf8__ino64_tsa_family_tsockaddr_inarp__pthread_list_tsubcoffsetsvu_fpyy_stack_frameIdebstashtopwordreg_substr_datumsi_stackxpadl_maxInomemokengine__uint8_tfirstposIdiehookprev_recurse_locinputany_ptr_readdir64_ptrCLONE_PARAMSIcompcv_vtable_offsetlex_repltimespecPL_interp_size_5_18_0PerlInterpreterxpadnl_max_namedPL_check_mutexxpvlenu_pvILatin1branchst_nlinkIminus_Fre_eval_strIscopestack_ixsp_maxIscopestack_maxIminus_aany_pvpIminus_cd_nametbl_arenaIminus_lIminus_nIminus_pIargvout_stackPL_op_seqIinitavPerl_newXS_deffilesin6_familytbl_itemsdaylightPerl_ophook_tcache_maskPL_no_dir_funcfirstcharsImaxsysfdIlocalizinglex_sharedservent_crypt_struct_bufferPL_op_private_labelsrxfree_IO_save_endpw_namesp_lstchgcurlystackinfo_getlogin_sizePL_sig_nameIunicodeblku_subqr_packageIrestartop__timezonePL_thr_keygofs__mask_was_savedPERL_PHASE_CONSTRUCTIlastgotoprobecop_lineIsecondgv__locale_structIsavebegininitializedXPVAVin_addrdoubleSTRLENexitlistentryop_ppaddrxpadnl_allocIcheckav_saveIdebug_pad_IO_backup_base__jmp_buf_taglex_flagsIendavblku_oldscopespIutf8_idcontIcomppad_name_fillmy_opIHasMultiCharFoldglobhook_ttmpXSoffXPVCVcurpmPL_sh_path_sys_errlistPL_hash_seed_setregnodestdinIperl_destruct_levelsi_cxixmg_virtualpadnamelistoptoptinterpreterPL_warn_reservedPMOPIstashpadixPerl_xs_handshakest_uidlongfoldsp_min_IO_read_endxcv_xsubanyPADOFFSETPL_valid_types_RVIstatbufsbu_rflagsxpv_curxpadn_flagsIstderrgvxio_page_lenperl_memory_debug_header_IO_save_baseIin_clean_allmark_nameop_flagsold_regmatch_slab__ino_treg_substr_datalex_super_state_grent_structxcv_root_ucurlymsettingPL_uuemapcurlyxPL_nanPL_magic_dataIcustom_op_descsPL_hexdigitsi_prevXPVGV_addr_bndsp_namp_IO_write_endlex_startsIsavestacksi_codeImodcountprev_curlyxIsortstashPL_mod_latin1_ucloopIstdingvsvt_localsp_warnIcustom_opsCHECKPOINTXPVHVany_av_grent_bufferlast_uni_IO_buf_baseXPVIOsp_expire_offset__uint16_tminlenretIofsgvIdelaymagic_gidxcv_gv_uIcollxfrm_multtbl_arena_endIsavestack_ixsys_errlistitemsPL_C_locale_objsockaddr_x25sin6_flowinfoxmg_magicsvu_gperror_countany_dptrintuitIbody_rootssi_sigvalhek_lenIcollation_ixtokenbufop_nextopline_tmgvtblPL_valid_types_NVXnextPL_runops_dbg_readdir64_sizeIutf8_xidcontsi_cxstackyyerrstatus_hostent_ptrsbu_rxxcv_padlist_IO_markerPL_revisionn_namesvt_get_Boolsvu_iv__prevmagicIsort_RealCmpsbu_rxtaintedop_moresib_flags2xpv_len_uIpatchlevel_pwent_structnextvalsvu_pvany_gvIhash_rand_bitssbu_orig_IO_lock_t__gid_t_IO_read_ptrIparserxpadlarr_dbgstack_max1runops_proc_tany_hvPL_subversionIpadlist_generation__environxpadnl_maxIdefoutgv_lowerIstatusvalue_posix_pwent_buffer__ctype_tolowersiginfo_tPerl_newSVivany_ivmark_codecvtmax_offsetsv_flagsIchopsetIrpeeppoldcomppadPL_fold_localesbu_rxresIincgvsi_markoffxpadnl_fillS_POPMARKPL_no_usymtv_nsecnexttypesig_slurpyIcurpm_under_servent_bufferSighandler_tpthread_getspecificsvu_hashin6addr_loopbacksvu_nvlex_inpatlast_lopsockaddr_ax25PL_isa_DOES/home/.cpan/build/B-COW-0.004-0ptr_tbl_arena_padfilteredIlastfdPL_perlio_fd_refcntIeval_start_readdir_structIlast_swash_keyls_linestrPerl_check_t_readdir_size__alignPADNAMELISTPERL_PHASE_STARTxcv_hscxtany_u32_ctime_sizeop_pmreplrootud_inoIsavestack_maxIlocalpatchesIsv_rootp5rxop_next__saved_masksvu_rvsvu_rxsockaddr_eonany_opIcurstackIpadix_floorsi_statusxpadl_arrh_addrtype_strerror_sizeIdelaymagic_euidbufendlex_inwhatany_pvPL_valid_types_PVXxnv_nvPL_phase_namessin_zero_lockIopfreehookoldbufptr_protoent_ptrIunitcheckavsvu_uvPerlIOlrecurse_locinputprotoentmg_lenImemory_debug_headerPL_no_modifyany_svreservedItop_envinfo_aux_eval__blksize_t_IO_buf_endshort unsigned int_spent_ptrItmps_stackyy_lexsharedoffsIseen_deprecated_macro_IO_codecvtIsv_undefIpsig_nameLEXSHAREDclone_paramsperl_drand48_tIgensymPL_foldIregmatch_slabop_redooprsfp_hostent_structstart_tmpxio_fmt_namesvt_lencop_hintsh_nameIerrorsPL_no_memxpvlenu_lenh_aliases_hostent_sizePL_Yesop_pmreplstarthent_refcountsaved_copylex_sub_inwhatany_uvItmps_floorPL_do_undumpIstrxfrm_is_behavedxpadl_iduint8_tIbasetimeIop_maskIsighandlerpunreferencedxpadnl_refcntIUpperLatin1xio_ofp_hostent_buffercop_seqmulti_startop_pmreplroot_shortbufIDBtracemaxlenpre_prefixop_targIbeginavje_retresume_statePL_dollarzero_mutexIsv_constspw_dirlex_casestackop_lastopIsub_generationboot_B__COWblku_evalfloatPL_versionPL_no_securityIutf8_foldable__countunsigned charsi_cxmaxmulti_open_killst_rdevLOOPILB_invlistPerlIOREENTRImess_svIglobalstashbufptrImin_intro_pendingPL_perlio_mutexexpectoldlocIcollxfrm_baseIutf8_perl_idcontcx_blkIstatnameRETVALxnv_u__uid_tsin6_scope_idblku_gimmePL_valid_types_IVXst_ctimrecheck_utf8_validityIutf8_tofoldxcv_rootISB_invlistblock_formatin_addr_top_sibparenttz_dsttime__dataold_namesvxpadn_type_uIAssigned_invlistpeep_tPL_my_ctx_mutexIsv_nominlentypelocinput__off_tperl_phaseIin_clean_objsd_reclenPL_mmap_page_sizePERL_PHASE_DESTRUCTin_podgp_ioImultideref_pcIors_svxpadn_protocvIevalseqIunlockhookregexp_enginemg_flagsIcurstashgr_passwdPerl_ppaddr_tgr_gidIstashpadmaxsi_overrun__clock_tls_bufptrIbeginav_save__uint32_tIorigfilenamexmg_hash_indexlast_lop_opInumeric_localcop_warningsPL_op_private_bitdef_ixIcop_seqmaxop_pmtargetgvPL_veto_cleanupform_lex_stateIstatgvIdestroyhookcoplinest_blocks_sys_siglist_wide_datasbu_msbu_ssave_curlyxIcomppadsub_no_recoverlex_dojoinxmg_udirent64gp_cvgenPL_utf8skipstackxcv_fileitervar_ugp_flagscountxiou_dirpPL_op_mutexparen_namesIregistered_mrossubstrsi_uidpw_passwdlex_allbracketsXS_B__COW_can_cowopvalIcurcopdbblock_subpos_magic_old_offsetgp_file_hekuid_tsv_refcntsockaddr_in6__nlink_ttbl_aryxav_allocsi_fdnparensPL_no_funcxpadn_refcntIeval_rootold_eval_rootnamed_buff_iterst_gidIdowarnyycharIfirstgvmg_moremagicop_pmoffsetop_pmstashoffPERL_SIMGVTBLop_staticMAGICItmps_maxoptargPL_latin1_lcsockaddr_ipxIthreadhookPL_valid_types_IV_setblku_givwhengr_nameop_typeIutf8_perl_idstartsys_siglistsublenblku_oldmarkspxivu_ivIutf8_swash_ptrs_netent_ptrIpadname_undefpreamblingproto_perl_uppercx_uoutputIDBcvPL_sigfpe_savedtrieIlockhook__ctype_toupperPL_inf_xnvuPerl_keyword_plugin_txio_lines_leftcompflagsenvironsockaddr_isopthread_mutex_tIin_load_modulePL_memory_wrapxio_pagesigjmp_bufinfo_auxIlaststype__ctype_b__listh_addr_listIutf8_charname_continuein_my_stashlocale_txpadn_len_IO_write_ptr_strerror_bufferdummyIunitcheckav_savePL_op_descsi_stimePL_no_aelemlastcloseparenshort intifmatchIdumpindentIoldnamepreambledop_code_listxhv_keysitersave_readdir64_struct_sys_nerrIAboveLatin1Iutf8_mark_servent_sizesi_signoIDBgvIlast_swash_tmpsalen__namessv_anyblk_uxcv_startacceptedgvvalIWB_invlistolddepthIutf8cache_boundsprev_evalIpadixdefsv_savefile_netent_bufferxcv_stashYYSTYPExcv_gv_markersPL_keyword_plugincop_hints_hash_filenoIcustom_op_nameslex_sub_replstdoutxpadn_highre_scream_pos_datahek_hashCOW.c_ttyname_bufferPL_hints_mutexIknown_layers_netent_errnoItaintingPL_op_private_bitdefsIcurcopIstack_sp__ssize_tany_boolregmatch_info_auxPERL_PHASE_ENDPL_interp_sizeIcollation_standard__glibc_reservedlong intlex_deferxmg_stashPL_runops_stdIorigalensbu_maxiterssockaddrIdebugrefcounted_heIcurpadPL_op_private_validstart__time_t__daylightst_mtims_protosbu_targd_typelogicalIforkprocesslex_bracketsxio_top_gvIutf8_tolowerPL_op_sequenceblku_oldcopperl_mutexIcurstackinfoIstart_envlex_fakeeoflex_sub_opstashesstateIstashcachexnv_linesPL_use_safe_putenv_IO_write_basep_aliases_netent_structin_mynext_offxivu_uvsin_portpadnlImodglobalin6addr_anyICmdsockaddr_atregmatch_info_aux_evalxcv_start_uPL_no_helem_svbasespIgenerationIGCB_invlistIstrtabxpadl_outidxpadn_lowblock_givwhenregexp_paren_pair__sizeprevcrypt_datapprivatecv_flags_tcur_top_envxpadn_typestashIin_utf8_COLLATE_localeIlast_swash_slenstate_uPERL_PHASE_RUN_sigfaultop_sparelex_opst_inopw_gecos__pid_tparsed_subop_lastxio_typeyylvalsp_inactregmatch_statesockaddr_dlxav_fillhent_valIorigenvironIdelaymagic_egidgp_avscream_oldsmg_ptr_cur_columnregexpmaxpostimezonesa_familysavestack_ixptr_tblInumeric_namelazyiv_sifieldsSVCOMPARE_tmother_reIpsig_ptrgp_cvxgv_stashnetentsaved_curcoptv_secblku_u16Iprofiledata__sigset_tgp_lineImainstackIcurpmop_pmflagsst_blksizexpadn_ourstashprogram_invocation_short_namePL_sig_numptr_tbl_ent_hostent_errnoop_slabbedIsublineIargvoutgvIwatchaddrIdefgvhek_keyPerlExitListEntryxio_bottom_namegp_formIreentrant_bufferhent_nextcheck_ix__off64_tIunsafeIhintgvcompcvsockaddr_insigned char__jmp_bufIDBsignalIutf8_charname_beginblku_formatPL_ppaddr__dirstreamsin_addrIXpvIregex_padavPL_perlio_debug_fdblku_loopparencache_offsetwantedpw_uid_timerIstrxfrm_NUL_replacement__locksig_elemsPL_valid_types_NV_setpasswdpadlistgr_memIxsubfilenamegp_hvIpad_reset_pendingopterrdfoutgv_sigchldxcv_depthcompItaint_warnIArgvsigvalpw_shellsi_next_syscallPL_no_symref_svIexitlistIsubname_IO_read_basePL_warn_uninitany_i32Ihv_fetch_ent_mhUNOP_AUX_itemsvt_dup__pthread_mutex_suint16_tInumeric_radix_svPL_fold_latin1xcv_outside_seqPL_magic_vtable_namesPL_no_sock_funcIsplitstrxcv_heksvt_freesockaddr_nslong long unsigned intsi_addrdirentIbody_arenascheckstr_grent_sizePL_csighandlerpIsortcopPL_warn_uninit_svsin_familyIsignalssbu_typesi_pidmg_privatedupeje_buflazysvItoptargetIstrxfrm_max_cpIerrgvsvt_clearPERL_PHASE_CHECKnexttokePL_no_myglobItmps_ixIsig_pendingsubstrsany_svpintflagsdestroyable_proc_tIfdpidxpadlarr_allocivalany_dxptrn_netPerl_croak_xs_usageop_pmtargetoffIcollation_nameflagsIefloatbufFILE_pwent_sizeoldvalany_longxiou_anygid_tIexit_flagsc1_utf8Iglobhooksin6_portPL_block_typed_offcharxio_top_namejmpenvIptr_tableIcolorset__jmpbufIfilemode__dev_ttzname__kindIexitlistlensockaddr_unop_foldedIdelaymagicPL_charclassImarkstack_ptrblockpw_gidprev_yes_statepvals_name_protoent_structop_compgp_svsvu_array__pthread_internal_listwhilemIInBitmap__valn_aliases_sigsysextflagsxio_fmt_gvXS_B__COW_is_cowXS_B__COW_cowrefcntxpadn_gencop_fileIcurstnamecx_subst__u6_addr16Isv_countdatasvt_setIdefstashItaintedtz_minuteswestIbodytargetoldoldbufptrxav_maxxiv_u_protoent_bufferst_modesavearray_xivu_chainleave_opIutf8_xidstartre_eval_startperl_debug_padIstack_maxst_dev__u6_addr32je_prevIclocktick__syscall_slong_tIXPosix_ptrsIDBsubspwd__nextIutf8_idstartje_mustcatchnumbered_buff_LENGTHyy_parserblock_loopop_savefreeIscopestackIformtargetpad_offset_flagsPL_perlio_fd_refcnt_sizes_aliaseslastcpIconstpadixmulti_closestatherelinesImy_cxt_listIPosix_ptrs_freeres_listxivu_namehek__pad5_ttyname_sizesin6_addrIwatchok_IO_FILEPL_my_cxt_index__tznamep_protop_namePerl_sv_2mortalsvt_copyxnv_bm_taillinestrsival_ptrmark_locsi_utimexpvavIsrand_calledoptindssize_t__mode_tsp_flagperl_keyIreplgvsa_dataIbreakable_sub_genrsfp_filtersIin_evalsuboffset__sigval_tsubst_servent_ptrlex_re_reparsingIutf8_toupperlinestartsig_optelemsPERL_PHASE_INITIcv_has_evalmg_typexpvcvnumbered_buff_FETCHIrandom_stateIscopestack_namesi_bandxpadn_pvIcomppad_name_floorIdelaymagic_uidevalIwarnhookIlast_swash_klen_xmgu_sigpollunsigned intxio_dirpucur_text__elisionsys_nerrblku_oldpmImain_cvGCC: (GNU) 8.5.0 20210514 (Red Hat 8.5.0-10)GNUzRx <FBE A(A0 (A BBBF <\FBE A(A0 (A BBBA <FBE A(A0 (A BBBA <)FBE A(A0 (A BBBE $EAD CD   ( #  6)Me*+,.Onzz()<W ")*+,-.(/puz (7I#$%&' (<IYew.annobin_COW.c.annobin_COW.c_end.annobin_COW.c.hot.annobin_COW.c_end.hot.annobin_COW.c.unlikely.annobin_COW.c_end.unlikely.annobin_COW.c.startup.annobin_COW.c_end.startup.annobin_COW.c.exit.annobin_COW.c_end.exit.annobin_XS_B__COW_is_cow.start.annobin_XS_B__COW_is_cow.endXS_B__COW_is_cow.annobin_XS_B__COW_can_cow.start.annobin_XS_B__COW_can_cow.endXS_B__COW_can_cow.annobin_XS_B__COW_cowrefcnt_max.start.annobin_XS_B__COW_cowrefcnt_max.endXS_B__COW_cowrefcnt_max.annobin_XS_B__COW_cowrefcnt.start.annobin_XS_B__COW_cowrefcnt.endXS_B__COW_cowrefcnt.annobin_boot_B__COW.start.annobin_boot_B__COW.end.LC0.LC1.LC2.LC3.LC4.LC5.LC6.LC7.LC8.text.group.text.hot.group.text.unlikely.group.text.startup.group.text.exit.group_GLOBAL_OFFSET_TABLE_PL_thr_keypthread_getspecificPerl_croak_xs_usagePerl_newSVivPerl_sv_2mortalboot_B__COWPerl_xs_handshakePerl_newXS_deffilePerl_xs_boot_epilog*OP#P9P_PPPPPPP6Q*OP#P9PZPlPPP7Q*OPPP PR&P0P?SMPXPn7vQ*OPPPP PRP)P8SFPQP{PP6Q*OP89:UPPP ;VP*<2V9PG=OVVP]>lVsPW 4 (LTzz z@zHlt . / 0 1 ( -  ->( -) ,0 -< -H -9O -V -.[ - i -j&n -~ - -) -3 - - - - -38 -# - -. -N, -  -)+ -7 -IC -(O -<6c -3m -d3y -" -+8 - -K -4 -- -  -- -H -4 -C -g62 - > -0K -/X -e -f r - -3 -; -9 -% -1 - -d -+ - -Y% -  -v$ -00 -`< ->I -ZV -%c -p -$} -!' - - -% -. - -3! -. -%L -%X -X0e -q -7~ -8 -2 -{" -  -  -T -2 -{" -T -2& -{"3 -k@ -8M -F&d -hq -$ - - -1 - -o' -B9 -## -M  -p0 - 0 -< -H -/` -.0l -$,x -9 -4 -& -Y - -i -=- -. -!; -T$O -Ib -D%o -#{ -$8 -0 - -X -  -[) - - -U8 -+ -$ -,9 -@N -.[ -1h -*u -B/ - -" -  -3 -  -7 - -  -#/ -L%D -u1Y - 4n - -B -k+ -h9 -N -Z -:5f -6 -< - -* - -+7 -6 ->, -  -5, -9 -r#F -iS - ` -om --z -! - -) - -) -7 -) - -3 -  --$ -1 --> -p5K -Yd - p --| -w- -' -4 - -2 - - - - - -% -0 -i4( -76 -D -)S -La -7o -*} -7 -1 - -3 - -) -] -! - -3 -! -). -] H -6/x -s - - -z - -L - -% -9$ -t  -6. -6* -#: -4J -lZ -.,j -w -d - -L - -% -9$ -t  -6.  -6 -#- -4> -lO -.,` -n -d| -+ -[ -5 - - -! -' - - - -L -  -%- -9$= -t M -6.] -6m -#} -4 -l -., - -d - -a, -# -- -  -$ -&( -5 -C -Q -L_ -m -%{ -9$ -t  -6. -6 -# -4 -l -., - -d -- -a,; -vI -}W -~f - s - -( -y) - - 6 - - - -6 -  -3  - -2+ -@8 -#E -R -u_ -94l -y -5 - -_+ -&  -- -d -( -g5 - 4 - -}8 -`. -y#" -d'/ -]5< -w I -(V -Tc -0*p --} -F5 - - - -g -&  -! - - -u  -$ - 3 -A -n*] -Tk -y -{! - - - -^ - -6 -5 -62 - -Y! -/ ->*= -K -0Y -g -1u - -# -4 -/3 - -|& -j3 -N  - -+ -u - -- -< -K -U.Z -7i -x -1 - -E -O -  - -. -  -/ -3  -|9 -, -; -Z1J -T Y -w h - w -n  -C  -  - -N - - -~ - -  -o -2+ -: -I -|X -g -J.v -  -M8 -Q2 -' - -[6 - -  -/ -1  - - * -=9 -&5H --W -f -u -W -  -2 - -9 -1 -  -I# -H -"  -3 -,) -&8 -R0G -*V -e -4t -5  -) -W -8 -F0 -% - - -3 -0  -* --( -&7 -v F -U - d -S9s -$ -F+ - - - -  -N -g9 - -  -,' -]86 -B!E -K T -D)c -,r - - -H -d) -5 - -0 -A. -Q - -' -7& -^5 -3D -S -b -fq -/ -Y -A2 -( -. -3 -5 -i% - - -! -(-% -14 - C -R -&a -4p -( -$ -& -8 -l -) - - / -% -~$! -G7! -N6$! -R+3! -B! -)Q! -O'`! -o! -~! -! - '! -+! -d! -9! - 0! -8! -]-! -&" -3" - #" -12" - A" -P/P" - _" - n" -}" -." -'" -c" - " -c(" -:" -n6" -" -5# -A$# -"# -1# -P@# -O# -)&^# -16m# -|# -$# -T # -$# -!# -Z # -F # -c"# -o# -Y $ -$ -!$ -K/0$ -19?$ -N$ -~3]$ -:7l$ -{$ -\$ -^$ -#9$ -$ -)'$ -"$ -$ -"% -)'/% -"<% -I% -o% -)'|% -"% -% -% -)'% -"% -% -% -z% - & -)'& -"(& -6& -]& -4j& - w& -g-& -"& -&& -0& -,& -.& -& --& -2"& -"' -)'%' -"2' -?' -Z' -)'h' -"v' -' -' -c' -T' -$' -H4' -H' -' --' -6( -B( -g$( -*-( -9;( -I( -W( -0'f( -#s( -J( -#( -( -2( -9( -n ( -U( -( -,) -,)) -! ) -h.) -=) -eJ) -8W) -,)d) -!q) -,~) -5) -#) -5) -]) -,)) -!) -&) -f) -) -* -,)* -!* -h-* -;* -5I* -X* -Je* - 9r* -,)* -!* -h* -* -'* -$+* -#* -* -"* -< * -<+ -$1+ -+ -70)+ -f6+ -D+ -,)R+ -!`+ -hn+ -|+ -5+ -+ -9+ -%+ -+ -+%+ -3+ -)+ -+ -4, -., -$, -i,2, -A, -#S, -`, -.m, -U5z, -, -X2, -l1, -7, -0, - , -R , -~, -2 - -- -;%- - 2- -M?- -L- -L Y- -0f- -s- -- -9- -R3- -(- -8- -2- -.- -- -K3- -- -\. - -. -#$. -2. - @. -d N. -p\. -k. -i x. -;. -`*. -)3. -$. -9. -. -. -/. - . -u/ -m/ -g+)/ -6/ -C/ -'P/ -]/ -Sj/ - w/ -/ - / -/ -J9/ --/ -v/ -s+/ -(/ -<#/ -5/ -%0 -p0 -,40 -0 -%*0 -D80 -6$1 -711 -6>1 -K1 -X1 -0e1 -*r1 -&1 -1 -Y1 -1 -1 -1 -i1 -'1 -51 -'1 -w2 -"2 -,2 -~ (2 -52 -B2 -vO2 -\2 -!i2 -S7v2 -2 -n72 -6 2 -,2 -:32 -2 -2 -2 - 3 -3 -(*3 -? 63 -9R3 -^3 -&j3 -av3 -33 -R3 -&3 -3 -3 -3 -'3 -23 -d43 -"3 -I'3 -'4 -.%4 -24 -dY4 -5(f4 -^s4 -g.4 -4 -<4 -,4 -4 -24 -94 -44 -4 -%4 - 5 -,5 -,)5 -!*5 -h75 -D5 - Q5 -S-^5 -W"k5 -4x5 -5 -5 -5 -25 -)#5 -25 -+5 -5 -[&5 -5 -;6 -Z6 -!6 -`$.6 -8;6 - H6 -U6 -e6 -:%u6 - 6 -6 -<6 -,6 -6 -26 -96 -46 - 7 -%7 - 27 ->7 -<J7 -,V7 -b7 -2n7 -9z7 -47 -7 -%7 - 7 -7 -<7 -,7 -7 -27 -98 -48 -8 -%&8 - B8 -N8 -<Z8 -,f8 -r8 -2~8 -98 -48 -8 -%8 - 8 -8 -<8 -,8 -8 -2 9 -99 -4&9 -39 -%@9 - ^9 -k9 -<x9 -,9 -9 -29 -99 -49 -9 -%9 - 9 -%9 -9 -m- : -z*: -7$: -52: -v$?: -*L: -a7Y: -m: -9{: -: - : -: - : -: - : -+; -,; - D; -A"Q; -[3u; - "; -; -)3; -; -*; -; - ; -; -; -t"; -< -{< -< -.+< -P5I< -+V< -)p< -~< -+< -< - < -` < -A0< -< -A< -1< -b= -9= -= -6,= -9= -b#F= -S= -#2`= -4= -,= -F= -,= -= -"(? -P? -? -Z? -`$ @ -8@ - %@ -"A@ -\@ - +s@ -@ -)@ -@ -@ -,@ -=@ -@ -@ - A -+A -1A -(>A -*UA -U4nA -U4|A -A -[&A -U4A -A -[&A -B -U4B -"B -[&=B -@'KB -YB -tB -* B -B -EB - B -U4B -B -w'B -6 C - 7C -0C -< IC -U4WC -/eC -)C -U4C -0C -C -7C -U4C -)D -J 7D -} ED -;"SD -RlD -U4zD -!D - 7D -hD -/D - D -U4 E -E -[&)E -'7E -;"EE -J xE -v3E -{ E -z/E -E -[&F -,F -{F -;"^F -v3lF -{ F -%F -F - F - F -$F -w9F -t&F -F -bG -GG -4!G -..G -d )Nd )Rd )Wd - od )osd )md )d )d -d )d )d -d )hd )fdd -dJd -Ad )d )eQe\e)e Ae*Ne4[eC{e -Aee +e )e )eeeezee -4ff - #f )'f )6f )2:f )&?f - Uf )Yf )hf )lf )qf -|f )wf )sf -f )f )f +f )f )f -fCf -Af )Qf )OfCg -A g )wg )ugJ!gU/ghUh - `h )dh )sh )wh )|h - h )fh )dh )h )h -h )!h )h -h )th )rh +0h )h )h -i -Ai%i -A0i )4i )9iFiTicaini{iii -Ai'i +i )*i )(ii'i=i jj -"j6j - Aj )QEj )MTj )Xj )]j - sj )wj )j ) j ) j -j ) j )~ j -j ) j ) jPj -jj -Aj ) j ) kkk^)kp #include #include #include #define MIN_PERL_VERSION_FOR_COW 20 #if defined(SV_COW_REFCNT_MAX) # define B_CAN_COW 1 #else # define B_CAN_COW 0 #endif /* CowREFCNT is incorrect on Perl < 5.32 */ #define myCowREFCNT(sv) ((SvLEN(sv)>0) ? CowREFCNT(sv) : 0) MODULE = B__COW PACKAGE = B::COW SV* can_cow() CODE: { #if B_CAN_COW XSRETURN_YES; #else XSRETURN_NO; #endif } OUTPUT: RETVAL SV* is_cow(sv) SV *sv; CODE: { /* not exactly accurate but let's start there */ #if !B_CAN_COW XSRETURN_UNDEF; #else if ( SvPOK(sv) && SvIsCOW(sv) ) XSRETURN_YES; #endif XSRETURN_NO; } OUTPUT: RETVAL SV* cowrefcnt(sv) SV *sv; CODE: { #if !B_CAN_COW XSRETURN_UNDEF; #else if ( SvIsCOW(sv) ) XSRETURN_IV( myCowREFCNT(sv) ); #endif XSRETURN_UNDEF; } OUTPUT: RETVAL SV* cowrefcnt_max() CODE: { #if !B_CAN_COW XSRETURN_UNDEF; #else XSRETURN_IV(SV_COW_REFCNT_MAX); #endif } OUTPUT: RETVAL PK!]ycpanfilenu[#requires "Git::Repository" => 0; #recommends "YAML" => "0"; on "test" => sub { requires "Devel::Peek" => "0"; requires "ExtUtils::MakeMaker" => "0"; requires "File::Spec" => "0"; requires "Test::More" => "0"; }; # on 'develop' => sub { # recommends 'Devel::NYTProf'; # recommends "Code::TidyAll::Git::Precommit"; # recommends "Perl::Critic::Nits"; # }; PK! GGLICENSEnu[This software is copyright (c) 2018 by Nicolas R. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. Terms of the Perl programming language system itself a) the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version, or b) the "Artistic License" --- The GNU General Public License, Version 1, February 1989 --- This software is Copyright (c) 2018 by Nicolas R. This is free software, licensed under: The GNU General Public License, Version 1, February 1989 GNU GENERAL PUBLIC LICENSE Version 1, February 1989 Copyright (C) 1989 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The license agreements of most software companies try to keep users at the mercy of those companies. By contrast, our General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. The General Public License applies to the Free Software Foundation's software and to any other program whose authors commit to using it. You can use it for your programs, too. When we speak of free software, we are referring to freedom, not price. Specifically, the General Public License is designed to make sure that you have the freedom to give away or sell copies of free software, that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of a such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License Agreement applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any work containing the Program or a portion of it, either verbatim or with modifications. Each licensee is addressed as "you". 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this General Public License and to the absence of any warranty; and give any other recipients of the Program a copy of this General Public License along with the Program. You may charge a fee for the physical act of transferring a copy. 2. You may modify your copy or copies of the Program or any portion of it, and copy and distribute such modifications under the terms of Paragraph 1 above, provided that you also do the following: a) cause the modified files to carry prominent notices stating that you changed the files and the date of any change; and b) cause the whole of any work that you distribute or publish, that in whole or in part contains the Program or any part thereof, either with or without modifications, to be licensed at no charge to all third parties under the terms of this General Public License (except that you may choose to grant warranty protection to some or all third parties, at your option). c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the simplest and most usual way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this General Public License. d) You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. Mere aggregation of another independent work with the Program (or its derivative) on a volume of a storage or distribution medium does not bring the other work under the scope of these terms. 3. You may copy and distribute the Program (or a portion or derivative of it, under Paragraph 2) in object code or executable form under the terms of Paragraphs 1 and 2 above provided that you also do one of the following: a) accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Paragraphs 1 and 2 above; or, b) accompany it with a written offer, valid for at least three years, to give any third party free (except for a nominal charge for the cost of distribution) a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Paragraphs 1 and 2 above; or, c) accompany it with the information you received as to where the corresponding source code may be obtained. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form alone.) Source code for a work means the preferred form of the work for making modifications to it. For an executable file, complete source code means all the source code for all modules it contains; but, as a special exception, it need not include source code for modules which are standard libraries that accompany the operating system on which the executable file runs, or for standard header files or definitions files that accompany that operating system. 4. You may not copy, modify, sublicense, distribute or transfer the Program except as expressly provided under this General Public License. Any attempt otherwise to copy, modify, sublicense, distribute or transfer the Program is void, and will automatically terminate your rights to use the Program under this License. However, parties who have received copies, or rights to use copies, from you under this General Public License will not have their licenses terminated so long as such parties remain in full compliance. 5. By copying, distributing or modifying the Program (or any work based on the Program) you indicate your acceptance of this license to do so, and all its terms and conditions. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. 7. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of the license which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the license, you may choose any version ever published by the Free Software Foundation. 8. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to humanity, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19xx name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (a program to direct compilers to make passes at assemblers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice That's all there is to it! --- The Artistic License 1.0 --- This software is Copyright (c) 2018 by Nicolas R. This is free software, licensed under: The Artistic License 1.0 The Artistic License Preamble The intent of this document is to state the conditions under which a Package may be copied, such that the Copyright Holder maintains some semblance of artistic control over the development of the package, while giving the users of the package the right to use and distribute the Package in a more-or-less customary fashion, plus the right to make reasonable modifications. Definitions: - "Package" refers to the collection of files distributed by the Copyright Holder, and derivatives of that collection of files created through textual modification. - "Standard Version" refers to such a Package if it has not been modified, or has been modified in accordance with the wishes of the Copyright Holder. - "Copyright Holder" is whoever is named in the copyright or copyrights for the package. - "You" is you, if you're thinking about copying or distributing this Package. - "Reasonable copying fee" is whatever you can justify on the basis of media cost, duplication charges, time of people involved, and so on. (You will not be required to justify it to the Copyright Holder, but only to the computing community at large as a market that must bear the fee.) - "Freely Available" means that no fee is charged for the item itself, though there may be fees involved in handling the item. It also means that recipients of the item may redistribute it under the same conditions they received it. 1. You may make and give away verbatim copies of the source form of the Standard Version of this Package without restriction, provided that you duplicate all of the original copyright notices and associated disclaimers. 2. You may apply bug fixes, portability fixes and other modifications derived from the Public Domain or from the Copyright Holder. A Package modified in such a way shall still be considered the Standard Version. 3. You may otherwise modify your copy of this Package in any way, provided that you insert a prominent notice in each changed file stating how and when you changed that file, and provided that you do at least ONE of the following: a) place your modifications in the Public Domain or otherwise make them Freely Available, such as by posting said modifications to Usenet or an equivalent medium, or placing the modifications on a major archive site such as ftp.uu.net, or by allowing the Copyright Holder to include your modifications in the Standard Version of the Package. b) use the modified Package only within your corporation or organization. c) rename any non-standard executables so the names do not conflict with standard executables, which must also be provided, and provide a separate manual page for each non-standard executable that clearly documents how it differs from the Standard Version. d) make other distribution arrangements with the Copyright Holder. 4. You may distribute the programs of this Package in object code or executable form, provided that you do at least ONE of the following: a) distribute a Standard Version of the executables and library files, together with instructions (in the manual page or equivalent) on where to get the Standard Version. b) accompany the distribution with the machine-readable source of the Package with your modifications. c) accompany any non-standard executables with their corresponding Standard Version executables, giving the non-standard executables non-standard names, and clearly documenting the differences in manual pages (or equivalent), together with instructions on where to get the Standard Version. d) make other distribution arrangements with the Copyright Holder. 5. You may charge a reasonable copying fee for any distribution of this Package. You may charge any fee you choose for support of this Package. You may not charge a fee for this Package itself. However, you may distribute this Package in aggregate with other (possibly commercial) programs as part of a larger (possibly commercial) software distribution provided that you do not advertise this Package as a product of your own. 6. The scripts and library files supplied as input to or produced as output from the programs of this Package do not automatically fall under the copyright of this Package, but belong to whomever generated them, and may be sold commercially, and may be aggregated with this Package. 7. C or perl subroutines supplied by you and linked into this Package shall not be considered part of this Package. 8. The name of the Copyright Holder may not be used to endorse or promote products derived from this software without specific prior written permission. 9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. The End PK! n%%examples/synopsis.plnu[#!perl use strict; use warnings; use Test::More; # just used for illustration purpose use B::COW qw{:all}; if ( can_cow() ) { # $] >= 5.020 ok !is_cow(undef); my $str = "abcdef"; ok is_cow($str); is cowrefcnt($str), 1; my @a; push @a, $str for 1 .. 100; ok is_cow($str); ok is_cow( $a[0] ); ok is_cow( $a[99] ); is cowrefcnt($str), 101; is cowrefcnt( $a[-1] ), 101; delete $a[99]; is cowrefcnt($str), 100; is cowrefcnt( $a[-1] ), 100; { my %h = ( 'a' .. 'd' ); foreach my $k ( sort keys %h ) { ok is_cow($k); is cowrefcnt($k), 0; } } } else { my $str = "abcdef"; is is_cow($str), undef; is cowrefcnt($str), undef; is cowrefcnt_max(), undef; } done_testing; PK!blib/arch/.existsnu[PK!blib/arch/auto/B/COW/.existsnu[PK!6H(xxblib/arch/auto/B/COW/COW.sonuȯELF>@x@8 @$#   hh h    888$$ Std Ptd444DDQtdRtdhh h GNU|vTObz:X \ @  {BE|qX e p, F"  '  __gmon_start___ITM_deregisterTMCloneTable_ITM_registerTMCloneTable__cxa_finalizelibpthread.so.0PL_thr_keypthread_getspecificPerl_croak_xs_usagePerl_newSVivPerl_sv_2mortalboot_B__COWPerl_xs_handshakePerl_newXS_deffilePerl_xs_boot_epiloglibperl.so.5.26libc.so.6_edata__bss_start_endGLIBC_2.2.5  ui ,Uui ,h 0 p x x                   HH HtH5 % hhhhhhhhq% D% D%} D%u D%m D%e D%] D%U DH=y Hr H9tH> Ht H=I H5B H)HHH?HHtH HtfD= u+UH= Ht H=f Yd ]wAVAUIATUSH ;;H(;HPxHJHHxLc2H@JH)H;EfMc}N,;H@J@ %=tDW;HMHPH@J,;7;Hh,LH([]A\A]A^D;H HhH@H5Lff.fAVAUIATUSH ;;H(;HPxHJHHxLc2H@JH)HuP;EfMc;N4IpIhH@N,;Z;HhOLH([]A\A]A^H5L!AVAUIATUSH ;;L ;HPxHJHHxLc2H@JI)IEuj;AnHcHH;I;ILLL`II$;;L`LH([]A\A]A^H53LVfDAVAUIATUSH  ;C;H(9;HPxHJHHxLc2#H@JH)H;EfIcL$H@H@tH1HRHua;HH;I;ILLHhLHE;;HhIL []A\A]A^@H@lD;a;IWI8H@L,H5L'USHH ;L H HH1$;;;HH5H;HH5H;H c@  !A iC y$ E ( 9J 0 +N*8 @ P6@ [H '\X ]h \'j x N L Z LR5 ' yKT5 ' yM y M4X 36 y 7 y0 X -Z,.Z +  Z w2 [ ay 0 / b d Z e [ fy gy ($h [ R 2 Z4 [y' Z/D F Z(G [[5Hyx/  g1 9 ( - !  ` L %; ' g1( )9 (*- + DIR G8-IV!vLUV!wLNV!Eu4r" y!/ OP!1 op(# !#0 #0 #I #wG"#E   #E K,#E ]4#E K"#E 1#E #E h*#E -#0" ;#0#COP!2  copP$y!$z0$z0$zI$zwG!"$zE  ! $zE !K,$zE !]4$zE !K"$zE !1$zE !$zE !h*$zE -$z0";$z0#$}0$%$wG(2$ Z0$ b08$ b0<$N@/&$ NH@!8  `#' !#0 #0 #I #wG"#E   #E K,#E ]4#E K"#E 1#E #E h*#E -#0" ;#0# # 0( *# 00""#wG8+#b0@# $IH#VIP$# 0X!< 4X4P#e!#0#0#I#wG!"#E  ! #E !K,#E !]4#E !K"#E !1#E !#E !h*#E -#0";#0## 0(*# 00B# 08# 0@B# 0HP !G r"# !$ &%#0#Iop%$0 '%%0 %'0 3%(0 %*]( %,Q00 %-Q04 i4%/]8 %0Q0@ %1Q0D %30H a0%4P %5X ["%6` L%8b0h L%:]p 1%<]x %=] %A0 %C] )%E0 %HI +%KU@ m%LU@ &%N0 3%O0 1%^@0 %`0 6%a0 u,%b0 !%n0 %%u0 3%z0 %{0 &%}Q X%~0 u(%] +%0$2%L$%0$%0$%U@$3%] $ %]($o %G0$%$8$b%$P$! %$h$#%/$ %/%ISv%0$ %]$(%0%Ina%$% $% $# %0 $`%0(%Irs%00$%08$%0@$u%0H$%P$u4%0X$)3%0`$0%0h$@%0p$9% Px$h% P$(%N$%0`$.%6h$%0p$/%0x$6%0$ "%0$%0$1%Z$%$$%@0$11%0$ %0$%0$*%0$U%0&p%]&%\&%/\&%=(]&j,%?[&05%@Z&Y%Bb0&/%Db0&%Fy&E%Iy&O%J[ & %K0(&%L00&,%M08&%NZ@&-%OH& %P0P&6%Q0X&%T0`&%U]h&2/%Vp& %X0x& %Y0y& %Z0z& %[0{& %\0|& %]0}&%^0~&.%_0&w%aZ&%b0&B%d& %fQ0&%hQ0&%lQ0&j0%oy&e%p]&R%s0&%t0&%u0&_,%v0& %w0&5%z0&)0%}0&c%%0&%0&4%0&%0&%0&-%0&%0&%] &| %08&%0@&2%0H&%0P&H%0X&%0`&7%0h&% %0p&0%0x&L%Z&O7%;&%0&^ %0&!%0&L%0&>!%Q&1%y&0%y&$%Z&:.%]&;)%Z&%0&%0&%0&(%y&#%Q0&z6%0&..%0& $%@0&%y& %Q0&1%Q0&j.%^&$)%0&+%^&% & %;p&~%Gx&l%wG&6%wG&K#%;&)%y&#%b0&%0&%0& %0&%0&6%x&%x&%l&*%l'Ian% b0&5% b0&%b0&%b0&'%b0&*%[&Y%Z&U%3&q%! ^&'%#s0`&L%%b0d&]%'Yh&t.%)0p&V,%+Q0x&%,wG&%.wG&%%/wG&4%1wG&b%3wG&0%6Z&8%7&%8&%9b0&-%:0&%%;0&0%=0&H'%>0&,%F0&1%G0&%L-\&#%N0&%SS&n%Wy&%Y0&=+%[Z&.%\0& %a0&}%b0&4%%c0 &g2%d0 &%f0 &%g0 &A%%j0 &E6%k0( &L%l00 &A(%m08 &%n0@ & -%o0H &4$%p0P &"%r^X &4%s,^ &3%t,^( &)%u0 &%v0 &%w0 &%%x0 &9%y0 &%z0 &%|0 &i%%}B &6*%~ &h%<^ &7%0 &-%0 &5%0 &r+%0 &%0 &z1%L^ &t%0 &/%( &%0( &R-%00 &t %R^8 &H%wG@ &E%wGH &,%X^P &F&%0X &%0` & %3h &&%^^p &%^^x &4%0 &_%0 &3%0 &"%0 &G%0 &%0 &g%\ &%0 &$%0 &3% &%.Y &f#%.Y &%.Y &"%QY &+ %^Y & %Y & %0 & %0 &!%0 & %0 &%0 &m%0( &M-%d^0 &6%]8 &%x\@ &E1%f] &4% j^ &% y &?%X &"%"p^ &6%-eG &c%/ SV!O $$sv& % %&( t!&b0 &b0 &4AV!P %av&V% %&28 t!&b0 &b0 &7HV!Q b%hv&% %&8 t!&b0 &b0 &88CV!R %cv&% %&7 t!&b0 &b0 &(7Z!S %&D&%&6t!&b0&b0 &S9GP!T P&gpP' & 82' 0 ' qG |+' ; ' b0 ' b0 -' 0 *' 0( ,' ;0 ' 08+'E@ 'E@ h!' f:HGV!U  'gv&L' %&"7 t!&b0 &b0 &6 io&'%&M9t!&b0&b0 &8Q!W '%`$?'?#$CR1`$e(($ 0$ 0+$ @06$ Q00$ Q0"$ Q0 ^($ QD7$ U@$ O$ Q0(%$Q0U"!Z r( T0(( "( : ( T /( @0 6( ` ( 0 8(  x( 0 +( Z(XPV![ ( xpv &<)w'&0 &l:&&:!b I) 5() ) w') 0 ) l: *)  B3)  !) 0 !c ) K *) w'* 0 *l: %* 7*!d )0&4W*w'&50 &5l:&5&5:J3&6#: q&79(!e d* 6h+ (+ w'+0 +l: + +H %+0 c)+>H( ~+`H0 +H8 +Z@ +HH +;P .+b0X t+:\ $.+Q0`!h 5+&^@,w'&_0 &_l:&_&_;J3&`#: &b6('7&o9;0#&q L8&r L@#&s LHm1&t ZP6(&u 0Xk&v Z`2&w 0h,&x Zp&y 0x*&z `&{ 0D"!i R,@, @( , K( S 2( S x( S 00( S D/( S s5( S( .( S0 [( S8ANY!j ,(any!-) ! ()a!0)0!0)!0)!0)7!0)Q!0)!Z) ![).! Q0)! b0)! L)! ])1! )'! 0)a! 0)0! 10,!{-4!|X1!}G!~ (-!l .5+0!j.!!X! ]L ! ]!Xp!X  !X( !m w.(&b.(&c0&d]-#&e1'&f1b&g0 !q . ,,/ ,  y,&G 9,' b0 ),( b0PAD!r %!s 5/ (,+/ 0,,  ,-G j,.  ` ,/wG o,0 b0 !t / 0,L0 6,MZ +,M0 ,,MG ),Mb0 k&,Mb0 !,Mb0 2,My$ X$,M0( ,M0)I8-SU8--0I16-f/0U16-9@0I32-yQ0U32-Eb0*b0 n00+x01-0-< b00(0j(!w 65!y $000& %V%S011(e1 95.12 .3y .6 Z z.7 Z }..8 Z (.9 Z b$.: Z( .; Z0 .< Z8 }.= Z@ .@ ZH .A ZP .B ZX &.D2` y3.F2h >&.Hyp .Iyt \!.J x +.M9  .NS .O2 -.Q2 4.Y .[2 .\2 4.]2 .^ ( 5._  c3.`y .b2=5/#1,.+42#1 `2 L222 ` 3 L032d&03 03+%1 y L3+A31L3*%1 y1L3'2<3232>3u32N337&4304 Q09!4 Z8!4 0%4 0&43HE& 4he* ?4 ,*$ 6 [*% f: D*)dNHEK&K4hek *-4 &*.b0 */Q0 |,*52 &5&ZY&L &]&i6&0=&6>2&0&6Z&6f &6 +56 w'50 5l: 5 5< 5r= h+5<( 500 25b08 i5@ 5H a5P w05x=X !5b0` 05b0d )5(h a5b0p $5b0t 5~=x 5[ 5Z 50 "5 65 [ 5 55E#5E  j 5;564D&3 &"7&ZY&L &]&i6&0=&6>2&0&6Z&6f &6) &7&ZY&L &]&i6&0=&6>2&0&6Z&6f &6W* &28&ZY&L &]&i6&0=&6>2&0&6Z&6f &6<) &8&ZY&L &]&i6&0=&6>2&0&6Z&6f &6)-&M9)&Z)Y&L) &])&i)6&0)=&6)>2&0)&6)Z&6)f &6(+-&9)&Z)Y&L) &])&i)6&0)=&6)>2&0)&6)Z&6)f &6.#&#:)& i)+& 0)(& 0)|5& 0.s3&f:)"& L) )& ])5& f:)& 0?4.7&:)P& :)& e(-&:)&) &Z-&5:)&5) &5Z)&: b0;1;%:.-&_9;)&_) &_Z-&l^;) &m^;)(1&n (; 4o;+d; 6o; 5; 50 (5 0 )5 @05; (5&< 5'  5(  5) 0 5* 0 -5+  P5-8< ,5. 0 5/8< ;H< L )5:}< 5; #end5<  a5C )5DH<%< 5<5 5Z h5m= 325= 5 > j5^> /5x> 5> 65>( 5>0 345>8 o5&?@ !5J?H 55x>P /5o?X 025?`<m=<}<+55 5= *5 [ 5=v&5=/<=10b0=/Q0 >1<ZZZ0(b0=/ZX>1<0ZZn0X>=&>/0x>1<d>>1<~>>1<]00>>1<]0>$>>/Q0>1<>]0>/0&?1<00n0?/0J?1<>n0,?/(i?1<i?j.P?/<?10y0r=<?b0b00u?0P5h O@1rex5i O@+5jU@5l0 5nZ"5o  65p ([ 5q 0R!5r:81pos5s @5t 0H=L)5u?0 5| @U)5}@ 5~@65*A5 Z[@ x5@5 y 5 Z1u5PzF@"45\*A5]HG&b5^*Ax&45^"*A@'5h@y5 Q005cA 25@05 A 25@a5 b0$5 b0 1cp5=A0 5A 25@a5 b0$5 b0 1cp5=A5A;0@5B 25@a5 b0$5 b0 1cp5=A%5 b0j5 05B 1me5A( 5 B0~ 5 b08%5 @0< 5 @0>@000@5>C 25@*5@%5$@ 5<1cp5=A 45=A$5b0(1B5A0 5Z805C 25@-5 Q0(5 Q0 1me5A0 5 C 25 @5 @#5  055 Z05C1val5 y085aD 25@*5@1me5A1B5A1cp5=A 5 0$) 5 y(5" y,M5# Z00(5&D 25(@c 5)@1cp5*=A45+=AH5, Z|-5- Q0 d 5. Q0$0`51E 253@1c154 y1c254y 1cp55=Aa56 b0$57 b0'58 Q059 Q0 5: 0$1A5;A(1B5;A01me5<A8=15=E@ 5>EN 0E L 0h5AzF5B b01cp5C=Aa5D b0$5E b0 1c15F y1c25Fy$+5G Z15H Z 5I y(1min5J y,1max5Jy01A5KA81B5KA@=15LEH 5MEV-h5;G)!'50A)U)5 [@2yes5JA)L 5 cA)5A)a#5A)5B)$5>C)G%5C)b5C)h 5$C)`25/aD)5?D)5NE 5Q@ ;GXG L 45_@7KLL',,!G ),"G @,# G F,$ G(// ,G0, G,%GGGG/ ,MH*,M0,M; +>H+ +Z +`H%+0+, +H+0+; +H &+0 0X q*=? 0` ( =@ 0h =A @0p =B @0r =C Q0t =D 0x =E Q0 =F Q0 =G ] 4=H ] 46=I0 `=J 0 =K @0 !=L Q0 (=M 0 W&=N 0 =OX {=P 0 m=Q Z 83=T Z 53=U Z =V Z S6=W Z =X Z =Y Z 8 =^ 0 (=_ @0  =` 0 ?=a 0$L$=b 0$L=c 6$5=d 0$=f X$Y=g X@$K0=h 0T$ =i 0U$(=j 0V$>=k 0W$+=l QX$=m `$4=n 0`$"#=o 0d$-=rLh$]6=sLp$b=t`x$=v0y5=xEx5'=yEx5)=zE x5*={E x$x =}0{$;=~ 0|TGTT 3X L Q0X LH4=T-XX!Y#!1b!$Y4!$YX)!QYYY/y.Y1!R;YAYQY10!SY0!UkYqY/0Y10!VYYY1 gY+Y.!uY/!wY!yY/!{Y~!}Y!YN!YZ.!YF!Y$!Yo)!YT!Y g_Z LOZ!_Z!Y"/!Yo !Y!!YT0!Y!Y#!Y!Y !Y!Y!Y?! *0x! *0>! *0 g7[ L@'[!7[!Y gf[ LV[!f[W!f[!L3 [+[%,![+!o;.!o;A!o;l"!o; -[+![z!o; \+Y1!\!Y6xE!k\7w77:07j67O*7*'7!L33H!F\1pad!G\ $\ LK!P\\\10\+!a\\/Q0\1003!fI!g]]/0(]10V !h\#!iB]H]/yf]1Z^N!lY!s]1fn!t 11ptr!u (,!vs],Q0kSXG;GX Z] Ly L] L]b0 (^ L 0,^ L 0<^ L 0L^ L -0QN3(( 0^ L"9'!L0: !L0>L3$>&L3 \^+.->^ ]^+ >c^A>0 ;0^+^> ^ L0_+ _&> _ > Y4 > ^ *0O_+D_'> O_ ?&0?(1V?-0?10(?40Q#?K3/?L3?X08?[]4?\y_-?]y?aL&?e0&?f0%?iq ?0R?0B5?y ?y&?5]O(?0 ?]?0?$?0 -` L?`'!4Y!6Y ` L` /@` M,` L`@ ` *0a La!N a 12a+'a!b2a!c2a!d2a!e2a"!f2a-!g2a-!Za2nv!Zi2u8!Zaa 0a L#!Za-![a2nv![i2u8![aa![a8\  d9  1:cv ;A=; %ysp% 0=P % Q0?2*  @ kA, kbBU  BQ  BR  BX  @5 k@< k@C kAY kHcBT  BQ @ @` kAv kcBT  BQ @ @} kA kcBT  BQ  @ kA kcBT BQ  @ kC kD e9 1:cv;; y &I: ; 9 I$ >   I : ; 9  : ; 9 I8 I !I/  : ; 9   : ; 9  : ; 9 I< : ; 9  : ; 9 I'I4: ;9 I?<&4: ; 9 I?<7I : ;9  : ;9 I8  : ; 9 : ; 9 I: ;9 I: ;9 I : ; 9  : ; 9 I 8  : ;9 ! : ;9 I 8 " : ;9 # : ; 9 I8 $ : ; 9 I8% : ; 9 I8& : ;9 I8' : ;9 I8( : ;9 ) : ;9 I*5I+!,: ; 9 - : ;9 . : ;9 /'I0 : ;9 1 : ;9 I8 2 : ;9 I3!I/4 : ;9 5 : ; 9 I 86> I: ;9 7( 8.?: ;9 '@B9: ;9 IB:: ;9 IB;.?: ;9 'I<<4: ;9 IB=4: ;9 I>4: ;9 I?4: ;9 I@1A1BBCB1D.: ;9 '@BE4: ;9 IBF G4: ; 9 IBH1I J1RB UX YW K1BL.: ; 9 '@BM: ; 9 IBN: ; 9 IBO.?: ; 9 'I<P4: ; 9 IBQ UR4: ; 9 IS1RB UX Y W T.: ; 9 'I U: ; 9 IV.?<n: ;9 8 /usr/lib64/perl5/CORE/usr/include/bits/usr/include/sys/usr/include/bits/types/usr/lib/gcc/x86_64-redhat-linux/8/include/usr/include/usr/include/netinetCOW.cinline.hCOW.xstypes.htypes.htime_t.hstddef.h__sigset_t.hstruct_timespec.hthread-shared-types.hpthreadtypes.hstdint-uintn.h__locale_t.hlocale_t.hsetjmp.hsetjmp.h__sigval_t.hsiginfo_t.hsignal.hunistd.hgetopt_core.hsockaddr.hsocket.hin.hstat.htime.htime.herrno.hnetdb.hnetdb.hdirent.hdirent.hperl.hmath.hop.hcop.hintrpvar.hsv.hgv.hmg.hav.hhv.hcv.hpad.hhandy.hstruct_FILE.hFILE.hstdio.hsys_errlist.hperlio.hiperlsys.hperly.hregexp.hutf8.hutil.hpwd.hgrp.hcrypt.hshadow.hreentr.hparser.hopcode.hperlvars.hmg_vtable.hpthread.hproto.h @ K  XXX# = C.J < =X JJ<K f XIlaststatvallong long intold_parserPL_locale_mutexblku_oldsaveixIorigargcIorigargvsi_errnokeeper__pad0tbl_arena_next_spent_sizeIin_utf8_CTYPE_localehostentls_prevclose_parenPL_no_localize_reflex_stuffIlast_swash_hvxpvgv_readdir_ptrIstatcache_freeres_bufIcompilingIdbargsnew_perlblku_oldspsub_error_countxpvhvPERL_CONTEXT_asctime_bufferInumeric_standardsigngamprevcomppadIe_scriptsv_u_servent_structPL_sv_placeholderIpreambleavIDBcontrolxpviotbl_maxsi_tidImy_cxt_sizeblku_old_tmpsfloorImain_rootxcv_outsideblku_type_PerlIO__localeshe_valuIutf8_totitleREGEXP_spent_structnamed_buffPL_freqh_lengthop_firstIdoswitches_netent_sizethrhook_proc_tnext_branchPL_op_nameblock_evals_port__in6_uPL_no_wrongrefin_port_tgp_refcntprev_markIdef_layerlistsaw_infix_sigilIrestartjmpenvsave_lastlocIwarn_locale_spent_bufferIcolorsmg_objje_old_delaymagicmulti_endPerlIO_list_sPerlIO_list_tCOPHHscream_posIargvgvdespatch_signals_proc_tgetdate_errxio_flagsIsharehookold_regmatch_statexcv_xsubnextwordIminus_EIcheckavpad_1pad_2ImarkstackPL_bitcountIdump_re_max_lenxcv_flagsPL_warn_nlIstatusvalueIDBsingleutf8_substr__u6_addr8min_offsetPL_warn_nosemipmopst_atimsival_intIlast_in_gvIreg_curpmshare_proc_tIhash_rand_bits_enabled_call_addrlong doubleop_privatelex_formbracksbu_dstrIrunopsIpsig_pend_ctime_bufferIcomppad_namePL_magic_vtablesImarkstack_maxXS_B__COW_cowrefcnt_maxsbu_iterssi_type_IO_wide_datainternalIreentrant_retintINonL1NonFinalFold__spins__blkcnt_tcontextPTR_TBL_txhv_max_protoent_sizePL_no_symrefhent_hek_grent_ptr_getlogin_bufferxivu_eval_seenPL_curinterp__locale_dataPL_hash_seedpos_flagsIstack_baseexecImax_intro_pendingposcacheop_pmstashstartugroupsbu_strendre_scream_pos_data_scop_stashoffs_addrst_sizePL_opargspthread_key_tIperldblastparensi_addr_lsbIinplace__locale_t_pkeyIDBlinePL_bincompat_optionsIsv_arenarootjumpPL_uudmapgp_egvnewvalpadnamestatesxio_bottom_gv_unused2Iphaseyylensubbeg_asctime_sizeIblockhooksend_shift__nuserssbu_oldsaveix_pwent_ptrIosnamen_addrtypelex_casemodslex_brackstacknumbered_buff_STOREIefloatsizePADLISTIpeeppPADNAMEIregex_padretopprogram_invocation_namexcv_padlist_uminmodsp_pwdpIutf8_foldclosuresPL_checkIsv_yesparenfloorPL_op_private_bitfieldsbranchlikeJMPENVImain_startqr_anoncvIstashpad_archmy_perlPerl___notusedIenvgvIperlioGNU C17 8.5.0 20210514 (Red Hat 8.5.0-10) -m64 -mtune=generic -march=x86-64 -g -g -O2 -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full -fwrapv -fno-strict-aliasing -fPIC -fplugin=annobinIpadname_constPerl_xs_boot_epilogIregmatch_stateprev_rexstderrIisarevIutf8localeIsignalhook__ownerPL_Noop_optc2_utf8__ino64_tsa_family_tsockaddr_inarp__pthread_list_tsubcoffsetsvu_fpyy_stack_frameIdebstashtopwordreg_substr_datumsi_stackxpadl_maxInomemok__uint8_tfirstposIdiehookprev_recurse_locinputany_ptr_readdir64_ptrCLONE_PARAMSIcompcv_vtable_offsetlex_repltimespecPL_interp_size_5_18_0PerlInterpreterxpadnl_max_namedPL_check_mutexxpvlenu_pvILatin1st_nlinkIminus_Fre_eval_strIscopestack_ixsp_maxIscopestack_maxIminus_aany_pvpIminus_cIminus_lIminus_nIminus_pIargvout_stackPL_op_seqIinitavPerl_newXS_deffilesin6_familytbl_itemsPerl_ophook_tcache_maskPL_no_dir_funcfirstcharsImaxsysfdIlocalizinglex_sharedservent_crypt_struct_bufferPL_op_private_labelsrxfree_IO_save_endpw_namesp_lstchgcurly_getlogin_sizePL_sig_nameIunicodeblku_subqr_packageIrestartop__timezonePL_thr_keygofs__mask_was_savedPERL_PHASE_CONSTRUCTIlastgotoprobecop_lineIsecondgv__locale_structIsavebegininitializedXPVAVSTRLENexitlistentryop_ppaddrxpadnl_allocIcheckav_saveIdebug_pad_IO_backup_base__jmp_buf_taglex_flagsIendavblku_oldscopespIutf8_idcontIcomppad_name_fillmy_opIHasMultiCharFoldglobhook_ttmpXSoffXPVCVPL_sh_path_sys_errlistPL_hash_seed_setregnodestdinIperl_destruct_levelsi_cxixmg_virtualpadnamelistoptoptinterpreterPL_warn_reservedPMOPIstashpadixPerl_xs_handshakest_uidlongfoldsp_min_IO_read_endxcv_xsubanyPADOFFSETPL_valid_types_RVIstatbufsbu_rflagsxpv_curxpadn_flagsIstderrgvxio_page_lenperl_memory_debug_header_IO_save_baseIin_clean_allmark_nameop_flagsold_regmatch_slab__ino_treg_substr_datalex_super_state_grent_structxcv_root_ucurlymsettingPL_uuemapPL_nanPL_magic_dataIcustom_op_descsPL_hexdigitsi_prevXPVGV_addr_bndsp_namp_IO_write_endlex_startsIsavestacksi_codeImodcountprev_curlyxIsortstashPL_mod_latin1_ucIstdingvsvt_localsp_warnIcustom_opsCHECKPOINTXPVHVany_av_grent_bufferlast_uni_IO_buf_baseXPVIOsp_expire__uint16_tminlenretIofsgvIdelaymagic_gidxcv_gv_uIcollxfrm_multtbl_arena_endIsavestack_ixPL_C_locale_objsockaddr_x25sin6_flowinfoxmg_magicsvu_gpany_dptrintuitIbody_rootssi_sigvalhek_lenIcollation_ixtokenbufop_nextopline_tmgvtblPL_valid_types_NVXPL_runops_dbg_readdir64_sizeIutf8_xidcontsi_cxstackyyerrstatus_hostent_ptrsbu_rxxcv_padlist_IO_markerPL_revisionsvt_get_Boolsvu_iv__prevIsort_RealCmpsbu_rxtaintedop_moresib_flags2xpv_len_uIpatchlevel_pwent_structnextvalsvu_pvany_gvIhash_rand_bitssbu_orig_IO_lock_t__gid_t_IO_read_ptrIparserxpadlarr_dbgstack_max1runops_proc_tany_hvPL_subversionIpadlist_generation__environxpadnl_maxIdefoutgv_lowerIstatusvalue_posix_pwent_buffer__ctype_tolowersiginfo_tPerl_newSVivany_ivmax_offsetsv_flagsIchopsetIrpeeppoldcomppadPL_fold_localesbu_rxresIincgvsi_markoffxpadnl_fillS_POPMARKPL_no_usymtv_nsecnexttypesig_slurpyIcurpm_under_servent_bufferSighandler_tpthread_getspecificsvu_hashin6addr_loopbacksvu_nvlex_inpatlast_lopsockaddr_ax25PL_isa_DOES/home/.cpan/build/B-COW-0.004-0ptr_tbl_arenafilteredIlastfdPL_perlio_fd_refcntIeval_start_readdir_structIlast_swash_keyls_linestrPerl_check_t_readdir_size__alignPADNAMELISTPERL_PHASE_STARTxcv_hscxtany_u32_ctime_sizeop_pmreplrootud_inoIsavestack_maxIlocalpatchesIsv_rootp5rxop_next__saved_masksvu_rvsvu_rxsockaddr_eonany_opIcurstackIpadix_floorsi_statusxpadl_arrh_addrtype_strerror_sizeIdelaymagic_euidbufendlex_inwhatany_pvPL_valid_types_PVXxnv_nvPL_phase_namessin_zeroIopfreehook_protoent_ptrIunitcheckavsvu_uvPerlIOlprotoentmg_lenImemory_debug_headerPL_no_modifyany_svItop_env__blksize_t_IO_buf_endshort unsigned int_spent_ptrItmps_stackyy_lexsharedoffsIseen_deprecated_macro_IO_codecvtIsv_undefIpsig_nameLEXSHAREDclone_paramsperl_drand48_tIgensymPL_foldIregmatch_slabop_redooprsfp_hostent_structstart_tmpxio_fmt_namesvt_lencop_hintsh_nameIerrorsPL_no_memxpvlenu_lenh_aliases_hostent_sizePL_Yesop_pmreplstarthent_refcountsaved_copylex_sub_inwhatany_uvItmps_floorPL_do_undumpIstrxfrm_is_behavedxpadl_idIbasetimeIop_maskIsighandlerpunreferencedxpadnl_refcntIUpperLatin1xio_ofp_hostent_buffercop_seqmulti_startop_pmreplroot_shortbufIDBtracemaxlenpre_prefixop_targIbeginavje_retresume_statePL_dollarzero_mutexIsv_constspw_dirlex_casestackop_lastopIsub_generationboot_B__COWblku_evalfloatPL_versionPL_no_securityIutf8_foldable__countunsigned charsi_cxmaxmulti_open_killst_rdevLOOPILB_invlistREENTRImess_svIglobalstashImin_intro_pendingPL_perlio_mutexexpectoldlocIcollxfrm_baseIutf8_perl_idcontcx_blkIstatnameRETVALxnv_u__uid_tsin6_scope_idblku_gimmePL_valid_types_IVXst_ctimrecheck_utf8_validityIutf8_tofoldxcv_rootISB_invlistblock_formatin_addr_top_sibparenttz_dsttime__dataold_namesvxpadn_type_uIAssigned_invlistpeep_tPL_my_ctx_mutexIsv_nominlen__off_tperl_phaseIin_clean_objsd_reclenPL_mmap_page_sizePERL_PHASE_DESTRUCTin_podgp_ioImultideref_pcIors_svxpadn_protocvIevalseqIunlockhookregexp_enginemg_flagsIcurstashgr_passwdPerl_ppaddr_tgr_gidIstashpadmaxsi_overrun__clock_tls_bufptrIbeginav_save__uint32_tIorigfilenamexmg_hash_indexlast_lop_opInumeric_localcop_warningsPL_op_private_bitdef_ixIcop_seqmaxop_pmtargetgvPL_veto_cleanupform_lex_stateIstatgvIdestroyhookcoplinest_blocks_sys_siglistsbu_msbu_ssave_curlyxIcomppadsub_no_recoverlex_dojoinxmg_udirent64gp_cvgenPL_utf8skipxcv_fileitervar_ugp_flagsxiou_dirpPL_op_mutexparen_namesIregistered_mrossi_uidpw_passwdlex_allbracketsXS_B__COW_can_cowopvalIcurcopdbblock_subpos_magic_old_offsetgp_file_heksv_refcntsockaddr_in6__nlink_ttbl_aryxav_allocsi_fdnparensPL_no_funcxpadn_refcntIeval_rootold_eval_rootnamed_buff_iterst_gidIdowarnyycharIfirstgvmg_moremagicop_pmoffsetop_pmstashoffPERL_SIMGVTBLop_staticMAGICItmps_maxoptargPL_latin1_lcsockaddr_ipxIthreadhookPL_valid_types_IV_setblku_givwhengr_nameop_typeIutf8_perl_idstartsublenblku_oldmarkspxivu_ivIutf8_swash_ptrs_netent_ptrIpadname_undefpreamblingproto_perl_uppercx_uoutputIDBcvPL_sigfpe_savedtrieIlockhook__ctype_toupperPL_inf_xnvuPerl_keyword_plugin_txio_lines_leftcompflagssockaddr_isopthread_mutex_tIin_load_modulePL_memory_wrapxio_pagesigjmp_bufIlaststype__ctype_b__listh_addr_listIutf8_charname_continuein_my_stashxpadn_len_IO_write_ptr_strerror_bufferdummyIunitcheckav_savePL_op_descsi_stimePL_no_aelemlastcloseparenshort intifmatchIdumpindentIoldnamepreambledop_code_listxhv_keysitersave_readdir64_struct_sys_nerrIAboveLatin1Iutf8_mark_servent_sizesi_signoIDBgvIlast_swash_tmps__namessv_anyblk_uxcv_startacceptedgvvalIWB_invlistolddepthIutf8cache_boundsprev_evalIpadixdefsv_save_netent_bufferxcv_stashYYSTYPExcv_gv_markersPL_keyword_plugincop_hints_hash_filenoIcustom_op_nameslex_sub_replstdoutxpadn_highre_scream_pos_datahek_hashCOW.c_ttyname_bufferPL_hints_mutexIknown_layers_netent_errnoItaintingPL_op_private_bitdefsIcurcopIstack_sp__ssize_tany_boolregmatch_info_auxPERL_PHASE_ENDPL_interp_sizeIcollation_standard__glibc_reservedlex_deferxmg_stashPL_runops_stdIorigalensbu_maxiterssockaddrIdebugrefcounted_heIcurpadPL_op_private_valid__time_t__daylightst_mtims_protosbu_targd_typelogicalIforkprocesslex_bracketsxio_top_gvIutf8_tolowerPL_op_sequenceblku_oldcopperl_mutexIcurstackinfoIstart_envlex_fakeeoflex_sub_opstashesIstashcachexnv_linesPL_use_safe_putenv_IO_write_basep_aliases_netent_structin_mynext_offxivu_uvsin_portpadnlImodglobalin6addr_anyICmdsockaddr_atregmatch_info_aux_evalxcv_start_uPL_no_helem_svbasespIgenerationIGCB_invlistIstrtabxpadl_outidxpadn_lowblock_givwhenregexp_paren_pair__sizecrypt_datapprivatecv_flags_tcur_top_envxpadn_typestashIin_utf8_COLLATE_localeIlast_swash_slenstate_uPERL_PHASE_RUN_sigfaultop_sparelex_opst_inopw_gecos__pid_tparsed_subop_lastxio_typeyylvalsp_inactsockaddr_dlxav_fillhent_valIorigenvironIdelaymagic_egidgp_avscream_oldsmg_ptr_cur_columnregexpmaxpossa_familyptr_tblInumeric_namelazyiv_sifieldsSVCOMPARE_tmother_reIpsig_ptrgp_cvxgv_stashnetentsaved_curcoptv_secblku_u16Iprofiledata__sigset_tgp_lineImainstackIcurpmop_pmflagsst_blksizexpadn_ourstashprogram_invocation_short_namePL_sig_numptr_tbl_ent_hostent_errnoop_slabbedIsublineIargvoutgvIwatchaddrIdefgvhek_keyPerlExitListEntryxio_bottom_namegp_formIreentrant_bufferhent_nextcheck_ix__off64_tIunsafeIhintgvsockaddr_in__jmp_bufIDBsignalIutf8_charname_beginblku_formatPL_ppaddr__dirstreamsin_addrIXpvIregex_padavPL_perlio_debug_fdblku_loopcache_offsetwantedpw_uid_timerIstrxfrm_NUL_replacement__locksig_elemsPL_valid_types_NV_setgr_memIxsubfilenamegp_hvIpad_reset_pendingopterrdfoutgv_sigchldxcv_depthItaint_warnIArgvpw_shellsi_next_syscallPL_no_symref_svIexitlistIsubname_IO_read_basePL_warn_uninitany_i32Ihv_fetch_ent_mhUNOP_AUX_itemsvt_dup__pthread_mutex_sInumeric_radix_svPL_fold_latin1xcv_outside_seqPL_magic_vtable_namesPL_no_sock_funcIsplitstrxcv_heksvt_freesockaddr_nslong long unsigned intsi_addrdirentIbody_arenascheckstr_grent_sizePL_csighandlerpIsortcopPL_warn_uninit_svsin_familyIsignalssbu_typesi_pidmg_privatedupeje_buflazysvItoptargetIstrxfrm_max_cpIerrgvsvt_clearPERL_PHASE_CHECKnexttokePL_no_myglobItmps_ixIsig_pendingsubstrsany_svpintflagsdestroyable_proc_tIfdpidxpadlarr_allocivalany_dxptrn_netPerl_croak_xs_usageop_pmtargetoffIcollation_nameIefloatbuf_pwent_sizeoldvalany_longxiou_anyIexit_flagsc1_utf8Iglobhooksin6_portPL_block_typed_offxio_top_nameIptr_tableIcolorset__jmpbufIfilemode__dev_t__kindIexitlistlensockaddr_unop_foldedIdelaymagicPL_charclassImarkstack_ptrblockpw_gidprev_yes_states_name_protoent_structop_compgp_svsvu_array__pthread_internal_listwhilemIInBitmap__valn_aliases_sigsysextflagsxio_fmt_gvXS_B__COW_is_cowXS_B__COW_cowrefcntxpadn_gencop_fileIcurstnamecx_subst__u6_addr16Isv_countsvt_setIdefstashItaintedtz_minuteswestIbodytargetoldoldbufptrxav_maxxiv_u_protoent_bufferst_modesavearray_xivu_chainleave_opIutf8_xidstartre_eval_startperl_debug_padIstack_maxst_dev__u6_addr32je_prevIclocktick__syscall_slong_tIXPosix_ptrsIDBsubspwd__nextIutf8_idstartje_mustcatchnumbered_buff_LENGTHyy_parserblock_loopop_savefreeIscopestackIformtargetpad_offsetPL_perlio_fd_refcnt_sizes_aliaseslastcpIconstpadixmulti_closestatherelinesImy_cxt_listIPosix_ptrs_freeres_listxivu_namehek__pad5_ttyname_sizesin6_addrIwatchok_IO_FILEPL_my_cxt_index__tznamep_protoPerl_sv_2mortalsvt_copyxnv_bm_tailsival_ptrmark_locsi_utimexpvavIsrand_calledoptind__mode_tsp_flagperl_keyIreplgvsa_dataIbreakable_sub_genrsfp_filtersIin_evalsuboffset__sigval_t_servent_ptrlex_re_reparsingIutf8_toupperlinestartsig_optelemsPERL_PHASE_INITIcv_has_evalmg_typexpvcvnumbered_buff_FETCHIrandom_stateIscopestack_namesi_bandxpadn_pvIcomppad_name_floorIdelaymagic_uidIwarnhookIlast_swash_klen_xmgu_sigpollxio_dirpucur_text__elisionblku_oldpmImain_cvUUTTPVTUzUT/]/kTkz]\^~V%~kz~~ $ &3$p"~ $ &3$p"|~ $ &3$p8Jk1PUUT(](dTd]T]V^~\V~d~~ $ &3$p"~ $ &3$p"v~ $ &3$p8PdlPs~PCC1Cd1PUUTk]kT]"HV8=^=[~[\~\~=A~ $ &3$p"AE~ $ &3$p"=Av~ $ &3$p8kqp}"qup}"uxP1'8PUUTk]kT]"HV8=^=V~V\~=A~ $ &3$p"AE~ $ &3$p"=Av~ $ &3$p81'8P'')8U'')8[h8`0h P p    4xh p x     `  @  # 6 M e      @  3  @ . 3 O n @      ( )< W p{ }   p  0 h p x ( 14D P f Pl     ! -? Yf".annobin_COW.c.annobin_COW.c_end.annobin_COW.c.hot.annobin_COW.c_end.hot.annobin_COW.c.unlikely.annobin_COW.c_end.unlikely.annobin_COW.c.startup.annobin_COW.c_end.startup.annobin_COW.c.exit.annobin_COW.c_end.exit.annobin_XS_B__COW_is_cow.start.annobin_XS_B__COW_is_cow.endXS_B__COW_is_cow.annobin_XS_B__COW_can_cow.start.annobin_XS_B__COW_can_cow.endXS_B__COW_can_cow.annobin_XS_B__COW_cowrefcnt_max.start.annobin_XS_B__COW_cowrefcnt_max.endXS_B__COW_cowrefcnt_max.annobin_XS_B__COW_cowrefcnt.start.annobin_XS_B__COW_cowrefcnt.endXS_B__COW_cowrefcnt.annobin_boot_B__COW.start.annobin_boot_B__COW.endcrtstuff.cderegister_tm_clones__do_global_dtors_auxcompleted.7295__do_global_dtors_aux_fini_array_entryframe_dummy__frame_dummy_init_array_entry__FRAME_END___fini__dso_handle_DYNAMIC__GNU_EH_FRAME_HDR__TMC_END___GLOBAL_OFFSET_TABLE__init_ITM_deregisterTMCloneTableboot_B__COW_edataPL_thr_keyPerl_xs_boot_epilog__gmon_start__Perl_croak_xs_usagepthread_getspecific@@GLIBC_2.2.5Perl_newXS_deffilePerl_sv_2mortal__bss_startPerl_xs_handshake_ITM_registerTMCloneTablePerl_newSViv__cxa_finalize@@GLIBC_2.2.5.symtab.strtab.shstrtab.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.note.gnu.property.init_array.fini_array.data.rel.ro.dynamic.got.bss.comment.gnu.build.attributes.debug_aranges.debug_info.debug_abbrev.debug_line.debug_str.debug_loc.debug_ranges88$.o``48 @008Hohh"Uo@dnBxPPspp~G 2 ^44Dxx h hp px x   0 - `0  @,0,p,2l81Fӝ<R0X7]gV h "L vPK!blib/lib/B/.existsnu[PK!cN N blib/lib/B/COW.pmnu6$package B::COW; use strict; use warnings; # ABSTRACT: B::COW additional B helpers to check COW status use base 'Exporter'; our $VERSION = '0.004'; # VERSION: generated by DZP::OurPkgVersion use XSLoader; XSLoader::load(__PACKAGE__); my @all_export = qw{ can_cow is_cow cowrefcnt cowrefcnt_max }; our @EXPORT_OK = ( @all_export, ); our %EXPORT_TAGS = ( all => [@all_export], ); 1; __END__ =pod =encoding utf-8 =head1 NAME B::COW - B::COW additional B helpers to check COW status =head1 VERSION version 0.004 =head1 SYNOPSIS #!perl use strict; use warnings; use Test::More; # just used for illustration purpose use B::COW qw{:all}; if ( can_cow() ) { # $] >= 5.020 ok !is_cow(undef); my $str = "abcdef"; ok is_cow($str); is cowrefcnt($str), 1; my @a; push @a, $str for 1 .. 100; ok is_cow($str); ok is_cow( $a[0] ); ok is_cow( $a[99] ); is cowrefcnt($str), 101; is cowrefcnt( $a[-1] ), 101; delete $a[99]; is cowrefcnt($str), 100; is cowrefcnt( $a[-1] ), 100; { my %h = ( 'a' .. 'd' ); foreach my $k ( sort keys %h ) { ok is_cow($k); is cowrefcnt($k), 0; } } } else { my $str = "abcdef"; is is_cow($str), undef; is cowrefcnt($str), undef; is cowrefcnt_max(), undef; } done_testing; =head1 DESCRIPTION B::COW provides some naive additional B helpers to check the COW status of one SvPV. =head2 COW or Copy On Write introduction A COWed SvPV is sharing its string (the PV) with other SvPVs. It's a (kind of) Read Only C string, that would be Copied On Write (COW). More than one SV can share the same PV, but when one PV need to alter it, it would perform a copy of it, decrease the COWREFCNT counter. One SV can then drop the COW flag when it's the only one holding a pointer to the PV. The COWREFCNT is stored at the end of the PV, after the the "\0". That value is limited to 255, when we reach 255, a new PV would be created, =for markdown [![](https://github.com/atoomic/B-COW/workflows/linux/badge.svg)](https://github.com/atoomic/B-COW/actions) [![](https://github.com/atoomic/B-COW/workflows/macos/badge.svg)](https://github.com/atoomic/B-COW/actions) [![](https://github.com/atoomic/B-COW/workflows/windows/badge.svg)](https://github.com/atoomic/B-COW/actions) =head1 FUNCTIONS =head2 can_cow() Return a boolean value. True if your Perl version support Copy On Write for SvPVs =head2 is_cow( PV ) Return a boolean value. True if the SV is cowed SvPV. (check the SV FLAGS) =head2 cowrefcnt( PV ) Return one integer representing the COW RefCount value. If the string is not COW, then it will return undef. =head2 cowrefcnt_max() Will return the SV_COW_REFCNT_MAX of your Perl. (if COW is supported, this should be 255 unless customized). =head1 AUTHOR Nicolas R. =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2018 by Nicolas R. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut PK!blib/lib/auto/B/COW/.existsnu[PK!blib/script/.existsnu[PK!blib/man3/.existsnu[PK!r''blib/man3/B::COW.3pmnu[.\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "B::COW 3" .TH B::COW 3 "2020-04-23" "perl v5.26.3" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" B::COW \- B::COW additional B helpers to check COW status .SH "VERSION" .IX Header "VERSION" version 0.004 .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& #!perl \& \& use strict; \& use warnings; \& \& use Test::More; # just used for illustration purpose \& \& use B::COW qw{:all}; \& \& if ( can_cow() ) { # $] >= 5.020 \& ok !is_cow(undef); \& \& my $str = "abcdef"; \& ok is_cow($str); \& is cowrefcnt($str), 1; \& \& my @a; \& push @a, $str for 1 .. 100; \& \& ok is_cow($str); \& ok is_cow( $a[0] ); \& ok is_cow( $a[99] ); \& is cowrefcnt($str), 101; \& is cowrefcnt( $a[\-1] ), 101; \& \& delete $a[99]; \& is cowrefcnt($str), 100; \& is cowrefcnt( $a[\-1] ), 100; \& \& { \& my %h = ( \*(Aqa\*(Aq .. \*(Aqd\*(Aq ); \& foreach my $k ( sort keys %h ) { \& ok is_cow($k); \& is cowrefcnt($k), 0; \& } \& } \& \& } \& else { \& my $str = "abcdef"; \& is is_cow($str), undef; \& is cowrefcnt($str), undef; \& is cowrefcnt_max(), undef; \& } \& \& done_testing; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" B::COW provides some naive additional B helpers to check the \s-1COW\s0 status of one SvPV. .SS "\s-1COW\s0 or Copy On Write introduction" .IX Subsection "COW or Copy On Write introduction" A COWed SvPV is sharing its string (the \s-1PV\s0) with other SvPVs. It's a (kind of) Read Only C string, that would be Copied On Write (\s-1COW\s0). .PP More than one \s-1SV\s0 can share the same \s-1PV,\s0 but when one \s-1PV\s0 need to alter it, it would perform a copy of it, decrease the \s-1COWREFCNT\s0 counter. .PP One \s-1SV\s0 can then drop the \s-1COW\s0 flag when it's the only one holding a pointer to the \s-1PV.\s0 .PP The \s-1COWREFCNT\s0 is stored at the end of the \s-1PV,\s0 after the the \*(L"\e0\*(R". .PP That value is limited to 255, when we reach 255, a new \s-1PV\s0 would be created, .SH "FUNCTIONS" .IX Header "FUNCTIONS" .SS "\fBcan_cow()\fP" .IX Subsection "can_cow()" Return a boolean value. True if your Perl version support Copy On Write for SvPVs .SS "is_cow( \s-1PV\s0 )" .IX Subsection "is_cow( PV )" Return a boolean value. True if the \s-1SV\s0 is cowed SvPV. (check the \s-1SV FLAGS\s0) .SS "cowrefcnt( \s-1PV\s0 )" .IX Subsection "cowrefcnt( PV )" Return one integer representing the \s-1COW\s0 RefCount value. If the string is not \s-1COW,\s0 then it will return undef. .SS "\fBcowrefcnt_max()\fP" .IX Subsection "cowrefcnt_max()" Will return the \s-1SV_COW_REFCNT_MAX\s0 of your Perl. (if \s-1COW\s0 is supported, this should be 255 unless customized). .SH "AUTHOR" .IX Header "AUTHOR" Nicolas R. .SH "COPYRIGHT AND LICENSE" .IX Header "COPYRIGHT AND LICENSE" This software is copyright (c) 2018 by Nicolas R. .PP This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. PK!blib/bin/.existsnu[PK!blib/man1/.existsnu[PK!ѠSS MYMETA.jsonnu[{ "abstract" : "B::COW additional B helpers to check COW status", "author" : [ "Nicolas R. " ], "dynamic_config" : 0, "generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "B-COW", "prereqs" : { "build" : { "requires" : { "ExtUtils::MakeMaker" : "0" } }, "configure" : { "requires" : { "ExtUtils::MakeMaker" : "0" } }, "develop" : { "requires" : { "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", "Test::CPAN::Meta" : "0", "Test::MinimumVersion" : "0", "Test::More" : "0.88", "Test::NoTabs" : "0", "Test::Pod" : "1.41", "Test::Synopsis" : "0" } }, "runtime" : { "requires" : { "perl" : "5.008" } }, "test" : { "recommends" : { "CPAN::Meta" : "2.120900" }, "requires" : { "Devel::Peek" : "0", "ExtUtils::MakeMaker" : "0", "File::Spec" : "0", "Test::More" : "0" } } }, "provides" : { "B::COW" : { "file" : "lib/B/COW.pm", "version" : "0.004" } }, "release_status" : "stable", "resources" : { "bugtracker" : { "web" : "https://github.com/atoomic/B-COW/issues" }, "repository" : { "type" : "git", "url" : "https://github.com/atoomic/B-COW.git", "web" : "https://github.com/atoomic/B-COW.git" } }, "version" : "0.004", "x_Dist_Zilla" : { "perl" : { "version" : "5.030001" }, "plugins" : [ { "class" : "Dist::Zilla::Plugin::OurPkgVersion", "name" : "OurPkgVersion", "version" : "0.21" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", "config" : { "Dist::Zilla::Plugin::Test::Compile" : { "bail_out_on_fail" : 0, "fail_on_warning" : "author", "fake_home" : 0, "filename" : "xt/author/00-compile.t", "module_finder" : [ ":InstallModules" ], "needs_display" : 0, "phase" : "develop", "script_finder" : [ ":PerlExecFiles" ], "skips" : [], "switch" : [] } }, "name" : "Test::Compile", "version" : "2.058" }, { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "MetaTests", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Test::NoTabs", "config" : { "Dist::Zilla::Plugin::Test::NoTabs" : { "filename" : "xt/author/no-tabs.t", "finder" : [ ":InstallModules", ":ExecFiles", ":TestFiles" ] } }, "name" : "Test::NoTabs", "version" : "0.15" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "PodSyntaxTests", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs", "name" : "Test::ReportPrereqs", "version" : "0.027" }, { "class" : "Dist::Zilla::Plugin::PodWeaver", "config" : { "Dist::Zilla::Plugin::PodWeaver" : { "finder" : [ ":InstallModules", ":ExecFiles" ], "plugins" : [ { "class" : "Pod::Weaver::Plugin::EnsurePod5", "name" : "@CorePrep/EnsurePod5", "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::H1Nester", "name" : "@CorePrep/H1Nester", "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::SingleEncoding", "name" : "@Default/SingleEncoding", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Name", "name" : "@Default/Name", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Version", "name" : "@Default/Version", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Default/prelude", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "SYNOPSIS", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "DESCRIPTION", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "OVERVIEW", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "ATTRIBUTES", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "METHODS", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "FUNCTIONS", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Leftovers", "name" : "@Default/Leftovers", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Default/postlude", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Authors", "name" : "@Default/Authors", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Legal", "name" : "@Default/Legal", "version" : "4.015" } ] } }, "name" : "PodWeaver", "version" : "4.008" }, { "class" : "Dist::Zilla::Plugin::RunExtraTests", "config" : { "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 1 } }, "name" : "RunExtraTests", "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "MetaJSON", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MinimumPerlFast", "name" : "MinimumPerlFast", "version" : "0.003" }, { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "MetaConfig", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", "config" : { "Dist::Zilla::Plugin::MetaProvides::Package" : { "finder_objects" : [ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : "MetaProvides::Package/AUTOVIV/:InstallModulesPM", "version" : "6.012" } ], "include_underscores" : 0 }, "Dist::Zilla::Role::MetaProvider::Provider" : { "$Dist::Zilla::Role::MetaProvider::Provider::VERSION" : "2.002004", "inherit_missing" : 1, "inherit_version" : 1, "meta_noindex" : 1 }, "Dist::Zilla::Role::ModuleMetadata" : { "Module::Metadata" : "1.000036", "version" : "0.006" } }, "name" : "MetaProvides::Package", "version" : "2.004003" }, { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "NextRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Git::Push", "config" : { "Dist::Zilla::Plugin::Git::Push" : { "push_to" : [ "gh", "gh HEAD:refs/heads/released" ], "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "Git::Push", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "test", "type" : "requires" } }, "name" : "TestRequires", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "TestRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", "config" : { "Dist::Zilla::Plugin::Test::MinimumVersion" : { "max_target_perl" : "5.008" } }, "name" : "Test::MinimumVersion", "version" : "2.000010" }, { "class" : "Dist::Zilla::Plugin::Git::Check", "config" : { "Dist::Zilla::Plugin::Git::Check" : { "untracked_files" : "die" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ "Changes", "README.mkdn", "dist.ini" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "@Git/Check", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", "config" : { "Dist::Zilla::Plugin::Git::Commit" : { "add_files_in" : [ "Changes", "README.mkdn", "dist.ini" ], "commit_msg" : "v%V%n%n%c" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ "Changes", "README.mkdn", "dist.ini" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Git/Commit", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", "config" : { "Dist::Zilla::Plugin::Git::Tag" : { "branch" : null, "changelog" : "Changes", "signed" : 0, "tag" : "v0.004", "tag_format" : "v%V", "tag_message" : "v%V" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Git/Tag", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Push", "config" : { "Dist::Zilla::Plugin::Git::Push" : { "push_to" : [ "gh", "gh HEAD:refs/heads/released" ], "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "@Git/Push", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Run::BeforeBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "fatal_errors" : 1, "quiet" : 0, "version" : "0.048" } }, "name" : "Run::BeforeBuild", "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "fatal_errors" : 1, "quiet" : 0, "run" : [ "cp %d/Makefile.PL ./", "git status --porcelain | grep 'M Makefile.PL' && git commit -m 'Makefile.PL auto-updated by dist.ini' Makefile.PL && echo \"# Makefile.PL auto-update\" || echo \"# Makefile.PL up to date\"" ], "version" : "0.048" } }, "name" : "Run::AfterBuild", "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::Git::NextVersion", "config" : { "Dist::Zilla::Plugin::Git::NextVersion" : { "first_version" : "0.001", "version_by_branch" : 0, "version_regexp" : "(?^:^v(.+)$)" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "Git::NextVersion", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::PruneCruft", "name" : "@Filter/PruneCruft", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ManifestSkip", "name" : "@Filter/ManifestSkip", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Filter/MetaYAML", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Filter/License", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Filter/Readme", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ExecDir", "name" : "@Filter/ExecDir", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ShareDir", "name" : "@Filter/ShareDir", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MakeMaker", "config" : { "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 1 } }, "name" : "@Filter/MakeMaker", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Filter/Manifest", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Filter/TestRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Filter/ConfirmRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Filter/UploadToCPAN", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::GatherDir", "config" : { "Dist::Zilla::Plugin::GatherDir" : { "exclude_filename" : [ "Makefile.PL" ], "exclude_match" : [], "follow_symlinks" : 0, "include_dotfiles" : 0, "prefix" : "", "prune_directory" : [], "root" : "." } }, "name" : "GatherDir", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MetaResources", "name" : "MetaResources", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::PruneFiles", "name" : "PruneFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::InsertExample", "name" : "InsertExample", "version" : "0.09" }, { "class" : "Dist::Zilla::Plugin::Test::Synopsis", "name" : "Test::Synopsis", "version" : "2.000007" }, { "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", "config" : { "Dist::Zilla::Role::FileWatcher" : { "version" : "0.006" } }, "name" : "ReadmeAnyFromPod", "version" : "0.163250" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExtraTestFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":PerlExecFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : "MetaProvides::Package/AUTOVIV/:InstallModulesPM", "version" : "6.012" } ], "zilla" : { "class" : "Dist::Zilla::Dist::Builder", "config" : { "is_trial" : 0 }, "version" : "6.012" } }, "x_generated_by_perl" : "v5.30.1", "x_serialization_backend" : "JSON::PP version 2.97001" } PK!x]Makefilenu[# This Makefile is for the B::COW extension to perl. # # It was generated automatically by MakeMaker version # 7.34 (Revision: 73400) from the contents of # Makefile.PL. Don't edit this file, edit Makefile.PL instead. # # ANY CHANGES MADE HERE WILL BE LOST! # # MakeMaker ARGV: () # # MakeMaker Parameters: # ABSTRACT => q[B::COW additional B helpers to check COW status] # AUTHOR => [q[Nicolas R. ]] # BUILD_REQUIRES => { } # CONFIGURE_REQUIRES => { ExtUtils::MakeMaker=>q[0] } # DISTNAME => q[B-COW] # LICENSE => q[perl] # MIN_PERL_VERSION => q[5.008] # NAME => q[B::COW] # PREREQ_PM => { Devel::Peek=>q[0], ExtUtils::MakeMaker=>q[0], File::Spec=>q[0], Test::More=>q[0] } # TEST_REQUIRES => { Devel::Peek=>q[0], ExtUtils::MakeMaker=>q[0], File::Spec=>q[0], Test::More=>q[0] } # VERSION => q[0.004] # test => { TESTS=>q[t/*.t] } # --- MakeMaker post_initialize section: # --- MakeMaker const_config section: # These definitions are from config.sh (via /usr/lib64/perl5/Config.pm). # They may have been overridden via Makefile.PL or on the command line. AR = ar CC = gcc CCCDLFLAGS = -fPIC CCDLFLAGS = -Wl,--enable-new-dtags -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld DLEXT = so DLSRC = dl_dlopen.xs EXE_EXT = FULL_AR = /usr/bin/ar LD = gcc LDDLFLAGS = -lpthread -shared -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -L/usr/local/lib -fstack-protector-strong LDFLAGS = -Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -fstack-protector-strong -L/usr/local/lib LIBC = libc-2.28.so LIB_EXT = .a OBJ_EXT = .o OSNAME = linux OSVERS = 4.18.0-348.12.2.el8_5.x86_64 RANLIB = : SITELIBEXP = /usr/local/share/perl5 SITEARCHEXP = /usr/local/lib64/perl5 SO = so VENDORARCHEXP = /usr/lib64/perl5/vendor_perl VENDORLIBEXP = /usr/share/perl5/vendor_perl # --- MakeMaker constants section: AR_STATIC_ARGS = cr DIRFILESEP = / DFSEP = $(DIRFILESEP) NAME = B::COW NAME_SYM = B_COW VERSION = 0.004 VERSION_MACRO = VERSION VERSION_SYM = 0_004 DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\" XS_VERSION = 0.004 XS_VERSION_MACRO = XS_VERSION XS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\" INST_ARCHLIB = blib/arch INST_SCRIPT = blib/script INST_BIN = blib/bin INST_LIB = blib/lib INST_MAN1DIR = blib/man1 INST_MAN3DIR = blib/man3 MAN1EXT = 1 MAN3EXT = 3pm INSTALLDIRS = site DESTDIR = PREFIX = $(SITEPREFIX) PERLPREFIX = /usr SITEPREFIX = /usr/local VENDORPREFIX = /usr INSTALLPRIVLIB = /usr/share/perl5 DESTINSTALLPRIVLIB = $(DESTDIR)$(INSTALLPRIVLIB) INSTALLSITELIB = /usr/local/share/perl5 DESTINSTALLSITELIB = $(DESTDIR)$(INSTALLSITELIB) INSTALLVENDORLIB = /usr/share/perl5/vendor_perl DESTINSTALLVENDORLIB = $(DESTDIR)$(INSTALLVENDORLIB) INSTALLARCHLIB = /usr/lib64/perl5 DESTINSTALLARCHLIB = $(DESTDIR)$(INSTALLARCHLIB) INSTALLSITEARCH = /usr/local/lib64/perl5 DESTINSTALLSITEARCH = $(DESTDIR)$(INSTALLSITEARCH) INSTALLVENDORARCH = /usr/lib64/perl5/vendor_perl DESTINSTALLVENDORARCH = $(DESTDIR)$(INSTALLVENDORARCH) INSTALLBIN = /usr/bin DESTINSTALLBIN = $(DESTDIR)$(INSTALLBIN) INSTALLSITEBIN = /usr/local/bin DESTINSTALLSITEBIN = $(DESTDIR)$(INSTALLSITEBIN) INSTALLVENDORBIN = /usr/bin DESTINSTALLVENDORBIN = $(DESTDIR)$(INSTALLVENDORBIN) INSTALLSCRIPT = /usr/bin DESTINSTALLSCRIPT = $(DESTDIR)$(INSTALLSCRIPT) INSTALLSITESCRIPT = /usr/local/bin DESTINSTALLSITESCRIPT = $(DESTDIR)$(INSTALLSITESCRIPT) INSTALLVENDORSCRIPT = /usr/bin DESTINSTALLVENDORSCRIPT = $(DESTDIR)$(INSTALLVENDORSCRIPT) INSTALLMAN1DIR = /usr/share/man/man1 DESTINSTALLMAN1DIR = $(DESTDIR)$(INSTALLMAN1DIR) INSTALLSITEMAN1DIR = /usr/local/share/man/man1 DESTINSTALLSITEMAN1DIR = $(DESTDIR)$(INSTALLSITEMAN1DIR) INSTALLVENDORMAN1DIR = /usr/share/man/man1 DESTINSTALLVENDORMAN1DIR = $(DESTDIR)$(INSTALLVENDORMAN1DIR) INSTALLMAN3DIR = /usr/share/man/man3 DESTINSTALLMAN3DIR = $(DESTDIR)$(INSTALLMAN3DIR) INSTALLSITEMAN3DIR = /usr/local/share/man/man3 DESTINSTALLSITEMAN3DIR = $(DESTDIR)$(INSTALLSITEMAN3DIR) INSTALLVENDORMAN3DIR = /usr/share/man/man3 DESTINSTALLVENDORMAN3DIR = $(DESTDIR)$(INSTALLVENDORMAN3DIR) PERL_LIB = /usr/share/perl5 PERL_ARCHLIB = /usr/lib64/perl5 PERL_ARCHLIBDEP = /usr/lib64/perl5 LIBPERL_A = libperl.a FIRST_MAKEFILE = Makefile MAKEFILE_OLD = Makefile.old MAKE_APERL_FILE = Makefile.aperl PERLMAINCC = $(CC) PERL_INC = /usr/lib64/perl5/CORE PERL_INCDEP = /usr/lib64/perl5/CORE PERL = "/usr/bin/perl" FULLPERL = "/usr/bin/perl" ABSPERL = $(PERL) PERLRUN = $(PERL) FULLPERLRUN = $(FULLPERL) ABSPERLRUN = $(ABSPERL) PERLRUNINST = $(PERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" FULLPERLRUNINST = $(FULLPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" ABSPERLRUNINST = $(ABSPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" PERL_CORE = 0 PERM_DIR = 755 PERM_RW = 644 PERM_RWX = 755 MAKEMAKER = /usr/share/perl5/vendor_perl/ExtUtils/MakeMaker.pm MM_VERSION = 7.34 MM_REVISION = 73400 # FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle). # BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle) # PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar) # DLBASE = Basename part of dynamic library. May be just equal BASEEXT. MAKE = make FULLEXT = B/COW BASEEXT = COW PARENT_NAME = B DLBASE = $(BASEEXT) VERSION_FROM = OBJECT = $(BASEEXT)$(OBJ_EXT) LDFROM = $(OBJECT) LINKTYPE = dynamic BOOTDEP = # Handy lists of source code files: XS_FILES = COW.xs C_FILES = COW.c O_FILES = COW.o H_FILES = MAN1PODS = MAN3PODS = lib/B/COW.pm # Where is the Config information that we are using/depend on CONFIGDEP = $(PERL_ARCHLIBDEP)$(DFSEP)Config.pm $(PERL_INCDEP)$(DFSEP)config.h # Where to build things INST_LIBDIR = $(INST_LIB)/B INST_ARCHLIBDIR = $(INST_ARCHLIB)/B INST_AUTODIR = $(INST_LIB)/auto/$(FULLEXT) INST_ARCHAUTODIR = $(INST_ARCHLIB)/auto/$(FULLEXT) INST_STATIC = $(INST_ARCHAUTODIR)/$(BASEEXT)$(LIB_EXT) INST_DYNAMIC = $(INST_ARCHAUTODIR)/$(DLBASE).$(DLEXT) INST_BOOT = $(INST_ARCHAUTODIR)/$(BASEEXT).bs # Extra linker info EXPORT_LIST = PERL_ARCHIVE = PERL_ARCHIVEDEP = PERL_ARCHIVE_AFTER = TO_INST_PM = lib/B/COW.pm # --- MakeMaker platform_constants section: MM_Unix_VERSION = 7.34 PERL_MALLOC_DEF = -DPERL_EXTMALLOC_DEF -Dmalloc=Perl_malloc -Dfree=Perl_mfree -Drealloc=Perl_realloc -Dcalloc=Perl_calloc # --- MakeMaker tool_autosplit section: # Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto AUTOSPLITFILE = $(ABSPERLRUN) -e 'use AutoSplit; autosplit($$$$ARGV[0], $$$$ARGV[1], 0, 1, 1)' -- # --- MakeMaker tool_xsubpp section: XSUBPPDIR = /usr/share/perl5/vendor_perl/ExtUtils XSUBPP = "$(XSUBPPDIR)$(DFSEP)xsubpp" XSUBPPRUN = $(PERLRUN) $(XSUBPP) XSPROTOARG = XSUBPPDEPS = /usr/share/perl5/ExtUtils/typemap /usr/share/perl5/vendor_perl/ExtUtils$(DFSEP)xsubpp XSUBPPARGS = -typemap '/usr/share/perl5/ExtUtils/typemap' XSUBPP_EXTRA_ARGS = # --- MakeMaker tools_other section: SHELL = /bin/sh CHMOD = chmod CP = cp MV = mv NOOP = $(TRUE) NOECHO = @ RM_F = rm -f RM_RF = rm -rf TEST_F = test -f TOUCH = touch UMASK_NULL = umask 0 DEV_NULL = > /dev/null 2>&1 MKPATH = $(ABSPERLRUN) -MExtUtils::Command -e 'mkpath' -- EQUALIZE_TIMESTAMP = $(ABSPERLRUN) -MExtUtils::Command -e 'eqtime' -- FALSE = false TRUE = true ECHO = echo ECHO_N = echo -n UNINST = 0 VERBINST = 0 MOD_INSTALL = $(ABSPERLRUN) -MExtUtils::Install -e 'install([ from_to => {@ARGV}, verbose => '\''$(VERBINST)'\'', uninstall_shadows => '\''$(UNINST)'\'', dir_mode => '\''$(PERM_DIR)'\'' ]);' -- DOC_INSTALL = $(ABSPERLRUN) -MExtUtils::Command::MM -e 'perllocal_install' -- UNINSTALL = $(ABSPERLRUN) -MExtUtils::Command::MM -e 'uninstall' -- WARN_IF_OLD_PACKLIST = $(ABSPERLRUN) -MExtUtils::Command::MM -e 'warn_if_old_packlist' -- MACROSTART = MACROEND = USEMAKEFILE = -f FIXIN = $(ABSPERLRUN) -MExtUtils::MY -e 'MY->fixin(shift)' -- CP_NONEMPTY = $(ABSPERLRUN) -MExtUtils::Command::MM -e 'cp_nonempty' -- # --- MakeMaker makemakerdflt section: makemakerdflt : all $(NOECHO) $(NOOP) # --- MakeMaker dist section: TAR = tar TARFLAGS = cvf ZIP = zip ZIPFLAGS = -r COMPRESS = gzip --best SUFFIX = .gz SHAR = shar PREOP = $(NOECHO) $(NOOP) POSTOP = $(NOECHO) $(NOOP) TO_UNIX = $(NOECHO) $(NOOP) CI = ci -u RCS_LABEL = rcs -Nv$(VERSION_SYM): -q DIST_CP = best DIST_DEFAULT = tardist DISTNAME = B-COW DISTVNAME = B-COW-0.004 # --- MakeMaker macro section: # --- MakeMaker depend section: # --- MakeMaker cflags section: CCFLAGS = -D_REENTRANT -D_GNU_SOURCE -O2 -g -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fexceptions -fstack-protector-strong -grecord-gcc-switches -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -fwrapv -fno-strict-aliasing -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 OPTIMIZE = -g PERLTYPE = MPOLLUTE = # --- MakeMaker const_loadlibs section: # B::COW might depend on some other libraries: # See ExtUtils::Liblist for details # # --- MakeMaker const_cccmd section: CCCMD = $(CC) -c $(PASTHRU_INC) $(INC) \ $(CCFLAGS) $(OPTIMIZE) \ $(PERLTYPE) $(MPOLLUTE) $(DEFINE_VERSION) \ $(XS_DEFINE_VERSION) # --- MakeMaker post_constants section: # --- MakeMaker pasthru section: PASTHRU = LIBPERL_A="$(LIBPERL_A)"\ LINKTYPE="$(LINKTYPE)"\ OPTIMIZE="$(OPTIMIZE)"\ PREFIX="$(PREFIX)"\ PASTHRU_DEFINE='$(DEFINE) $(PASTHRU_DEFINE)'\ PASTHRU_INC='$(INC) $(PASTHRU_INC)' # --- MakeMaker special_targets section: .SUFFIXES : .xs .c .C .cpp .i .s .cxx .cc $(OBJ_EXT) .PHONY: all config static dynamic test linkext manifest blibdirs clean realclean disttest distdir pure_all subdirs clean_subdirs makemakerdflt manifypods realclean_subdirs subdirs_dynamic subdirs_pure_nolink subdirs_static subdirs-test_dynamic subdirs-test_static test_dynamic test_static # --- MakeMaker c_o section: .c.i: gcc -E -c $(PASTHRU_INC) $(INC) \ $(CCFLAGS) $(OPTIMIZE) \ $(PERLTYPE) $(MPOLLUTE) $(DEFINE_VERSION) \ $(XS_DEFINE_VERSION) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c > $*.i .c.s : $(CCCMD) -S $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c .c$(OBJ_EXT) : $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c .cpp$(OBJ_EXT) : $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.cpp .cxx$(OBJ_EXT) : $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.cxx .cc$(OBJ_EXT) : $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.cc .C$(OBJ_EXT) : $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.C # --- MakeMaker xs_c section: .xs.c: $(XSUBPPRUN) $(XSPROTOARG) $(XSUBPPARGS) $(XSUBPP_EXTRA_ARGS) $*.xs > $*.xsc $(MV) $*.xsc $*.c # --- MakeMaker xs_o section: .xs$(OBJ_EXT) : $(XSUBPPRUN) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc $(MV) $*.xsc $*.c $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c # --- MakeMaker top_targets section: all :: pure_all manifypods $(NOECHO) $(NOOP) pure_all :: config pm_to_blib subdirs linkext $(NOECHO) $(NOOP) $(NOECHO) $(NOOP) subdirs :: $(MYEXTLIB) $(NOECHO) $(NOOP) config :: $(FIRST_MAKEFILE) blibdirs $(NOECHO) $(NOOP) help : perldoc ExtUtils::MakeMaker # --- MakeMaker blibdirs section: blibdirs : $(INST_LIBDIR)$(DFSEP).exists $(INST_ARCHLIB)$(DFSEP).exists $(INST_AUTODIR)$(DFSEP).exists $(INST_ARCHAUTODIR)$(DFSEP).exists $(INST_BIN)$(DFSEP).exists $(INST_SCRIPT)$(DFSEP).exists $(INST_MAN1DIR)$(DFSEP).exists $(INST_MAN3DIR)$(DFSEP).exists $(NOECHO) $(NOOP) # Backwards compat with 6.18 through 6.25 blibdirs.ts : blibdirs $(NOECHO) $(NOOP) $(INST_LIBDIR)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_LIBDIR) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_LIBDIR) $(NOECHO) $(TOUCH) $(INST_LIBDIR)$(DFSEP).exists $(INST_ARCHLIB)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_ARCHLIB) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_ARCHLIB) $(NOECHO) $(TOUCH) $(INST_ARCHLIB)$(DFSEP).exists $(INST_AUTODIR)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_AUTODIR) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_AUTODIR) $(NOECHO) $(TOUCH) $(INST_AUTODIR)$(DFSEP).exists $(INST_ARCHAUTODIR)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_ARCHAUTODIR) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_ARCHAUTODIR) $(NOECHO) $(TOUCH) $(INST_ARCHAUTODIR)$(DFSEP).exists $(INST_BIN)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_BIN) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_BIN) $(NOECHO) $(TOUCH) $(INST_BIN)$(DFSEP).exists $(INST_SCRIPT)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_SCRIPT) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_SCRIPT) $(NOECHO) $(TOUCH) $(INST_SCRIPT)$(DFSEP).exists $(INST_MAN1DIR)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_MAN1DIR) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_MAN1DIR) $(NOECHO) $(TOUCH) $(INST_MAN1DIR)$(DFSEP).exists $(INST_MAN3DIR)$(DFSEP).exists :: Makefile.PL $(NOECHO) $(MKPATH) $(INST_MAN3DIR) $(NOECHO) $(CHMOD) $(PERM_DIR) $(INST_MAN3DIR) $(NOECHO) $(TOUCH) $(INST_MAN3DIR)$(DFSEP).exists # --- MakeMaker linkext section: linkext :: dynamic $(NOECHO) $(NOOP) # --- MakeMaker dlsyms section: # --- MakeMaker dynamic_bs section: BOOTSTRAP = $(BASEEXT).bs # As Mkbootstrap might not write a file (if none is required) # we use touch to prevent make continually trying to remake it. # The DynaLoader only reads a non-empty file. $(BASEEXT).bs : $(FIRST_MAKEFILE) $(BOOTDEP) $(NOECHO) $(ECHO) "Running Mkbootstrap for $(BASEEXT) ($(BSLOADLIBS))" $(NOECHO) $(PERLRUN) \ "-MExtUtils::Mkbootstrap" \ -e "Mkbootstrap('$(BASEEXT)','$(BSLOADLIBS)');" $(NOECHO) $(TOUCH) "$(BASEEXT).bs" $(CHMOD) $(PERM_RW) "$(BASEEXT).bs" $(INST_ARCHAUTODIR)/$(BASEEXT).bs : $(BASEEXT).bs $(INST_ARCHAUTODIR)$(DFSEP).exists $(NOECHO) $(RM_RF) $(INST_ARCHAUTODIR)/$(BASEEXT).bs - $(CP_NONEMPTY) $(BASEEXT).bs $(INST_ARCHAUTODIR)/$(BASEEXT).bs $(PERM_RW) # --- MakeMaker dynamic section: dynamic :: $(FIRST_MAKEFILE) config $(INST_BOOT) $(INST_DYNAMIC) $(NOECHO) $(NOOP) # --- MakeMaker dynamic_lib section: # This section creates the dynamically loadable objects from relevant # objects and possibly $(MYEXTLIB). ARMAYBE = : OTHERLDFLAGS = INST_DYNAMIC_DEP = INST_DYNAMIC_FIX = $(INST_DYNAMIC) : $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(EXPORT_LIST) $(PERL_ARCHIVEDEP) $(PERL_ARCHIVE_AFTER) $(INST_DYNAMIC_DEP) $(RM_F) $@ $(LD) $(LDDLFLAGS) $(LDFROM) $(OTHERLDFLAGS) -o $@ $(MYEXTLIB) \ $(PERL_ARCHIVE) $(LDLOADLIBS) -lperl $(PERL_ARCHIVE_AFTER) $(EXPORT_LIST) \ $(INST_DYNAMIC_FIX) $(CHMOD) $(PERM_RWX) $@ # --- MakeMaker static section: ## $(INST_PM) has been moved to the all: target. ## It remains here for awhile to allow for old usage: "make static" static :: $(FIRST_MAKEFILE) $(INST_STATIC) $(NOECHO) $(NOOP) # --- MakeMaker static_lib section: $(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists $(RM_F) "$@" $(FULL_AR) $(AR_STATIC_ARGS) "$@" $(OBJECT) $(RANLIB) "$@" $(CHMOD) $(PERM_RWX) $@ $(NOECHO) $(ECHO) "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)$(DFSEP)extralibs.ld # --- MakeMaker manifypods section: POD2MAN_EXE = $(PERLRUN) "-MExtUtils::Command::MM" -e pod2man "--" POD2MAN = $(POD2MAN_EXE) manifypods : pure_all config \ lib/B/COW.pm $(NOECHO) $(POD2MAN) --section=3 --perm_rw=$(PERM_RW) -u \ lib/B/COW.pm $(INST_MAN3DIR)/B::COW.$(MAN3EXT) # --- MakeMaker processPL section: # --- MakeMaker installbin section: # --- MakeMaker subdirs section: # none # --- MakeMaker clean_subdirs section: clean_subdirs : $(NOECHO) $(NOOP) # --- MakeMaker clean section: # Delete temporary files but do not touch installed files. We don't delete # the Makefile here so a later make realclean still has a makefile to use. clean :: clean_subdirs - $(RM_F) \ $(BASEEXT).bso $(BASEEXT).def \ $(BASEEXT).exp $(BASEEXT).x \ $(BOOTSTRAP) $(INST_ARCHAUTODIR)/extralibs.all \ $(INST_ARCHAUTODIR)/extralibs.ld $(MAKE_APERL_FILE) \ *$(LIB_EXT) *$(OBJ_EXT) \ *perl.core COW.base \ COW.bs COW.bso \ COW.c COW.def \ COW.exp COW.o \ COW_def.old MYMETA.json \ MYMETA.yml blibdirs.ts \ core core.*perl.*.? \ core.[0-9] core.[0-9][0-9] \ core.[0-9][0-9][0-9] core.[0-9][0-9][0-9][0-9] \ core.[0-9][0-9][0-9][0-9][0-9] lib$(BASEEXT).def \ mon.out perl \ perl$(EXE_EXT) perl.exe \ perlmain.c pm_to_blib \ pm_to_blib.ts so_locations \ tmon.out - $(RM_RF) \ blib $(NOECHO) $(RM_F) $(MAKEFILE_OLD) - $(MV) $(FIRST_MAKEFILE) $(MAKEFILE_OLD) $(DEV_NULL) # --- MakeMaker realclean_subdirs section: # so clean is forced to complete before realclean_subdirs runs realclean_subdirs : clean $(NOECHO) $(NOOP) # --- MakeMaker realclean section: # Delete temporary files (via clean) and also delete dist files realclean purge :: realclean_subdirs - $(RM_F) \ $(FIRST_MAKEFILE) $(MAKEFILE_OLD) \ $(OBJECT) - $(RM_RF) \ $(DISTVNAME) # --- MakeMaker metafile section: metafile : create_distdir $(NOECHO) $(ECHO) Generating META.yml $(NOECHO) $(ECHO) '---' > META_new.yml $(NOECHO) $(ECHO) 'abstract: '\''B::COW additional B helpers to check COW status'\''' >> META_new.yml $(NOECHO) $(ECHO) 'author:' >> META_new.yml $(NOECHO) $(ECHO) ' - '\''Nicolas R. '\''' >> META_new.yml $(NOECHO) $(ECHO) 'build_requires:' >> META_new.yml $(NOECHO) $(ECHO) ' Devel::Peek: '\''0'\''' >> META_new.yml $(NOECHO) $(ECHO) ' ExtUtils::MakeMaker: '\''0'\''' >> META_new.yml $(NOECHO) $(ECHO) ' File::Spec: '\''0'\''' >> META_new.yml $(NOECHO) $(ECHO) ' Test::More: '\''0'\''' >> META_new.yml $(NOECHO) $(ECHO) 'configure_requires:' >> META_new.yml $(NOECHO) $(ECHO) ' ExtUtils::MakeMaker: '\''0'\''' >> META_new.yml $(NOECHO) $(ECHO) 'dynamic_config: 1' >> META_new.yml $(NOECHO) $(ECHO) 'generated_by: '\''ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010'\''' >> META_new.yml $(NOECHO) $(ECHO) 'license: perl' >> META_new.yml $(NOECHO) $(ECHO) 'meta-spec:' >> META_new.yml $(NOECHO) $(ECHO) ' url: http://module-build.sourceforge.net/META-spec-v1.4.html' >> META_new.yml $(NOECHO) $(ECHO) ' version: '\''1.4'\''' >> META_new.yml $(NOECHO) $(ECHO) 'name: B-COW' >> META_new.yml $(NOECHO) $(ECHO) 'no_index:' >> META_new.yml $(NOECHO) $(ECHO) ' directory:' >> META_new.yml $(NOECHO) $(ECHO) ' - t' >> META_new.yml $(NOECHO) $(ECHO) ' - inc' >> META_new.yml $(NOECHO) $(ECHO) 'requires:' >> META_new.yml $(NOECHO) $(ECHO) ' perl: '\''5.008'\''' >> META_new.yml $(NOECHO) $(ECHO) 'version: '\''0.004'\''' >> META_new.yml $(NOECHO) $(ECHO) 'x_serialization_backend: '\''CPAN::Meta::YAML version 0.018'\''' >> META_new.yml -$(NOECHO) $(MV) META_new.yml $(DISTVNAME)/META.yml $(NOECHO) $(ECHO) Generating META.json $(NOECHO) $(ECHO) '{' > META_new.json $(NOECHO) $(ECHO) ' "abstract" : "B::COW additional B helpers to check COW status",' >> META_new.json $(NOECHO) $(ECHO) ' "author" : [' >> META_new.json $(NOECHO) $(ECHO) ' "Nicolas R. "' >> META_new.json $(NOECHO) $(ECHO) ' ],' >> META_new.json $(NOECHO) $(ECHO) ' "dynamic_config" : 1,' >> META_new.json $(NOECHO) $(ECHO) ' "generated_by" : "ExtUtils::MakeMaker version 7.34, CPAN::Meta::Converter version 2.150010",' >> META_new.json $(NOECHO) $(ECHO) ' "license" : [' >> META_new.json $(NOECHO) $(ECHO) ' "perl_5"' >> META_new.json $(NOECHO) $(ECHO) ' ],' >> META_new.json $(NOECHO) $(ECHO) ' "meta-spec" : {' >> META_new.json $(NOECHO) $(ECHO) ' "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",' >> META_new.json $(NOECHO) $(ECHO) ' "version" : 2' >> META_new.json $(NOECHO) $(ECHO) ' },' >> META_new.json $(NOECHO) $(ECHO) ' "name" : "B-COW",' >> META_new.json $(NOECHO) $(ECHO) ' "no_index" : {' >> META_new.json $(NOECHO) $(ECHO) ' "directory" : [' >> META_new.json $(NOECHO) $(ECHO) ' "t",' >> META_new.json $(NOECHO) $(ECHO) ' "inc"' >> META_new.json $(NOECHO) $(ECHO) ' ]' >> META_new.json $(NOECHO) $(ECHO) ' },' >> META_new.json $(NOECHO) $(ECHO) ' "prereqs" : {' >> META_new.json $(NOECHO) $(ECHO) ' "build" : {' >> META_new.json $(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json $(NOECHO) $(ECHO) ' "ExtUtils::MakeMaker" : "0"' >> META_new.json $(NOECHO) $(ECHO) ' }' >> META_new.json $(NOECHO) $(ECHO) ' },' >> META_new.json $(NOECHO) $(ECHO) ' "configure" : {' >> META_new.json $(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json $(NOECHO) $(ECHO) ' "ExtUtils::MakeMaker" : "0"' >> META_new.json $(NOECHO) $(ECHO) ' }' >> META_new.json $(NOECHO) $(ECHO) ' },' >> META_new.json $(NOECHO) $(ECHO) ' "runtime" : {' >> META_new.json $(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json $(NOECHO) $(ECHO) ' "perl" : "5.008"' >> META_new.json $(NOECHO) $(ECHO) ' }' >> META_new.json $(NOECHO) $(ECHO) ' },' >> META_new.json $(NOECHO) $(ECHO) ' "test" : {' >> META_new.json $(NOECHO) $(ECHO) ' "requires" : {' >> META_new.json $(NOECHO) $(ECHO) ' "Devel::Peek" : "0",' >> META_new.json $(NOECHO) $(ECHO) ' "ExtUtils::MakeMaker" : "0",' >> META_new.json $(NOECHO) $(ECHO) ' "File::Spec" : "0",' >> META_new.json $(NOECHO) $(ECHO) ' "Test::More" : "0"' >> META_new.json $(NOECHO) $(ECHO) ' }' >> META_new.json $(NOECHO) $(ECHO) ' }' >> META_new.json $(NOECHO) $(ECHO) ' },' >> META_new.json $(NOECHO) $(ECHO) ' "release_status" : "stable",' >> META_new.json $(NOECHO) $(ECHO) ' "version" : "0.004",' >> META_new.json $(NOECHO) $(ECHO) ' "x_serialization_backend" : "JSON::PP version 2.97001"' >> META_new.json $(NOECHO) $(ECHO) '}' >> META_new.json -$(NOECHO) $(MV) META_new.json $(DISTVNAME)/META.json # --- MakeMaker signature section: signature : cpansign -s # --- MakeMaker dist_basics section: distclean :: realclean distcheck $(NOECHO) $(NOOP) distcheck : $(PERLRUN) "-MExtUtils::Manifest=fullcheck" -e fullcheck skipcheck : $(PERLRUN) "-MExtUtils::Manifest=skipcheck" -e skipcheck manifest : $(PERLRUN) "-MExtUtils::Manifest=mkmanifest" -e mkmanifest veryclean : realclean $(RM_F) *~ */*~ *.orig */*.orig *.bak */*.bak *.old */*.old # --- MakeMaker dist_core section: dist : $(DIST_DEFAULT) $(FIRST_MAKEFILE) $(NOECHO) $(ABSPERLRUN) -l -e 'print '\''Warning: Makefile possibly out of date with $(VERSION_FROM)'\''' \ -e ' if -e '\''$(VERSION_FROM)'\'' and -M '\''$(VERSION_FROM)'\'' < -M '\''$(FIRST_MAKEFILE)'\'';' -- tardist : $(DISTVNAME).tar$(SUFFIX) $(NOECHO) $(NOOP) uutardist : $(DISTVNAME).tar$(SUFFIX) uuencode $(DISTVNAME).tar$(SUFFIX) $(DISTVNAME).tar$(SUFFIX) > $(DISTVNAME).tar$(SUFFIX)_uu $(NOECHO) $(ECHO) 'Created $(DISTVNAME).tar$(SUFFIX)_uu' $(DISTVNAME).tar$(SUFFIX) : distdir $(PREOP) $(TO_UNIX) $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME) $(RM_RF) $(DISTVNAME) $(COMPRESS) $(DISTVNAME).tar $(NOECHO) $(ECHO) 'Created $(DISTVNAME).tar$(SUFFIX)' $(POSTOP) zipdist : $(DISTVNAME).zip $(NOECHO) $(NOOP) $(DISTVNAME).zip : distdir $(PREOP) $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME) $(RM_RF) $(DISTVNAME) $(NOECHO) $(ECHO) 'Created $(DISTVNAME).zip' $(POSTOP) shdist : distdir $(PREOP) $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar $(RM_RF) $(DISTVNAME) $(NOECHO) $(ECHO) 'Created $(DISTVNAME).shar' $(POSTOP) # --- MakeMaker distdir section: create_distdir : $(RM_RF) $(DISTVNAME) $(PERLRUN) "-MExtUtils::Manifest=manicopy,maniread" \ -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');" distdir : create_distdir distmeta $(NOECHO) $(NOOP) # --- MakeMaker dist_test section: disttest : distdir cd $(DISTVNAME) && $(ABSPERLRUN) Makefile.PL cd $(DISTVNAME) && $(MAKE) $(PASTHRU) cd $(DISTVNAME) && $(MAKE) test $(PASTHRU) # --- MakeMaker dist_ci section: ci : $(ABSPERLRUN) -MExtUtils::Manifest=maniread -e '@all = sort keys %{ maniread() };' \ -e 'print(qq{Executing $(CI) @all\n});' \ -e 'system(qq{$(CI) @all}) == 0 or die $$!;' \ -e 'print(qq{Executing $(RCS_LABEL) ...\n});' \ -e 'system(qq{$(RCS_LABEL) @all}) == 0 or die $$!;' -- # --- MakeMaker distmeta section: distmeta : create_distdir metafile $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'exit unless -e q{META.yml};' \ -e 'eval { maniadd({q{META.yml} => q{Module YAML meta-data (added by MakeMaker)}}) }' \ -e ' or die "Could not add META.yml to MANIFEST: $${'\''@'\''}"' -- $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'exit unless -f q{META.json};' \ -e 'eval { maniadd({q{META.json} => q{Module JSON meta-data (added by MakeMaker)}}) }' \ -e ' or die "Could not add META.json to MANIFEST: $${'\''@'\''}"' -- # --- MakeMaker distsignature section: distsignature : distmeta $(NOECHO) cd $(DISTVNAME) && $(ABSPERLRUN) -MExtUtils::Manifest=maniadd -e 'eval { maniadd({q{SIGNATURE} => q{Public-key signature (added by MakeMaker)}}) }' \ -e ' or die "Could not add SIGNATURE to MANIFEST: $${'\''@'\''}"' -- $(NOECHO) cd $(DISTVNAME) && $(TOUCH) SIGNATURE cd $(DISTVNAME) && cpansign -s # --- MakeMaker install section: install :: pure_install doc_install $(NOECHO) $(NOOP) install_perl :: pure_perl_install doc_perl_install $(NOECHO) $(NOOP) install_site :: pure_site_install doc_site_install $(NOECHO) $(NOOP) install_vendor :: pure_vendor_install doc_vendor_install $(NOECHO) $(NOOP) pure_install :: pure_$(INSTALLDIRS)_install $(NOECHO) $(NOOP) doc_install :: doc_$(INSTALLDIRS)_install $(NOECHO) $(NOOP) pure__install : pure_site_install $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site doc__install : doc_site_install $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site pure_perl_install :: all $(NOECHO) $(MOD_INSTALL) \ read "$(PERL_ARCHLIB)/auto/$(FULLEXT)/.packlist" \ write "$(DESTINSTALLARCHLIB)/auto/$(FULLEXT)/.packlist" \ "$(INST_LIB)" "$(DESTINSTALLPRIVLIB)" \ "$(INST_ARCHLIB)" "$(DESTINSTALLARCHLIB)" \ "$(INST_BIN)" "$(DESTINSTALLBIN)" \ "$(INST_SCRIPT)" "$(DESTINSTALLSCRIPT)" \ "$(INST_MAN1DIR)" "$(DESTINSTALLMAN1DIR)" \ "$(INST_MAN3DIR)" "$(DESTINSTALLMAN3DIR)" $(NOECHO) $(WARN_IF_OLD_PACKLIST) \ "$(SITEARCHEXP)/auto/$(FULLEXT)" pure_site_install :: all $(NOECHO) $(MOD_INSTALL) \ read "$(SITEARCHEXP)/auto/$(FULLEXT)/.packlist" \ write "$(DESTINSTALLSITEARCH)/auto/$(FULLEXT)/.packlist" \ "$(INST_LIB)" "$(DESTINSTALLSITELIB)" \ "$(INST_ARCHLIB)" "$(DESTINSTALLSITEARCH)" \ "$(INST_BIN)" "$(DESTINSTALLSITEBIN)" \ "$(INST_SCRIPT)" "$(DESTINSTALLSITESCRIPT)" \ "$(INST_MAN1DIR)" "$(DESTINSTALLSITEMAN1DIR)" \ "$(INST_MAN3DIR)" "$(DESTINSTALLSITEMAN3DIR)" $(NOECHO) $(WARN_IF_OLD_PACKLIST) \ "$(PERL_ARCHLIB)/auto/$(FULLEXT)" pure_vendor_install :: all $(NOECHO) $(MOD_INSTALL) \ read "$(VENDORARCHEXP)/auto/$(FULLEXT)/.packlist" \ write "$(DESTINSTALLVENDORARCH)/auto/$(FULLEXT)/.packlist" \ "$(INST_LIB)" "$(DESTINSTALLVENDORLIB)" \ "$(INST_ARCHLIB)" "$(DESTINSTALLVENDORARCH)" \ "$(INST_BIN)" "$(DESTINSTALLVENDORBIN)" \ "$(INST_SCRIPT)" "$(DESTINSTALLVENDORSCRIPT)" \ "$(INST_MAN1DIR)" "$(DESTINSTALLVENDORMAN1DIR)" \ "$(INST_MAN3DIR)" "$(DESTINSTALLVENDORMAN3DIR)" doc_perl_install :: all $(NOECHO) $(ECHO) Appending installation info to "$(DESTINSTALLARCHLIB)/perllocal.pod" -$(NOECHO) $(MKPATH) "$(DESTINSTALLARCHLIB)" -$(NOECHO) $(DOC_INSTALL) \ "Module" "$(NAME)" \ "installed into" "$(INSTALLPRIVLIB)" \ LINKTYPE "$(LINKTYPE)" \ VERSION "$(VERSION)" \ EXE_FILES "$(EXE_FILES)" \ >> "$(DESTINSTALLARCHLIB)/perllocal.pod" doc_site_install :: all $(NOECHO) $(ECHO) Appending installation info to "$(DESTINSTALLARCHLIB)/perllocal.pod" -$(NOECHO) $(MKPATH) "$(DESTINSTALLARCHLIB)" -$(NOECHO) $(DOC_INSTALL) \ "Module" "$(NAME)" \ "installed into" "$(INSTALLSITELIB)" \ LINKTYPE "$(LINKTYPE)" \ VERSION "$(VERSION)" \ EXE_FILES "$(EXE_FILES)" \ >> "$(DESTINSTALLARCHLIB)/perllocal.pod" doc_vendor_install :: all $(NOECHO) $(ECHO) Appending installation info to "$(DESTINSTALLARCHLIB)/perllocal.pod" -$(NOECHO) $(MKPATH) "$(DESTINSTALLARCHLIB)" -$(NOECHO) $(DOC_INSTALL) \ "Module" "$(NAME)" \ "installed into" "$(INSTALLVENDORLIB)" \ LINKTYPE "$(LINKTYPE)" \ VERSION "$(VERSION)" \ EXE_FILES "$(EXE_FILES)" \ >> "$(DESTINSTALLARCHLIB)/perllocal.pod" uninstall :: uninstall_from_$(INSTALLDIRS)dirs $(NOECHO) $(NOOP) uninstall_from_perldirs :: $(NOECHO) $(UNINSTALL) "$(PERL_ARCHLIB)/auto/$(FULLEXT)/.packlist" uninstall_from_sitedirs :: $(NOECHO) $(UNINSTALL) "$(SITEARCHEXP)/auto/$(FULLEXT)/.packlist" uninstall_from_vendordirs :: $(NOECHO) $(UNINSTALL) "$(VENDORARCHEXP)/auto/$(FULLEXT)/.packlist" # --- MakeMaker force section: # Phony target to force checking subdirectories. FORCE : $(NOECHO) $(NOOP) # --- MakeMaker perldepend section: PERL_HDRS = \ $(PERL_INCDEP)/EXTERN.h \ $(PERL_INCDEP)/INTERN.h \ $(PERL_INCDEP)/XSUB.h \ $(PERL_INCDEP)/av.h \ $(PERL_INCDEP)/bitcount.h \ $(PERL_INCDEP)/charclass_invlists.h \ $(PERL_INCDEP)/config.h \ $(PERL_INCDEP)/cop.h \ $(PERL_INCDEP)/cv.h \ $(PERL_INCDEP)/dosish.h \ $(PERL_INCDEP)/dquote_inline.h \ $(PERL_INCDEP)/ebcdic_tables.h \ $(PERL_INCDEP)/embed.h \ $(PERL_INCDEP)/embedvar.h \ $(PERL_INCDEP)/fakesdio.h \ $(PERL_INCDEP)/feature.h \ $(PERL_INCDEP)/form.h \ $(PERL_INCDEP)/git_version.h \ $(PERL_INCDEP)/gv.h \ $(PERL_INCDEP)/handy.h \ $(PERL_INCDEP)/hv.h \ $(PERL_INCDEP)/hv_func.h \ $(PERL_INCDEP)/inline.h \ $(PERL_INCDEP)/intrpvar.h \ $(PERL_INCDEP)/invlist_inline.h \ $(PERL_INCDEP)/iperlsys.h \ $(PERL_INCDEP)/keywords.h \ $(PERL_INCDEP)/l1_char_class_tab.h \ $(PERL_INCDEP)/malloc_ctl.h \ $(PERL_INCDEP)/metaconfig.h \ $(PERL_INCDEP)/mg.h \ $(PERL_INCDEP)/mg_data.h \ $(PERL_INCDEP)/mg_raw.h \ $(PERL_INCDEP)/mg_vtable.h \ $(PERL_INCDEP)/mydtrace.h \ $(PERL_INCDEP)/nostdio.h \ $(PERL_INCDEP)/op.h \ $(PERL_INCDEP)/op_reg_common.h \ $(PERL_INCDEP)/opcode.h \ $(PERL_INCDEP)/opnames.h \ $(PERL_INCDEP)/overload.h \ $(PERL_INCDEP)/pad.h \ $(PERL_INCDEP)/parser.h \ $(PERL_INCDEP)/patchlevel.h \ $(PERL_INCDEP)/perl.h \ $(PERL_INCDEP)/perlapi.h \ $(PERL_INCDEP)/perldtrace.h \ $(PERL_INCDEP)/perlio.h \ $(PERL_INCDEP)/perliol.h \ $(PERL_INCDEP)/perlsdio.h \ $(PERL_INCDEP)/perlvars.h \ $(PERL_INCDEP)/perly.h \ $(PERL_INCDEP)/pp.h \ $(PERL_INCDEP)/pp_proto.h \ $(PERL_INCDEP)/proto.h \ $(PERL_INCDEP)/reentr.h \ $(PERL_INCDEP)/regcharclass.h \ $(PERL_INCDEP)/regcomp.h \ $(PERL_INCDEP)/regexp.h \ $(PERL_INCDEP)/regnodes.h \ $(PERL_INCDEP)/scope.h \ $(PERL_INCDEP)/sv.h \ $(PERL_INCDEP)/thread.h \ $(PERL_INCDEP)/time64.h \ $(PERL_INCDEP)/time64_config.h \ $(PERL_INCDEP)/uconfig.h \ $(PERL_INCDEP)/unicode_constants.h \ $(PERL_INCDEP)/unixish.h \ $(PERL_INCDEP)/utf8.h \ $(PERL_INCDEP)/utfebcdic.h \ $(PERL_INCDEP)/util.h \ $(PERL_INCDEP)/uudmap.h \ $(PERL_INCDEP)/vutil.h \ $(PERL_INCDEP)/warnings.h $(OBJECT) : $(PERL_HDRS) COW.c : $(XSUBPPDEPS) # --- MakeMaker makefile section: $(OBJECT) : $(FIRST_MAKEFILE) # We take a very conservative approach here, but it's worth it. # We move Makefile to Makefile.old here to avoid gnu make looping. $(FIRST_MAKEFILE) : Makefile.PL $(CONFIGDEP) $(NOECHO) $(ECHO) "Makefile out-of-date with respect to $?" $(NOECHO) $(ECHO) "Cleaning current config before rebuilding Makefile..." -$(NOECHO) $(RM_F) $(MAKEFILE_OLD) -$(NOECHO) $(MV) $(FIRST_MAKEFILE) $(MAKEFILE_OLD) - $(MAKE) $(USEMAKEFILE) $(MAKEFILE_OLD) clean $(DEV_NULL) $(PERLRUN) Makefile.PL $(NOECHO) $(ECHO) "==> Your Makefile has been rebuilt. <==" $(NOECHO) $(ECHO) "==> Please rerun the $(MAKE) command. <==" $(FALSE) # --- MakeMaker staticmake section: # --- MakeMaker makeaperl section --- MAP_TARGET = perl FULLPERL = "/usr/bin/perl" MAP_PERLINC = "-Iblib/arch" "-Iblib/lib" "-I/usr/lib64/perl5" "-I/usr/share/perl5" $(MAP_TARGET) :: $(MAKE_APERL_FILE) $(MAKE) $(USEMAKEFILE) $(MAKE_APERL_FILE) $@ $(MAKE_APERL_FILE) : static $(FIRST_MAKEFILE) pm_to_blib $(NOECHO) $(ECHO) Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET) $(NOECHO) $(PERLRUNINST) \ Makefile.PL DIR="" \ MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \ MAKEAPERL=1 NORECURS=1 CCCDLFLAGS= # --- MakeMaker test section: TEST_VERBOSE=0 TEST_TYPE=test_$(LINKTYPE) TEST_FILE = test.pl TEST_FILES = t/*.t TESTDB_SW = -d testdb :: testdb_$(LINKTYPE) $(NOECHO) $(NOOP) test :: $(TEST_TYPE) $(NOECHO) $(NOOP) # Occasionally we may face this degenerate target: test_ : test_dynamic $(NOECHO) $(NOOP) subdirs-test_dynamic :: dynamic pure_all test_dynamic :: subdirs-test_dynamic PERL_DL_NONLAZY=1 $(FULLPERLRUN) "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')" $(TEST_FILES) testdb_dynamic :: dynamic pure_all PERL_DL_NONLAZY=1 $(FULLPERLRUN) $(TESTDB_SW) "-I$(INST_LIB)" "-I$(INST_ARCHLIB)" $(TEST_FILE) subdirs-test_static :: static pure_all test_static :: subdirs-test_static $(MAP_TARGET) PERL_DL_NONLAZY=1 "/home/.cpan/build/B-COW-0.004-0/$(MAP_TARGET)" $(MAP_PERLINC) "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')" $(TEST_FILES) testdb_static :: static pure_all $(MAP_TARGET) PERL_DL_NONLAZY=1 "/home/.cpan/build/B-COW-0.004-0/$(MAP_TARGET)" $(MAP_PERLINC) "-I$(INST_LIB)" "-I$(INST_ARCHLIB)" $(TEST_FILE) # --- MakeMaker ppd section: # Creates a PPD (Perl Package Description) for a binary distribution. ppd : $(NOECHO) $(ECHO) '' > B-COW.ppd $(NOECHO) $(ECHO) ' B::COW additional B helpers to check COW status' >> B-COW.ppd $(NOECHO) $(ECHO) ' Nicolas R. <atoomic@cpan.org>' >> B-COW.ppd $(NOECHO) $(ECHO) ' ' >> B-COW.ppd $(NOECHO) $(ECHO) ' ' >> B-COW.ppd $(NOECHO) $(ECHO) ' ' >> B-COW.ppd $(NOECHO) $(ECHO) ' ' >> B-COW.ppd $(NOECHO) $(ECHO) ' ' >> B-COW.ppd $(NOECHO) $(ECHO) '' >> B-COW.ppd # --- MakeMaker pm_to_blib section: pm_to_blib : $(FIRST_MAKEFILE) $(TO_INST_PM) $(NOECHO) $(ABSPERLRUN) -MExtUtils::Install -e 'pm_to_blib({@ARGV}, '\''$(INST_LIB)/auto'\'', q[$(PM_FILTER)], '\''$(PERM_DIR)'\'')' -- \ 'lib/B/COW.pm' 'blib/lib/B/COW.pm' $(NOECHO) $(TOUCH) pm_to_blib # --- MakeMaker selfdocument section: # here so even if top_targets is overridden, these will still be defined # gmake will silently still work if any are .PHONY-ed but nmake won't static :: $(NOECHO) $(NOOP) dynamic :: $(NOECHO) $(NOOP) config :: $(NOECHO) $(NOOP) # --- MakeMaker postamble section: # End. PK!33META.ymlnu[--- abstract: 'B::COW additional B helpers to check COW status' author: - 'Nicolas R. ' build_requires: Devel::Peek: '0' ExtUtils::MakeMaker: '0' File::Spec: '0' Test::More: '0' configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: B-COW provides: B::COW: file: lib/B/COW.pm version: '0.004' requires: perl: '5.008' resources: bugtracker: https://github.com/atoomic/B-COW/issues repository: https://github.com/atoomic/B-COW.git version: '0.004' x_Dist_Zilla: perl: version: '5.030001' plugins: - class: Dist::Zilla::Plugin::OurPkgVersion name: OurPkgVersion version: '0.21' - class: Dist::Zilla::Plugin::Test::Compile config: Dist::Zilla::Plugin::Test::Compile: bail_out_on_fail: '0' fail_on_warning: author fake_home: 0 filename: xt/author/00-compile.t module_finder: - ':InstallModules' needs_display: 0 phase: develop script_finder: - ':PerlExecFiles' skips: [] switch: [] name: Test::Compile version: '2.058' - class: Dist::Zilla::Plugin::MetaTests name: MetaTests version: '6.012' - class: Dist::Zilla::Plugin::Test::NoTabs config: Dist::Zilla::Plugin::Test::NoTabs: filename: xt/author/no-tabs.t finder: - ':InstallModules' - ':ExecFiles' - ':TestFiles' name: Test::NoTabs version: '0.15' - class: Dist::Zilla::Plugin::PodSyntaxTests name: PodSyntaxTests version: '6.012' - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: Test::ReportPrereqs version: '0.027' - class: Dist::Zilla::Plugin::PodWeaver config: Dist::Zilla::Plugin::PodWeaver: finder: - ':InstallModules' - ':ExecFiles' plugins: - class: Pod::Weaver::Plugin::EnsurePod5 name: '@CorePrep/EnsurePod5' version: '4.015' - class: Pod::Weaver::Plugin::H1Nester name: '@CorePrep/H1Nester' version: '4.015' - class: Pod::Weaver::Plugin::SingleEncoding name: '@Default/SingleEncoding' version: '4.015' - class: Pod::Weaver::Section::Name name: '@Default/Name' version: '4.015' - class: Pod::Weaver::Section::Version name: '@Default/Version' version: '4.015' - class: Pod::Weaver::Section::Region name: '@Default/prelude' version: '4.015' - class: Pod::Weaver::Section::Generic name: SYNOPSIS version: '4.015' - class: Pod::Weaver::Section::Generic name: DESCRIPTION version: '4.015' - class: Pod::Weaver::Section::Generic name: OVERVIEW version: '4.015' - class: Pod::Weaver::Section::Collect name: ATTRIBUTES version: '4.015' - class: Pod::Weaver::Section::Collect name: METHODS version: '4.015' - class: Pod::Weaver::Section::Collect name: FUNCTIONS version: '4.015' - class: Pod::Weaver::Section::Leftovers name: '@Default/Leftovers' version: '4.015' - class: Pod::Weaver::Section::Region name: '@Default/postlude' version: '4.015' - class: Pod::Weaver::Section::Authors name: '@Default/Authors' version: '4.015' - class: Pod::Weaver::Section::Legal name: '@Default/Legal' version: '4.015' name: PodWeaver version: '4.008' - class: Dist::Zilla::Plugin::RunExtraTests config: Dist::Zilla::Role::TestRunner: default_jobs: 1 name: RunExtraTests version: '0.029' - class: Dist::Zilla::Plugin::MetaJSON name: MetaJSON version: '6.012' - class: Dist::Zilla::Plugin::MinimumPerlFast name: MinimumPerlFast version: '0.003' - class: Dist::Zilla::Plugin::MetaConfig name: MetaConfig version: '6.012' - class: Dist::Zilla::Plugin::MetaProvides::Package config: Dist::Zilla::Plugin::MetaProvides::Package: finder_objects: - class: Dist::Zilla::Plugin::FinderCode name: MetaProvides::Package/AUTOVIV/:InstallModulesPM version: '6.012' include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004' inherit_missing: '1' inherit_version: '1' meta_noindex: '1' Dist::Zilla::Role::ModuleMetadata: Module::Metadata: '1.000036' version: '0.006' name: MetaProvides::Package version: '2.004003' - class: Dist::Zilla::Plugin::NextRelease name: NextRelease version: '6.012' - class: Dist::Zilla::Plugin::Git::Push config: Dist::Zilla::Plugin::Git::Push: push_to: - gh - 'gh HEAD:refs/heads/released' remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: Git::Push version: '2.046' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: test type: requires name: TestRequires version: '6.012' - class: Dist::Zilla::Plugin::TestRelease name: TestRelease version: '6.012' - class: Dist::Zilla::Plugin::Test::MinimumVersion config: Dist::Zilla::Plugin::Test::MinimumVersion: max_target_perl: '5.008' name: Test::MinimumVersion version: '2.000010' - class: Dist::Zilla::Plugin::Git::Check config: Dist::Zilla::Plugin::Git::Check: untracked_files: die Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Changes - README.mkdn - dist.ini allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: '@Git/Check' version: '2.046' - class: Dist::Zilla::Plugin::Git::Commit config: Dist::Zilla::Plugin::Git::Commit: add_files_in: - Changes - README.mkdn - dist.ini commit_msg: v%V%n%n%c Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Changes - README.mkdn - dist.ini allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Git/Commit' version: '2.046' - class: Dist::Zilla::Plugin::Git::Tag config: Dist::Zilla::Plugin::Git::Tag: branch: ~ changelog: Changes signed: 0 tag: v0.004 tag_format: v%V tag_message: v%V Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Git/Tag' version: '2.046' - class: Dist::Zilla::Plugin::Git::Push config: Dist::Zilla::Plugin::Git::Push: push_to: - gh - 'gh HEAD:refs/heads/released' remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: '@Git/Push' version: '2.046' - class: Dist::Zilla::Plugin::Run::BeforeBuild config: Dist::Zilla::Plugin::Run::Role::Runner: fatal_errors: 1 quiet: 0 version: '0.048' name: Run::BeforeBuild version: '0.048' - class: Dist::Zilla::Plugin::Run::AfterBuild config: Dist::Zilla::Plugin::Run::Role::Runner: fatal_errors: 1 quiet: 0 run: - 'cp %d/Makefile.PL ./' - "git status --porcelain | grep 'M Makefile.PL' && git commit -m 'Makefile.PL auto-updated by dist.ini' Makefile.PL && echo \"# Makefile.PL auto-update\" || echo \"# Makefile.PL up to date\"" version: '0.048' name: Run::AfterBuild version: '0.048' - class: Dist::Zilla::Plugin::Git::NextVersion config: Dist::Zilla::Plugin::Git::NextVersion: first_version: '0.001' version_by_branch: 0 version_regexp: (?^:^v(.+)$) Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: Git::NextVersion version: '2.046' - class: Dist::Zilla::Plugin::PruneCruft name: '@Filter/PruneCruft' version: '6.012' - class: Dist::Zilla::Plugin::ManifestSkip name: '@Filter/ManifestSkip' version: '6.012' - class: Dist::Zilla::Plugin::MetaYAML name: '@Filter/MetaYAML' version: '6.012' - class: Dist::Zilla::Plugin::License name: '@Filter/License' version: '6.012' - class: Dist::Zilla::Plugin::Readme name: '@Filter/Readme' version: '6.012' - class: Dist::Zilla::Plugin::ExecDir name: '@Filter/ExecDir' version: '6.012' - class: Dist::Zilla::Plugin::ShareDir name: '@Filter/ShareDir' version: '6.012' - class: Dist::Zilla::Plugin::MakeMaker config: Dist::Zilla::Role::TestRunner: default_jobs: 1 name: '@Filter/MakeMaker' version: '6.012' - class: Dist::Zilla::Plugin::Manifest name: '@Filter/Manifest' version: '6.012' - class: Dist::Zilla::Plugin::TestRelease name: '@Filter/TestRelease' version: '6.012' - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Filter/ConfirmRelease' version: '6.012' - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Filter/UploadToCPAN' version: '6.012' - class: Dist::Zilla::Plugin::GatherDir config: Dist::Zilla::Plugin::GatherDir: exclude_filename: - Makefile.PL exclude_match: [] follow_symlinks: 0 include_dotfiles: 0 prefix: '' prune_directory: [] root: . name: GatherDir version: '6.012' - class: Dist::Zilla::Plugin::MetaResources name: MetaResources version: '6.012' - class: Dist::Zilla::Plugin::PruneFiles name: PruneFiles version: '6.012' - class: Dist::Zilla::Plugin::InsertExample name: InsertExample version: '0.09' - class: Dist::Zilla::Plugin::Test::Synopsis name: Test::Synopsis version: '2.000007' - class: Dist::Zilla::Plugin::ReadmeAnyFromPod config: Dist::Zilla::Role::FileWatcher: version: '0.006' name: ReadmeAnyFromPod version: '0.163250' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':ExtraTestFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':PerlExecFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: MetaProvides::Package/AUTOVIV/:InstallModulesPM version: '6.012' zilla: class: Dist::Zilla::Dist::Builder config: is_trial: '0' version: '6.012' x_generated_by_perl: v5.30.1 x_serialization_backend: 'YAML::Tiny version 1.73' PK!COW.bsnu[PK!Xȗ  COW.cnu[/* * This file was generated automatically by ExtUtils::ParseXS version 3.35 from the * contents of COW.xs. Do not edit this file, edit COW.xs instead. * * ANY CHANGES MADE HERE WILL BE LOST! * */ #line 1 "COW.xs" /* * * Copyright (c) 2018, Nicolas R. * * This is free software; you can redistribute it and/or modify it under the * same terms as Perl itself. * */ #include #include #include #include #define MIN_PERL_VERSION_FOR_COW 20 #if defined(SV_COW_REFCNT_MAX) # define B_CAN_COW 1 #else # define B_CAN_COW 0 #endif /* CowREFCNT is incorrect on Perl < 5.32 */ #define myCowREFCNT(sv) ((SvLEN(sv)>0) ? CowREFCNT(sv) : 0) #line 37 "COW.c" #ifndef PERL_UNUSED_VAR # define PERL_UNUSED_VAR(var) if (0) var = var #endif #ifndef dVAR # define dVAR dNOOP #endif /* This stuff is not part of the API! You have been warned. */ #ifndef PERL_VERSION_DECIMAL # define PERL_VERSION_DECIMAL(r,v,s) (r*1000000 + v*1000 + s) #endif #ifndef PERL_DECIMAL_VERSION # define PERL_DECIMAL_VERSION \ PERL_VERSION_DECIMAL(PERL_REVISION,PERL_VERSION,PERL_SUBVERSION) #endif #ifndef PERL_VERSION_GE # define PERL_VERSION_GE(r,v,s) \ (PERL_DECIMAL_VERSION >= PERL_VERSION_DECIMAL(r,v,s)) #endif #ifndef PERL_VERSION_LE # define PERL_VERSION_LE(r,v,s) \ (PERL_DECIMAL_VERSION <= PERL_VERSION_DECIMAL(r,v,s)) #endif /* XS_INTERNAL is the explicit static-linkage variant of the default * XS macro. * * XS_EXTERNAL is the same as XS_INTERNAL except it does not include * "STATIC", ie. it exports XSUB symbols. You probably don't want that * for anything but the BOOT XSUB. * * See XSUB.h in core! */ /* TODO: This might be compatible further back than 5.10.0. */ #if PERL_VERSION_GE(5, 10, 0) && PERL_VERSION_LE(5, 15, 1) # undef XS_EXTERNAL # undef XS_INTERNAL # if defined(__CYGWIN__) && defined(USE_DYNAMIC_LOADING) # define XS_EXTERNAL(name) __declspec(dllexport) XSPROTO(name) # define XS_INTERNAL(name) STATIC XSPROTO(name) # endif # if defined(__SYMBIAN32__) # define XS_EXTERNAL(name) EXPORT_C XSPROTO(name) # define XS_INTERNAL(name) EXPORT_C STATIC XSPROTO(name) # endif # ifndef XS_EXTERNAL # if defined(HASATTRIBUTE_UNUSED) && !defined(__cplusplus) # define XS_EXTERNAL(name) void name(pTHX_ CV* cv __attribute__unused__) # define XS_INTERNAL(name) STATIC void name(pTHX_ CV* cv __attribute__unused__) # else # ifdef __cplusplus # define XS_EXTERNAL(name) extern "C" XSPROTO(name) # define XS_INTERNAL(name) static XSPROTO(name) # else # define XS_EXTERNAL(name) XSPROTO(name) # define XS_INTERNAL(name) STATIC XSPROTO(name) # endif # endif # endif #endif /* perl >= 5.10.0 && perl <= 5.15.1 */ /* The XS_EXTERNAL macro is used for functions that must not be static * like the boot XSUB of a module. If perl didn't have an XS_EXTERNAL * macro defined, the best we can do is assume XS is the same. * Dito for XS_INTERNAL. */ #ifndef XS_EXTERNAL # define XS_EXTERNAL(name) XS(name) #endif #ifndef XS_INTERNAL # define XS_INTERNAL(name) XS(name) #endif /* Now, finally, after all this mess, we want an ExtUtils::ParseXS * internal macro that we're free to redefine for varying linkage due * to the EXPORT_XSUB_SYMBOLS XS keyword. This is internal, use * XS_EXTERNAL(name) or XS_INTERNAL(name) in your code if you need to! */ #undef XS_EUPXS #if defined(PERL_EUPXS_ALWAYS_EXPORT) # define XS_EUPXS(name) XS_EXTERNAL(name) #else /* default to internal */ # define XS_EUPXS(name) XS_INTERNAL(name) #endif #ifndef PERL_ARGS_ASSERT_CROAK_XS_USAGE #define PERL_ARGS_ASSERT_CROAK_XS_USAGE assert(cv); assert(params) /* prototype to pass -Wmissing-prototypes */ STATIC void S_croak_xs_usage(const CV *const cv, const char *const params); STATIC void S_croak_xs_usage(const CV *const cv, const char *const params) { const GV *const gv = CvGV(cv); PERL_ARGS_ASSERT_CROAK_XS_USAGE; if (gv) { const char *const gvname = GvNAME(gv); const HV *const stash = GvSTASH(gv); const char *const hvname = stash ? HvNAME(stash) : NULL; if (hvname) Perl_croak_nocontext("Usage: %s::%s(%s)", hvname, gvname, params); else Perl_croak_nocontext("Usage: %s(%s)", gvname, params); } else { /* Pants. I don't think that it should be possible to get here. */ Perl_croak_nocontext("Usage: CODE(0x%" UVxf ")(%s)", PTR2UV(cv), params); } } #undef PERL_ARGS_ASSERT_CROAK_XS_USAGE #define croak_xs_usage S_croak_xs_usage #endif /* NOTE: the prototype of newXSproto() is different in versions of perls, * so we define a portable version of newXSproto() */ #ifdef newXS_flags #define newXSproto_portable(name, c_impl, file, proto) newXS_flags(name, c_impl, file, proto, 0) #else #define newXSproto_portable(name, c_impl, file, proto) (PL_Sv=(SV*)newXS(name, c_impl, file), sv_setpv(PL_Sv, proto), (CV*)PL_Sv) #endif /* !defined(newXS_flags) */ #if PERL_VERSION_LE(5, 21, 5) # define newXS_deffile(a,b) Perl_newXS(aTHX_ a,b,file) #else # define newXS_deffile(a,b) Perl_newXS_deffile(aTHX_ a,b) #endif #line 181 "COW.c" XS_EUPXS(XS_B__COW_can_cow); /* prototype to pass -Wmissing-prototypes */ XS_EUPXS(XS_B__COW_can_cow) { dVAR; dXSARGS; if (items != 0) croak_xs_usage(cv, ""); { SV * RETVAL; #line 32 "COW.xs" { #if B_CAN_COW XSRETURN_YES; #else XSRETURN_NO; #endif } #line 199 "COW.c" RETVAL = sv_2mortal(RETVAL); ST(0) = RETVAL; } XSRETURN(1); } XS_EUPXS(XS_B__COW_is_cow); /* prototype to pass -Wmissing-prototypes */ XS_EUPXS(XS_B__COW_is_cow) { dVAR; dXSARGS; if (items != 1) croak_xs_usage(cv, "sv"); { SV * sv = ST(0) ; SV * RETVAL; #line 46 "COW.xs" { /* not exactly accurate but let's start there */ #if !B_CAN_COW XSRETURN_UNDEF; #else if ( SvPOK(sv) && SvIsCOW(sv) ) XSRETURN_YES; #endif XSRETURN_NO; } #line 227 "COW.c" RETVAL = sv_2mortal(RETVAL); ST(0) = RETVAL; } XSRETURN(1); } XS_EUPXS(XS_B__COW_cowrefcnt); /* prototype to pass -Wmissing-prototypes */ XS_EUPXS(XS_B__COW_cowrefcnt) { dVAR; dXSARGS; if (items != 1) croak_xs_usage(cv, "sv"); { SV * sv = ST(0) ; SV * RETVAL; #line 62 "COW.xs" { #if !B_CAN_COW XSRETURN_UNDEF; #else if ( SvIsCOW(sv) ) XSRETURN_IV( myCowREFCNT(sv) ); #endif XSRETURN_UNDEF; } #line 254 "COW.c" RETVAL = sv_2mortal(RETVAL); ST(0) = RETVAL; } XSRETURN(1); } XS_EUPXS(XS_B__COW_cowrefcnt_max); /* prototype to pass -Wmissing-prototypes */ XS_EUPXS(XS_B__COW_cowrefcnt_max) { dVAR; dXSARGS; if (items != 0) croak_xs_usage(cv, ""); { SV * RETVAL; #line 76 "COW.xs" { #if !B_CAN_COW XSRETURN_UNDEF; #else XSRETURN_IV(SV_COW_REFCNT_MAX); #endif } #line 278 "COW.c" RETVAL = sv_2mortal(RETVAL); ST(0) = RETVAL; } XSRETURN(1); } #ifdef __cplusplus extern "C" #endif XS_EXTERNAL(boot_B__COW); /* prototype to pass -Wmissing-prototypes */ XS_EXTERNAL(boot_B__COW) { #if PERL_VERSION_LE(5, 21, 5) dVAR; dXSARGS; #else dVAR; dXSBOOTARGSXSAPIVERCHK; #endif #if (PERL_REVISION == 5 && PERL_VERSION < 9) char* file = __FILE__; #else const char* file = __FILE__; #endif PERL_UNUSED_VAR(file); PERL_UNUSED_VAR(cv); /* -W */ PERL_UNUSED_VAR(items); /* -W */ #if PERL_VERSION_LE(5, 21, 5) XS_VERSION_BOOTCHECK; # ifdef XS_APIVERSION_BOOTCHECK XS_APIVERSION_BOOTCHECK; # endif #endif newXS_deffile("B::COW::can_cow", XS_B__COW_can_cow); newXS_deffile("B::COW::is_cow", XS_B__COW_is_cow); newXS_deffile("B::COW::cowrefcnt", XS_B__COW_cowrefcnt); newXS_deffile("B::COW::cowrefcnt_max", XS_B__COW_cowrefcnt_max); #if PERL_VERSION_LE(5, 21, 5) # if PERL_VERSION_GE(5, 9, 0) if (PL_unitcheckav) call_list(PL_scopestack_ix, PL_unitcheckav); # endif XSRETURN_YES; #else Perl_xs_boot_epilog(aTHX_ ax); #endif } PK! pm_to_blibnu[PK!%RR META.jsonnu[{ "abstract" : "B::COW additional B helpers to check COW status", "author" : [ "Nicolas R. " ], "dynamic_config" : 0, "generated_by" : "Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : 2 }, "name" : "B-COW", "prereqs" : { "configure" : { "requires" : { "ExtUtils::MakeMaker" : "0" } }, "develop" : { "requires" : { "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", "Test::CPAN::Meta" : "0", "Test::MinimumVersion" : "0", "Test::More" : "0.88", "Test::NoTabs" : "0", "Test::Pod" : "1.41", "Test::Synopsis" : "0" } }, "runtime" : { "requires" : { "perl" : "5.008" } }, "test" : { "recommends" : { "CPAN::Meta" : "2.120900" }, "requires" : { "Devel::Peek" : "0", "ExtUtils::MakeMaker" : "0", "File::Spec" : "0", "Test::More" : "0" } } }, "provides" : { "B::COW" : { "file" : "lib/B/COW.pm", "version" : "0.004" } }, "release_status" : "stable", "resources" : { "bugtracker" : { "web" : "https://github.com/atoomic/B-COW/issues" }, "repository" : { "type" : "git", "url" : "https://github.com/atoomic/B-COW.git", "web" : "https://github.com/atoomic/B-COW.git" } }, "version" : "0.004", "x_Dist_Zilla" : { "perl" : { "version" : "5.030001" }, "plugins" : [ { "class" : "Dist::Zilla::Plugin::OurPkgVersion", "name" : "OurPkgVersion", "version" : "0.21" }, { "class" : "Dist::Zilla::Plugin::Test::Compile", "config" : { "Dist::Zilla::Plugin::Test::Compile" : { "bail_out_on_fail" : 0, "fail_on_warning" : "author", "fake_home" : 0, "filename" : "xt/author/00-compile.t", "module_finder" : [ ":InstallModules" ], "needs_display" : 0, "phase" : "develop", "script_finder" : [ ":PerlExecFiles" ], "skips" : [], "switch" : [] } }, "name" : "Test::Compile", "version" : "2.058" }, { "class" : "Dist::Zilla::Plugin::MetaTests", "name" : "MetaTests", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Test::NoTabs", "config" : { "Dist::Zilla::Plugin::Test::NoTabs" : { "filename" : "xt/author/no-tabs.t", "finder" : [ ":InstallModules", ":ExecFiles", ":TestFiles" ] } }, "name" : "Test::NoTabs", "version" : "0.15" }, { "class" : "Dist::Zilla::Plugin::PodSyntaxTests", "name" : "PodSyntaxTests", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Test::ReportPrereqs", "name" : "Test::ReportPrereqs", "version" : "0.027" }, { "class" : "Dist::Zilla::Plugin::PodWeaver", "config" : { "Dist::Zilla::Plugin::PodWeaver" : { "finder" : [ ":InstallModules", ":ExecFiles" ], "plugins" : [ { "class" : "Pod::Weaver::Plugin::EnsurePod5", "name" : "@CorePrep/EnsurePod5", "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::H1Nester", "name" : "@CorePrep/H1Nester", "version" : "4.015" }, { "class" : "Pod::Weaver::Plugin::SingleEncoding", "name" : "@Default/SingleEncoding", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Name", "name" : "@Default/Name", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Version", "name" : "@Default/Version", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Default/prelude", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "SYNOPSIS", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "DESCRIPTION", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Generic", "name" : "OVERVIEW", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "ATTRIBUTES", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "METHODS", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Collect", "name" : "FUNCTIONS", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Leftovers", "name" : "@Default/Leftovers", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Region", "name" : "@Default/postlude", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Authors", "name" : "@Default/Authors", "version" : "4.015" }, { "class" : "Pod::Weaver::Section::Legal", "name" : "@Default/Legal", "version" : "4.015" } ] } }, "name" : "PodWeaver", "version" : "4.008" }, { "class" : "Dist::Zilla::Plugin::RunExtraTests", "config" : { "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 1 } }, "name" : "RunExtraTests", "version" : "0.029" }, { "class" : "Dist::Zilla::Plugin::MetaJSON", "name" : "MetaJSON", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MinimumPerlFast", "name" : "MinimumPerlFast", "version" : "0.003" }, { "class" : "Dist::Zilla::Plugin::MetaConfig", "name" : "MetaConfig", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MetaProvides::Package", "config" : { "Dist::Zilla::Plugin::MetaProvides::Package" : { "finder_objects" : [ { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : "MetaProvides::Package/AUTOVIV/:InstallModulesPM", "version" : "6.012" } ], "include_underscores" : 0 }, "Dist::Zilla::Role::MetaProvider::Provider" : { "$Dist::Zilla::Role::MetaProvider::Provider::VERSION" : "2.002004", "inherit_missing" : 1, "inherit_version" : 1, "meta_noindex" : 1 }, "Dist::Zilla::Role::ModuleMetadata" : { "Module::Metadata" : "1.000036", "version" : "0.006" } }, "name" : "MetaProvides::Package", "version" : "2.004003" }, { "class" : "Dist::Zilla::Plugin::NextRelease", "name" : "NextRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Git::Push", "config" : { "Dist::Zilla::Plugin::Git::Push" : { "push_to" : [ "gh", "gh HEAD:refs/heads/released" ], "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "Git::Push", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Prereqs", "config" : { "Dist::Zilla::Plugin::Prereqs" : { "phase" : "test", "type" : "requires" } }, "name" : "TestRequires", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "TestRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Test::MinimumVersion", "config" : { "Dist::Zilla::Plugin::Test::MinimumVersion" : { "max_target_perl" : "5.008" } }, "name" : "Test::MinimumVersion", "version" : "2.000010" }, { "class" : "Dist::Zilla::Plugin::Git::Check", "config" : { "Dist::Zilla::Plugin::Git::Check" : { "untracked_files" : "die" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ "Changes", "README.mkdn", "dist.ini" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "@Git/Check", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Commit", "config" : { "Dist::Zilla::Plugin::Git::Commit" : { "add_files_in" : [ "Changes", "README.mkdn", "dist.ini" ], "commit_msg" : "v%V%n%n%c" }, "Dist::Zilla::Role::Git::DirtyFiles" : { "allow_dirty" : [ "Changes", "README.mkdn", "dist.ini" ], "allow_dirty_match" : [], "changelog" : "Changes" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Git/Commit", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Tag", "config" : { "Dist::Zilla::Plugin::Git::Tag" : { "branch" : null, "changelog" : "Changes", "signed" : 0, "tag" : "v0.004", "tag_format" : "v%V", "tag_message" : "v%V" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." }, "Dist::Zilla::Role::Git::StringFormatter" : { "time_zone" : "local" } }, "name" : "@Git/Tag", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Git::Push", "config" : { "Dist::Zilla::Plugin::Git::Push" : { "push_to" : [ "gh", "gh HEAD:refs/heads/released" ], "remotes_must_exist" : 1 }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "@Git/Push", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::Run::BeforeBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "fatal_errors" : 1, "quiet" : 0, "version" : "0.048" } }, "name" : "Run::BeforeBuild", "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::Run::AfterBuild", "config" : { "Dist::Zilla::Plugin::Run::Role::Runner" : { "fatal_errors" : 1, "quiet" : 0, "run" : [ "cp %d/Makefile.PL ./", "git status --porcelain | grep 'M Makefile.PL' && git commit -m 'Makefile.PL auto-updated by dist.ini' Makefile.PL && echo \"# Makefile.PL auto-update\" || echo \"# Makefile.PL up to date\"" ], "version" : "0.048" } }, "name" : "Run::AfterBuild", "version" : "0.048" }, { "class" : "Dist::Zilla::Plugin::Git::NextVersion", "config" : { "Dist::Zilla::Plugin::Git::NextVersion" : { "first_version" : "0.001", "version_by_branch" : 0, "version_regexp" : "(?^:^v(.+)$)" }, "Dist::Zilla::Role::Git::Repo" : { "git_version" : "2.24.2 (Apple Git-127)", "repo_root" : "." } }, "name" : "Git::NextVersion", "version" : "2.046" }, { "class" : "Dist::Zilla::Plugin::PruneCruft", "name" : "@Filter/PruneCruft", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ManifestSkip", "name" : "@Filter/ManifestSkip", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MetaYAML", "name" : "@Filter/MetaYAML", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::License", "name" : "@Filter/License", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Readme", "name" : "@Filter/Readme", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ExecDir", "name" : "@Filter/ExecDir", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ShareDir", "name" : "@Filter/ShareDir", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MakeMaker", "config" : { "Dist::Zilla::Role::TestRunner" : { "default_jobs" : 1 } }, "name" : "@Filter/MakeMaker", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::Manifest", "name" : "@Filter/Manifest", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::TestRelease", "name" : "@Filter/TestRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::ConfirmRelease", "name" : "@Filter/ConfirmRelease", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::UploadToCPAN", "name" : "@Filter/UploadToCPAN", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::GatherDir", "config" : { "Dist::Zilla::Plugin::GatherDir" : { "exclude_filename" : [ "Makefile.PL" ], "exclude_match" : [], "follow_symlinks" : 0, "include_dotfiles" : 0, "prefix" : "", "prune_directory" : [], "root" : "." } }, "name" : "GatherDir", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::MetaResources", "name" : "MetaResources", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::PruneFiles", "name" : "PruneFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::InsertExample", "name" : "InsertExample", "version" : "0.09" }, { "class" : "Dist::Zilla::Plugin::Test::Synopsis", "name" : "Test::Synopsis", "version" : "2.000007" }, { "class" : "Dist::Zilla::Plugin::ReadmeAnyFromPod", "config" : { "Dist::Zilla::Role::FileWatcher" : { "version" : "0.006" } }, "name" : "ReadmeAnyFromPod", "version" : "0.163250" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":InstallModules", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":IncModules", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":TestFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExtraTestFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ExecFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":PerlExecFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":ShareFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":MainModule", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":AllFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : ":NoFiles", "version" : "6.012" }, { "class" : "Dist::Zilla::Plugin::FinderCode", "name" : "MetaProvides::Package/AUTOVIV/:InstallModulesPM", "version" : "6.012" } ], "zilla" : { "class" : "Dist::Zilla::Dist::Builder", "config" : { "is_trial" : 0 }, "version" : "6.012" } }, "x_generated_by_perl" : "v5.30.1", "x_serialization_backend" : "Cpanel::JSON::XS version 4.19" } PK!* BB t/00-load.tnu[#!perl use strict; use Test::More tests => 1; use_ok("B::COW"); PK!TJt/00-report-prereqs.tnu[#!perl use strict; use warnings; # This test was generated by Dist::Zilla::Plugin::Test::ReportPrereqs 0.027 use Test::More tests => 1; use ExtUtils::MakeMaker; use File::Spec; # from $version::LAX my $lax_version_re = qr/(?: undef | (?: (?:[0-9]+) (?: \. | (?:\.[0-9]+) (?:_[0-9]+)? )? | (?:\.[0-9]+) (?:_[0-9]+)? ) | (?: v (?:[0-9]+) (?: (?:\.[0-9]+)+ (?:_[0-9]+)? )? | (?:[0-9]+)? (?:\.[0-9]+){2,} (?:_[0-9]+)? ) )/x; # hide optional CPAN::Meta modules from prereq scanner # and check if they are available my $cpan_meta = "CPAN::Meta"; my $cpan_meta_pre = "CPAN::Meta::Prereqs"; my $HAS_CPAN_META = eval "require $cpan_meta; $cpan_meta->VERSION('2.120900')" && eval "require $cpan_meta_pre"; ## no critic # Verify requirements? my $DO_VERIFY_PREREQS = 1; sub _max { my $max = shift; $max = ( $_ > $max ) ? $_ : $max for @_; return $max; } sub _merge_prereqs { my ($collector, $prereqs) = @_; # CPAN::Meta::Prereqs object if (ref $collector eq $cpan_meta_pre) { return $collector->with_merged_prereqs( CPAN::Meta::Prereqs->new( $prereqs ) ); } # Raw hashrefs for my $phase ( keys %$prereqs ) { for my $type ( keys %{ $prereqs->{$phase} } ) { for my $module ( keys %{ $prereqs->{$phase}{$type} } ) { $collector->{$phase}{$type}{$module} = $prereqs->{$phase}{$type}{$module}; } } } return $collector; } my @include = qw( ); my @exclude = qw( ); # Add static prereqs to the included modules list my $static_prereqs = do './t/00-report-prereqs.dd'; # Merge all prereqs (either with ::Prereqs or a hashref) my $full_prereqs = _merge_prereqs( ( $HAS_CPAN_META ? $cpan_meta_pre->new : {} ), $static_prereqs ); # Add dynamic prereqs to the included modules list (if we can) my ($source) = grep { -f } 'MYMETA.json', 'MYMETA.yml'; my $cpan_meta_error; if ( $source && $HAS_CPAN_META && (my $meta = eval { CPAN::Meta->load_file($source) } ) ) { $full_prereqs = _merge_prereqs($full_prereqs, $meta->prereqs); } else { $cpan_meta_error = $@; # capture error from CPAN::Meta->load_file($source) $source = 'static metadata'; } my @full_reports; my @dep_errors; my $req_hash = $HAS_CPAN_META ? $full_prereqs->as_string_hash : $full_prereqs; # Add static includes into a fake section for my $mod (@include) { $req_hash->{other}{modules}{$mod} = 0; } for my $phase ( qw(configure build test runtime develop other) ) { next unless $req_hash->{$phase}; next if ($phase eq 'develop' and not $ENV{AUTHOR_TESTING}); for my $type ( qw(requires recommends suggests conflicts modules) ) { next unless $req_hash->{$phase}{$type}; my $title = ucfirst($phase).' '.ucfirst($type); my @reports = [qw/Module Want Have/]; for my $mod ( sort keys %{ $req_hash->{$phase}{$type} } ) { next if $mod eq 'perl'; next if grep { $_ eq $mod } @exclude; my $file = $mod; $file =~ s{::}{/}g; $file .= ".pm"; my ($prefix) = grep { -e File::Spec->catfile($_, $file) } @INC; my $want = $req_hash->{$phase}{$type}{$mod}; $want = "undef" unless defined $want; $want = "any" if !$want && $want == 0; my $req_string = $want eq 'any' ? 'any version required' : "version '$want' required"; if ($prefix) { my $have = MM->parse_version( File::Spec->catfile($prefix, $file) ); $have = "undef" unless defined $have; push @reports, [$mod, $want, $have]; if ( $DO_VERIFY_PREREQS && $HAS_CPAN_META && $type eq 'requires' ) { if ( $have !~ /\A$lax_version_re\z/ ) { push @dep_errors, "$mod version '$have' cannot be parsed ($req_string)"; } elsif ( ! $full_prereqs->requirements_for( $phase, $type )->accepts_module( $mod => $have ) ) { push @dep_errors, "$mod version '$have' is not in required range '$want'"; } } } else { push @reports, [$mod, $want, "missing"]; if ( $DO_VERIFY_PREREQS && $type eq 'requires' ) { push @dep_errors, "$mod is not installed ($req_string)"; } } } if ( @reports ) { push @full_reports, "=== $title ===\n\n"; my $ml = _max( map { length $_->[0] } @reports ); my $wl = _max( map { length $_->[1] } @reports ); my $hl = _max( map { length $_->[2] } @reports ); if ($type eq 'modules') { splice @reports, 1, 0, ["-" x $ml, "", "-" x $hl]; push @full_reports, map { sprintf(" %*s %*s\n", -$ml, $_->[0], $hl, $_->[2]) } @reports; } else { splice @reports, 1, 0, ["-" x $ml, "-" x $wl, "-" x $hl]; push @full_reports, map { sprintf(" %*s %*s %*s\n", -$ml, $_->[0], $wl, $_->[1], $hl, $_->[2]) } @reports; } push @full_reports, "\n"; } } } if ( @full_reports ) { diag "\nVersions for all modules listed in $source (including optional ones):\n\n", @full_reports; } if ( $cpan_meta_error || @dep_errors ) { diag "\n*** WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING ***\n"; } if ( $cpan_meta_error ) { my ($orig_source) = grep { -f } 'MYMETA.json', 'MYMETA.yml'; diag "\nCPAN::Meta->load_file('$orig_source') failed with: $cpan_meta_error\n"; } if ( @dep_errors ) { diag join("\n", "\nThe following REQUIRED prerequisites were not satisfied:\n", @dep_errors, "\n" ); } pass; # vim: ts=4 sts=4 sw=4 et: PK!4-t/00-report-prereqs.ddnu[do { my $x = { 'configure' => { 'requires' => { 'ExtUtils::MakeMaker' => '0' } }, 'develop' => { 'requires' => { 'File::Spec' => '0', 'IO::Handle' => '0', 'IPC::Open3' => '0', 'Test::CPAN::Meta' => '0', 'Test::MinimumVersion' => '0', 'Test::More' => '0.88', 'Test::NoTabs' => '0', 'Test::Pod' => '1.41', 'Test::Synopsis' => '0' } }, 'runtime' => { 'requires' => { 'perl' => '5.008' } }, 'test' => { 'recommends' => { 'CPAN::Meta' => '2.120900' }, 'requires' => { 'Devel::Peek' => '0', 'ExtUtils::MakeMaker' => '0', 'File::Spec' => '0', 'Test::More' => '0' } } }; $x; }PK!n= t/01-basic.tnu[#!/usr/bin/perl -w use strict; use warnings; use Test::More; use Devel::Peek; use B::COW qw{:all}; if ( can_cow() ) { ok can_cow(), "can cow with Perl $]"; ok !is_cow(undef), "!is_cow(undef)"; my $str = "abcdef"; ok is_cow($str), "is_cow('abcdef')"; is cowrefcnt( $str ), 1, "cowrefcnt is set to 1" or Dump($str); my $b = $str; ok is_cow($b), "is_cow('abcdef')"; is cowrefcnt( $b ), 2, "cowrefcnt for b is set to 2" or Dump($b); is cowrefcnt( $str ), 2, "cowrefcnt for str is set to 2" or Dump($str); is cowrefcnt_max() , 255, "cowrefcnt_max: might need to adjust..."; { my $c = $b . 'uncow'; # attempt to uncow the string ok is_cow($b), "b is_cow"; if ( is_cow($c) ) { is cowrefcnt( $c ), 1, "cowrefcnt on cowed SvPV"; } else { is cowrefcnt( $c ), undef, "cowrefcnt on uncowed SvPV"; } } { my $str = "this is a string"; my @a; push @a, $str for 1..100; ok is_cow( $str); ok is_cow( $a[0] ); ok is_cow( $a[99] ); is cowrefcnt( $str ), 101; is cowrefcnt( $a[0] ), 101; is cowrefcnt( $a[99] ), 101; delete $a[99]; is cowrefcnt( $str ), 100, "cowrefcnt decrease to 100"; is cowrefcnt( $a[-1] ), 100, "cowrefcnt decrease to 100"; } { my %h = ( 'my_hash_key' => 'value' ); my @keys = keys %h; ok is_cow( $keys[0] ), "hash key is cowed"; is cowrefcnt( $keys[0] ), 0, "hash key cowrefcnt is 0" or die Dump($keys[0]); } } else { ok !can_cow(), "cannot cow with Perl $]"; my $str = "abcdef"; is is_cow($str), undef, "is_cow"; is cowrefcnt($str), undef, "cowrefcnt"; is cowrefcnt_max(), undef, 'cowrefcnt_max' } done_testing; PK!YC33 MYMETA.ymlnu[--- abstract: 'B::COW additional B helpers to check COW status' author: - 'Nicolas R. ' build_requires: Devel::Peek: '0' ExtUtils::MakeMaker: '0' File::Spec: '0' Test::More: '0' configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 generated_by: 'Dist::Zilla version 6.012, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: '1.4' name: B-COW provides: B::COW: file: lib/B/COW.pm version: '0.004' requires: perl: '5.008' resources: bugtracker: https://github.com/atoomic/B-COW/issues repository: https://github.com/atoomic/B-COW.git version: '0.004' x_Dist_Zilla: perl: version: '5.030001' plugins: - class: Dist::Zilla::Plugin::OurPkgVersion name: OurPkgVersion version: '0.21' - class: Dist::Zilla::Plugin::Test::Compile config: Dist::Zilla::Plugin::Test::Compile: bail_out_on_fail: 0 fail_on_warning: author fake_home: 0 filename: xt/author/00-compile.t module_finder: - ':InstallModules' needs_display: 0 phase: develop script_finder: - ':PerlExecFiles' skips: [] switch: [] name: Test::Compile version: '2.058' - class: Dist::Zilla::Plugin::MetaTests name: MetaTests version: '6.012' - class: Dist::Zilla::Plugin::Test::NoTabs config: Dist::Zilla::Plugin::Test::NoTabs: filename: xt/author/no-tabs.t finder: - ':InstallModules' - ':ExecFiles' - ':TestFiles' name: Test::NoTabs version: '0.15' - class: Dist::Zilla::Plugin::PodSyntaxTests name: PodSyntaxTests version: '6.012' - class: Dist::Zilla::Plugin::Test::ReportPrereqs name: Test::ReportPrereqs version: '0.027' - class: Dist::Zilla::Plugin::PodWeaver config: Dist::Zilla::Plugin::PodWeaver: finder: - ':InstallModules' - ':ExecFiles' plugins: - class: Pod::Weaver::Plugin::EnsurePod5 name: '@CorePrep/EnsurePod5' version: '4.015' - class: Pod::Weaver::Plugin::H1Nester name: '@CorePrep/H1Nester' version: '4.015' - class: Pod::Weaver::Plugin::SingleEncoding name: '@Default/SingleEncoding' version: '4.015' - class: Pod::Weaver::Section::Name name: '@Default/Name' version: '4.015' - class: Pod::Weaver::Section::Version name: '@Default/Version' version: '4.015' - class: Pod::Weaver::Section::Region name: '@Default/prelude' version: '4.015' - class: Pod::Weaver::Section::Generic name: SYNOPSIS version: '4.015' - class: Pod::Weaver::Section::Generic name: DESCRIPTION version: '4.015' - class: Pod::Weaver::Section::Generic name: OVERVIEW version: '4.015' - class: Pod::Weaver::Section::Collect name: ATTRIBUTES version: '4.015' - class: Pod::Weaver::Section::Collect name: METHODS version: '4.015' - class: Pod::Weaver::Section::Collect name: FUNCTIONS version: '4.015' - class: Pod::Weaver::Section::Leftovers name: '@Default/Leftovers' version: '4.015' - class: Pod::Weaver::Section::Region name: '@Default/postlude' version: '4.015' - class: Pod::Weaver::Section::Authors name: '@Default/Authors' version: '4.015' - class: Pod::Weaver::Section::Legal name: '@Default/Legal' version: '4.015' name: PodWeaver version: '4.008' - class: Dist::Zilla::Plugin::RunExtraTests config: Dist::Zilla::Role::TestRunner: default_jobs: 1 name: RunExtraTests version: '0.029' - class: Dist::Zilla::Plugin::MetaJSON name: MetaJSON version: '6.012' - class: Dist::Zilla::Plugin::MinimumPerlFast name: MinimumPerlFast version: '0.003' - class: Dist::Zilla::Plugin::MetaConfig name: MetaConfig version: '6.012' - class: Dist::Zilla::Plugin::MetaProvides::Package config: Dist::Zilla::Plugin::MetaProvides::Package: finder_objects: - class: Dist::Zilla::Plugin::FinderCode name: MetaProvides::Package/AUTOVIV/:InstallModulesPM version: '6.012' include_underscores: 0 Dist::Zilla::Role::MetaProvider::Provider: $Dist::Zilla::Role::MetaProvider::Provider::VERSION: '2.002004' inherit_missing: 1 inherit_version: 1 meta_noindex: 1 Dist::Zilla::Role::ModuleMetadata: Module::Metadata: '1.000036' version: '0.006' name: MetaProvides::Package version: '2.004003' - class: Dist::Zilla::Plugin::NextRelease name: NextRelease version: '6.012' - class: Dist::Zilla::Plugin::Git::Push config: Dist::Zilla::Plugin::Git::Push: push_to: - gh - 'gh HEAD:refs/heads/released' remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: Git::Push version: '2.046' - class: Dist::Zilla::Plugin::Prereqs config: Dist::Zilla::Plugin::Prereqs: phase: test type: requires name: TestRequires version: '6.012' - class: Dist::Zilla::Plugin::TestRelease name: TestRelease version: '6.012' - class: Dist::Zilla::Plugin::Test::MinimumVersion config: Dist::Zilla::Plugin::Test::MinimumVersion: max_target_perl: '5.008' name: Test::MinimumVersion version: '2.000010' - class: Dist::Zilla::Plugin::Git::Check config: Dist::Zilla::Plugin::Git::Check: untracked_files: die Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Changes - README.mkdn - dist.ini allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: '@Git/Check' version: '2.046' - class: Dist::Zilla::Plugin::Git::Commit config: Dist::Zilla::Plugin::Git::Commit: add_files_in: - Changes - README.mkdn - dist.ini commit_msg: v%V%n%n%c Dist::Zilla::Role::Git::DirtyFiles: allow_dirty: - Changes - README.mkdn - dist.ini allow_dirty_match: [] changelog: Changes Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Git/Commit' version: '2.046' - class: Dist::Zilla::Plugin::Git::Tag config: Dist::Zilla::Plugin::Git::Tag: branch: ~ changelog: Changes signed: 0 tag: v0.004 tag_format: v%V tag_message: v%V Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . Dist::Zilla::Role::Git::StringFormatter: time_zone: local name: '@Git/Tag' version: '2.046' - class: Dist::Zilla::Plugin::Git::Push config: Dist::Zilla::Plugin::Git::Push: push_to: - gh - 'gh HEAD:refs/heads/released' remotes_must_exist: 1 Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: '@Git/Push' version: '2.046' - class: Dist::Zilla::Plugin::Run::BeforeBuild config: Dist::Zilla::Plugin::Run::Role::Runner: fatal_errors: 1 quiet: 0 version: '0.048' name: Run::BeforeBuild version: '0.048' - class: Dist::Zilla::Plugin::Run::AfterBuild config: Dist::Zilla::Plugin::Run::Role::Runner: fatal_errors: 1 quiet: 0 run: - 'cp %d/Makefile.PL ./' - "git status --porcelain | grep 'M Makefile.PL' && git commit -m 'Makefile.PL auto-updated by dist.ini' Makefile.PL && echo \"# Makefile.PL auto-update\" || echo \"# Makefile.PL up to date\"" version: '0.048' name: Run::AfterBuild version: '0.048' - class: Dist::Zilla::Plugin::Git::NextVersion config: Dist::Zilla::Plugin::Git::NextVersion: first_version: '0.001' version_by_branch: 0 version_regexp: (?^:^v(.+)$) Dist::Zilla::Role::Git::Repo: git_version: '2.24.2 (Apple Git-127)' repo_root: . name: Git::NextVersion version: '2.046' - class: Dist::Zilla::Plugin::PruneCruft name: '@Filter/PruneCruft' version: '6.012' - class: Dist::Zilla::Plugin::ManifestSkip name: '@Filter/ManifestSkip' version: '6.012' - class: Dist::Zilla::Plugin::MetaYAML name: '@Filter/MetaYAML' version: '6.012' - class: Dist::Zilla::Plugin::License name: '@Filter/License' version: '6.012' - class: Dist::Zilla::Plugin::Readme name: '@Filter/Readme' version: '6.012' - class: Dist::Zilla::Plugin::ExecDir name: '@Filter/ExecDir' version: '6.012' - class: Dist::Zilla::Plugin::ShareDir name: '@Filter/ShareDir' version: '6.012' - class: Dist::Zilla::Plugin::MakeMaker config: Dist::Zilla::Role::TestRunner: default_jobs: 1 name: '@Filter/MakeMaker' version: '6.012' - class: Dist::Zilla::Plugin::Manifest name: '@Filter/Manifest' version: '6.012' - class: Dist::Zilla::Plugin::TestRelease name: '@Filter/TestRelease' version: '6.012' - class: Dist::Zilla::Plugin::ConfirmRelease name: '@Filter/ConfirmRelease' version: '6.012' - class: Dist::Zilla::Plugin::UploadToCPAN name: '@Filter/UploadToCPAN' version: '6.012' - class: Dist::Zilla::Plugin::GatherDir config: Dist::Zilla::Plugin::GatherDir: exclude_filename: - Makefile.PL exclude_match: [] follow_symlinks: 0 include_dotfiles: 0 prefix: '' prune_directory: [] root: . name: GatherDir version: '6.012' - class: Dist::Zilla::Plugin::MetaResources name: MetaResources version: '6.012' - class: Dist::Zilla::Plugin::PruneFiles name: PruneFiles version: '6.012' - class: Dist::Zilla::Plugin::InsertExample name: InsertExample version: '0.09' - class: Dist::Zilla::Plugin::Test::Synopsis name: Test::Synopsis version: '2.000007' - class: Dist::Zilla::Plugin::ReadmeAnyFromPod config: Dist::Zilla::Role::FileWatcher: version: '0.006' name: ReadmeAnyFromPod version: '0.163250' - class: Dist::Zilla::Plugin::FinderCode name: ':InstallModules' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':IncModules' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':TestFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':ExtraTestFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':ExecFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':PerlExecFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':ShareFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':MainModule' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':AllFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: ':NoFiles' version: '6.012' - class: Dist::Zilla::Plugin::FinderCode name: MetaProvides::Package/AUTOVIV/:InstallModulesPM version: '6.012' zilla: class: Dist::Zilla::Dist::Builder config: is_trial: 0 version: '6.012' x_generated_by_perl: v5.30.1 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' PK!]xt/author/pod-syntax.tnu[#!perl # This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests. use strict; use warnings; use Test::More; use Test::Pod 1.41; all_pod_files_ok(); PK!7jjxt/author/minimum-version.tnu[use strict; use warnings; use Test::More; use Test::MinimumVersion; all_minimum_version_ok( qq{5.008} ); PK!2W00xt/author/synopsis.tnu[#!perl use Test::Synopsis; all_synopsis_ok(); PK!l]]xt/author/00-compile.tnu[use 5.006; use strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::Compile 2.058 use Test::More; plan tests => 2; my @module_files = ( 'B/COW.pm' ); # no fake home requested my @switches = ( -d 'blib' ? '-Mblib' : '-Ilib', ); use File::Spec; use IPC::Open3; use IO::Handle; open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!"; my @warnings; for my $lib (@module_files) { # see L my $stderr = IO::Handle->new; diag('Running: ', join(', ', map { my $str = $_; $str =~ s/'/\\'/g; q{'} . $str . q{'} } $^X, @switches, '-e', "require q[$lib]")) if $ENV{PERL_COMPILE_TEST_DEBUG}; my $pid = open3($stdin, '>&STDERR', $stderr, $^X, @switches, '-e', "require q[$lib]"); binmode $stderr, ':crlf' if $^O eq 'MSWin32'; my @_warnings = <$stderr>; waitpid($pid, 0); is($?, 0, "$lib loaded ok"); shift @_warnings if @_warnings and $_warnings[0] =~ /^Using .*\bblib/ and not eval { +require blib; blib->VERSION('1.01') }; if (@_warnings) { warn @_warnings; push @warnings, @_warnings; } } is(scalar(@warnings), 0, 'no warnings found') or diag 'got warnings: ', ( Test::More->can('explain') ? Test::More::explain(\@warnings) : join("\n", '', @warnings) ); PK!g==xt/author/no-tabs.tnu[use strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::NoTabs 0.15 use Test::More 0.88; use Test::NoTabs; my @files = ( 'lib/B/COW.pm', 't/00-load.t', 't/00-report-prereqs.dd', 't/00-report-prereqs.t', 't/01-basic.t' ); notabs_ok($_) foreach @files; done_testing; PK!:Qzzxt/release/distmeta.tnu[#!perl # This file was automatically generated by Dist::Zilla::Plugin::MetaTests. use Test::CPAN::Meta; meta_yaml_ok(); PK!8' ' dist.ininu[name = B-COW author = Nicolas R. license = Perl_5 copyright_holder = Nicolas R. copyright_year = 2018 ;[PPPort] ;[PkgVersion] [OurPkgVersion] [Test::Compile] xt_mode = 1 [MetaTests] [Test::NoTabs] [PodSyntaxTests] [Test::ReportPrereqs] [PodWeaver] [RunExtraTests] [MetaJSON] [MinimumPerlFast] min = 5.008 ; undocumented config! max = 5.008 ; undocumented config! [MetaConfig] [MetaProvides::Package] [NextRelease] filename = Changes [Git::Push] push_to = gh push_to = gh HEAD:refs/heads/released ; also push to released branch ;[Prereqs::FromCPANfile] ;[Prereqs / RuntimeRecommends] ;[Prereqs / RuntimeRequires] ;[Prereqs / TestRecommends] [Prereqs / TestRequires] ;Test2::Bundle::Extended = 0 ;Test2::Tools::Explain = 0 ;Test2::Plugin::NoWarnings = 0 Devel::Peek = 0 [TestRelease] [Test::MinimumVersion] max_target_perl = 5.008 [@Git] allow_dirty = Changes allow_dirty = dist.ini allow_dirty = README.mkdn add_files_in = Changes add_files_in = dist.ini add_files_in = README.mkdn push_to = gh push_to = gh HEAD:refs/heads/released ; also push to released branch [Run::BeforeBuild] ; force to refresh Makefile.PL for every build [not really necessary as we have one exclude_filename] ; run = ( test -f Makefile.PL && rm Makefile.PL ) ||: [Run::AfterBuild] ; provide a friendly Makefile.PL in our repo ; very useful so Travis CI can use it without installing Dist::Zilla::* run = cp %d/Makefile.PL ./ run = git status --porcelain | grep 'M Makefile.PL' && git commit -m 'Makefile.PL auto-updated by dist.ini' Makefile.PL && echo "# Makefile.PL auto-update" || echo "# Makefile.PL up to date" [Git::NextVersion] [@Filter] -bundle = @Basic ;-remove = AutoPrereqs -remove = ExtraTests -remove = GatherDir [GatherDir] exclude_filename = Makefile.PL ;exclude_filename = ppport.h ; -- static meta-information [MetaResources] bugtracker.web = https://github.com/atoomic/B-COW/issues repository.url = https://github.com/atoomic/B-COW.git repository.web = https://github.com/atoomic/B-COW.git repository.type = git [PruneFiles] match = ~$ ; emacs backup files ;[PodCoverageTests] ;[Test::EOL] ; still a work in progress ;[Test::TidyAll] ;minimum_perl = 5.008 ;jobs = 1 ;verbose = 1 [InsertExample] [Test::Synopsis] [ReadmeAnyFromPod] type = gfm filename = README.md location = root PK!f\rr Makefile.PLnu[PK!ŷLChangesnu[PK!cN N lib/B/COW.pmnu[PK!.MANIFESTnu[PK!|c  COW.onu[PK! Mgss=READMEnu[PK!N||COW.xsnu[PK!]ycpanfilenu[PK! GGLICENSEnu[PK! n%%]examples/synopsis.plnu[PK!blib/arch/.existsnu[PK!blib/arch/auto/B/COW/.existsnu[PK!6H(xxSblib/arch/auto/B/COW/COW.sonuȯPK!blib/lib/B/.existsnu[PK!cN N Xblib/lib/B/COW.pmnu6$PK!blib/lib/auto/B/COW/.existsnu[PK!2blib/script/.existsnu[PK!ublib/man3/.existsnu[PK!r''blib/man3/B::COW.3pmnu[PK!!$blib/bin/.existsnu[PK!a$blib/man1/.existsnu[PK!ѠSS $MYMETA.jsonnu[PK!x]wMakefilenu[PK!33META.ymlnu[PK!:COW.bsnu[PK!Xȗ   ;COW.cnu[PK! JZpm_to_blibnu[PK!%RR ZMETA.jsonnu[PK!* BB lt/00-load.tnu[PK!TJt/00-report-prereqs.tnu[PK!4-Dt/00-report-prereqs.ddnu[PK!n= t/01-basic.tnu[PK!YC33 MYMETA.ymlnu[PK!]xt/author/pod-syntax.tnu[PK!7jj xt/author/minimum-version.tnu[PK!2W00xt/author/synopsis.tnu[PK!l]]3 xt/author/00-compile.tnu[PK!g==xt/author/no-tabs.tnu[PK!:QzzVxt/release/distmeta.tnu[PK!8' ' dist.ininu[PK((I t