pkg-stats: fix whitespaces
[buildroot-gz.git] / support / scripts / pkg-stats
blobf5d6ec8df519bb2971b55b7c34d06dd5fc4c6d9e
1 #!/bin/bash
3 # Copyright (C) 2009 by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # This script generates an HTML file that contains a report about all
20 # Buildroot packages, their usage of the different package
21 # infrastructure and possible cleanup actions
23 # Run the script from the Buildroot toplevel directory:
25 # ./support/scripts/pkg-stats > /tmp/pkg.html
28 echo "<head>
29 <style type=\"text/css\">
30 table {
31 width: 100%;
33 td {
34 border: 1px solid black;
36 td.centered {
37 text-align: center;
39 td.wrong {
40 background: #ff9a69;
42 td.correct {
43 background: #d2ffc4;
45 td.nopatches {
46 background: #d2ffc4;
49 td.somepatches {
50 background: #ffd870;
53 td.lotsofpatches {
54 background: #ff9a69;
56 </style>
57 <title>Statistics of Buildroot packages</title>
58 </head>
60 <a href=\"#results\">Results</a><br/>
62 <table>
63 <tr>
64 <td>Id</td>
65 <td>Package</td>
66 <td class=\"centered\">Patch count</td>
67 <td class=\"centered\">Infrastructure</td>
68 <td class=\"centered\">License</td>
69 <td class=\"centered\">License files</td>
70 </tr>
73 autotools_packages=0
74 cmake_packages=0
75 luarocks_package=0
76 perl_packages=0
77 python_packages=0
78 virtual_packages=0
79 generic_packages=0
80 manual_packages=0
81 packages_with_licence=0
82 packages_without_licence=0
83 packages_with_license_files=0
84 packages_without_license_files=0
85 total_patch_count=0
86 cnt=0
88 for i in $(find boot/ linux/ package/ -name '*.mk' | sort) ; do
90 if test \
91 $i = "boot/common.mk" -o \
92 $i = "linux/linux-ext-xenomai.mk" -o \
93 $i = "linux/linux-ext-rtai.mk" -o \
94 $i = "package/efl/efl.mk" -o \
95 $i = "package/freescale-imx/freescale-imx.mk" -o \
96 $i = "package/gcc/gcc.mk" -o \
97 $i = "package/gstreamer/gstreamer.mk" -o \
98 $i = "package/gstreamer1/gstreamer1.mk" -o \
99 $i = "package/gtk2-themes/gtk2-themes.mk" -o \
100 $i = "package/matchbox/matchbox.mk" -o \
101 $i = "package/opengl/opengl.mk" -o \
102 $i = "package/qt5/qt5.mk" -o \
103 $i = "package/x11r7/x11r7.mk" -o \
104 $i = "package/pkg-autotools.mk" -o \
105 $i = "package/pkg-cmake.mk" -o \
106 $i = "package/pkg-luarocks.mk" -o \
107 $i = "package/pkg-perl.mk" -o \
108 $i = "package/pkg-python.mk" -o \
109 $i = "package/pkg-virtual.mk" -o \
110 $i = "package/pkg-download.mk" -o \
111 $i = "package/pkg-generic.mk" -o \
112 $i = "package/pkg-utils.mk" ; then
113 echo "skipping $i" 1>&2
114 continue
117 cnt=$((cnt+1))
119 hashost=0
120 hastarget=0
121 infratype=""
123 # Determine package infrastructure
124 if grep -E "\(host-autotools-package\)" $i > /dev/null ; then
125 infratype="autotools"
126 hashost=1
129 if grep -E "\(autotools-package\)" $i > /dev/null ; then
130 infratype="autotools"
131 hastarget=1
134 if grep -E "\(host-luarocks-package\)" $i > /dev/null ; then
135 infratype="luarocks"
136 hashost=1
139 if grep -E "\(luarocks-package\)" $i > /dev/null ; then
140 infratype="luarocks"
141 hastarget=1
144 if grep -E "\(host-perl-package\)" $i > /dev/null ; then
145 infratype="perl"
146 hashost=1
149 if grep -E "\(perl-package\)" $i > /dev/null ; then
150 infratype="perl"
151 hastarget=1
154 if grep -E "\(host-python-package\)" $i > /dev/null ; then
155 infratype="python"
156 hashost=1
159 if grep -E "\(python-package\)" $i > /dev/null ; then
160 infratype="python"
161 hastarget=1
163 if grep -E "\(host-virtual-package\)" $i > /dev/null ; then
164 infratype="virtual"
165 hashost=1
168 if grep -E "\(virtual-package\)" $i > /dev/null ; then
169 infratype="virtual"
170 hastarget=1
173 if grep -E "\(host-generic-package\)" $i > /dev/null ; then
174 infratype="generic"
175 hashost=1
178 if grep -E "\(generic-package\)" $i > /dev/null ; then
179 infratype="generic"
180 hastarget=1
183 if grep -E "\(host-cmake-package\)" $i > /dev/null ; then
184 infratype="cmake"
185 hashost=1
188 if grep -E "\(cmake-package\)" $i > /dev/null ; then
189 infratype="cmake"
190 hastarget=1
193 pkg=$(basename $i)
194 pkg=${pkg%.mk}
195 pkgvariable=$(echo ${pkg} | tr "a-z-" "A-Z_")
198 # Count packages per infrastructure
199 if [ -z ${infratype} ] ; then
200 infratype="manual"
201 manual_packages=$(($manual_packages+1))
202 elif [ ${infratype} = "autotools" ]; then
203 autotools_packages=$(($autotools_packages+1))
204 elif [ ${infratype} = "cmake" ]; then
205 cmake_packages=$(($cmake_packages+1))
206 elif [ ${infratype} = "luarocks" ]; then
207 luarocks_packages=$(($luarocks_packages+1))
208 elif [ ${infratype} = "perl" ]; then
209 perl_packages=$(($perl_packages+1))
210 elif [ ${infratype} = "python" ]; then
211 python_packages=$(($python_packages+1))
212 elif [ ${infratype} = "virtual" ]; then
213 virtual_packages=$(($virtual_packages+1))
214 elif [ ${infratype} = "generic" ]; then
215 generic_packages=$(($generic_packages+1))
218 if grep -qE "^${pkgvariable}_LICENSE[ ]*=" $i ; then
219 packages_with_license=$(($packages_with_license+1))
220 license=1
221 else
222 packages_without_license=$(($packages_without_license+1))
223 license=0
226 if grep -qE "^${pkgvariable}_LICENSE_FILES[ ]*=" $i ; then
227 packages_with_license_files=$(($packages_with_license_files+1))
228 license_files=1
229 else
230 packages_without_license_files=$(($packages_without_license_files+1))
231 license_files=0
234 echo "<tr>"
236 echo "<td>$cnt</td>"
237 echo "<td>$i</td>"
239 package_dir=$(dirname $i)
240 patch_count=$(find ${package_dir} -name '*.patch' | wc -l)
241 total_patch_count=$(($total_patch_count+$patch_count))
243 if test $patch_count -lt 1 ; then
244 patch_count_class="nopatches"
245 elif test $patch_count -lt 5 ; then
246 patch_count_class="somepatches"
247 else
248 patch_count_class="lotsofpatches"
251 echo "<td class=\"centered ${patch_count_class}\">"
252 echo "<b>$patch_count</b>"
253 echo "</td>"
255 if [ ${infratype} = "manual" ] ; then
256 echo "<td class=\"centered wrong\"><b>manual</b></td>"
257 else
258 echo "<td class=\"centered correct\">"
259 echo "<b>${infratype}</b><br/>"
260 if [ ${hashost} -eq 1 -a ${hastarget} -eq 1 ]; then
261 echo "target + host"
262 elif [ ${hashost} -eq 1 ]; then
263 echo "host"
264 else
265 echo "target"
267 echo "</td>"
270 if [ ${license} -eq 0 ] ; then
271 echo "<td class=\"centered wrong\">No</td>"
272 else
273 echo "<td class=\"centered correct\">Yes</td>"
276 if [ ${license_files} -eq 0 ] ; then
277 echo "<td class=\"centered wrong\">No</td>"
278 else
279 echo "<td class=\"centered correct\">Yes</td>"
282 echo "</tr>"
284 done
285 echo "</table>"
287 echo "<a id="results"></a>"
288 echo "<table>"
289 echo "<tr>"
290 echo "<td>Packages using the <i>generic</i> infrastructure</td>"
291 echo "<td>$generic_packages</td>"
292 echo "</tr>"
293 echo "<tr>"
294 echo "<td>Packages using the <i>cmake</i> infrastructure</td>"
295 echo "<td>$cmake_packages</td>"
296 echo "</tr>"
297 echo "<tr>"
298 echo "<td>Packages using the <i>autotools</i> infrastructure</td>"
299 echo "<td>$autotools_packages</td>"
300 echo "</tr>"
301 echo "<tr>"
302 echo "<td>Packages using the <i>luarocks</i> infrastructure</td>"
303 echo "<td>$luarocks_packages</td>"
304 echo "</tr>"
305 echo "<tr>"
306 echo "<td>Packages using the <i>perl</i> infrastructure</td>"
307 echo "<td>$perl_packages</td>"
308 echo "</tr>"
309 echo "<tr>"
310 echo "<td>Packages using the <i>python</i> infrastructure</td>"
311 echo "<td>$python_packages</td>"
312 echo "</tr>"
313 echo "<tr>"
314 echo "<td>Packages using the <i>virtual</i> infrastructure</td>"
315 echo "<td>$virtual_packages</td>"
316 echo "</tr>"
317 echo "<tr>"
318 echo "<td>Packages not using any infrastructure</td>"
319 echo "<td>$manual_packages</td>"
320 echo "</tr>"
321 echo "<tr>"
322 echo "<td>Packages having license information</td>"
323 echo "<td>$packages_with_license</td>"
324 echo "</tr>"
325 echo "<tr>"
326 echo "<td>Packages not having licence information</td>"
327 echo "<td>$packages_without_license</td>"
328 echo "</tr>"
329 echo "<tr>"
330 echo "<td>Packages having license files information</td>"
331 echo "<td>$packages_with_license_files</td>"
332 echo "</tr>"
333 echo "<tr>"
334 echo "<td>Packages not having licence files information</td>"
335 echo "<td>$packages_without_license_files</td>"
336 echo "</tr>"
337 echo "<tr>"
338 echo "<td>Number of patches in all packages</td>"
339 echo "<td>$total_patch_count</td>"
340 echo "</tr>"
341 echo "<tr>"
342 echo "<td>TOTAL</td>"
343 echo "<td>$cnt</td>"
344 echo "</tr>"
345 echo "</table>"
347 echo "<hr/>"
348 echo "<i>Updated on $(LANG=C date), Git commit $(git log master -n 1 --pretty=format:%H)</i>"
349 echo "</body>"
350 echo "</html>"