|
|
#!/usr/bin/env perl |
|
|
#*************************************************************************** |
|
|
# _ _ ____ _ |
|
|
# Project ___| | | | _ \| | |
|
|
# / __| | | | |_) | | |
|
|
# | (__| |_| | _ <| |___ |
|
|
# \___|\___/|_| \_\_____| |
|
|
# |
|
|
# Copyright (C) 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: |
|
|
# |
|
|
# 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. |
|
|
# |
|
|
# SPDX-License-Identifier: curl |
|
|
# |
|
|
########################################################################### |
|
|
|
|
|
# Display changes done in the repository from [tag] until now. |
|
|
# |
|
|
# Uses git for repo data. |
|
|
# Uses docs/THANKS and RELEASE-NOTES for current status. |
|
|
# |
|
|
# In the git clone root, invoke 'scripts/delta [release tag]' |
|
|
|
|
|
$start = $ARGV[0]; |
|
|
|
|
|
if($start eq "-h") { |
|
|
print "Usage: summary [tag]\n"; |
|
|
exit; |
|
|
} |
|
|
elsif($start eq "") { |
|
|
$start = `git tag --sort=taggerdate | grep "^curl-" | tail -1`; |
|
|
chomp $start; |
|
|
} |
|
|
|
|
|
$commits = `git log --oneline $start.. | wc -l`; |
|
|
$committers = `git shortlog -s $start.. | wc -l`; |
|
|
$bcommitters = `git shortlog -s $start | wc -l`; |
|
|
|
|
|
$acommits = `git log --oneline | wc -l`; |
|
|
$acommitters = `git shortlog -s | wc -l`; |
|
|
|
|
|
# delta from now compared to before |
|
|
$ncommitters = $acommitters - $bcommitters; |
|
|
|
|
|
# number of contributors right now |
|
|
$acontribs = `./scripts/contrithanks.sh | grep -c '^[^ ]'`; |
|
|
# number when the tag was set |
|
|
$bcontribs = `git show $start:docs/THANKS | grep -c '^[^ ]'`; |
|
|
# delta |
|
|
$contribs = $acontribs - $bcontribs; |
|
|
|
|
|
# number of setops: |
|
|
sub setopts { |
|
|
my ($f)=@_; |
|
|
open(H, "$f"); |
|
|
my $opts; |
|
|
while(<H>) { |
|
|
if(/^ CURLOPT(|DEPRECATED)\(/ && ($_ !~ /OBSOLETE/)) { |
|
|
$opts++; |
|
|
} |
|
|
} |
|
|
close(H); |
|
|
return $opts; |
|
|
} |
|
|
$asetopts = setopts("<include/curl/curl.h"); |
|
|
$bsetopts = setopts("git show $start:include/curl/curl.h|"); |
|
|
$nsetopts = $asetopts - $bsetopts; |
|
|
|
|
|
# Number of command line options: |
|
|
$aoptions=`grep -c '{"....--' src/tool_listhelp.c`; |
|
|
$boptions=`git show $start:src/tool_listhelp.c 2>/dev/null | grep -c '{"....--'`; |
|
|
$noptions=$aoptions - $boptions; |
|
|
|
|
|
# current local branch |
|
|
$branch=`git rev-parse --abbrev-ref HEAD 2>/dev/null`; |
|
|
chomp $branch; |
|
|
# Number of files in git |
|
|
$afiles=`git ls-files | wc -l`; |
|
|
$deletes=`git diff-tree --diff-filter=A -r --summary origin/$branch $start 2>/dev/null | wc -l`; |
|
|
$creates=`git diff-tree --diff-filter=D -r --summary origin/$branch $start 2>/dev/null| wc -l`; |
|
|
|
|
|
# Time since that tag |
|
|
$tagged=`git for-each-ref --format="%(refname:short) | %(taggerdate:unix)" refs/tags |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|