mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 05:29:32 +00:00
insane: add sanity checks to SRC_URI
The SRC_URI almost definitely shouldn't be using ${PN}, and GitHub */archive/*
tarballs are dynamically generated so the checksums will change over time.
Detect both of these, and emit a QA warning if found.
(From OE-Core rev: 21f84fcdd659544437fe393285c407e1e9432043)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
609f77ae3b
commit
bef89e6a8b
@@ -25,7 +25,7 @@ QA_SANE = "True"
|
|||||||
WARN_QA ?= "ldflags useless-rpaths rpaths staticdev libdir xorg-driver-abi \
|
WARN_QA ?= "ldflags useless-rpaths rpaths staticdev libdir xorg-driver-abi \
|
||||||
textrel already-stripped incompatible-license files-invalid \
|
textrel already-stripped incompatible-license files-invalid \
|
||||||
installed-vs-shipped compile-host-path install-host-path \
|
installed-vs-shipped compile-host-path install-host-path \
|
||||||
pn-overrides infodir build-deps \
|
pn-overrides infodir build-deps src-uri-bad \
|
||||||
unknown-configure-option symlink-to-sysroot multilib \
|
unknown-configure-option symlink-to-sysroot multilib \
|
||||||
invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \
|
invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \
|
||||||
"
|
"
|
||||||
@@ -892,6 +892,17 @@ def package_qa_check_host_user(path, name, d, elf, messages):
|
|||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
QARECIPETEST[src-uri-bad] = "package_qa_check_src_uri"
|
||||||
|
def package_qa_check_src_uri(pn, d, messages):
|
||||||
|
import re
|
||||||
|
|
||||||
|
if "${PN}" in d.getVar("SRC_URI", False):
|
||||||
|
package_qa_handle_error("src-uri-bad", "%s: SRC_URI uses PN not BPN" % pn, d)
|
||||||
|
|
||||||
|
pn = d.getVar("SRC_URI")
|
||||||
|
if re.search(r"github\.com/.+/.+/archive/.+", pn):
|
||||||
|
package_qa_handle_error("src-uri-bad", "%s: SRC_URI uses unstable GitHub archives" % pn, d)
|
||||||
|
|
||||||
|
|
||||||
# The PACKAGE FUNC to scan each package
|
# The PACKAGE FUNC to scan each package
|
||||||
python do_package_qa () {
|
python do_package_qa () {
|
||||||
|
|||||||
Reference in New Issue
Block a user