Skip to content

Commit 47ef154

Browse files
Grinnztoddr
authored andcommitted
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
1 parent cff6de5 commit 47ef154

File tree

14 files changed

+36
-129
lines changed

14 files changed

+36
-129
lines changed

Changes

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ For a list of contributors to perl, see AUTHORS.
88

99
If you need a detailed commit history (i.e. descriptions of each
1010
individual commit), you can view the git version control history online
11-
at https://perl5.git.perl.org/perl.git (follow the 'shortlog' link beside
12-
the relevant tag). Or, you can download a copy of the git repository and
13-
then run a command like
11+
at https://github.com/Perl/perl5. Or, you can download a copy of the git
12+
repository and then run a command like
1413

1514
git log --name-status v5.12.0..v5.14.0
1615

META.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@
117117
"release_status" : "unstable",
118118
"resources" : {
119119
"bugtracker" : {
120-
"web" : "https://rt.perl.org/"
120+
"web" : "https://github.com/Perl/perl5/issues"
121121
},
122122
"homepage" : "https://www.perl.org/",
123123
"license" : [
124124
"https://dev.perl.org/licenses/"
125125
],
126126
"repository" : {
127-
"url" : "https://perl5.git.perl.org/"
127+
"url" : "https://github.com/Perl/perl5"
128128
}
129129
},
130130
"version" : "5.031006",

META.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ no_index:
110110
- vutil.h
111111
- vxs.inc
112112
resources:
113-
bugtracker: https://rt.perl.org/
113+
bugtracker: https://github.com/Perl/perl5/issues
114114
homepage: https://www.perl.org/
115115
license: https://dev.perl.org/licenses/
116-
repository: https://perl5.git.perl.org/
116+
repository: https://github.com/Perl/perl5
117117
version: '5.031006'
118118
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Porting/README.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ A helper tool for perl's 2038 support See F<Porting/README.y2038> for details.
361361
=head2 F<todo.pod>
362362

363363
This is a list of wishes for Perl. The most up-to-date version of this file is
364-
at L<https://perl5.git.perl.org/perl.git/blob_plain/HEAD:/Porting/todo.pod>.
364+
at L<https://github.com/Perl/perl5/blob/blead/Porting/todo.pod>.
365365
The tasks we think are smaller or easier are listed first. Anyone is welcome
366366
to work on any of these, but it's a good idea to first contact
367367
I<[email protected]> to avoid duplication of effort, and to learn from

Porting/corelist.pl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ ($)
291291
$bug_tracker = $bug_tracker->{web} if ref($bug_tracker) eq "HASH";
292292

293293
$bug_tracker = defined $bug_tracker ? quote($bug_tracker) : 'undef';
294+
next if $bug_tracker eq "'https://github.com/Perl/perl5/issues'";
294295
next if $bug_tracker eq "'http://rt.perl.org/perlbug/'";
295296
next if $bug_tracker eq "'https://rt.perl.org/perlbug/'";
296297
$tracker .= sprintf " %-24s=> %s,\n", "'$module'", $bug_tracker;

Porting/makemeta

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ my $distmeta = {
4747
'dynamic_config' => 1,
4848
'resources' => {
4949
'repository' => {
50-
'url' => 'https://perl5.git.perl.org/'
50+
'url' => 'https://github.com/Perl/perl5'
5151
},
5252
'homepage' => 'https://www.perl.org/',
5353
'bugtracker' => {
54-
'web' => 'https://rt.perl.org/'
54+
'web' => 'https://github.com/Perl/perl5/issues'
5555
},
5656
'license' => [
5757
'https://dev.perl.org/licenses/'

Porting/todo.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ todo - Perl TO-DO list
55
=head1 DESCRIPTION
66

77
This is a list of wishes for Perl. The most up to date version of this file
8-
is at L<https://perl5.git.perl.org/perl.git/blob_plain/HEAD:/Porting/todo.pod>
8+
is at L<https://github.com/Perl/perl5/blob/blead/Porting/todo.pod>.
99

1010
The tasks we think are smaller or easier are listed first. Anyone is welcome
1111
to work on any of these, but it's a good idea to first contact

configpm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ $config_txt .= sprintf << 'EOT', $], $export_funcs;
150150

151151
# for a description of the variables, please have a look at the
152152
# Glossary file, as written in the Porting folder, or use the url:
153-
# https://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary
153+
# https://github.com/Perl/perl5/blob/blead/Porting/Glossary
154154

155155
package Config;
156156
use strict;
@@ -896,7 +896,7 @@ named variable exists.
896896

897897
For a description of the variables, please have a look at the
898898
Glossary file, as written in the Porting folder, or use the url:
899-
https://perl5.git.perl.org/perl.git/blob/HEAD:/Porting/Glossary
899+
https://github.com/Perl/perl5/blob/blead/Porting/Glossary
900900

901901
=over 4
902902

cop.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ typedef struct jmpenv JMPENV;
103103
*
104104
* The original patches that introduces flexible exceptions were:
105105
*
106-
* https://perl5.git.perl.org/perl.git/commit/312caa8e97f1c7ee342a9895c2f0e749625b4929
107-
* https://perl5.git.perl.org/perl.git/commit/14dd3ad8c9bf82cf09798a22cc89a9862dfd6d1a
106+
* https://github.com/Perl/perl5/commit/312caa8e97f1c7ee342a9895c2f0e749625b4929
107+
* https://github.com/Perl/perl5/commit/14dd3ad8c9bf82cf09798a22cc89a9862dfd6d1a
108108
*
109109
*/
110110

hints/dec_osf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ toke_cflags='optimize=-O2'
263263
esac
264264

265265
# The patch 23787
266-
# https://perl5.git.perl.org/perl.git/commit/73cb726371990cd489597c4fee405a9815abf4da
266+
# https://github.com/Perl/perl5/commit/73cb726371990cd489597c4fee405a9815abf4da
267267
# broke things for gcc (at least gcc 3.3) so that many of the pack()
268268
# checksum tests for formats L, j, J, especially when combined
269269
# with the < and > specifiers, started to fail if compiled with plain -O3.

0 commit comments

Comments
 (0)