pkg-stats: add statistics about number of patches per package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2011-02-28 22:09:20 +01:00
parent 1ff216b789
commit b927b5f302
1 changed files with 22 additions and 0 deletions

View File

@ -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>"