mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 09:09:06 +00:00
Fix Metadata file info
Correct bugtracker links in metadata files - Github issue #41
This commit is contained in:
parent
7136c515a6
commit
e83887c9b7
4 changed files with 20 additions and 12 deletions
17
Build.PL
17
Build.PL
|
@ -4,6 +4,12 @@ use Cwd;
|
|||
|
||||
use Module::Build;
|
||||
|
||||
my %project_info = (
|
||||
tracker => 'https://github.com/duncs/clusterssh/issues',
|
||||
repository => 'http://github.com/duncs/clusterssh',
|
||||
homepage => 'http://clusterssh.sourceforge.net/',
|
||||
);
|
||||
|
||||
my $class = Module::Build->subclass(
|
||||
class => "Module::Build::Custom",
|
||||
code => q{
|
||||
|
@ -40,8 +46,9 @@ my $class = Module::Build->subclass(
|
|||
|
||||
print <<"EOF";
|
||||
==========
|
||||
Bug Reports and Issues: https://github.com/duncs/clusterssh/issues
|
||||
Project Repository: http://github.com/duncs/clusterssh
|
||||
Home page: $project_info{homepage},
|
||||
Bug Reports and Issues: $project_info{tracker}
|
||||
Project Repository: $project_info{repository}
|
||||
CPAN release: http://search.cpan.org/~duncs/App-ClusterSSH-$v
|
||||
SF release: http://sourceforge.net/projects/clusterssh/files/2.%20ClusterSSH%20Series%204/App-ClusterSSH-${v}.tar.gz/download
|
||||
SF/net git repo: https://sourceforge.net/scm/?type=git&group_id=89139
|
||||
|
@ -57,10 +64,10 @@ my $build = $class->new(
|
|||
resources => {
|
||||
Repository => [
|
||||
'http://clusterssh.git.sourceforge.net/',
|
||||
'http://github.com/duncs/clusterssh',
|
||||
$project_info{repository},
|
||||
],
|
||||
bugtracker => 'http://sourceforge.net/tracker/?group_id=89139',
|
||||
homepage => 'http://clusterssh.sourceforge.net/',
|
||||
bugtracker => $project_info{tracker},
|
||||
homepage => $project_info{homepage},
|
||||
},
|
||||
},
|
||||
module_name => 'App::ClusterSSH',
|
||||
|
|
1
Changes
1
Changes
|
@ -2,6 +2,7 @@
|
|||
- Include bash completion script in distribution (Github issue #29)
|
||||
- Allow re-adding closed session (Github issue #27 - thanks to Andrew Stevenson)
|
||||
- Allow sorting windows in natural order (Github issue #28 - thanks to Andrew Stevenson)
|
||||
- Fix links in metadata files to trackers (Github issue #41)
|
||||
|
||||
4.03_06 2015-01-31 Duncan Ferguson <duncan_ferguson@user.sf.net>
|
||||
- Remove references to 'logmsg' preventing the history window from working (thanks to Andrew Stevenson)
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
"provides" : {
|
||||
"App::ClusterSSH" : {
|
||||
"file" : "lib/App/ClusterSSH.pm",
|
||||
"version" : "4.03_06"
|
||||
"version" : "4.03_07"
|
||||
},
|
||||
"App::ClusterSSH::Base" : {
|
||||
"file" : "lib/App/ClusterSSH/Base.pm",
|
||||
|
@ -85,7 +85,7 @@
|
|||
"release_status" : "testing",
|
||||
"resources" : {
|
||||
"bugtracker" : {
|
||||
"web" : "http://sourceforge.net/tracker/?group_id=89139"
|
||||
"web" : "https://github.com/duncs/clusterssh/issues"
|
||||
},
|
||||
"homepage" : "http://clusterssh.sourceforge.net/",
|
||||
"license" : [
|
||||
|
@ -96,5 +96,5 @@
|
|||
"http://github.com/duncs/clusterssh"
|
||||
]
|
||||
},
|
||||
"version" : "4.03_06"
|
||||
"version" : "4.03_07"
|
||||
}
|
||||
|
|
8
META.yml
8
META.yml
|
@ -17,7 +17,7 @@ build_requires:
|
|||
configure_requires:
|
||||
Module::Build: '0'
|
||||
dynamic_config: 1
|
||||
generated_by: 'Module::Build version 0.421, CPAN::Meta::Converter version 2.143240'
|
||||
generated_by: 'Module::Build version 0.421, CPAN::Meta::Converter version 2.142690'
|
||||
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.03_06
|
||||
version: 4.03_07
|
||||
App::ClusterSSH::Base:
|
||||
file: lib/App/ClusterSSH/Base.pm
|
||||
version: '0.02'
|
||||
|
@ -61,7 +61,7 @@ resources:
|
|||
Repository:
|
||||
- http://clusterssh.git.sourceforge.net/
|
||||
- http://github.com/duncs/clusterssh
|
||||
bugtracker: http://sourceforge.net/tracker/?group_id=89139
|
||||
bugtracker: https://github.com/duncs/clusterssh/issues
|
||||
homepage: http://clusterssh.sourceforge.net/
|
||||
license: http://dev.perl.org/licenses/
|
||||
version: 4.03_06
|
||||
version: 4.03_07
|
||||
|
|
Loading…
Add table
Reference in a new issue