mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-12-22 06:50:44 -06:00
update .task.mk
This commit is contained in:
parent
86020c4474
commit
58b19699b9
2 changed files with 177 additions and 163 deletions
330
.task.mk
330
.task.mk
|
@ -1,155 +1,167 @@
|
||||||
# }> [github.com/daylinmorgan/task.mk] <{ #
|
# }> [github.com/daylinmorgan/task.mk] <{ #
|
||||||
# Copyright (c) 2022 Daylin Morgan
|
# Copyright (c) 2022 Daylin Morgan
|
||||||
# MIT License
|
# MIT License
|
||||||
# 22.9.5
|
# version: 22.9.19
|
||||||
#
|
#
|
||||||
# task.mk should be included at the bottom of your Makefile.
|
# 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.
|
||||||
# You can update your .task.mk with `make _update-task.mk`
|
# You can update your .task.mk with `make _update-task.mk`
|
||||||
|
# ---- [config] ---- #
|
||||||
# ---- CONFIG ---- #
|
HEADER_STYLE ?= b_cyan
|
||||||
HEADER_COLOR ?= b_cyan
|
ACCENT_STYLE ?= b_yellow
|
||||||
PARAMS_COLOR ?= b_magenta
|
PARAMS_STYLE ?= $(ACCENT_STYLE)
|
||||||
ACCENT_COLOR ?= b_yellow
|
GOAL_STYLE ?= $(ACCENT_STYLE)
|
||||||
GOAL_COLOR ?= $(ACCENT_COLOR)
|
MSG_STYLE ?= faint
|
||||||
MSG_COLOR ?= faint
|
DIVIDER_STYLE ?= default
|
||||||
HELP_SEP ?= |
|
DIVIDER ?= ─
|
||||||
HELP_SORT ?= # sort goals alphabetically
|
HELP_SEP ?= │
|
||||||
|
|
||||||
# python f-string literals
|
# python f-string literals
|
||||||
EPILOG ?=
|
EPILOG ?=
|
||||||
define USAGE ?=
|
USAGE ?={ansi.$(HEADER_STYLE)}usage{ansi.end}:\n make <recipe>\n
|
||||||
{ansi.$(HEADER_COLOR)}usage{ansi.end}:
|
|
||||||
make <recipe>
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
# ---- [buitlin recipes] ---- #
|
# ---- [buitlin recipes] ---- #
|
||||||
|
|
||||||
|
|
||||||
## h, help | show this help
|
## h, help | show this help
|
||||||
.PHONY: help h
|
.PHONY: help h
|
||||||
help h:
|
help h:
|
||||||
$(call py,help_py)
|
$(call py,help_py)
|
||||||
|
|
||||||
.PHONY: _help
|
.PHONY: _help
|
||||||
_help: export SHOW_HIDDEN=true
|
_help: export SHOW_HIDDEN=true
|
||||||
_help: help
|
_help: help
|
||||||
|
|
||||||
ifdef PRINT_VARS
|
ifdef PRINT_VARS
|
||||||
|
|
||||||
$(foreach v,$(PRINT_VARS),$(eval export $(v)))
|
$(foreach v,$(PRINT_VARS),$(eval export $(v)))
|
||||||
|
|
||||||
.PHONY: vars v
|
.PHONY: vars v
|
||||||
vars v:
|
vars v:
|
||||||
$(call py,vars_py,$(PRINT_VARS))
|
$(call py,vars_py,$(PRINT_VARS))
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
### | args: -ws --hidden
|
||||||
|
### task.mk builtins: | args: -d --hidden
|
||||||
## _print-ansi | show all possible ansi color code combinations
|
## _print-ansi | show all possible ansi color code combinations
|
||||||
.PHONY:
|
.PHONY:
|
||||||
_print-ansi:
|
_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,info_py,$(1))
|
tprint = $(call py,info_py,$(1))
|
||||||
tprint-sh = $(call pysh,info_py,$(1))
|
tprint-sh = $(call pysh,info_py,$(1))
|
||||||
|
tconfirm = $(call py,confirm_py,$(1))
|
||||||
|
## _update-task.mk | downloads latest development version of task.mk
|
||||||
_update-task.mk:
|
_update-task.mk:
|
||||||
$(call tprint,Updating task.mk)
|
$(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
|
||||||
|
|
||||||
export MAKEFILE_LIST
|
export MAKEFILE_LIST
|
||||||
|
|
||||||
# ---- [python/bash script runner] ---- #
|
# ---- [python/bash script runner] ---- #
|
||||||
|
|
||||||
# modified from https://unix.stackexchange.com/a/223093
|
|
||||||
define \n
|
define \n
|
||||||
|
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
escape_shellstring = $(subst `,\`,$(subst ",\",$(subst $$,\$$,$(subst \,\\,$1))))
|
escape_shellstring = $(subst `,\`,$(subst ",\",$(subst $$,\$$,$(subst \,\\,$1))))
|
||||||
|
|
||||||
escape_printf = $(subst \,\\,$(subst %,%%,$1))
|
escape_printf = $(subst \,\\,$(subst %,%%,$1))
|
||||||
|
|
||||||
create_string = $(subst $(\n),\n,$(call escape_shellstring,$(call escape_printf,$1)))
|
create_string = $(subst $(\n),\n,$(call escape_shellstring,$(call escape_printf,$1)))
|
||||||
|
printline = printf -- "<----------------------------------->\n"
|
||||||
|
|
||||||
ifdef DEBUG
|
ifdef DEBUG
|
||||||
define py
|
define _debug_runner
|
||||||
@printf "Python Script:\n"
|
@printf "$(1) Script:\n";$(printline);
|
||||||
@printf -- "----------------\n"
|
@printf "$(call create_string,$(3))\n" | cat -n
|
||||||
@printf "$(call create_string,$($(1)))\n"
|
@$(printline)
|
||||||
@printf -- "----------------\n"
|
@printf "$(call create_string,$(3))" | $(2)
|
||||||
@printf "$(call create_string,$($(1)))" | python3
|
|
||||||
endef
|
|
||||||
define tbash
|
|
||||||
@printf "Bash Script:\n"
|
|
||||||
@printf -- "----------------\n"
|
|
||||||
@printf "$(call create_string,$($(1)))\n"
|
|
||||||
@printf -- "----------------\n"
|
|
||||||
@printf "$(call create_string,$($(1)))" | bash
|
|
||||||
endef
|
endef
|
||||||
|
py = $(call _debug_runner,Python,python3,$($(1)))
|
||||||
|
tbash = $(call _debug_runner,Bash,bash,$($(1)))
|
||||||
else
|
else
|
||||||
py = @printf "$(call create_string,$($(1)))" | python3
|
py = @python3 <(printf "$(call create_string,$($(1)))")
|
||||||
tbash = @printf "$(call create_string,$($(1)))" | bash
|
tbash = @bash <(printf "$(call create_string,$($(1)))")
|
||||||
endif
|
endif
|
||||||
|
pysh = python3 <(printf "$(call create_string,$($(1)))")
|
||||||
pysh = printf "$(call create_string,$($(1)))" | python3
|
|
||||||
|
|
||||||
# ---- [python scripts] ---- #
|
# ---- [python scripts] ---- #
|
||||||
|
|
||||||
|
|
||||||
define help_py
|
define help_py
|
||||||
|
import argparse
|
||||||
|
from collections import namedtuple
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
|
|
||||||
$(ansi_py)
|
$(ansi_py)
|
||||||
|
MaxLens = namedtuple("MaxLens", "goal msg")
|
||||||
pattern = re.compile(r"^## (.*) \| (.*)")
|
pattern = re.compile(
|
||||||
|
r"^## (?P<goal>.*?) \| (?P<msg>.*?)(?:\s?\| args: (?P<msgargs>.*?))?$$|^### (?P<rawmsg>.*?)?(?:\s?\| args: (?P<rawargs>.*?))?$$"
|
||||||
makefile = ""
|
)
|
||||||
for file in os.getenv("MAKEFILE_LIST").split():
|
def parseargs(argstring):
|
||||||
with open(file, "r") as f:
|
parser = argparse.ArgumentParser()
|
||||||
makefile += f.read() + "\n\n"
|
parser.add_argument("--align")
|
||||||
|
parser.add_argument("-d", "--divider", action="store_true")
|
||||||
|
parser.add_argument("-ws", "--whitespace", action="store_true")
|
||||||
def get_help(file):
|
parser.add_argument("-ms", "--msg-style", type=str)
|
||||||
|
parser.add_argument("-gs", "--goal-style", type=str)
|
||||||
|
parser.add_argument("--hidden", action="store_true")
|
||||||
|
return parser.parse_args(argstring.split())
|
||||||
|
def gen_makefile():
|
||||||
|
makefile = ""
|
||||||
|
for file in os.getenv("MAKEFILE_LIST").split():
|
||||||
|
with open(file, "r") as f:
|
||||||
|
makefile += f.read() + "\n\n"
|
||||||
|
return makefile
|
||||||
|
def parse_make(file):
|
||||||
for line in file.splitlines():
|
for line in file.splitlines():
|
||||||
match = pattern.search(line)
|
match = pattern.search(line)
|
||||||
if match:
|
if match:
|
||||||
if not os.getenv("SHOW_HIDDEN") and match.groups()[0].startswith("_"):
|
if not os.getenv("SHOW_HIDDEN") and str(
|
||||||
continue
|
match.groupdict().get("goal")
|
||||||
|
).startswith("_"):
|
||||||
|
pass
|
||||||
else:
|
else:
|
||||||
yield match.groups()
|
yield {k: v for k, v in match.groupdict().items() if v is not None}
|
||||||
|
def fmt_goal(goal, msg, max_goal_len, argstr):
|
||||||
|
args = parseargs(argstr)
|
||||||
print(f"""$(USAGE)""")
|
goal_style = args.goal_style.strip() if args.goal_style else "$(GOAL_STYLE)"
|
||||||
|
msg_style = args.msg_style.strip() if args.msg_style else "$(MSG_STYLE)"
|
||||||
goals = list(get_help(makefile))
|
return (
|
||||||
if os.getenv("SORT_HELP",False):
|
ansi.style(f" {goal:>{max_goal_len}}", goal_style)
|
||||||
goals.sort(key=lambda i: i[0])
|
+ f" $(HELP_SEP) "
|
||||||
goal_len = max(len(goal[0]) for goal in goals)
|
+ ansi.style(msg, msg_style)
|
||||||
|
|
||||||
for goal, msg in goals:
|
|
||||||
print(
|
|
||||||
f"{ansi.$(GOAL_COLOR)}{goal:>{goal_len}}{ansi.end} $(HELP_SEP) {ansi.$(MSG_COLOR)}{msg}{ansi.end}"
|
|
||||||
)
|
)
|
||||||
|
def fmt_rawmsg(msg, argstr, maxlens):
|
||||||
print(f"""$(EPILOG)""")
|
args = parseargs(argstr)
|
||||||
|
lines = []
|
||||||
|
msg_style = args.msg_style.strip() if args.msg_style else "$(MSG_STYLE)"
|
||||||
|
if not os.getenv("SHOW_HIDDEN") and args.hidden:
|
||||||
|
return []
|
||||||
|
if msg:
|
||||||
|
if args.align == "sep":
|
||||||
|
lines.append(
|
||||||
|
f"{' '*(maxlens.goal+len('$(HELP_SEP)')+4)}{ansi.style(msg,msg_style)}"
|
||||||
|
)
|
||||||
|
elif args.align == "center":
|
||||||
|
lines.append(f" {ansi.style(msg.center(sum(maxlens)),msg_style)}")
|
||||||
|
else:
|
||||||
|
lines.append(f" {ansi.style(msg,msg_style)}")
|
||||||
|
if args.divider:
|
||||||
|
lines.append(
|
||||||
|
ansi.style(
|
||||||
|
f" {'$(DIVIDER)'*(len('$(HELP_SEP)')+sum(maxlens)+2)}",
|
||||||
|
"$(DIVIDER_STYLE)",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if args.whitespace:
|
||||||
|
lines.append("\n")
|
||||||
|
return lines
|
||||||
|
def print_help():
|
||||||
|
lines = [f"""$(USAGE)"""]
|
||||||
|
items = list(parse_make(gen_makefile()))
|
||||||
|
maxlens = MaxLens(
|
||||||
|
*(max((len(item[x]) for item in items if x in item)) for x in ["goal", "msg"])
|
||||||
|
)
|
||||||
|
for item in items:
|
||||||
|
if "goal" in item:
|
||||||
|
lines.append(
|
||||||
|
fmt_goal(
|
||||||
|
item["goal"], item["msg"], maxlens.goal, item.get("msgargs", "")
|
||||||
|
)
|
||||||
|
)
|
||||||
|
if "rawmsg" in item:
|
||||||
|
lines.extend(fmt_rawmsg(item["rawmsg"], item.get("rawargs", ""), maxlens))
|
||||||
|
lines.append(f"""$(EPILOG)""")
|
||||||
|
print("\n".join(lines))
|
||||||
|
print_help()
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define ansi_py
|
define ansi_py
|
||||||
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
color2byte = dict(
|
color2byte = dict(
|
||||||
black=0,
|
black=0,
|
||||||
red=1,
|
red=1,
|
||||||
|
@ -160,91 +172,101 @@ color2byte = dict(
|
||||||
cyan=6,
|
cyan=6,
|
||||||
white=7,
|
white=7,
|
||||||
)
|
)
|
||||||
|
|
||||||
state2byte = dict(
|
state2byte = dict(
|
||||||
bold=1, faint=2, italic=3, underline=4, blink=5, fast_blink=6, crossed=9
|
bold=1, faint=2, italic=3, underline=4, blink=5, fast_blink=6, crossed=9
|
||||||
)
|
)
|
||||||
|
addfg = lambda byte: byte + 30
|
||||||
|
addbg = lambda byte: byte + 40
|
||||||
def fg(byte):
|
|
||||||
return 30 + byte
|
|
||||||
|
|
||||||
|
|
||||||
def bg(byte):
|
|
||||||
return 40 + byte
|
|
||||||
|
|
||||||
|
|
||||||
class Ansi:
|
class Ansi:
|
||||||
"""ANSI color codes"""
|
"""ANSI escape codes"""
|
||||||
|
def __init__(self):
|
||||||
|
self.setcode("end", "\033[0m")
|
||||||
|
self.setcode("default", "\033[38m")
|
||||||
|
self.setcode("bg_default", "\033[48m")
|
||||||
|
for name, byte in color2byte.items():
|
||||||
|
self.setcode(name, f"\033[{addfg(byte)}m")
|
||||||
|
self.setcode(f"b_{name}", f"\033[1;{addfg(byte)}m")
|
||||||
|
self.setcode(f"d_{name}", f"\033[2;{addfg(byte)}m")
|
||||||
|
for bgname, bgbyte in color2byte.items():
|
||||||
|
self.setcode(
|
||||||
|
f"{name}_on_{bgname}", f"\033[{addbg(bgbyte)};{addfg(byte)}m"
|
||||||
|
)
|
||||||
|
for name, byte in state2byte.items():
|
||||||
|
self.setcode(name, f"\033[{byte}m")
|
||||||
def setcode(self, name, escape_code):
|
def setcode(self, name, escape_code):
|
||||||
|
"""create attr for style and escape code"""
|
||||||
if not sys.stdout.isatty() or os.getenv("NO_COLOR", False):
|
if not sys.stdout.isatty() or os.getenv("NO_COLOR", False):
|
||||||
setattr(self, name, "")
|
setattr(self, name, "")
|
||||||
else:
|
else:
|
||||||
setattr(self, name, escape_code)
|
setattr(self, name, escape_code)
|
||||||
|
def custom(self, fg=None, bg=None):
|
||||||
def __init__(self):
|
"""use custom color"""
|
||||||
self.setcode("end", "\033[0m")
|
code, end = "\033[", "m"
|
||||||
for name, byte in color2byte.items():
|
if fg:
|
||||||
self.setcode(name, f"\033[{fg(byte)}m")
|
if isinstance(fg, int):
|
||||||
self.setcode(f"b_{name}", f"\033[1;{fg(byte)}m")
|
code += f"38;5;{fg}"
|
||||||
self.setcode(f"d_{name}", f"\033[2;{fg(byte)}m")
|
elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 1:
|
||||||
for bgname, bgbyte in color2byte.items():
|
code += f"38;5;{fg[0]}"
|
||||||
self.setcode(f"{name}_on_{bgname}", f"\033[{bg(bgbyte)};{fg(byte)}m")
|
elif (isinstance(fg, list) or isinstance(fg, tuple)) and len(fg) == 3:
|
||||||
for name, byte in state2byte.items():
|
code += f"38;2;{';'.join((str(i) for i in fg))}"
|
||||||
self.setcode(name, f"\033[{byte}m")
|
else:
|
||||||
|
print("Expected one or three values for fg as a list")
|
||||||
|
sys.exit(1)
|
||||||
|
if bg:
|
||||||
|
if isinstance(bg, int):
|
||||||
|
code += f"{';' if fg else ''}48;5;{bg}"
|
||||||
|
elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 1:
|
||||||
|
code += f"{';' if fg else ''}48;5;{bg[0]}"
|
||||||
|
elif (isinstance(bg, list) or isinstance(bg, tuple)) and len(bg) == 3:
|
||||||
|
code += f"{';' if fg else ''}48;2;{';'.join((str(i) for i in bg))}"
|
||||||
|
else:
|
||||||
|
print("Expected one or three values for bg as a list")
|
||||||
|
sys.exit(1)
|
||||||
|
return code + end
|
||||||
|
def style(self, text, style):
|
||||||
|
if style not in self.__dict__:
|
||||||
|
print(f"unknown style: {style}")
|
||||||
|
sys.exit(1)
|
||||||
|
else:
|
||||||
|
return f"{self.__dict__[style]}{text}{self.__dict__['end']}"
|
||||||
a = ansi = Ansi()
|
a = ansi = Ansi()
|
||||||
|
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define info_py
|
define info_py
|
||||||
|
|
||||||
|
|
||||||
$(ansi_py)
|
$(ansi_py)
|
||||||
|
|
||||||
print(f"""$(2)""")
|
print(f"""$(2)""")
|
||||||
|
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define print_ansi_py
|
define print_ansi_py
|
||||||
|
|
||||||
|
|
||||||
$(ansi_py)
|
$(ansi_py)
|
||||||
|
sep = f"$(HELP_SEP)"
|
||||||
codes_names = {
|
codes_names = {getattr(ansi, attr): attr for attr in ansi.__dict__}
|
||||||
getattr(ansi, attr): attr
|
|
||||||
for attr in dir(ansi)
|
|
||||||
if attr[0:1] != "_" and attr != "end" and attr != "setcode"
|
|
||||||
}
|
|
||||||
for code in sorted(codes_names.keys(), key=lambda item: (len(item), item)):
|
for code in sorted(codes_names.keys(), key=lambda item: (len(item), item)):
|
||||||
print("{:>20} {}".format(codes_names[code], code + "******" + ansi.end))
|
print(f"{codes_names[code]:>20} {sep} {code+'*****'+ansi.end} {sep} {repr(code)}")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define vars_py
|
define vars_py
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
$(ansi_py)
|
$(ansi_py)
|
||||||
|
|
||||||
vars = "$2".split()
|
vars = "$2".split()
|
||||||
length = max((len(v) for v in vars))
|
length = max((len(v) for v in vars))
|
||||||
|
print(f"{ansi.$(HEADER_STYLE)}vars:{ansi.end}\n")
|
||||||
print(f"{ansi.$(HEADER_COLOR)}vars:{ansi.end}\n")
|
|
||||||
|
|
||||||
for v in vars:
|
for v in vars:
|
||||||
print(f" {ansi.b_magenta}{v:<{length}}{ansi.end} = {os.getenv(v)}")
|
print(f" {ansi.b_magenta}{v:<{length}}{ansi.end} = {os.getenv(v)}")
|
||||||
|
|
||||||
print()
|
print()
|
||||||
|
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
define confirm_py
|
||||||
|
import sys
|
||||||
|
$(ansi_py)
|
||||||
|
def confirm():
|
||||||
|
"""
|
||||||
|
Ask user to enter Y or N (case-insensitive).
|
||||||
|
:return: True if the answer is Y.
|
||||||
|
:rtype: bool
|
||||||
|
"""
|
||||||
|
answer = ""
|
||||||
|
while answer not in ["y", "n"]:
|
||||||
|
answer = input(f"""$(2) {a.b_red}[Y/n]{a.end} """).lower()
|
||||||
|
return answer == "y"
|
||||||
|
if confirm():
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
sys.exit(1)
|
||||||
|
endef
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -45,13 +45,5 @@ lint:
|
||||||
clean:
|
clean:
|
||||||
@rm -r patched/*
|
@rm -r patched/*
|
||||||
|
|
||||||
define USAGE
|
USAGE = {a.b_green}Update MonoLisa with Nerd Fonts! {a.end}\n\n{a.$(HEADER_STYLE)}usage{a.end}:\n make <recipe>\n
|
||||||
{a.b_green}Update MonoLisa with Nerd Fonts! {a.end}
|
|
||||||
|
|
||||||
{a.$(HEADER_COLOR)}usage{a.end}:
|
|
||||||
make <recipe>
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
-include .task.mk
|
-include .task.mk
|
||||||
$(if $(filter help,$(MAKECMDGOALS)),.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v22.9.5/task.mk -o .task.mk)
|
|
||||||
|
|
Loading…
Reference in a new issue