diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-02-28 22:09:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-02-28 23:04:16 +0100 |
commit | b927b5f3020918b574474b5fd80969fad023a837 (patch) | |
tree | 0f884388597c350817769c37177ecd713629d910 | |
parent | 1ff216b789067d58c96775d8d1db2c11a7fda31e (diff) |
pkg-stats: add statistics about number of patches per package
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rwxr-xr-x | scripts/pkg-stats | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/scripts/pkg-stats b/scripts/pkg-stats index 9607da2bd..7bb292830 100755 --- a/scripts/pkg-stats +++ b/scripts/pkg-stats @@ -51,6 +51,7 @@ tr.correct td { <tr> <td rowspan=\"2\">Id</td> <td rowspan=\"2\">Package</td> +<td>Patch count</td> <td colspan=\"2\" class=\"centered\">AUTOTARGETS</td> <td colspan=\"2\" class=\"centered\">GENTARGETS</td> <td colspan=\"2\" class=\"centered\">CMAKETARGETS</td> @@ -71,6 +72,7 @@ tr.correct td { convert_to_generic_target=0 convert_to_generic_host=0 convert_to_autotools=0 +total_patch_count=0 cnt=1 for i in $(find package/ -name '*.mk') ; do @@ -163,6 +165,22 @@ for i in $(find package/ -name '*.mk') ; do echo "<td>$cnt</td>" echo "<td>$i</td>" + package_dir=$(dirname $i) + patch_count=$(find ${package_dir} -name '*.patch' | wc -l) + total_patch_count=$(($total_patch_count+$patch_count)) + + if test $patch_count -lt 1 ; then + patch_count_color="#00ff00" + elif test $patch_count -lt 5 ; then + patch_count_color="#ffc600" + else + patch_count_color="#ff0000" + fi + + echo "<td class=\"centered\" style=\"color: $patch_count_color; font-weight: bold;\">" + echo $patch_count + echo "</td>" + echo "<td class=\"centered\">" if [ $is_auto_host -eq 1 ] ; then echo "<b>YES</b>" @@ -256,6 +274,10 @@ echo "<td>Packages to convert to host autotools</td>" echo "<td>$convert_to_host_autotools</td>" echo "</tr>" echo "<tr>" +echo "<td>Number of patches in all packages</td>" +echo "<td>$total_patch_count</td>" +echo "</tr>" +echo "<tr>" echo "<td>TOTAL</td>" echo "<td>$cnt</td>" echo "</tr>" |