]> Git Repo - buildroot-mgba.git/commitdiff
utils/check-package: don't ignore check-package
authorYann E. MORIN <[email protected]>
Sun, 31 Mar 2024 20:21:52 +0000 (22:21 +0200)
committerYann E. MORIN <[email protected]>
Sun, 31 Mar 2024 20:21:52 +0000 (22:21 +0200)
Commit 32934b526b64 (utils/checkpackagelib: check for Upstream trailers)
introduced a new python module to check Upstream tags in patch files. In
doing so, it introduced a flake8 coding style issue. That was not caught
when applying the change, and neither was it caught by our daily checks,
because the .checkpackagefile was regenerated right just in the next
commit, to apply ignore patterns to existing patch files.

It is a bit sad that one of our checks does not itself passes all our
checks...

Fix that trivial issue now.

Signed-off-by: Yann E. MORIN <[email protected]>
.checkpackageignore
utils/checkpackagelib/lib_patch.py

index b7d45df2a244cf198fbbcf0eaa46d5559f87aece..6f8d37feefca45e70975ff70367f87cb42eceb9f 100644 (file)
@@ -1462,4 +1462,3 @@ support/scripts/setlocalversion Shellcheck
 support/testing/tests/core/post-build.sh Shellcheck
 support/testing/tests/package/test_opkg/post-build.sh Shellcheck
 support/testing/tests/utils/test_get_developers/0001-package-binutils-change-.mk.patch NumberedSubject Upstream
-utils/checkpackagelib/lib_patch.py Flake8
index 1909d3acd063800345b9e040c05b74bb3a05b96c..b01d28a7e72a487e427a17cc17bce3f0db4d58a2 100644 (file)
@@ -62,6 +62,7 @@ class Sob(_CheckFunction):
                     "({}#_format_and_licensing_of_the_package_patches)"
                     .format(self.filename, self.url_to_manual)]
 
+
 class Upstream(_CheckFunction):
     UPSTREAM_ENTRY = re.compile(r"^Upstream: .*$")
 
This page took 0.039761 seconds and 4 git commands to generate.