Release 4.03_01

This commit is contained in:
Duncan Ferguson 2014-07-09 20:57:12 +01:00
parent f22bce3cb1
commit 93146a023d
4 changed files with 25 additions and 18 deletions

View file

@ -1,4 +1,4 @@
4.03_01 2014-??-?? Duncan Ferguson <duncan_ferguson@user.sf.net>
4.03_01 2014-07-09 Duncan Ferguson <duncan_ferguson@user.sf.net>
- Amended host parsing to include alternative IPv6 address port definitions, e.g. 1::2::3::4/5567
- List available external tags with -L option and also add into 'Add Host' in UI
[NOTE: Some options have changed!]

View file

@ -4,7 +4,7 @@
"Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.4003, CPAN::Meta::Converter version 2.120921",
"generated_by" : "Module::Build version 0.4003, CPAN::Meta::Converter version 2.133380",
"license" : [
"perl_5"
],
@ -17,6 +17,7 @@
"build" : {
"requires" : {
"CPAN::Changes" : "0.27",
"File::Slurp" : "0",
"File::Temp" : "0",
"File::Which" : "0",
"Readonly" : "0",
@ -46,7 +47,7 @@
"provides" : {
"App::ClusterSSH" : {
"file" : "lib/App/ClusterSSH.pm",
"version" : "4.02_04"
"version" : "4.03_01"
},
"App::ClusterSSH::Base" : {
"file" : "lib/App/ClusterSSH/Base.pm",
@ -60,6 +61,10 @@
"file" : "lib/App/ClusterSSH/Config.pm",
"version" : "0.02"
},
"App::ClusterSSH::Getopt" : {
"file" : "lib/App/ClusterSSH/Getopt.pm",
"version" : "0.01"
},
"App::ClusterSSH::Helper" : {
"file" : "lib/App/ClusterSSH/Helper.pm",
"version" : "0.02"
@ -69,12 +74,10 @@
"version" : "0.03"
},
"App::ClusterSSH::L10N" : {
"file" : "lib/App/ClusterSSH/L10N.pm",
"version" : 0
"file" : "lib/App/ClusterSSH/L10N.pm"
},
"App::ClusterSSH::L10N::en" : {
"file" : "lib/App/ClusterSSH/L10N/en.pm",
"version" : 0
"file" : "lib/App/ClusterSSH/L10N/en.pm"
}
},
"release_status" : "testing",
@ -91,5 +94,5 @@
"http://github.com/duncs/clusterssh"
]
},
"version" : "4.02_04"
"version" : "4.03_01"
}

View file

@ -4,6 +4,7 @@ author:
- 'Duncan Ferguson <duncan_j_ferguson@yahoo.co.uk>'
build_requires:
CPAN::Changes: 0.27
File::Slurp: 0
File::Temp: 0
File::Which: 0
Readonly: 0
@ -15,7 +16,7 @@ build_requires:
configure_requires:
Module::Build: 0
dynamic_config: 1
generated_by: 'Module::Build version 0.4003, CPAN::Meta::Converter version 2.120921'
generated_by: 'Module::Build version 0.4003, CPAN::Meta::Converter version 2.133380'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@ -24,7 +25,7 @@ name: App-ClusterSSH
provides:
App::ClusterSSH:
file: lib/App/ClusterSSH.pm
version: 4.02_04
version: 4.03_01
App::ClusterSSH::Base:
file: lib/App/ClusterSSH/Base.pm
version: 0.02
@ -34,6 +35,9 @@ provides:
App::ClusterSSH::Config:
file: lib/App/ClusterSSH/Config.pm
version: 0.02
App::ClusterSSH::Getopt:
file: lib/App/ClusterSSH/Getopt.pm
version: 0.01
App::ClusterSSH::Helper:
file: lib/App/ClusterSSH/Helper.pm
version: 0.02
@ -42,10 +46,8 @@ provides:
version: 0.03
App::ClusterSSH::L10N:
file: lib/App/ClusterSSH/L10N.pm
version: 0
App::ClusterSSH::L10N::en:
file: lib/App/ClusterSSH/L10N/en.pm
version: 0
requires:
Exception::Class: 1.31
Locale::Maketext: 0
@ -54,10 +56,10 @@ requires:
X11::Protocol: 0.56
version: 0
resources:
Repository:
- http://clusterssh.git.sourceforge.net/
- http://github.com/duncs/clusterssh
bugtracker: http://sourceforge.net/tracker/?group_id=89139
homepage: http://clusterssh.sourceforge.net/
license: http://dev.perl.org/licenses/
x_Repository:
- http://clusterssh.git.sourceforge.net/
- http://github.com/duncs/clusterssh
version: 4.02_04
version: 4.03_01

View file

@ -7,6 +7,7 @@ WriteMakefile
'PREREQ_PM' => {
'CPAN::Changes' => '0.27',
'Exception::Class' => '1.31',
'File::Slurp' => 0,
'File::Temp' => 0,
'File::Which' => 0,
'Locale::Maketext' => 0,
@ -25,10 +26,11 @@ WriteMakefile
'EXE_FILES' => [
'bin/ccon',
'bin/crsh',
'bin/cscp',
'bin/cssh',
'bin/ctel'
],
'PL_FILES' => {}
'PL_FILES' => {
'bin_PL/_build_docs' => []
}
)
;