mirror of
https://github.com/moparisthebest/curl
synced 2024-11-04 08:35:05 -05:00
9a8b3b3e13
Reported by the new script 'scripts/copyright.pl'. The script has a regex whitelist for the files that don't need copyright headers. Removed three (mostly usesless) README files from docs/ Closes #5141
103 lines
2.8 KiB
Raku
Executable File
103 lines
2.8 KiB
Raku
Executable File
#!/usr/bin/env perl
|
|
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
###########################################################################
|
|
|
|
# git log --pretty=fuller --no-color --date=short --decorate=full
|
|
|
|
my @mname = ('Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
|
|
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec' );
|
|
|
|
sub nicedate {
|
|
my ($date)=$_;
|
|
|
|
if($date =~ /(\d\d\d\d)-(\d\d)-(\d\d)/) {
|
|
return sprintf("%d %s %4d", $3, $mname[$2-1], $1);
|
|
}
|
|
return $date;
|
|
}
|
|
|
|
print
|
|
' _ _ ____ _
|
|
___| | | | _ \| |
|
|
/ __| | | | |_) | |
|
|
| (__| |_| | _ <| |___
|
|
\___|\___/|_| \_\_____|
|
|
|
|
Changelog
|
|
';
|
|
|
|
my $line;
|
|
my $tag;
|
|
while(<STDIN>) {
|
|
my $l = $_;
|
|
|
|
if($l =~/^commit ([[:xdigit:]]*) ?(.*)/) {
|
|
$co = $1;
|
|
my $ref = $2;
|
|
if ($ref =~ /refs\/tags\/curl-([0-9_]*)/) {
|
|
$tag = $1;
|
|
$tag =~ tr/_/./;
|
|
}
|
|
}
|
|
elsif($l =~ /^Author: *(.*) +</) {
|
|
$a = $1;
|
|
}
|
|
elsif($l =~ /^Commit: *(.*) +</) {
|
|
$c = $1;
|
|
}
|
|
elsif($l =~ /^CommitDate: (.*)/) {
|
|
$date = nicedate($1);
|
|
}
|
|
elsif($l =~ /^( )(.*)/) {
|
|
my $extra;
|
|
if ($tag) {
|
|
# Version entries have a special format
|
|
print "\nVersion " . $tag." ($date)\n";
|
|
$oldc = "";
|
|
$tag = "";
|
|
}
|
|
if($a ne $c) {
|
|
$extra=sprintf("\n- [%s brought this change]\n\n ", $a);
|
|
}
|
|
else {
|
|
$extra="\n- ";
|
|
}
|
|
if($co ne $oldco) {
|
|
if($c ne $oldc) {
|
|
print "\n$c ($date)$extra";
|
|
}
|
|
else {
|
|
print "$extra";
|
|
}
|
|
$line =0;
|
|
}
|
|
|
|
$oldco = $co;
|
|
$oldc = $c;
|
|
$olddate = $date;
|
|
if($line++) {
|
|
print " ";
|
|
}
|
|
print $2."\n";
|
|
}
|
|
}
|