All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v4 1/6] support/scripts/pkg-stats: ignore more makefiles that aren't packages
@ 2023-09-01 19:27 Daniel Lang
  2023-09-01 19:27 ` [Buildroot] [PATCH v4 2/6] support/scripts/pkg-stats: check all files for warnings Daniel Lang
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: Daniel Lang @ 2023-09-01 19:27 UTC (permalink / raw)
  To: buildroot; +Cc: Sen Hastings, Thomas Petazzoni

Some packages are grouped and have a general makefile that defines
reusable variables. These makefiles have no relevant information for
pkg-stats and should be excluded.

Signed-off-by: Daniel Lang <dalang@gmx.at>
---
v3 -> v4:
- Added more packages to ignore list, not just llvm-project
---
 support/scripts/pkg-stats | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats
index 28f5a0789c..eca638f396 100755
--- a/support/scripts/pkg-stats
+++ b/support/scripts/pkg-stats
@@ -338,16 +338,21 @@ def get_pkglist(npackages, package_list):
     package_list: limit to those packages in this list
     """
     WALK_USEFUL_SUBDIRS = ["boot", "linux", "package", "toolchain"]
-    WALK_EXCLUDES = ["boot/common.mk",
+    WALK_EXCLUDES = ["boot/barebox/barebox.mk",
+                     "boot/common.mk",
                      "linux/linux-ext-.*.mk",
+                     "package/fftw/fftw.mk",
                      "package/freescale-imx/freescale-imx.mk",
                      "package/gcc/gcc.mk",
                      "package/gstreamer/gstreamer.mk",
                      "package/gstreamer1/gstreamer1.mk",
                      "package/gtk2-themes/gtk2-themes.mk",
+                     "package/kf5/kf5.mk",
+                     "package/llvm-project/llvm-project.mk",
                      "package/matchbox/matchbox.mk",
                      "package/opengl/opengl.mk",
                      "package/qt5/qt5.mk",
+                     "package/qt6/qt6.mk",
                      "package/x11r7/x11r7.mk",
                      "package/doc-asciidoc.mk",
                      "package/pkg-.*.mk",
-- 
2.42.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2024-01-30 19:54 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-01 19:27 [Buildroot] [PATCH v4 1/6] support/scripts/pkg-stats: ignore more makefiles that aren't packages Daniel Lang
2023-09-01 19:27 ` [Buildroot] [PATCH v4 2/6] support/scripts/pkg-stats: check all files for warnings Daniel Lang
2023-11-08 21:42   ` Thomas Petazzoni via buildroot
2023-09-01 19:27 ` [Buildroot] [PATCH v4 3/6] support/scripts/nvd_api_v2.py: new helper class Daniel Lang
2023-11-08 21:55   ` Thomas Petazzoni via buildroot
2023-12-31 10:30     ` Daniel Lang via buildroot
2023-09-01 19:27 ` [Buildroot] [PATCH v4 4/6] support/scripts/cve.py: switch to NVD API v2 Daniel Lang
2024-01-12 19:39   ` Arnout Vandecappelle via buildroot
2024-01-28 19:40     ` Daniel Lang via buildroot
2024-01-30 19:53       ` Arnout Vandecappelle via buildroot
2023-09-01 19:27 ` [Buildroot] [PATCH v4 5/6] support/scripts/pkg-stats: switch CPEs " Daniel Lang
2023-09-01 19:27 ` [Buildroot] [PATCH v4 6/6] support/scripts/pkg-stats: Only match CPE vendor and product Daniel Lang
2023-11-08 21:42 ` [Buildroot] [PATCH v4 1/6] support/scripts/pkg-stats: ignore more makefiles that aren't packages Thomas Petazzoni via buildroot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.