-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile
More file actions
57 lines (43 loc) · 1.58 KB
/
Copy pathMakefile
File metadata and controls
57 lines (43 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
export PYTHONPATH := $(CURDIR)/lib:$(CURDIR)/test
addon_xml := addon.xml
# 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)-$(subst /,_,$(git_branch))-$(git_hash).zip
include_files = addon.xml LICENSE.txt README.md icon.png lib/
include_paths = $(patsubst %,$(name)/%,$(include_files))
exclude_files = \*.new \*.orig \*.pyc \*.pyo
zip_dir = $(name)/
blue = \e[1;34m
white = \e[1;37m
reset = \e[0;39m
.PHONY: test
all: test zip
package: zip
test: sanity unit
sanity: tox pylint
tox:
@echo -e "$(white)=$(blue) Starting sanity tox test$(reset)"
tox -q
pylint:
@echo -e "$(white)=$(blue) Starting sanity pylint test$(reset)"
pylint lib/AddonSignals.py test
addon: clean
@echo -e "$(white)=$(blue) Starting sanity addon tests$(reset)"
kodi-addon-checker . --branch=gotham
unit: clean
@echo -e "$(white)=$(blue) Starting unit tests$(reset)"
python -m unittest discover
zip: clean
@echo -e "$(white)=$(blue) Building new package$(reset)"
@rm -f ../$(zip_name)
cd ..; zip -r $(zip_name) $(include_paths) -x $(exclude_files)
@echo -e "$(white)=$(blue) Successfully wrote package as: $(white)../$(zip_name)$(reset)"
clean:
@echo -e "$(white)=$(blue) Cleaning up$(reset)"
find . -name '*.pyc' -type f -delete
find . -name '*.pyo' -type f -delete
find . -name '__pycache__' -type d -delete
rm -rf .pytest_cache/ .tox/ *.log