66 lines
2.0 KiB
Makefile
66 lines
2.0 KiB
Makefile
export PYTHONPATH := $(CURDIR):$(CURDIR)/test
|
|
PYTHON := python
|
|
|
|
# Collect information to build as sensible package name
|
|
name = $(shell xmllint --xpath 'string(/addon/@id)' addon.xml)
|
|
version = $(shell xmllint --xpath 'string(/addon/@version)' addon.xml)
|
|
git_branch = $(shell git rev-parse --abbrev-ref HEAD)
|
|
git_hash = $(shell git rev-parse --short HEAD)
|
|
zip_name = $(name)-$(version)-$(git_branch)-$(git_hash).zip
|
|
include_files = addon_entry.py addon.xml CHANGELOG.md LICENSE README.md resources/ service_entry.py
|
|
include_paths = $(patsubst %,$(name)/%,$(include_files))
|
|
exclude_files = \*.new \*.orig \*.pyc \*.pyo
|
|
|
|
languages = $(filter-out en_gb, $(patsubst resources/language/resource.language.%, %, $(wildcard resources/language/*)))
|
|
|
|
.PHONY: check test
|
|
|
|
all: check test build
|
|
zip: build
|
|
|
|
check: check-pylint check-tox check-translations
|
|
|
|
check-pylint:
|
|
@echo ">>> Running pylint checks"
|
|
@$(PYTHON) -m pylint *.py resources/lib/ test/
|
|
|
|
check-tox:
|
|
@echo ">>> Running tox checks"
|
|
@$(PYTHON) -m tox -q
|
|
|
|
check-translations:
|
|
@echo ">>> Running translation checks"
|
|
@$(foreach lang,$(languages), \
|
|
msgcmp resources/language/resource.language.$(lang)/strings.po resources/language/resource.language.en_gb/strings.po; \
|
|
)
|
|
|
|
check-addon: clean build
|
|
@echo ">>> Running addon checks"
|
|
$(eval TMPDIR := $(shell mktemp -d))
|
|
@unzip ../${zip_name} -d ${TMPDIR}
|
|
cd ${TMPDIR} && kodi-addon-checker --branch=leia
|
|
@rm -rf ${TMPDIR}
|
|
|
|
test: test-unit
|
|
|
|
test-unit:
|
|
@echo ">>> Running unit tests"
|
|
@$(PYTHON) -m unittest discover -v -b -f
|
|
|
|
clean:
|
|
@find . -name '*.pyc' -type f -delete
|
|
@find . -name '*.pyo' -type f -delete
|
|
@find . -name '__pycache__' -type d -delete
|
|
@rm -rf .pytest_cache/ .tox/ test/cdm test/userdata/temp
|
|
@rm -f *.log .coverage
|
|
|
|
build: clean
|
|
@echo ">>> Building package"
|
|
@rm -f ../$(zip_name)
|
|
cd ..; zip -r $(zip_name) $(include_paths) -x $(exclude_files)
|
|
@echo "Successfully wrote package as: ../$(zip_name)"
|
|
|
|
release: build
|
|
rm -rf ../repo-plugins/$(name)/*
|
|
unzip ../$(zip_name) -d ../repo-plugins/
|