Skip to content

Commit 205ff11

Browse files
committed
Add recipes for computing git statistics
1 parent f3f1269 commit 205ff11

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

tools/make/lib/stats/git.mk

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,3 +1341,47 @@ stats-tabulate-total-commits-per-day:
13411341

13421342
.PHONY: stats-tabulate-total-commits-per-day
13431343

1344+
1345+
# Compute number of tools packages added per day.
1346+
#
1347+
# This target computes the number of tools packages added per day.
1348+
1349+
stats-tools-pkgs-per-day:
1350+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_day
1351+
$(QUIET) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_day
1352+
1353+
.PHONY: stats-tools-pkgs-per-day
1354+
1355+
1356+
# Compute number of tools packages added per hour.
1357+
#
1358+
# This target computes the number of tools packages added per hour.
1359+
1360+
stats-tools-pkgs-per-hour:
1361+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_hour
1362+
$(QUIET) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_hour
1363+
1364+
.PHONY: stats-tools-pkgs-per-hour
1365+
1366+
1367+
# Compute number of tools packages added per month.
1368+
#
1369+
# This target computes the number of tools packages added per month.
1370+
1371+
stats-tools-pkgs-per-month:
1372+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_month
1373+
$(QUIET) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_month
1374+
1375+
.PHONY: stats-tools-pkgs-per-month
1376+
1377+
1378+
# Compute number of tools packages added per weekday.
1379+
#
1380+
# This target computes the number of tools packages added per weekday.
1381+
1382+
stats-tools-pkgs-per-weekday:
1383+
$(QUIET) $(MAKE_EXECUTABLE) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_weekday
1384+
$(QUIET) $(GIT_SCRIPTS_DIR)/tools_pkgs_per_weekday
1385+
1386+
.PHONY: stats-tools-pkgs-per-weekday
1387+

0 commit comments

Comments
 (0)