mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
build: add .task.mk
This commit is contained in:
parent
743c67a39f
commit
34a024596d
2 changed files with 15 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -169,3 +169,4 @@ poetry.toml
|
||||||
|
|
||||||
|
|
||||||
# End of https://www.toptal.com/developers/gitignore/api/python
|
# End of https://www.toptal.com/developers/gitignore/api/python
|
||||||
|
.task.mk
|
||||||
|
|
18
Makefile
18
Makefile
|
@ -1,27 +1,32 @@
|
||||||
VERSION ?= $(shell git describe --tags --always --dirty=-dev | sed 's/^v//g')
|
VERSION ?= $(shell git describe --tags --always --dirty=-dev | sed 's/^v//g')
|
||||||
PREFIX ?= ~/bin
|
PREFIX ?= ~/bin
|
||||||
|
## lint | run pre-commit hooks
|
||||||
lint:
|
lint:
|
||||||
pdm run pre-commit run --all || pdm run pre-commit run --all
|
pdm run pre-commit run --all || pdm run pre-commit run --all
|
||||||
|
## types | run mypy
|
||||||
types:
|
types:
|
||||||
mypy src/viv
|
mypy src/viv
|
||||||
|
|
||||||
|
## bump-version | update version and tag commit
|
||||||
bump-version:
|
bump-version:
|
||||||
@echo "bumping to version => $(VERSION)"
|
@echo "bumping to version => $(VERSION)"
|
||||||
@sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py
|
@sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py
|
||||||
@git add src/viv/viv.py && git commit -m "chore: bump version"
|
@git add src/viv/viv.py && git commit -m "chore: bump version"
|
||||||
@git tag v$(VERSION)
|
@git tag v$(VERSION)
|
||||||
|
|
||||||
|
## env | generate environment
|
||||||
env:
|
env:
|
||||||
pdm install
|
pdm install
|
||||||
|
|
||||||
|
## install | symlink to $PREFIX
|
||||||
install:
|
install:
|
||||||
ln -sf $(shell pwd)/src/viv/viv.py $(PREFIX)/viv
|
ln -sf $(shell pwd)/src/viv/viv.py $(PREFIX)/viv
|
||||||
|
|
||||||
|
## uninstall | delete $(PREFIX)/viv
|
||||||
uninstall:
|
uninstall:
|
||||||
rm ~/bin/viv
|
rm $(PREFIX)/viv
|
||||||
|
|
||||||
|
## docs | generate usage examples
|
||||||
docs: docs/demo.gif docs/freeze.gif
|
docs: docs/demo.gif docs/freeze.gif
|
||||||
|
|
||||||
docs/%.gif: docs/%.tape
|
docs/%.gif: docs/%.tape
|
||||||
|
@ -33,4 +38,9 @@ generate-example-vivens:
|
||||||
for f in $(EXAMPLES); \
|
for f in $(EXAMPLES); \
|
||||||
do python examples/$$f; done
|
do python examples/$$f; done
|
||||||
|
|
||||||
.PHONY: env lint install uninstall bump-version types docs generate-example-vivens
|
.PHONY: env lint install uninstall \
|
||||||
|
bump-version types docs generate-example-vivens
|
||||||
|
|
||||||
|
USAGE={a.bold}==>{a.cyan} viv isn't venv{a.end}\n\ttasks:
|
||||||
|
-include .task.mk
|
||||||
|
$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v22.9.28/task.mk -o .task.mk))
|
||||||
|
|
Loading…
Reference in a new issue