diff --git a/make-srpm.sh b/make-srpm.sh index e129ace..acad575 100755 --- a/make-srpm.sh +++ b/make-srpm.sh @@ -221,6 +221,13 @@ Requires: csmock-common %description -n csmock-plugin-snyk This package contains the snyk plug-in for csmock. +%package -n csmock-plugin-semgrep +Summary: csmock plug-in providing the support for semgrep scan. +Requires: csmock-common + +%description -n csmock-plugin-semgrep +This package contains the semgrep plug-in for csmock. + %package -n csmock-plugin-strace Summary: csmock plug-in providing the support for strace Requires: csexec @@ -343,6 +350,10 @@ This package contains the unicontrol plug-in for csmock. %{python3_sitelib}/csmock/plugins/snyk.py* %{python3_sitelib}/csmock/plugins/__pycache__/snyk.* +%files -n csmock-plugin-semgrep +%{python3_sitelib}/csmock/plugins/semgrep.py* +%{python3_sitelib}/csmock/plugins/__pycache__/semgrep.* + %files -n csmock-plugin-strace %{python3_sitelib}/csmock/plugins/strace.py* %{python3_sitelib}/csmock/plugins/__pycache__/strace.* diff --git a/py/CMakeLists.txt b/py/CMakeLists.txt index ea31c03..71412ee 100644 --- a/py/CMakeLists.txt +++ b/py/CMakeLists.txt @@ -66,6 +66,7 @@ if(ENABLE_CSMOCK) install_plugin(shellcheck) install_plugin(smatch) install_plugin(snyk) + install_plugin(semgrep) install_plugin(strace) install_plugin(symbiotic) install_plugin(valgrind)