summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorDan Book <grinnz@grinnz.com>2019-10-20 12:47:10 -0400
committerTodd Rinaldo <toddr@cpan.org>2019-10-20 18:47:10 +0200
commit47ef154c59e75e9351d27b3bd06d6ac57494193c (patch)
tree2a2b239b3ecfc0a21459e5be099d6982988d8a3f /Porting
parentcff6de5f7a56a31a8570531468ebb7e646047f24 (diff)
downloadperl-47ef154c59e75e9351d27b3bd06d6ac57494193c.tar.gz
Update documentation, comments, metadata to reference GitHub as canonical repository (#1186)
* Update repository and bugtracker URLs to GitHub in makemeta regen META files * Update POD and comments to reference GitHub as canonical repository * Update Porting/corelist.pl to recognize GitHub issue tracker * remove "A note on camel and dromedary" * Remove redundant 'Committing your changes' section
Diffstat (limited to 'Porting')
-rw-r--r--Porting/README.pod2
-rwxr-xr-xPorting/corelist.pl1
-rw-r--r--Porting/makemeta4
-rw-r--r--Porting/todo.pod2
4 files changed, 5 insertions, 4 deletions
diff --git a/Porting/README.pod b/Porting/README.pod
index 2552dd5186..bc4c50d8e7 100644
--- a/Porting/README.pod
+++ b/Porting/README.pod
@@ -361,7 +361,7 @@ A helper tool for perl's 2038 support See F<Porting/README.y2038> for details.
=head2 F<todo.pod>
This is a list of wishes for Perl. The most up-to-date version of this file is
-at L<https://perl5.git.perl.org/perl.git/blob_plain/HEAD:/Porting/todo.pod>.
+at L<https://github.com/Perl/perl5/blob/blead/Porting/todo.pod>.
The tasks we think are smaller or easier are listed first. Anyone is welcome
to work on any of these, but it's a good idea to first contact
I<perl5-porters@perl.org> to avoid duplication of effort, and to learn from
diff --git a/Porting/corelist.pl b/Porting/corelist.pl
index 9267a7f417..2f2e61c52e 100755
--- a/Porting/corelist.pl
+++ b/Porting/corelist.pl
@@ -291,6 +291,7 @@ foreach my $module ( sort keys %module_to_upstream ) {
$bug_tracker = $bug_tracker->{web} if ref($bug_tracker) eq "HASH";
$bug_tracker = defined $bug_tracker ? quote($bug_tracker) : 'undef';
+ next if $bug_tracker eq "'https://github.com/Perl/perl5/issues'";
next if $bug_tracker eq "'http://rt.perl.org/perlbug/'";
next if $bug_tracker eq "'https://rt.perl.org/perlbug/'";
$tracker .= sprintf " %-24s=> %s,\n", "'$module'", $bug_tracker;
diff --git a/Porting/makemeta b/Porting/makemeta
index b4124d9c2f..760377e060 100644
--- a/Porting/makemeta
+++ b/Porting/makemeta
@@ -47,11 +47,11 @@ my $distmeta = {
'dynamic_config' => 1,
'resources' => {
'repository' => {
- 'url' => 'https://perl5.git.perl.org/'
+ 'url' => 'https://github.com/Perl/perl5'
},
'homepage' => 'https://www.perl.org/',
'bugtracker' => {
- 'web' => 'https://rt.perl.org/'
+ 'web' => 'https://github.com/Perl/perl5/issues'
},
'license' => [
'https://dev.perl.org/licenses/'
diff --git a/Porting/todo.pod b/Porting/todo.pod
index f84d025ab4..62e5fe0dbe 100644
--- a/Porting/todo.pod
+++ b/Porting/todo.pod
@@ -5,7 +5,7 @@ todo - Perl TO-DO list
=head1 DESCRIPTION
This is a list of wishes for Perl. The most up to date version of this file
-is at L<https://perl5.git.perl.org/perl.git/blob_plain/HEAD:/Porting/todo.pod>
+is at L<https://github.com/Perl/perl5/blob/blead/Porting/todo.pod>.
The tasks we think are smaller or easier are listed first. Anyone is welcome
to work on any of these, but it's a good idea to first contact