Skip to content

Commit 8caed23

Browse files
author
Chris White
committed
Update dependency info
1 parent 6d555f8 commit 8caed23

13 files changed

+23
-14
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Revision history for Text-PerlPP
22
(Note: GH = GitHub issue; # = RT issue)
33

4+
0.500.2 2018/05/27
5+
Fixes to installation package
6+
47
0.500.1 2018/05/26
58
Changed code to OOP interface.
69
Updated tests to run more cleanly and more quickly (GH 24; #125326).

Makefile.PL

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,25 @@ WriteMakefile(
5050
},
5151
BUILD_REQUIRES => {
5252
'App::FatPacker' => '0',
53+
'parent' => '0',
5354
},
5455
TEST_REQUIRES => {
5556
'Capture::Tiny' => '0',
5657
'Carp' => '0',
5758
'Config' => '0',
59+
'constant' => '0',
60+
'Cwd' => '0',
61+
'Exporter' => '0',
5862
'File::Spec' => '0',
63+
'Getopt::Long' => '2.5',
5964
'Import::Into' => '0',
6065
'IPC::Run3' => '0',
61-
'List::Util' => '0',
66+
'List::Util' => '1.33', # for any()
67+
'Pod::Usage' => '0',
6268
'rlib' => '0',
69+
'Text::Diff' => '0', # for t/03-idempotency.t
6370
'Test::More' => '0',
6471
'Text::ParseWords' => '0',
65-
'Text::Diff' => '0', # for t/03-idempotency.t
6672
},
6773
PREREQ_PM => {
6874
'Getopt::Long' => '2.5', # Per issue #17

lib/Text/PerlPP.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package Text::PerlPP;
55

66
# Semantic versioning, packed per Perl rules. Must always be at least one
77
# digit left of the decimal, and six digits right of the decimal.
8-
our $VERSION = '0.500001';
8+
our $VERSION = '0.500002';
99

1010
use 5.010001;
1111
use strict;

t/00-load.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use 5.010;
33
use strict;
44
use warnings;
55
use Test::More;
6-
use rlib './lib';
6+
use rlib 'lib';
77

88
BEGIN {
99
if($ENV{PERLPP_NOUSE} || 0) {

t/01-capture.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!perl
22
# Some basic tests for perlpp
3-
use rlib './lib';
3+
use rlib 'lib';
44
use PerlPPTest;
55

66
if($ENV{PERLPP_NOUSE} || 0) {

t/02-basic.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22
# Some basic tests for perlpp
3-
use rlib './lib';
3+
use rlib 'lib';
44
use PerlPPTest;
55

66
use IPC::Run3;

t/02-readme.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22
# Tests from perlpp's README.md and bin/perlpp's POD.
3-
use rlib './lib';
3+
use rlib 'lib';
44
use PerlPPTest;
55

66
my @testcases=( # In the order they are given in README.md

t/03-cmdline.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22
# Tests of perlpp command-line options
3-
use rlib './lib';
3+
use rlib 'lib';
44
use PerlPPTest;
55
use TestcaseList;
66

t/03-idempotency.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/usr/bin/env perl
22
# Test running perlpp on itself - nothing should change.
3-
use rlib './lib';
3+
use rlib 'lib';
44
use PerlPPTest;
55
use Text::Diff;
66
use File::Spec;
7-
use Data::Dumper;
7+
#use Data::Dumper;
88
plan tests => 1;
99

1010
my $fn = File::Spec->rel2abs($INC{'Text/PerlPP.pm'});

t/04-include.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env perl
22
# Tests of :include, :macro Include, :immediate ProcessFile
3-
use rlib './lib';
3+
use rlib 'lib';
44
use PerlPPTest;
55

66
(my $whereami = __FILE__) =~ s/04-include\.t$//;

0 commit comments

Comments
 (0)