diff options
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index a9be88e816..fdc20c41a5 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -25,7 +25,7 @@ QA_SANE = "True" | |||
25 | WARN_QA ?= "ldflags useless-rpaths rpaths staticdev libdir xorg-driver-abi \ | 25 | WARN_QA ?= "ldflags useless-rpaths rpaths staticdev libdir xorg-driver-abi \ |
26 | textrel already-stripped incompatible-license files-invalid \ | 26 | textrel already-stripped incompatible-license files-invalid \ |
27 | installed-vs-shipped compile-host-path install-host-path \ | 27 | installed-vs-shipped compile-host-path install-host-path \ |
28 | pn-overrides infodir build-deps \ | 28 | pn-overrides infodir build-deps src-uri-bad \ |
29 | unknown-configure-option symlink-to-sysroot multilib \ | 29 | unknown-configure-option symlink-to-sysroot multilib \ |
30 | invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \ | 30 | invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \ |
31 | " | 31 | " |
@@ -892,6 +892,17 @@ def package_qa_check_host_user(path, name, d, elf, messages): | |||
892 | return False | 892 | return False |
893 | return True | 893 | return True |
894 | 894 | ||
895 | QARECIPETEST[src-uri-bad] = "package_qa_check_src_uri" | ||
896 | def package_qa_check_src_uri(pn, d, messages): | ||
897 | import re | ||
898 | |||
899 | if "${PN}" in d.getVar("SRC_URI", False): | ||
900 | package_qa_handle_error("src-uri-bad", "%s: SRC_URI uses PN not BPN" % pn, d) | ||
901 | |||
902 | pn = d.getVar("SRC_URI") | ||
903 | if re.search(r"github\.com/.+/.+/archive/.+", pn): | ||
904 | package_qa_handle_error("src-uri-bad", "%s: SRC_URI uses unstable GitHub archives" % pn, d) | ||
905 | |||
895 | 906 | ||
896 | # The PACKAGE FUNC to scan each package | 907 | # The PACKAGE FUNC to scan each package |
897 | python do_package_qa () { | 908 | python do_package_qa () { |