From: Daniel Stenberg Date: Wed, 8 Jan 2025 22:48:48 +0000 (+0100) Subject: scripts/delta: add number of days since first httpget release X-Git-Tag: curl-8_12_0~178 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=616b66e68f8e29db22896da8974a42496affaf4b;p=thirdparty%2Fcurl.git scripts/delta: add number of days since first httpget release --- diff --git a/scripts/delta b/scripts/delta index 43bc25ce1b..82c2ba1e69 100755 --- a/scripts/delta +++ b/scripts/delta @@ -95,6 +95,7 @@ chomp $taggednice; $now=`date +%s`; $elapsed=$now - $tagged; # number of seconds since tag $total=$now - `date -d 19980320 +%s`; +$totalhttpget=$now - `date -d 19961111 +%s`; # Number of public functions in libcurl $apublic=`git grep ^CURL_EXTERN -- include/curl | wc -l`; @@ -141,8 +142,8 @@ close(F); print "== Since $start $taggednice ==\n"; my $days = $elapsed / 3600 / 24; -printf "Elapsed time: %.1f days (total %d)\n", - $days, $total / 3600 / 24; +printf "Elapsed time: %.1f days (total %d / %d)\n", + $days, $total / 3600 / 24, $totalhttpget / 3600 / 24; printf "Commits: %d (total %d)\n", $commits, $acommits; printf "Commit authors: %d, %d new (total %d)\n",