mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
cve-update-db-native: Allow to overrule the URL in a bbappend.
With this small patch, it's possible to overrule the public URL with a local mirror for those without Internet access. (From OE-Core rev: 2d903126e8bbece3a5171c3488c3deae1f0aa3ee) Signed-off-by: Jan Vermaete <jan.vermaete@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -12,6 +12,8 @@ deltask do_compile
|
|||||||
deltask do_install
|
deltask do_install
|
||||||
deltask do_populate_sysroot
|
deltask do_populate_sysroot
|
||||||
|
|
||||||
|
NVDCVE_URL ?= "https://nvd.nist.gov/feeds/json/cve/1.1/nvdcve-1.1-"
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
if not bb.data.inherits_class("cve-check", d):
|
if not bb.data.inherits_class("cve-check", d):
|
||||||
raise bb.parse.SkipRecipe("Skip recipe when cve-check class is not loaded.")
|
raise bb.parse.SkipRecipe("Skip recipe when cve-check class is not loaded.")
|
||||||
@@ -28,7 +30,6 @@ python do_fetch() {
|
|||||||
|
|
||||||
bb.utils.export_proxies(d)
|
bb.utils.export_proxies(d)
|
||||||
|
|
||||||
BASE_URL = "https://nvd.nist.gov/feeds/json/cve/1.1/nvdcve-1.1-"
|
|
||||||
YEAR_START = 2002
|
YEAR_START = 2002
|
||||||
|
|
||||||
db_file = d.getVar("CVE_CHECK_DB_FILE")
|
db_file = d.getVar("CVE_CHECK_DB_FILE")
|
||||||
@@ -64,7 +65,7 @@ python do_fetch() {
|
|||||||
for i, year in enumerate(range(YEAR_START, date.today().year + 1)):
|
for i, year in enumerate(range(YEAR_START, date.today().year + 1)):
|
||||||
bb.debug(2, "Updating %d" % year)
|
bb.debug(2, "Updating %d" % year)
|
||||||
ph.update((float(i + 1) / total_years) * 100)
|
ph.update((float(i + 1) / total_years) * 100)
|
||||||
year_url = BASE_URL + str(year)
|
year_url = (d.getVar('NVDCVE_URL')) + str(year)
|
||||||
meta_url = year_url + ".meta"
|
meta_url = year_url + ".meta"
|
||||||
json_url = year_url + ".json.gz"
|
json_url = year_url + ".json.gz"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user