This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Commit b776cec188 missed these RMG steps when preparing Module::CoreList for 5.19.11
[perl5.git] / Porting / acknowledgements.pl
CommitLineData
548e9a3a
LB
1#!perl
2
3=head1 NAME
4
5Porting/acknowledgements.pl - Generate perldelta acknowledgements text
6
7=head1 SYNOPSIS
8
9 perl Porting/acknowledgements.pl v5.15.0..HEAD
f703fc96 10
548e9a3a
LB
11=head1 DESCRIPTION
12
13This generates the text which goes in the Acknowledgements section in
14a perldelta. You pass in the previous version and it guesses the next
15version, fetches information from the repository and outputs the
16text.
17
18=cut
19
20use strict;
21use warnings;
22use autodie;
23use POSIX qw(ceil);
24use Text::Wrap;
25use Time::Piece;
26use Time::Seconds;
27use version;
28$Text::Wrap::columns = 80;
29
30my $since_until = shift;
31
32my ( $since, $until ) = split '\.\.', $since_until;
33
34die "Usage: perl Porting/acknowledgements.pl v5.15.0..HEAD"
35 unless $since_until && $since && $until;
36
37my $previous_version = previous_version();
38my $next_version = next_version();
39my $development_time = development_time();
40
636564c5 41my ( $changes, $files, $code_changes, $code_files ) = changes_files();
548e9a3a
LB
42my $formatted_changes = commify( round($changes) );
43my $formatted_files = commify( round($files) );
636564c5
GS
44my $formatted_code_changes = commify( round($code_changes) );
45my $formatted_code_files = commify( round($code_files) );
548e9a3a
LB
46
47my $authors = authors();
48my $nauthors = $authors =~ tr/,/,/;
49$nauthors++;
50
51my $text
52 = "Perl $next_version represents approximately $development_time of development
53since Perl $previous_version and contains approximately $formatted_changes
54lines of changes across $formatted_files files from $nauthors authors.
55
636564c5
GS
56Excluding auto-generated files, documentation and release tools, there
57were approximately $formatted_code_changes lines of changes to
58$formatted_code_files .pm, .t, .c and .h files.
59
9fe5af70
FR
60Perl continues to flourish into its third decade thanks to a vibrant
61community of users and developers. The following people are known to
548e9a3a
LB
62have contributed the improvements that became Perl $next_version:
63
64$authors
65The list above is almost certainly incomplete as it is automatically
66generated from version control history. In particular, it does not
67include the names of the (very much appreciated) contributors who
68reported issues to the Perl bug tracker.
69
70Many of the changes included in this version originated in the CPAN
71modules included in Perl's core. We're grateful to the entire CPAN
72community for helping Perl to flourish.
73
74For a more complete list of all of Perl's historical contributors,
9fe5af70 75please see the F<AUTHORS> file in the Perl source distribution.";
548e9a3a
LB
76
77my $wrapped = fill( '', '', $text );
78print "$wrapped\n";
79
80# return the previous Perl version, eg 5.15.0
81sub previous_version {
82 my $version = version->new($since);
83 $version =~ s/^v//;
84 return $version;
85}
86
87# returns the upcoming release Perl version, eg 5.15.1
88sub next_version {
89 my $version = version->new($since);
90 ( $version->{version}->[-1] )++;
91 return version->new( join( '.', @{ $version->{version} } ) );
92}
93
94# returns the development time since the previous version in weeks
95# or months
96sub development_time {
5f8b560c
DR
97 my $first_timestamp = qx(git log -1 --pretty=format:%ct --summary $since);
98 my $last_timestamp = qx(git log -1 --pretty=format:%ct --summary $until);
548e9a3a
LB
99
100 die "Missing first timestamp" unless $first_timestamp;
5f8b560c 101 die "Missing last timestamp" unless $last_timestamp;
548e9a3a 102
5f8b560c
DR
103 my $seconds = localtime($last_timestamp) - localtime($first_timestamp);
104 my $weeks = _round( $seconds / ONE_WEEK );
105 my $months = _round( $seconds / ONE_MONTH );
548e9a3a
LB
106
107 my $development_time;
108 if ( $months < 2 ) {
8ece16d7 109 return "$weeks @{[$weeks == 1 ? q(week) : q(weeks)]}";
548e9a3a
LB
110 } else {
111 return "$months months";
112 }
113}
114
5f8b560c
DR
115sub _round {
116 my $val = shift;
117
118 my $int = int $val;
119 my $remainder = $val - $int;
120
121 return $remainder >= 0.5 ? $int + 1 : $int;
122}
123
548e9a3a
LB
124# returns the number of changed lines and files since the previous
125# version
126sub changes_files {
127 my $output = qx(git diff --shortstat $since_until);
d048ecb4 128 my @filenames = qx(git diff --numstat $since_until | $^X -anle 'next if m{^dist/Module-CoreList} or not /\\.(?:pm|c|h|t)\\z/; print \$F[2]');
2e4654b2
RS
129 chomp @filenames;
130 my $output_code_changed = qx# git diff --shortstat $since_until -- @filenames #;
636564c5
GS
131
132 return ( _changes_from_cmd ( $output ),
133 _changes_from_cmd ( $output_code_changed ) );
134}
135
136sub _changes_from_cmd {
137 my $output = shift || die "No git diff command output";
548e9a3a
LB
138
139 # 585 files changed, 156329 insertions(+), 53586 deletions(-)
140 my ( $files, $insertions, $deletions )
141 = $output
142 =~ /(\d+) files changed, (\d+) insertions\(\+\), (\d+) deletions\(-\)/;
143 my $changes = $insertions + $deletions;
144 return ( $changes, $files );
145}
146
147# rounds an integer to two significant figures
148sub round {
149 my $int = shift;
150 my $length = length($int);
151 my $divisor = 10**( $length - 2 );
152 return ceil( $int / $divisor ) * $divisor;
153}
154
155# adds commas to a number at thousands, millions
156sub commify {
157 local $_ = shift;
158 1 while s/^([-+]?\d+)(\d{3})/$1,$2/;
159 return $_;
160}
161
162# returns a list of the authors
163sub authors {
164 return
165 qx(git log --pretty=fuller $since_until | $^X Porting/checkAUTHORS.pl --who -);
166}