Skip to content

Commit b71cd0d

Browse files
committed
Provide Dist::Zilla on Perl >= 5.14
1 parent b94429f commit b71cd0d

File tree

2 files changed

+24
-19
lines changed

2 files changed

+24
-19
lines changed

README.md

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# docker-perl-tester
22

3-
This repo contains a script which builds Docker images with various
4-
pre-installed bits:
3+
This repo is used to build Perl Docker images with various pre-installed bits:
54

65
* the `aspell` and `aspell-en` packages
76
* `cpanminus`
87
* `App::cpm`
98
* `Devel::Cover`
10-
* various testing modules (see `cpanfile` in this repo)
9+
* various testing modules
10+
* Dist::Zilla with some common plugins (for Perl >= 5.14)
1111

1212
# List of Perl modules
1313

@@ -52,23 +52,30 @@ pre-installed bits:
5252
* Pod::Readme
5353
* Test::Vars
5454

55+
## Only on Perl 5.14 and later
56+
57+
* Dist::Zilla & friends
58+
* Dist::Zilla::PluginBundle::Author::ETHER
59+
5560
# Using Docker Images for your projects
5661

57-
The following tags are available
62+
The images can be found at [https://hub.docker.com/repository/docker/perldocker/perl-tester/](https://hub.docker.com/repository/docker/perldocker/perl-tester/)
63+
64+
The following tags are available from the repository `perldocker/perl-tester`
5865

5966
```
60-
perldocker/perl-tester:v5.30
61-
perldocker/perl-tester:v5.28
62-
perldocker/perl-tester:v5.26
63-
perldocker/perl-tester:v5.24
64-
perldocker/perl-tester:v5.22
65-
perldocker/perl-tester:v5.20
66-
perldocker/perl-tester:v5.18
67-
perldocker/perl-tester:v5.16
68-
perldocker/perl-tester:v5.14
69-
perldocker/perl-tester:v5.12
70-
perldocker/perl-tester:v5.10
71-
perldocker/perl-tester:v5.8
67+
v5.30
68+
v5.28
69+
v5.26
70+
v5.24
71+
v5.22
72+
v5.20
73+
v5.18
74+
v5.16
75+
v5.14
76+
v5.12
77+
v5.10
78+
v5.8
7279
```
7380

7481
# Continuous Integrations
@@ -150,8 +157,6 @@ DOCKER_USERNAME=username
150157
DOCKER_GITHUB_TOKEN=a-token-or-password
151158
```
152159

153-
The images can be found at [https://hub.docker.com/repository/docker/perldocker/perl-tester/](https://hub.docker.com/repository/docker/perldocker/perl-tester/)
154-
155160
# Author
156161

157162
Oalders initiated the project and atoomic tried to give it more public visibility.

cpanfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ requires 'Test::Vars' if "$]" >= 5.010;
3737
requires 'Test::Version';
3838
requires 'Test::Warnings';
3939

40-
requires 'Dist::Zilla::PluginBundle::Author::ETHER';
40+
requires 'Dist::Zilla::PluginBundle::Author::ETHER' if "$]" >= 5.014;

0 commit comments

Comments
 (0)