From 22a927e26b5a88ac64ac7ecd9d493620a93dae28 Mon Sep 17 00:00:00 2001 From: Alex Jaramillo Date: Tue, 1 Oct 2019 22:24:48 +0000 Subject: [PATCH] Removing cve-check-tool This tool no longer works and the repo looks abandoned (last commit 04/27/2017). The NVD cve database has changed format since. Signed-off-by: Alex Jaramillo --- Makefile.common | 7 ------- Makefile.toplevel | 6 ------ 2 files changed, 13 deletions(-) diff --git a/Makefile.common b/Makefile.common index 5111d45..d7a1ff5 100644 --- a/Makefile.common +++ b/Makefile.common @@ -49,13 +49,6 @@ spdxcheck: $(SPECFILE) if ! grep -qx "$$LICENSE" $(TOPLVL)/projects/common/licenses-{spdx,exceptions,extra}; then FAIL=yes; echo "ERROR: License '$$LICENSE' is not an allowed SPDX license ID"; fi; \ done; test -z "$$FAIL" -#help cvecheck: Checks -#help for common vulnerabilities and exposures in your package. -cvecheck: - # https://github.com/ikeydoherty/cve-check-tool - # Installation: https://github.com/ikeydoherty/cve-check-tool/wiki - cve-check-tool -M $(TOPLVL)/projects/common/mapping $(SPECFILE) - #help clean: Cleans up the src.rpm file. but not the rpm files or log files. clean: rm -f $(SRPMFILE) diff --git a/Makefile.toplevel b/Makefile.toplevel index e20d599..2ffa2bf 100644 --- a/Makefile.toplevel +++ b/Makefile.toplevel @@ -56,12 +56,6 @@ $(clone_PKGS): $(PACKAGES_FILE) packages/common/Makefile.common $(call subjectprefix,$$pkg); \ ) -#help cvecheck: Checks for common vulnerabilities and exposures in your code. -cvecheck: - # https://github.com/ikeydoherty/cve-check-tool - # Installation: https://github.com/ikeydoherty/cve-check-tool/wiki - cve-check-tool -n -M $(TOPLVL)/projects/common/mapping $(PACKAGES_FILE) - #help pull: Performs a git pull --rebase for each package repo, avoiding the creation #help of merge commits, while displaying any changes since your last pull. It is #help silent if there are no changes.