-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile
163 lines (141 loc) · 5.46 KB
/
Makefile
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
.PHONY:
install-tools \
install \
unit-test \
help \
clean \
link-systemd-units \
unlink-systemd-units \
run-clad \
status-clad \
reload-clad \
manpages \
docs \
distribution-tarball \
html-docs \
release
# Project directory path - /home/<user>/.../command-line-assistant
PROJECT_DIR := $(shell pwd)
DATA_DEVELOPMENT_PATH := $(PROJECT_DIR)/data/development
## Systemd specifics
# https://www.gnu.org/software/make/manual/html_node/Text-Functions.html#index-subst-1
# Virtualenv bin path for clad
CLAD_VENV_BIN := $(subst /,\/,$(PROJECT_DIR)/.venv/bin/clad)
# Systemd development unit
CLAD_SYSTEMD_DEVEL_PATH := $(DATA_DEVELOPMENT_PATH)/systemd/clad-devel.service
# DBus development conf
CLAD_DBUS_DEVEL_PATH := $(DATA_DEVELOPMENT_PATH)/dbus/com.redhat.lightspeed.conf
# Systemd user unit, which is generated from devel unit
CLAD_SYSTEMD_USER_PATH := $(DATA_DEVELOPMENT_PATH)/systemd/clad-user.service
# Systemd path on the system to place the user unit
SYSTEMD_USER_UNITS := ~/.config/systemd/user
# Path to local XDG_CONFIG_DIRS to load config file
XDG_CONFIG_DIRS := $(subst /,\/,$(DATA_DEVELOPMENT_PATH)/xdg)
PKGNAME := command-line-assistant
VERSION := 0.3.1
default: help
install-tools: ## Install required utilities/tools
@command -v poetry > /dev/null || { echo >&2 "poetry is not installed. Installing..."; pip install -q poetry; }
@poetry --version
install: install-tools ## Sync all required dependencies for Command Line Assistant to work
@poetry install
unit-test: ## Unit test cla
@echo "Running tests..."
@poetry run pytest
@echo "Tests completed."
unit-test-coverage: ## Unit test cla with coverage
@echo "Running tests..."
@poetry run pytest --cov --junitxml=junit.xml -o junit_family=legacy
@echo "Tests completed."
coverage: ## Generate coverage report from unit-tests
@poetry run coverage xml
coverage-html: ## Generate coverage report from unit-tests as html
@poetry run coverage html
help: ## Show available make commands
@echo 'Usage: make <OPTIONS> ... <TARGETS>'
@echo ''
@echo 'Available targets are:'
@echo ''
@grep -E '^[ a-zA-Z0-9_.-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-25s\033[0m %s\n", $$1, $$2}'
@echo ''
clean: ## Clean project files
@echo 'Cleanup project specific files...'
@find . -name '__pycache__' -exec rm -fr {} +
@find . -name '*.pyc' -exec rm -f {} +
@find . -name '*.pyo' -exec rm -f {} +
@rm -rf htmlcov \
.pytest_cache \
command_line_assistant.egg-info \
.ruff_cache \
.coverage \
dist \
.tox \
junit.xml \
coverage.xml \
$(PKGNAME)-$(VERSION).tar.gz
$(MAKE) -C docs clean
$(MAKE) -C data/release/selinux
link-systemd-units: ## Link the systemd units to ~/.config/systemd/user
@echo "Linking the systemd units from $(CLAD_SYSTEMD_DEVEL_PATH) to $(SYSTEMD_USER_UNITS)/clad.service"
@sed -e 's/{{ EXEC_START }}/$(CLAD_VENV_BIN)/' \
-e 's/{{ CONFIG_FILE_PATH }}/$(XDG_CONFIG_DIRS)/' \
-e 's/{{ DBUS_SESSION_ADDRESS }}/$(subst /,\/,$(DBUS_SESSION_BUS_ADDRESS))/' \
$(CLAD_SYSTEMD_DEVEL_PATH) > $(CLAD_SYSTEMD_USER_PATH)
@ln -s $(CLAD_SYSTEMD_USER_PATH) $(SYSTEMD_USER_UNITS)/clad.service
@sudo ln -s $(CLAD_DBUS_DEVEL_PATH) /etc/dbus-1/system.d/com.redhat.lightspeed.conf
unlink-systemd-units: ## Unlink the systemd units from ~/.config/systemd/user
@echo "Unlinking the systemd units from $(SYSTEMD_USER_UNITS)/clad.service"
@unlink $(SYSTEMD_USER_UNITS)/clad.service
@sudo unlink /etc/dbus-1/system.d/com.redhat.lightspeed.conf
clad: ## Run clad on the system
@XDG_CONFIG_DIRS=$(XDG_CONFIG_DIRS) $(CLAD_VENV_BIN)
run-clad: ## Run the clad under systemd
@systemctl start --user clad
status-clad: ## Check the status for clad
@journalctl --user -fu clad
reload-clad: ## Reload clad systemd unit
@systemctl --user daemon-reload
@systemctl restart --user clad
man: ## Build manpages
# Build the manpages and change the builddir to match data/release
# Also change the doctrees cache to still use the original build directory.
$(MAKE) BUILDDIR=../data/release SPHINXOPTS=-d=build -C docs man
html-docs: ## Build html docs
$(MAKE) -C docs html
distribution-tarball: clean ## Generate distribution tarball
tar --create \
--gzip \
--file /tmp/$(PKGNAME)-$(VERSION).tar.gz \
--exclude=.git \
--exclude=.vscode \
--exclude=.github \
--exclude=.gitignore \
--exclude=.copr \
--exclude=.venv \
--exclude=.ruff_cache \
--exclude=data/development \
--exclude=scripts \
--exclude=docs \
--exclude=tests \
--exclude=.roproject \
--transform s/^\./$(PKGNAME)-$(VERSION)/ \
. && mv /tmp/$(PKGNAME)-$(VERSION).tar.gz .
release: ## Interactively bump the version (major, minor, or patch)
@echo "Current version: $(VERSION)"
@echo "Select version to bump:"
@echo " 1) Major ($(shell echo $(VERSION) | awk -F. '{print $$1+1".0.0"}'))"
@echo " 2) Minor ($(shell echo $(VERSION) | awk -F. '{print $$1"."($$2+1)".0"}'))"
@echo " 3) Patch ($(shell echo $(VERSION) | awk -F. '{print $$1"."$$2"."($$3+1)}'))"
@echo " 4) Custom version"
@echo -n "Enter choice [1-4]: "
@read choice; \
case $$choice in \
1) new_version=$$(echo $(VERSION) | awk -F. '{print $$1+1".0.0"}');; \
2) new_version=$$(echo $(VERSION) | awk -F. '{print $$1"."($$2+1)".0"}');; \
3) new_version=$$(echo $(VERSION) | awk -F. '{print $$1"."$$2"."($$3+1)}');; \
4) echo -n "Enter custom version (X.Y.Z format): "; read new_version;; \
*) echo "Invalid choice"; exit 1;; \
esac; \
echo "Bumping version to $$new_version"; \
python scripts/prepare_release.py $$new_version