ExtUtils-Helpers-0.022/0000775000175000017500000000000012306335447013363 5ustar leonleonExtUtils-Helpers-0.022/INSTALL0000644000175000017500000000172612306335447014420 0ustar leonleon This is the Perl distribution ExtUtils-Helpers. Installing ExtUtils-Helpers is straightforward. ## Installation with cpanm If you have cpanm, you only need one line: % cpanm ExtUtils::Helpers If you are installing into a system-wide directory, you may need to pass the "-S" flag to cpanm, which uses sudo to install the module: % cpanm -S ExtUtils::Helpers ## Installing with the CPAN shell Alternatively, if your CPAN shell is set up, you should just be able to do: % cpan ExtUtils::Helpers ## Manual installation As a last resort, you can manually install it. Download the tarball, untar it, then build it: % perl Makefile.PL % make && make test Then install it: % make install If you are installing into a system-wide directory, you may need to run: % sudo make install ## Documentation ExtUtils-Helpers documentation is available as POD. You can run perldoc from a shell to read the documentation: % perldoc ExtUtils::Helpers ExtUtils-Helpers-0.022/t/0000775000175000017500000000000012306335447013626 5ustar leonleonExtUtils-Helpers-0.022/t/make_executable.t0000644000175000017500000000151112306335447017125 0ustar leonleon#!/usr/bin/perl use strict; use warnings FATAL => 'all'; use Config; use Test::More tests => 7; use ExtUtils::Helpers qw/make_executable/; use Cwd qw/cwd/; my $filename = 'test_exec'; my @files; open my $out, '>', $filename or die "Couldn't create $filename: $!"; print $out "#! perl -w\nexit \$ARGV[0];\n"; close $out; make_executable($filename); foreach my $i (42, 51, 0) { my $cwd = cwd; local $ENV{PATH} = join $Config{path_sep}, $cwd, $ENV{PATH}; my $ret = system $filename, $i; is $ret & 0xff, 0, 'test_exec executed successfully'; is $ret >> 8, $i, "test_exec $i return value ok"; } SKIP: { skip 'No batch file on non-windows', 1 if $^O ne 'MSWin32'; push @files, grep { -f } map { $filename.$_ } split / $Config{path_sep} /x, $ENV{PATHEXT}; is scalar(@files), 1, "Executable file exists"; } unlink $filename, @files; ExtUtils-Helpers-0.022/t/release-pod-syntax.t0000644000175000017500000000057012306335447017537 0ustar leonleon#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } # This file was automatically generated by Dist::Zilla::Plugin::PodSyntaxTests. use Test::More; eval "use Test::Pod 1.41"; plan skip_all => "Test::Pod 1.41 required for testing POD" if $@; all_pod_files_ok(); ExtUtils-Helpers-0.022/t/author-split_like_shell.t0000644000175000017500000000727612306335447020653 0ustar leonleon#!/usr/bin/perl BEGIN { unless ($ENV{AUTHOR_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for testing by the author'); } } use strict; use warnings FATAL => 'all'; use Test::More; use ExtUtils::Helpers::Unix (); use ExtUtils::Helpers::Windows (); plan(skip_all => 'Author only tests') unless $ENV{AUTHOR_TESTING}; my @unix_splits = ( { q{one t'wo th'ree f"o\"ur " "five" } => [ 'one', 'two three', 'fo"ur ', 'five' ] }, { q{ foo bar } => [ 'foo', 'bar' ] }, { q{ D\'oh f\{g\'h\"i\]\* } => [ "D'oh", "f{g'h\"i]*" ] }, { q{ D\$foo } => [ 'D$foo' ] }, { qq{one\\\ntwo} => [ "one\ntwo" ] }, # TODO ); my @win_splits = ( { 'a" "b\\c" "d' => [ 'a b\c d' ] }, { '"a b\\c d"' => [ 'a b\c d' ] }, { '"a b"\\"c d"' => [ 'a b"c', 'd' ] }, { '"a b"\\\\"c d"' => [ 'a b\c d' ] }, { '"a"\\"b" "a\\"b"' => [ 'a"b a"b' ] }, { '"a"\\\\"b" "a\\\\"b"' => [ 'a\b', 'a\b' ] }, { '"a"\\"b a\\"b"' => [ 'a"b', 'a"b' ] }, { 'a"\\"b" "a\\"b' => [ 'a"b', 'a"b' ] }, { 'a"\\"b" "a\\"b' => [ 'a"b', 'a"b' ] }, { 'a b' => [ 'a', 'b' ] }, { "a\nb" => [ 'a', 'b' ] }, { 'a"\\"b a\\"b' => [ 'a"b a"b' ] }, { '"a""b" "a"b"' => [ 'a"b ab' ] }, { '\\"a\\"' => [ '"a"' ] }, { '"a"" "b"' => [ 'a"', 'b' ] }, { 'a"b' => [ 'ab' ] }, { 'a""b' => [ 'ab' ] }, { 'a"""b' => [ 'a"b' ] }, { 'a""""b' => [ 'a"b' ] }, { 'a"""""b' => [ 'a"b' ] }, { 'a""""""b' => [ 'a""b' ] }, { '"a"b"' => [ 'ab' ] }, { '"a""b"' => [ 'a"b' ] }, { '"a"""b"' => [ 'a"b' ] }, { '"a""""b"' => [ 'a"b' ] }, { '"a"""""b"' => [ 'a""b' ] }, { '"a""""""b"' => [ 'a""b' ] }, { '' => [ ] }, { ' ' => [ ] }, { '""' => [ '' ] }, { '" "' => [ ' ' ] }, { '""a' => [ 'a' ] }, { '""a b' => [ 'a', 'b' ] }, { 'a""' => [ 'a' ] }, { 'a"" b' => [ 'a', 'b' ] }, { '"" a' => [ '', 'a' ] }, { 'a ""' => [ 'a', '' ] }, { 'a "" b' => [ 'a', '', 'b' ] }, { 'a " " b' => [ 'a', ' ', 'b' ] }, { 'a " b " c' => [ 'a', ' b ', 'c' ] }, ); foreach my $test (@win_splits) { my ($string, $expected) = %$test; my @result = ExtUtils::Helpers::Windows::split_like_shell($string); $string =~ s/\n/\\n/g; is(grep( !defined(), @result ), 0, "\"$string\" result all defined"); is_deeply(\@result, $expected) or diag("split_like_shell error \n>$string< is not splitting as >" . join("|", @$expected) . '<'); } foreach my $test (@unix_splits) { my ($string, $expected) = %$test; my @result = ExtUtils::Helpers::Unix::split_like_shell($string); $string =~ s/\n/\\n/g; is(grep( !defined(), @result ), 0, "\"$string\" result all defined"); is_deeply(\@result, $expected) or diag("split_like_shell error \n>$string< is not splitting as >" . join("|", @$expected) . '<'); } done_testing; ExtUtils-Helpers-0.022/t/release-pod-coverage.t0000644000175000017500000000110712306335447020001 0ustar leonleon#!perl BEGIN { unless ($ENV{RELEASE_TESTING}) { require Test::More; Test::More::plan(skip_all => 'these tests are for release candidate testing'); } } # This file was automatically generated by Dist::Zilla::Plugin::PodCoverageTests. use Test::More; eval "use Test::Pod::Coverage 1.08"; plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage" if $@; eval "use Pod::Coverage::TrustPod"; plan skip_all => "Pod::Coverage::TrustPod required for testing POD coverage" if $@; all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' }); ExtUtils-Helpers-0.022/t/tilde.t0000644000175000017500000000307712306335447015121 0ustar leonleon#!/usr/bin/perl -w # Test ~ expansion from command line arguments. use strict; use lib 't/lib'; use Test::More tests => 9; use ExtUtils::Helpers 'detildefy'; SKIP: { my $env_name = $^O eq 'MSWin32' ? 'USERPROFILE' : 'HOME'; my $home = $ENV{$env_name}; if ($^O eq 'VMS') { # Convert the path to UNIX format, trim off the trailing slash $home = VMS::Filespec::unixify($home); $home =~ s#/$##; } unless (defined $home) { my @info = eval { getpwuid $> }; skip "No home directory for tilde-expansion tests", 8 if $@ or !defined $info[7]; $home = $info[7]; } is( detildefy('~'), $home); is( detildefy('~/fooxzy'), "$home/fooxzy"); is( detildefy('~/ fooxzy'), "$home/ fooxzy"); is( detildefy('~/fo o'), "$home/fo o"); is( detildefy('fooxzy~'), 'fooxzy~'); # Test when HOME is different from getpwuid(), as in sudo. { local $ENV{HOME} = '/wibble/whomp'; local $ENV{USERPROFILE} = $ENV{HOME}; is( detildefy('~'), "/wibble/whomp"); } skip "On OS/2 EMX all users are equal", 2 if $^O eq 'os2'; is( detildefy('~~'), '~~' ); is( detildefy('~ fooxzy'), '~ fooxzy' ); } # Again, with named users SKIP: { my @info = eval { getpwuid $> }; skip "No home directory for tilde-expansion tests", 1 if $@ or !defined $info[7] or !defined $info[0]; my ($me, $home) = @info[0,7]; my $expected = "$home/fooxzy"; if ($^O eq 'VMS') { # Convert the path to UNIX format and trim off the trailing slash $home = VMS::Filespec::unixify($home); $home =~ s#/$##; $expected = $home . '/../[^/]+' . '/fooxzy'; } like( detildefy("~$me/fooxzy"), qr(\Q$expected\E)i ); } ExtUtils-Helpers-0.022/t/split_like_shell.t0000644000175000017500000000643412306335447017346 0ustar leonleon#!/usr/bin/perl use strict; use warnings FATAL => 'all'; use Test::More; use ExtUtils::Helpers qw/split_like_shell/; my @unix_splits = ( { q{one t'wo th'ree f"o\"ur " "five" } => [ 'one', 'two three', 'fo"ur ', 'five' ] }, { q{ foo bar } => [ 'foo', 'bar' ] }, { q{ D\'oh f\{g\'h\"i\]\* } => [ "D'oh", "f{g'h\"i]*" ] }, { q{ D\$foo } => [ 'D$foo' ] }, { qq{one\\\ntwo} => [ "one\ntwo" ] }, # TODO ); my @win_splits = ( { 'a" "b\\c" "d' => [ 'a b\c d' ] }, { '"a b\\c d"' => [ 'a b\c d' ] }, { '"a b"\\"c d"' => [ 'a b"c', 'd' ] }, { '"a b"\\\\"c d"' => [ 'a b\c d' ] }, { '"a"\\"b" "a\\"b"' => [ 'a"b a"b' ] }, { '"a"\\\\"b" "a\\\\"b"' => [ 'a\b', 'a\b' ] }, { '"a"\\"b a\\"b"' => [ 'a"b', 'a"b' ] }, { 'a"\\"b" "a\\"b' => [ 'a"b', 'a"b' ] }, { 'a"\\"b" "a\\"b' => [ 'a"b', 'a"b' ] }, { 'a b' => [ 'a', 'b' ] }, { "a\nb" => [ 'a', 'b' ] }, { 'a"\\"b a\\"b' => [ 'a"b a"b' ] }, { '"a""b" "a"b"' => [ 'a"b ab' ] }, { '\\"a\\"' => [ '"a"' ] }, { '"a"" "b"' => [ 'a"', 'b' ] }, { 'a"b' => [ 'ab' ] }, { 'a""b' => [ 'ab' ] }, { 'a"""b' => [ 'a"b' ] }, { 'a""""b' => [ 'a"b' ] }, { 'a"""""b' => [ 'a"b' ] }, { 'a""""""b' => [ 'a""b' ] }, { '"a"b"' => [ 'ab' ] }, { '"a""b"' => [ 'a"b' ] }, { '"a"""b"' => [ 'a"b' ] }, { '"a""""b"' => [ 'a"b' ] }, { '"a"""""b"' => [ 'a""b' ] }, { '"a""""""b"' => [ 'a""b' ] }, { '' => [ ] }, { ' ' => [ ] }, { '""' => [ '' ] }, { '" "' => [ ' ' ] }, { '""a' => [ 'a' ] }, { '""a b' => [ 'a', 'b' ] }, { 'a""' => [ 'a' ] }, { 'a"" b' => [ 'a', 'b' ] }, { '"" a' => [ '', 'a' ] }, { 'a ""' => [ 'a', '' ] }, { 'a "" b' => [ 'a', '', 'b' ] }, { 'a " " b' => [ 'a', ' ', 'b' ] }, { 'a " b " c' => [ 'a', ' b ', 'c' ] }, ); if ($^O eq 'MSWin32') { plan tests => 2 * @win_splits; foreach my $test (@win_splits) { do_split_tests($test); } } else { plan tests => 2 * @unix_splits; foreach my $test (@unix_splits) { do_split_tests($test); } } sub do_split_tests { my ($test) = @_; my ($string, $expected) = %$test; my @result = split_like_shell($string); $string =~ s/\n/\\n/g; is(grep( !defined(), @result ), 0, "\"$string\" result all defined"); is_deeply(\@result, $expected) or diag("split_like_shell error \n>$string< is not splitting as >" . join("|", @$expected) . '<'); } ExtUtils-Helpers-0.022/t/man_pagename.t0000644000175000017500000000135312306335447016423 0ustar leonleon#!/usr/bin/perl use strict; use warnings FATAL => 'all'; use Test::More; use Config; use File::Spec::Functions qw/catfile/; use ExtUtils::Helpers qw/man1_pagename man3_pagename/; my %separator = ( MSWin32 => '.', VMS => '__', os2 => '.', cygwin => '.', ); my $sep = $separator{$^O} || '::'; is man1_pagename('script/foo'), "foo.$Config{man1ext}", 'man1_pagename'; is man3_pagename(catfile(qw/lib ExtUtils.pm/)), "ExtUtils.$Config{man3ext}", 'man3_pagename 1'; is man3_pagename(catfile(qw/lib ExtUtils Helpers.pm/)), join($sep, qw/ExtUtils Helpers./).$Config{man3ext}, 'man3_pagename 2'; is man3_pagename(catfile(qw/lib ExtUtils Helpers Unix.pm/)), join($sep, qw/ExtUtils Helpers Unix./).$Config{man3ext}, 'man3_pagename 3'; done_testing; ExtUtils-Helpers-0.022/t/00-compile.t0000644000175000017500000000203212306335447015653 0ustar leonleonuse strict; use warnings; # this test was generated with Dist::Zilla::Plugin::Test::Compile 2.036 use Test::More tests => 4 + ($ENV{AUTHOR_TESTING} ? 1 : 0); my @module_files = ( 'ExtUtils/Helpers.pm', 'ExtUtils/Helpers/Unix.pm', 'ExtUtils/Helpers/VMS.pm', 'ExtUtils/Helpers/Windows.pm' ); # no fake home requested my $inc_switch = q[-Mblib]; use File::Spec; use IPC::Open3; use IO::Handle; my @warnings; for my $lib (@module_files) { # see L open my $stdin, '<', File::Spec->devnull or die "can't open devnull: $!"; my $stderr = IO::Handle->new; my $pid = open3($stdin, '>&STDERR', $stderr, $^X, $inc_switch, '-e', "require q[$lib]"); binmode $stderr, ':crlf' if $^O eq 'MSWin32'; my @_warnings = <$stderr>; waitpid($pid, 0); is($?, 0, "$lib loaded ok"); if (@_warnings) { warn @_warnings; push @warnings, @_warnings; } } is(scalar(@warnings), 0, 'no warnings found') if $ENV{AUTHOR_TESTING}; ExtUtils-Helpers-0.022/Makefile.PL0000644000175000017500000000325312306335447015336 0ustar leonleon # This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.011. use strict; use warnings; use 5.006; use ExtUtils::MakeMaker 6.30; my %WriteMakefileArgs = ( "ABSTRACT" => "Various portability utilities for module builders", "AUTHOR" => "Ken Williams , Leon Timmermans ", "BUILD_REQUIRES" => {}, "CONFIGURE_REQUIRES" => { "ExtUtils::MakeMaker" => "6.30" }, "DISTNAME" => "ExtUtils-Helpers", "EXE_FILES" => [], "LICENSE" => "perl", "NAME" => "ExtUtils::Helpers", "PREREQ_PM" => { "Carp" => 0, "Exporter" => "5.57", "File::Basename" => 0, "File::Copy" => 0, "File::Spec::Functions" => 0, "Module::Load" => 0, "Text::ParseWords" => "3.24", "strict" => 0, "warnings" => 0 }, "TEST_REQUIRES" => { "Cwd" => 0, "File::Spec" => 0, "IO::Handle" => 0, "IPC::Open3" => 0, "Test::More" => 0, "lib" => 0 }, "VERSION" => "0.022", "test" => { "TESTS" => "t/*.t" } ); my %FallbackPrereqs = ( "Carp" => 0, "Cwd" => 0, "Exporter" => "5.57", "File::Basename" => 0, "File::Copy" => 0, "File::Spec" => 0, "File::Spec::Functions" => 0, "IO::Handle" => 0, "IPC::Open3" => 0, "Module::Load" => 0, "Test::More" => 0, "Text::ParseWords" => "3.24", "lib" => 0, "strict" => 0, "warnings" => 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); ExtUtils-Helpers-0.022/lib/0000775000175000017500000000000012306335447014131 5ustar leonleonExtUtils-Helpers-0.022/lib/ExtUtils/0000775000175000017500000000000012306335447015712 5ustar leonleonExtUtils-Helpers-0.022/lib/ExtUtils/Helpers.pm0000644000175000017500000000472112306335447017654 0ustar leonleonpackage ExtUtils::Helpers; $ExtUtils::Helpers::VERSION = '0.022'; use strict; use warnings FATAL => 'all'; use Exporter 5.57 'import'; use Config; use File::Basename qw/basename/; use File::Spec::Functions qw/splitpath canonpath abs2rel splitdir/; use Module::Load; our @EXPORT_OK = qw/make_executable split_like_shell man1_pagename man3_pagename detildefy/; BEGIN { my %impl_for = ( MSWin32 => 'Windows', VMS => 'VMS'); my $package = 'ExtUtils::Helpers::' . ($impl_for{$^O} || 'Unix'); load($package); $package->import(); } sub man1_pagename { my $filename = shift; return basename($filename).".$Config{man1ext}"; } my %separator = ( MSWin32 => '.', VMS => '__', os2 => '.', cygwin => '.', ); my $separator = $separator{$^O} || '::'; sub man3_pagename { my ($filename, $base) = @_; $base ||= 'lib'; my ($vols, $dirs, $file) = splitpath(canonpath(abs2rel($filename, $base))); $file = basename($file, qw/.pm .pod/); my @dirs = grep { length } splitdir($dirs); return join $separator, @dirs, "$file.$Config{man3ext}"; } 1; # ABSTRACT: Various portability utilities for module builders __END__ =pod =encoding utf-8 =head1 NAME ExtUtils::Helpers - Various portability utilities for module builders =head1 VERSION version 0.022 =head1 SYNOPSIS use ExtUtils::Helpers qw/make_executable split_like_shell/; unshift @ARGV, split_like_shell($ENV{PROGRAM_OPTS}); write_script_to('Build'); make_executable('Build'); =head1 DESCRIPTION This module provides various portable helper functions for module building modules. =head1 FUNCTIONS =head2 make_executable($filename) This makes a perl script executable. =head2 split_like_shell($string) This function splits a string the same way as the local platform does. =head2 detildefy($path) This function substitutes a tilde at the start of a path with the users homedir in an appropriate manner. =head2 man1_pagename($filename) Returns the man page filename for a script. =head2 man3_pagename($filename, $basedir) Returns the man page filename for a Perl library. =head1 ACKNOWLEDGEMENTS Olivier Mengué and Christian Walde made C work on Windows. =head1 AUTHORS =over 4 =item * Ken Williams =item * Leon Timmermans =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Ken Williams, Leon Timmermans. 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 ExtUtils-Helpers-0.022/lib/ExtUtils/Helpers/0000775000175000017500000000000012306335447017314 5ustar leonleonExtUtils-Helpers-0.022/lib/ExtUtils/Helpers/Windows.pm0000644000175000017500000001153412306335447021306 0ustar leonleonpackage ExtUtils::Helpers::Windows; $ExtUtils::Helpers::Windows::VERSION = '0.022'; use strict; use warnings FATAL => 'all'; use Exporter 5.57 'import'; our @EXPORT = qw/make_executable split_like_shell detildefy/; use Config; use Carp qw/carp croak/; sub make_executable { my $script = shift; if (-T $script && $script !~ / \. (?:bat|cmd) $ /x) { _pl2bat(in => $script, update => 1); } return; } # This routine was copied almost verbatim from the 'pl2bat' utility # distributed with perl. It requires too much voodoo with shell quoting # differences and shortcomings between the various flavors of Windows # to reliably shell out sub _pl2bat { my %opts = @_; # NOTE: %0 is already enclosed in doublequotes by cmd.exe, as appropriate $opts{ntargs} = '-x -S %0 %*'; $opts{otherargs} = '-x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9'; $opts{stripsuffix} = qr/\.plx?/ unless exists $opts{stripsuffix}; if (not exists $opts{out}) { $opts{out} = $opts{in}; $opts{out} =~ s/$opts{stripsuffix}$//i; $opts{out} .= '.bat' unless $opts{in} =~ /\.bat$/i or $opts{in} eq '-'; } my $head = <<"EOT"; \@rem = '--*-Perl-*-- \@echo off if "%OS%" == "Windows_NT" goto WinNT perl $opts{otherargs} \@set ErrorLevel=%ErrorLevel% goto endofperl :WinNT perl $opts{ntargs} \@set ErrorLevel=%ErrorLevel% if NOT "%COMSPEC%" == "%SystemRoot%\\system32\\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. goto endofperl \@rem '; EOT $head =~ s/^\s+//gm; my $headlines = 2 + ($head =~ tr/\n/\n/); my $tail = <<'EOT'; __END__ :endofperl @"%COMSPEC%" /c exit /b %ErrorLevel% EOT $tail =~ s/^\s+//gm; my $linedone = 0; my $taildone = 0; my $linenum = 0; my $skiplines = 0; my $start = $Config{startperl}; $start = '#!perl' unless $start =~ /^#!.*perl/; open my $in, '<', $opts{in} or croak "Can't open $opts{in}: $!"; my @file = <$in>; close $in; foreach my $line ( @file ) { $linenum++; if ( $line =~ /^:endofperl\b/ ) { if (!exists $opts{update}) { warn "$opts{in} has already been converted to a batch file!\n"; return; } $taildone++; } if ( not $linedone and $line =~ /^#!.*perl/ ) { if (exists $opts{update}) { $skiplines = $linenum - 1; $line .= '#line '.(1+$headlines)."\n"; } else { $line .= '#line '.($linenum+$headlines)."\n"; } $linedone++; } if ( $line =~ /^#\s*line\b/ and $linenum == 2 + $skiplines ) { $line = ''; } } open my $out, '>', $opts{out} or croak "Can't open $opts{out}: $!"; print $out $head; print $out $start, ( $opts{usewarnings} ? ' -w' : '' ), "\n#line ", ($headlines+1), "\n" unless $linedone; print $out @file[$skiplines..$#file]; print $out $tail unless $taildone; close $out; return $opts{out}; } sub split_like_shell { # As it turns out, Windows command-parsing is very different from # Unix command-parsing. Double-quotes mean different things, # backslashes don't necessarily mean escapes, and so on. So we # can't use Text::ParseWords::shellwords() to break a command string # into words. The algorithm below was bashed out by Randy and Ken # (mostly Randy), and there are a lot of regression tests, so we # should feel free to adjust if desired. local ($_) = @_; my @argv; return @argv unless defined && length; my $arg = ''; my ($i, $quote_mode ) = ( 0, 0 ); while ( $i < length ) { my $ch = substr $_, $i, 1; my $next_ch = substr $_, $i+1, 1; if ( $ch eq '\\' && $next_ch eq '"' ) { $arg .= '"'; $i++; } elsif ( $ch eq '\\' && $next_ch eq '\\' ) { $arg .= '\\'; $i++; } elsif ( $ch eq '"' && $next_ch eq '"' && $quote_mode ) { $quote_mode = !$quote_mode; $arg .= '"'; $i++; } elsif ( $ch eq '"' && $next_ch eq '"' && !$quote_mode && ( $i + 2 == length() || substr( $_, $i + 2, 1 ) eq ' ' ) ) { # for cases like: a"" => [ 'a' ] push @argv, $arg; $arg = ''; $i += 2; } elsif ( $ch eq '"' ) { $quote_mode = !$quote_mode; } elsif ( $ch =~ /\s/ && !$quote_mode ) { push @argv, $arg if $arg; $arg = ''; ++$i while substr( $_, $i + 1, 1 ) =~ /\s/; } else { $arg .= $ch; } $i++; } push @argv, $arg if defined $arg && length $arg; return @argv; } sub detildefy { my $value = shift; $value =~ s{ ^ ~ (?= [/\\] | $ ) }[$ENV{USERPROFILE}]x if $ENV{USERPROFILE}; return $value; } 1; # ABSTRACT: Windows specific helper bits __END__ =pod =encoding UTF-8 =head1 NAME ExtUtils::Helpers::Windows - Windows specific helper bits =head1 VERSION version 0.022 =for Pod::Coverage make_executable split_like_shell detildefy =head1 AUTHORS =over 4 =item * Ken Williams =item * Leon Timmermans =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Ken Williams, Leon Timmermans. 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 ExtUtils-Helpers-0.022/lib/ExtUtils/Helpers/Unix.pm0000644000175000017500000000400512306335447020572 0ustar leonleonpackage ExtUtils::Helpers::Unix; $ExtUtils::Helpers::Unix::VERSION = '0.022'; use strict; use warnings FATAL => 'all'; use Exporter 5.57 'import'; our @EXPORT = qw/make_executable split_like_shell detildefy/; use Carp qw/croak/; use Config; use Text::ParseWords 3.24 qw/shellwords/; my $layer = $] >= 5.008001 ? ":raw" : ""; sub make_executable { my $filename = shift; my $current_mode = (stat $filename)[2] + 0; if (-T $filename) { open my $fh, "<$layer", $filename; my @lines = <$fh>; if (@lines and $lines[0] =~ s{ \A \#! \s* (?:/\S+/)? perl \b (.*) \z }{$Config{startperl}$1}xms) { open my $out, ">$layer", "$filename.new" or croak "Couldn't open $filename.new: $!"; print $out @lines; close $out; rename $filename, "$filename.bak" or croak "Couldn't rename $filename to $filename.bak"; rename "$filename.new", $filename or croak "Couldn't rename $filename.new to $filename"; unlink "$filename.bak"; } } chmod $current_mode | oct(111), $filename; return; } sub split_like_shell { my ($string) = @_; return if not defined $string; $string =~ s/^\s+|\s+$//g; return if not length $string; return shellwords($string); } sub detildefy { my $value = shift; # tilde with optional username for ($value) { s{ ^ ~ (?= /|$)} [ $ENV{HOME} || (getpwuid $>)[7] ]ex or # tilde without user name s{ ^ ~ ([^/]+) (?= /|$) } { (getpwnam $1)[7] || "~$1" }ex; # tilde with user name } return $value; } 1; # ABSTRACT: Unix specific helper bits __END__ =pod =encoding UTF-8 =head1 NAME ExtUtils::Helpers::Unix - Unix specific helper bits =head1 VERSION version 0.022 =for Pod::Coverage make_executable split_like_shell detildefy =head1 AUTHORS =over 4 =item * Ken Williams =item * Leon Timmermans =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Ken Williams, Leon Timmermans. 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 ExtUtils-Helpers-0.022/lib/ExtUtils/Helpers/VMS.pm0000644000175000017500000000520212306335447020314 0ustar leonleonpackage ExtUtils::Helpers::VMS; $ExtUtils::Helpers::VMS::VERSION = '0.022'; use strict; use warnings FATAL => 'all'; use Exporter 5.57 'import'; our @EXPORT = qw/make_executable split_like_shell detildefy/; use ExtUtils::Helpers::Unix qw/split_like_shell/; # Probably very wrong, but whatever use File::Copy qw/copy/; sub make_executable { my $filename = shift; my $batchname = "$filename.com"; copy($filename, $batchname); ExtUtils::Helpers::Unix::make_executable($batchname); return; } sub detildefy { my $arg = shift; # Apparently double ~ are not translated. return $arg if ($arg =~ /^~~/); # Apparently ~ followed by whitespace are not translated. return $arg if ($arg =~ /^~ /); if ($arg =~ /^~/) { my $spec = $arg; # Remove the tilde $spec =~ s/^~//; # Remove any slash following the tilde if present. $spec =~ s#^/##; # break up the paths for the merge my $home = VMS::Filespec::unixify($ENV{HOME}); # In the default VMS mode, the trailing slash is present. # In Unix report mode it is not. The parsing logic assumes that # it is present. $home .= '/' unless $home =~ m#/$#; # Trivial case of just ~ by it self if ($spec eq '') { $home =~ s#/$##; return $home; } my ($hvol, $hdir, $hfile) = File::Spec::Unix->splitpath($home); if ($hdir eq '') { # Someone has tampered with $ENV{HOME} # So hfile is probably the directory since this should be # a path. $hdir = $hfile; } my ($vol, $dir, $file) = File::Spec::Unix->splitpath($spec); my @hdirs = File::Spec::Unix->splitdir($hdir); my @dirs = File::Spec::Unix->splitdir($dir); my $newdirs; # Two cases of tilde handling if ($arg =~ m#^~/#) { # Simple case, just merge together $newdirs = File::Spec::Unix->catdir(@hdirs, @dirs); } else { # Complex case, need to add an updir - No delimiters my @backup = File::Spec::Unix->splitdir(File::Spec::Unix->updir); $newdirs = File::Spec::Unix->catdir(@hdirs, @backup, @dirs); } # Now put the two cases back together $arg = File::Spec::Unix->catpath($hvol, $newdirs, $file); } return $arg; } # ABSTRACT: VMS specific helper bits __END__ =pod =encoding UTF-8 =head1 NAME ExtUtils::Helpers::VMS - VMS specific helper bits =head1 VERSION version 0.022 =for Pod::Coverage make_executable detildefy =head1 AUTHORS =over 4 =item * Ken Williams =item * Leon Timmermans =back =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2004 by Ken Williams, Leon Timmermans. 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 ExtUtils-Helpers-0.022/dist.ini0000644000175000017500000000035212306335447015025 0ustar leonleonname = ExtUtils-Helpers author = Ken Williams author = Leon Timmermans license = Perl_5 copyright_holder = Ken Williams, Leon Timmermans copyright_year = 2004 [@LEONT] install_tool = eumm ExtUtils-Helpers-0.022/LICENSE0000644000175000017500000004373612306335447014403 0ustar leonleonThis software is copyright (c) 2004 by Ken Williams, Leon Timmermans. 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) 2004 by Ken Williams, Leon Timmermans. 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, Suite 500, Boston, MA 02110-1335 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) 2004 by Ken Williams, Leon Timmermans. 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 ExtUtils-Helpers-0.022/META.json0000644000175000017500000000451012306335447015002 0ustar leonleon{ "abstract" : "Various portability utilities for module builders", "author" : [ "Ken Williams ", "Leon Timmermans " ], "dynamic_config" : 0, "generated_by" : "Dist::Zilla version 5.011, CPAN::Meta::Converter version 2.132830", "license" : [ "perl_5" ], "meta-spec" : { "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", "version" : "2" }, "name" : "ExtUtils-Helpers", "prereqs" : { "configure" : { "requires" : { "ExtUtils::MakeMaker" : "6.30" } }, "develop" : { "requires" : { "Pod::Coverage::TrustPod" : "0", "Test::Pod" : "1.41", "Test::Pod::Coverage" : "1.08" } }, "runtime" : { "requires" : { "Carp" : "0", "Exporter" : "5.57", "File::Basename" : "0", "File::Copy" : "0", "File::Spec::Functions" : "0", "Module::Load" : "0", "Text::ParseWords" : "3.24", "perl" : "5.006", "strict" : "0", "warnings" : "0" } }, "test" : { "requires" : { "Cwd" : "0", "File::Spec" : "0", "IO::Handle" : "0", "IPC::Open3" : "0", "Test::More" : "0", "lib" : "0" } } }, "provides" : { "ExtUtils::Helpers" : { "file" : "lib/ExtUtils/Helpers.pm", "version" : "0.022" }, "ExtUtils::Helpers::Unix" : { "file" : "lib/ExtUtils/Helpers/Unix.pm", "version" : "0.022" }, "ExtUtils::Helpers::VMS" : { "file" : "lib/ExtUtils/Helpers/VMS.pm", "version" : "0.022" }, "ExtUtils::Helpers::Windows" : { "file" : "lib/ExtUtils/Helpers/Windows.pm", "version" : "0.022" } }, "release_status" : "stable", "resources" : { "bugtracker" : { "mailto" : "bug-extutils-helpers at rt.cpan.org", "web" : "http://rt.cpan.org/Public/Dist/Display.html?Name=ExtUtils-Helpers" }, "repository" : { "type" : "git", "url" : "git://github.com/Leont/extutils-helpers.git", "web" : "https://github.com/Leont/extutils-helpers" } }, "version" : "0.022" } ExtUtils-Helpers-0.022/Changes0000644000175000017500000000501512306335447014655 0ustar leonleonRevision history for ExtUtils-Helpers 0.022 2014-03-07 13:27:09CET+0100 Europe/Amsterdam Cleaned up remains of former functions Skip IO layers on <5.8 for 5.6 compatability Don't swallow pl2bat exceptions 0.021 2013-05-06 14:57:29 Europe/Amsterdam Always use the right environmental variable Use configuration provided manpage extension 0.020 2013-04-29 14:14:20 Europe/Amsterdam Fix man3_pagename for top level domains 0.019 2013-04-24 13:24:50 Europe/Amsterdam Fix make_executable for '#!/usr/bin/perl' 0.018 2013-04-16 13:51:42 Europe/Amsterdam Don't load Pod::Man 0.017 2013-04-15 14:57:34 Europe/Amsterdam Fix man3_pagename to properly split dirs 0.016 2013-04-12 15:39:01 Europe/London Add some fixes to batch file generation [Christian Walde] 0.015 2013-04-09 15:01:04 Europe/Amsterdam Made man3_pagename more flexible with paths Reverted pl2bat to a more original state Rewrote fixin code Re-added detildefy 0.014 2012-02-22 21:42:35 Europe/Amsterdam Remove detildefication, defer to File::HomeDir to do it better 0.013 2012-02-13 00:35:33 Europe/Amsterdam Do tilde expansion more sensibly on Windows 0.012 2012-02-07 14:04:33 Europe/Amsterdam Added detildefy Fix up loading on VMS 0.011 2012-01-09 22:42:01 Europe/Amsterdam Move manify to Module::Build::Tiny Refactored VMS support Make EU::H easier to embed in inc/ 0.010 2011-09-21 20:08:58 Europe/Amsterdam Fixed make_executable on Windows 0.009 2011-08-24 17:30:00 Europe/Amsterdam Fixed failing test on Windows 0.008 2011-08-23 17:09:37 Europe/Amsterdam Split out Windows and Unix specific parts Use $Config{path_sep} in tests 0.007 2011-05-07 10:59:15 Europe/Amsterdam Fixes for make_executable.t and make_executable 0.006 2011-05-05 09:30:59 Europe/Amsterdam Made split_like_shell handle newlines and tabs on Windows 0.005 2011-04-20 00:05:13 Europe/Amsterdam Fixed definedness issue in manify 0.004 2011-04-19 23:04:53 Europe/Amsterdam Added manify 0.003 2011-04-16 15:52:51 Europe/Amsterdam Added man1_pagename and man3_pagename 0.002 2011-04-14 14:45:27 Europe/Amsterdam Fixed compilation and other issues on Windows 0.001 2011-03-28 14:59:00 Europe/Amsterdam - First version ExtUtils-Helpers-0.022/MANIFEST0000644000175000017500000000066112306335447014515 0ustar leonleon# This file was automatically generated by Dist::Zilla::Plugin::Manifest v5.011. Changes INSTALL LICENSE MANIFEST META.json META.yml Makefile.PL README dist.ini lib/ExtUtils/Helpers.pm lib/ExtUtils/Helpers/Unix.pm lib/ExtUtils/Helpers/VMS.pm lib/ExtUtils/Helpers/Windows.pm t/00-compile.t t/author-split_like_shell.t t/make_executable.t t/man_pagename.t t/release-pod-coverage.t t/release-pod-syntax.t t/split_like_shell.t t/tilde.t ExtUtils-Helpers-0.022/META.yml0000644000175000017500000000227712306335447014642 0ustar leonleon--- abstract: 'Various portability utilities for module builders' author: - 'Ken Williams ' - 'Leon Timmermans ' build_requires: Cwd: 0 File::Spec: 0 IO::Handle: 0 IPC::Open3: 0 Test::More: 0 lib: 0 configure_requires: ExtUtils::MakeMaker: 6.30 dynamic_config: 0 generated_by: 'Dist::Zilla version 5.011, CPAN::Meta::Converter version 2.132830' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html version: 1.4 name: ExtUtils-Helpers provides: ExtUtils::Helpers: file: lib/ExtUtils/Helpers.pm version: 0.022 ExtUtils::Helpers::Unix: file: lib/ExtUtils/Helpers/Unix.pm version: 0.022 ExtUtils::Helpers::VMS: file: lib/ExtUtils/Helpers/VMS.pm version: 0.022 ExtUtils::Helpers::Windows: file: lib/ExtUtils/Helpers/Windows.pm version: 0.022 requires: Carp: 0 Exporter: 5.57 File::Basename: 0 File::Copy: 0 File::Spec::Functions: 0 Module::Load: 0 Text::ParseWords: 3.24 perl: 5.006 strict: 0 warnings: 0 resources: bugtracker: http://rt.cpan.org/Public/Dist/Display.html?Name=ExtUtils-Helpers repository: git://github.com/Leont/extutils-helpers.git version: 0.022 ExtUtils-Helpers-0.022/README0000644000175000017500000000062712306335447014246 0ustar leonleon This archive contains the distribution ExtUtils-Helpers, version 0.022: Various portability utilities for module builders This software is copyright (c) 2004 by Ken Williams, Leon Timmermans. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. This README file was generated by Dist::Zilla::Plugin::Readme v5.011.