-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from essentialkaos/develop
Version 2.2.0
- Loading branch information
Showing
14 changed files
with
222 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
######################################################################################## | ||
|
||
export PATH := shellcheck-latest:$(PATH) | ||
|
||
######################################################################################## | ||
|
||
.DEFAULT_GOAL := help | ||
.PHONY = test help | ||
|
||
######################################################################################## | ||
|
||
get-shellcheck: ## Download latest version of shellcheck | ||
wget https://storage.googleapis.com/shellcheck/shellcheck-latest.linux.x86_64.tar.xz | ||
tar xf shellcheck-latest.linux.x86_64.tar.xz | ||
|
||
test: ## Run shellcheck tests | ||
shellcheck SOURCES/rpmbuilder SOURCES/libexec/*.shx | ||
shellcheck SOURCES/rpmunbuilder | ||
shellcheck SOURCES/buildmon | ||
shellcheck SOURCES/initenv | ||
shellcheck SOURCES/nodeinfo | ||
|
||
help: ## Show this info | ||
@echo -e '\nSupported targets:\n' | ||
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \ | ||
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[33m%-12s\033[0m %s\n", $$1, $$2}' | ||
@echo -e '' | ||
|
||
################################################################################ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from Config import * | ||
|
||
# This macro is platform specific and dumb, just skip this error | ||
addFilter("E: lib-package-without-%mklibname") | ||
|
||
# In some cases we build source archive with different tools (like gopack) | ||
addFilter("W: invalid-url") | ||
|
||
# Some configure scripts don't support libdir option | ||
addFilter("W: configure-without-libdir-spec") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.