Release 4.08

This commit is contained in:
Duncan Ferguson 2016-10-18 21:26:57 +01:00
parent 29762f2868
commit 9f6c000592
4 changed files with 60 additions and 50 deletions

View file

@ -1,4 +1,4 @@
4.08 0000-00-00 Duncan Ferguson <duncan_ferguson@user.sf.net>
4.08 2016-10-18 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Add perl-5.8, 5.10 and 5.12 to Travis-CI automated testing
- Fix building and testing on perl-5.8.9
- Improve testing on systems that do not have xterm installed

View file

@ -4,7 +4,7 @@
"Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4218",
"generated_by" : "Module::Build version 0.4216",
"license" : [
"perl_5"
],
@ -47,6 +47,7 @@
"Tk" : "800.022",
"Try::Tiny" : "0",
"X11::Protocol" : "0.56",
"X11::Protocol::WM" : "0",
"version" : "0"
}
}
@ -54,7 +55,7 @@
"provides" : {
"App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm",
"version" : "4.07"
"version" : "4.08"
},
"App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm",
@ -104,6 +105,6 @@
"http://github.com/duncs/clusterssh"
]
},
"version" : "4.07",
"x_serialization_backend" : "JSON::PP version 2.27400"
"version" : "4.08",
"x_serialization_backend" : "JSON::PP version 2.27203"
}

View file

@ -17,7 +17,7 @@ build_requires:
configure_requires:
Module::Build: '0'
dynamic_config: 1
generated_by: 'Module::Build version 0.4218, CPAN::Meta::Converter version 2.150005'
generated_by: 'Module::Build version 0.4216, CPAN::Meta::Converter version 2.150005'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@ -26,7 +26,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: '4.07'
version: '4.08'
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: '0.02'
@ -62,6 +62,7 @@ requires:
Tk: '800.022'
Try::Tiny: '0'
X11::Protocol: '0.56'
X11::Protocol::WM: '0'
version: '0'
resources:
Repository:
@ -70,5 +71,5 @@ resources:
bugtracker: https://github.com/duncs/clusterssh/issues
homepage: http://github.com/duncs/clusterssh/wiki
license: http://dev.perl.org/licenses/
version: '4.07'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
version: '4.08'
x_serialization_backend: 'CPAN::Meta::YAML version 0.016'

View file

@ -1,42 +1,50 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.4218
# Note: this file was auto-generated by Module::Build::Compat version 0.4216
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'App::ClusterSSH',
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
'PREREQ_PM' => {
'CPAN::Changes' => '0.27',
'Exception::Class' => '1.31',
'File::Glob' => 0,
'File::Path' => 0,
'File::Slurp' => 0,
'File::Temp' => 0,
'File::Which' => 0,
'Getopt::Long' => 0,
'Locale::Maketext' => 0,
'Readonly' => 0,
'Test::Differences' => 0,
'Test::DistManifest' => 0,
'Test::PerlTidy' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Trap' => 0,
'Tk' => '800.022',
'Try::Tiny' => 0,
'X11::Protocol' => '0.56',
'X11::Protocol::WM' => 0,
'version' => '0'
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [
'bin/ccon', 'bin/clusterssh_bash_completion.dist',
'bin/crsh', 'bin/csftp',
'bin/cssh', 'bin/ctel'
],
'PL_FILES' => {
'bin_PL/_build_docs' => [
'bin/cssh', 'bin/csftp',
'bin/ccon', 'bin/crsh',
'bin/ctel', 'bin/clusterssh_bash_completion.dist'
]
}
);
WriteMakefile
(
'NAME' => 'App::ClusterSSH',
'VERSION_FROM' => 'lib/App/ClusterSSH.pm',
'PREREQ_PM' => {
'CPAN::Changes' => '0.27',
'Exception::Class' => '1.31',
'File::Glob' => 0,
'File::Path' => 0,
'File::Slurp' => 0,
'File::Temp' => 0,
'File::Which' => 0,
'Getopt::Long' => 0,
'Locale::Maketext' => 0,
'Readonly' => 0,
'Test::Differences' => 0,
'Test::DistManifest' => 0,
'Test::PerlTidy' => 0,
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
'Test::Trap' => 0,
'Tk' => '800.022',
'Try::Tiny' => 0,
'X11::Protocol' => '0.56',
'X11::Protocol::WM' => '0',
'version' => '0'
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [
'bin/ccon',
'bin/clusterssh_bash_completion.dist',
'bin/crsh',
'bin/csftp',
'bin/cssh',
'bin/ctel'
],
'PL_FILES' => {
'bin_PL/_build_docs' => [
'bin/cssh',
'bin/csftp',
'bin/ccon',
'bin/crsh',
'bin/ctel',
'bin/clusterssh_bash_completion.dist'
]
}
)
;