mirror of
https://github.com/daylinmorgan/task.mk.git
synced 2024-11-14 21:17:53 -06:00
Compare commits
2 commits
3244dba8dc
...
d0290aec94
Author | SHA1 | Date | |
---|---|---|---|
d0290aec94 | |||
fd96a454e8 |
5 changed files with 61 additions and 80 deletions
21
Makefile
21
Makefile
|
@ -4,9 +4,8 @@ TEMPLATES := $(shell find src/ -type f)
|
||||||
msg = $(if $(tprint),$(call tprint,{a.bold}==> {a.magenta}$(1){a.end}),@echo '==> $(1)')
|
msg = $(if $(tprint),$(call tprint,{a.bold}==> {a.magenta}$(1){a.end}),@echo '==> $(1)')
|
||||||
|
|
||||||
### task.mk development |> -d -ms b_green --align center
|
### task.mk development |> -d -ms b_green --align center
|
||||||
## bootstrap | generate local dev environment |> -ms b_magenta -gs b_cyan
|
|
||||||
.PHONY: bootstrap env hooks
|
.PHONY: bootstrap env hooks
|
||||||
bootstrap: env hooks
|
bootstrap: env hooks ## generate local dev environment |> -ms b_magenta -gs b_cyan
|
||||||
env:
|
env:
|
||||||
$(call msg,Bootstrapping Environment)
|
$(call msg,Bootstrapping Environment)
|
||||||
@mamba create -p ./env python jinja2 black -y
|
@mamba create -p ./env python jinja2 black -y
|
||||||
|
@ -16,16 +15,15 @@ hooks:
|
||||||
docs-env:
|
docs-env:
|
||||||
@mamba run -p ./env pip install mkdocs-material mkdocs-git-revision-date-localized-plugin
|
@mamba run -p ./env pip install mkdocs-material mkdocs-git-revision-date-localized-plugin
|
||||||
|
|
||||||
## l, lint | lint the python
|
|
||||||
.PHONY: l lint
|
.PHONY: l lint
|
||||||
l lint:
|
l lint: ## lint the python
|
||||||
$(call msg,Linting)
|
$(call msg,Linting)
|
||||||
@black generate.py
|
@black generate.py
|
||||||
@black src/*.py --fast
|
@black src/*.py --fast
|
||||||
|
|
||||||
## assets | generate assets
|
|
||||||
.PHONY: assets
|
.PHONY: assets
|
||||||
assets:
|
assets: ## generate assets
|
||||||
@yartsu -o assets/help.svg -t "make help" -- make --no-print-directory help
|
@yartsu -o assets/help.svg -t "make help" -- make --no-print-directory help
|
||||||
|
|
||||||
define release_sh
|
define release_sh
|
||||||
|
@ -36,15 +34,13 @@ git commit -m "release: $(VERSION)" --no-verify
|
||||||
git tag $(VERSION)
|
git tag $(VERSION)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
## release | release new version of task.mk
|
|
||||||
.PHONY: release
|
.PHONY: release
|
||||||
release: version-check
|
release: version-check ## release new version of task.mk
|
||||||
$(call msg,Release Project)
|
$(call msg,Release Project)
|
||||||
$(call tbash,release_sh)
|
$(call tbash,release_sh)
|
||||||
|
|
||||||
## c, clean | remove the generated files
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
c clean:
|
c clean: ## remove the generated files
|
||||||
@rm -f task.mk .task.mk
|
@rm -f task.mk .task.mk
|
||||||
|
|
||||||
define version_check_sh
|
define version_check_sh
|
||||||
|
@ -63,9 +59,8 @@ version-check:
|
||||||
@$(call tbash,version_check_sh)
|
@$(call tbash,version_check_sh)
|
||||||
@$(call tprint,>> {a.green}VERSION LOOKS GOOD!{a.end})
|
@$(call tprint,>> {a.green}VERSION LOOKS GOOD!{a.end})
|
||||||
|
|
||||||
## info | demonstrate usage of tprint
|
|
||||||
.PHONY: task
|
.PHONY: task
|
||||||
info:
|
info: ## demonstrate usage of tprint
|
||||||
$(call msg,Info Message)
|
$(call msg,Info Message)
|
||||||
$(call tprint,{a.black_on_cyan}This is task-print output:{a.end})
|
$(call tprint,{a.black_on_cyan}This is task-print output:{a.end})
|
||||||
$(call tprint,$(mlmsg))
|
$(call tprint,$(mlmsg))
|
||||||
|
@ -74,7 +69,7 @@ info:
|
||||||
task.mk: $(TEMPLATES) generate.py
|
task.mk: $(TEMPLATES) generate.py
|
||||||
./generate.py $(VERSION) > task.mk
|
./generate.py $(VERSION) > task.mk
|
||||||
|
|
||||||
-include .task.mk
|
-include .task.mk .task.cfg.mk
|
||||||
.task.mk: $(TEMPLATES) generate.py
|
.task.mk: $(TEMPLATES) generate.py
|
||||||
$(call msg,re-jinjaing the local .task.mk)
|
$(call msg,re-jinjaing the local .task.mk)
|
||||||
@./generate.py $(VERSION) > .task.mk || (echo "generator failed!!" && rm .task.mk)
|
@./generate.py $(VERSION) > .task.mk || (echo "generator failed!!" && rm .task.mk)
|
||||||
|
|
|
@ -3,8 +3,7 @@ ifeq (help,$(firstword $(MAKECMDGOALS)))
|
||||||
HELP_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
HELP_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
||||||
export HELP_ARGS
|
export HELP_ARGS
|
||||||
endif
|
endif
|
||||||
## h, help | show this help
|
h help: ## show this help
|
||||||
h help:
|
|
||||||
$(call py,help_py)
|
$(call py,help_py)
|
||||||
_help: export SHOW_HIDDEN=true
|
_help: export SHOW_HIDDEN=true
|
||||||
_help: help
|
_help: help
|
||||||
|
@ -14,17 +13,15 @@ $(foreach v,$(PRINT_VARS),$(eval export $(v)))
|
||||||
vars v:
|
vars v:
|
||||||
$(call py,vars_py,$(PRINT_VARS))
|
$(call py,vars_py,$(PRINT_VARS))
|
||||||
endif
|
endif
|
||||||
### | args: -ws --hidden
|
### |> -ws --hidden
|
||||||
### task.mk builtins: | args: -d --hidden
|
### task.mk builtins: |> -d --hidden
|
||||||
## _print-ansi | show all possible ansi color code combinations
|
_print-ansi: ## show all possible ansi color code combinations
|
||||||
_print-ansi:
|
|
||||||
$(call py,print_ansi_py)
|
$(call py,print_ansi_py)
|
||||||
# functions to take f-string literals and pass to python print
|
# functions to take f-string literals and pass to python print
|
||||||
tprint = $(call py,print_py,$(1))
|
tprint = $(call py,print_py,$(1))
|
||||||
tprint-sh = $(call pysh,print_py,$(1))
|
tprint-sh = $(call pysh,print_py,$(1))
|
||||||
tconfirm = $(call py,confirm_py,$(1))
|
tconfirm = $(call py,confirm_py,$(1))
|
||||||
## _update-task.mk | downloads latest development version of task.mk
|
_update-task.mk: ## downloads latest development version of task.mk
|
||||||
_update-task.mk:
|
|
||||||
$(call tprint,{a.b_cyan}Updating task.mk{a.end})
|
$(call tprint,{a.b_cyan}Updating task.mk{a.end})
|
||||||
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
||||||
.PHONY: h help _help _print-ansi _update-task.mk
|
.PHONY: h help _help _print-ansi _update-task.mk
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
# ---- [config] ---- #
|
# ---- [config] ---- #
|
||||||
-include .task.cfg.mk
|
|
||||||
HEADER_STYLE ?= b_cyan
|
HEADER_STYLE ?= b_cyan
|
||||||
ACCENT_STYLE ?= b_yellow
|
ACCENT_STYLE ?= b_yellow
|
||||||
PARAMS_STYLE ?= $(ACCENT_STYLE)
|
PARAMS_STYLE ?= $(ACCENT_STYLE)
|
||||||
|
|
48
src/help.py
48
src/help.py
|
@ -10,8 +10,7 @@ import sys
|
||||||
from textwrap import wrap
|
from textwrap import wrap
|
||||||
|
|
||||||
###-
|
###-
|
||||||
# this is just to trick the LSP during development
|
from utils import Ansi, cfg # this is just to trick the LSP during development
|
||||||
from utils import Ansi, cfg
|
|
||||||
|
|
||||||
# -###
|
# -###
|
||||||
##- '$(utils_py)' -##
|
##- '$(utils_py)' -##
|
||||||
|
@ -20,29 +19,23 @@ a = ansi = Ansi(target="stdout")
|
||||||
MaxLens = namedtuple("MaxLens", "goal msg")
|
MaxLens = namedtuple("MaxLens", "goal msg")
|
||||||
|
|
||||||
###- double dollar signs to prevent make escaping them -###
|
###- double dollar signs to prevent make escaping them -###
|
||||||
###- re.X requires all important whitespace is escaped -###
|
###- bets on how long until I break this regex? -###
|
||||||
pattern = re.compile(
|
pattern = re.compile(
|
||||||
r"""
|
r"""
|
||||||
^\#\#\
|
(?:
|
||||||
(?P<goal>.*?)\s?\|\s?(?P<msg>.*?)
|
^\#\#\#\s+
|
||||||
\s?
|
|
|
||||||
(?:
|
^(?:
|
||||||
(?:\|\s?args:\s?|\|>)
|
(?:\#\#\s+)?
|
||||||
\s?
|
(?P<goal>.*?)(?:\s+\|>|:.*?\#\#)\s+
|
||||||
(?P<msgargs>.*?)
|
)
|
||||||
)?
|
)
|
||||||
$$
|
(?P<msg>.*?)?\s?
|
||||||
|
|
(?:\|>\s+
|
||||||
^\#\#\#\
|
(?P<msgargs>.*?)
|
||||||
(?P<rawmsg>.*?)
|
)?
|
||||||
\s?
|
$$
|
||||||
(?:
|
""",
|
||||||
(?:\|\s?args:|\|\>)
|
|
||||||
\s?
|
|
||||||
(?P<rawargs>.*?)
|
|
||||||
)?
|
|
||||||
$$
|
|
||||||
""",
|
|
||||||
re.X,
|
re.X,
|
||||||
)
|
)
|
||||||
goal_pattern = re.compile(r"""^(?!#|\t)(.*):.*\n\t""", re.MULTILINE)
|
goal_pattern = re.compile(r"""^(?!#|\t)(.*):.*\n\t""", re.MULTILINE)
|
||||||
|
@ -189,7 +182,10 @@ def print_help():
|
||||||
|
|
||||||
items = list(parse_help(gen_makefile()))
|
items = list(parse_help(gen_makefile()))
|
||||||
maxlens = MaxLens(
|
maxlens = MaxLens(
|
||||||
*(max((len(item[x]) for item in items if x in item)) for x in ["goal", "msg"])
|
*(
|
||||||
|
max((*(len(item[x]) for item in items if x in item), 0))
|
||||||
|
for x in ["goal", "msg"]
|
||||||
|
)
|
||||||
)
|
)
|
||||||
for item in items:
|
for item in items:
|
||||||
if "goal" in item:
|
if "goal" in item:
|
||||||
|
@ -198,8 +194,8 @@ def print_help():
|
||||||
item["goal"], item["msg"], maxlens.goal, item.get("msgargs", "")
|
item["goal"], item["msg"], maxlens.goal, item.get("msgargs", "")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if "rawmsg" in item:
|
else:
|
||||||
lines.extend(fmt_rawmsg(item["rawmsg"], item.get("rawargs", ""), maxlens))
|
lines.extend(fmt_rawmsg(item["msg"], item.get("msgargs", ""), maxlens))
|
||||||
lines.append(cfg.epilog)
|
lines.append(cfg.epilog)
|
||||||
print("\n".join(lines))
|
print("\n".join(lines))
|
||||||
|
|
||||||
|
|
58
task.mk
58
task.mk
|
@ -1,7 +1,7 @@
|
||||||
# }> [github.com/daylinmorgan/task.mk] <{ #
|
# }> [github.com/daylinmorgan/task.mk] <{ #
|
||||||
# Copyright (c) 2022 Daylin Morgan
|
# Copyright (c) 2022 Daylin Morgan
|
||||||
# MIT License
|
# MIT License
|
||||||
# version: v22.9.28-8-g4fcab2adev
|
# version: v22.9.28-13-gfd96a45dev
|
||||||
#
|
#
|
||||||
# task.mk should be included at the bottom of your Makefile with `-include .task.mk`
|
# task.mk should be included at the bottom of your Makefile with `-include .task.mk`
|
||||||
# See below for the standard configuration options that should be set prior to including this file.
|
# See below for the standard configuration options that should be set prior to including this file.
|
||||||
|
@ -25,8 +25,7 @@ ifeq (help,$(firstword $(MAKECMDGOALS)))
|
||||||
HELP_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
HELP_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
|
||||||
export HELP_ARGS
|
export HELP_ARGS
|
||||||
endif
|
endif
|
||||||
## h, help | show this help
|
h help: ## show this help
|
||||||
h help:
|
|
||||||
$(call py,help_py)
|
$(call py,help_py)
|
||||||
_help: export SHOW_HIDDEN=true
|
_help: export SHOW_HIDDEN=true
|
||||||
_help: help
|
_help: help
|
||||||
|
@ -36,17 +35,15 @@ $(foreach v,$(PRINT_VARS),$(eval export $(v)))
|
||||||
vars v:
|
vars v:
|
||||||
$(call py,vars_py,$(PRINT_VARS))
|
$(call py,vars_py,$(PRINT_VARS))
|
||||||
endif
|
endif
|
||||||
### | args: -ws --hidden
|
### |> -ws --hidden
|
||||||
### task.mk builtins: | args: -d --hidden
|
### task.mk builtins: |> -d --hidden
|
||||||
## _print-ansi | show all possible ansi color code combinations
|
_print-ansi: ## show all possible ansi color code combinations
|
||||||
_print-ansi:
|
|
||||||
$(call py,print_ansi_py)
|
$(call py,print_ansi_py)
|
||||||
# functions to take f-string literals and pass to python print
|
# functions to take f-string literals and pass to python print
|
||||||
tprint = $(call py,print_py,$(1))
|
tprint = $(call py,print_py,$(1))
|
||||||
tprint-sh = $(call pysh,print_py,$(1))
|
tprint-sh = $(call pysh,print_py,$(1))
|
||||||
tconfirm = $(call py,confirm_py,$(1))
|
tconfirm = $(call py,confirm_py,$(1))
|
||||||
## _update-task.mk | downloads latest development version of task.mk
|
_update-task.mk: ## downloads latest development version of task.mk
|
||||||
_update-task.mk:
|
|
||||||
$(call tprint,{a.b_cyan}Updating task.mk{a.end})
|
$(call tprint,{a.b_cyan}Updating task.mk{a.end})
|
||||||
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
||||||
.PHONY: h help _help _print-ansi _update-task.mk
|
.PHONY: h help _help _print-ansi _update-task.mk
|
||||||
|
@ -92,26 +89,20 @@ a = ansi = Ansi(target="stdout")
|
||||||
MaxLens = namedtuple("MaxLens", "goal msg")
|
MaxLens = namedtuple("MaxLens", "goal msg")
|
||||||
pattern = re.compile(
|
pattern = re.compile(
|
||||||
r"""
|
r"""
|
||||||
^\#\#\
|
(?:
|
||||||
(?P<goal>.*?)\s?\|\s?(?P<msg>.*?)
|
^\#\#\#\s+
|
||||||
\s?
|
|
|
||||||
(?:
|
^(?:
|
||||||
(?:\|\s?args:\s?|\|>)
|
(?:\#\#\s+)?
|
||||||
\s?
|
(?P<goal>.*?)(?:\s+\|>|:.*?\#\#)\s+
|
||||||
(?P<msgargs>.*?)
|
)
|
||||||
)?
|
)
|
||||||
$$
|
(?P<msg>.*?)?\s?
|
||||||
|
|
(?:\|>\s+
|
||||||
^\#\#\#\
|
(?P<msgargs>.*?)
|
||||||
(?P<rawmsg>.*?)
|
)?
|
||||||
\s?
|
$$
|
||||||
(?:
|
""",
|
||||||
(?:\|\s?args:|\|\>)
|
|
||||||
\s?
|
|
||||||
(?P<rawargs>.*?)
|
|
||||||
)?
|
|
||||||
$$
|
|
||||||
""",
|
|
||||||
re.X,
|
re.X,
|
||||||
)
|
)
|
||||||
goal_pattern = re.compile(r"""^(?!#|\t)(.*):.*\n\t""", re.MULTILINE)
|
goal_pattern = re.compile(r"""^(?!#|\t)(.*):.*\n\t""", re.MULTILINE)
|
||||||
|
@ -234,7 +225,10 @@ def print_help():
|
||||||
lines = [cfg.usage]
|
lines = [cfg.usage]
|
||||||
items = list(parse_help(gen_makefile()))
|
items = list(parse_help(gen_makefile()))
|
||||||
maxlens = MaxLens(
|
maxlens = MaxLens(
|
||||||
*(max((len(item[x]) for item in items if x in item)) for x in ["goal", "msg"])
|
*(
|
||||||
|
max((*(len(item[x]) for item in items if x in item), 0))
|
||||||
|
for x in ["goal", "msg"]
|
||||||
|
)
|
||||||
)
|
)
|
||||||
for item in items:
|
for item in items:
|
||||||
if "goal" in item:
|
if "goal" in item:
|
||||||
|
@ -243,8 +237,8 @@ def print_help():
|
||||||
item["goal"], item["msg"], maxlens.goal, item.get("msgargs", "")
|
item["goal"], item["msg"], maxlens.goal, item.get("msgargs", "")
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
if "rawmsg" in item:
|
else:
|
||||||
lines.extend(fmt_rawmsg(item["rawmsg"], item.get("rawargs", ""), maxlens))
|
lines.extend(fmt_rawmsg(item["msg"], item.get("msgargs", ""), maxlens))
|
||||||
lines.append(cfg.epilog)
|
lines.append(cfg.epilog)
|
||||||
print("\n".join(lines))
|
print("\n".join(lines))
|
||||||
def print_arg_help(help_args):
|
def print_arg_help(help_args):
|
||||||
|
|
Loading…
Reference in a new issue