Skip to content

Commit aee36cc

Browse files
committed
Makefile: generate and install requirements.txt files for Python plugins.
Doesn't automate the install, but at least provides some tools for users to install the requirements on their systems Changelog-Added: Install: we now supply requirements.txt file for Python plugin (i.e. wss-proxy). See-also: #7665 Signed-off-by: Rusty Russell <[email protected]>
1 parent 1b41743 commit aee36cc

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Makefile

+6-2
Original file line numberDiff line numberDiff line change
@@ -817,10 +817,10 @@ installdirs:
817817

818818
# $(PLUGINS) is defined in plugins/Makefile.
819819

820-
install-program: installdirs $(BIN_PROGRAMS) $(PKGLIBEXEC_PROGRAMS) $(PLUGINS) $(PY_PLUGINS)
820+
install-program: installdirs $(BIN_PROGRAMS) $(PKGLIBEXEC_PROGRAMS) $(PLUGINS) $(PY_PLUGINS) $(PLUGIN_REQUIREMENTS_TXT)
821821
@$(NORMAL_INSTALL)
822822
$(INSTALL_PROGRAM) $(BIN_PROGRAMS) $(DESTDIR)$(bindir)
823-
$(INSTALL_PROGRAM) $(PKGLIBEXEC_PROGRAMS) $(DESTDIR)$(pkglibexecdir)
823+
$(INSTALL_PROGRAM) $(PKGLIBEXEC_PROGRAMS) $(PLUGIN_REQUIREMENTS_TXT) $(DESTDIR)$(pkglibexecdir)
824824
[ -z "$(PLUGINS)" ] || $(INSTALL_PROGRAM) $(PLUGINS) $(DESTDIR)$(plugindir)
825825
for PY in $(PY_PLUGINS); do DIR=`dirname $$PY`; DST=$(DESTDIR)$(plugindir)/`basename $$DIR`; if [ -d $$DST ]; then rm -rf $$DST; fi; $(INSTALL_PROGRAM) -d $$DIR; cp -a $$DIR $$DST ; done
826826

@@ -899,6 +899,10 @@ uninstall:
899899
$(ECHO) rm -f $(DESTDIR)$(docdir)/`basename $$f`; \
900900
rm -f $(DESTDIR)$(docdir)/`basename $$f`; \
901901
done
902+
@for f in $(PLUGIN_REQUIREMENTS_TXT); do \
903+
$(ECHO) rm -f $(DESTDIR)$(pkglibexecdir)/`basename $$f`; \
904+
rm -f $(DESTDIR)$(pkglibexecdir)/`basename $$f`; \
905+
done
902906

903907
installcheck: all-programs
904908
@rm -rf testinstall || true

plugins/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ cln-askrene
2020
recklessrpc
2121
exposesecret
2222
cln-xpay
23+
wss-proxy-requirements.txt

plugins/Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -307,8 +307,17 @@ ifneq ($(RUST),0)
307307
DEFAULT_TARGETS += $(CLN_PLUGIN_EXAMPLES) plugins/cln-grpc plugins/clnrest
308308
endif
309309

310+
ifneq ($(NO_PYTHON), 1)
311+
PLUGIN_REQUIREMENTS_TXT := plugins/wss-proxy-requirements.txt
312+
plugins/wss-proxy-requirements.txt: plugins/wss-proxy/pyproject.toml plugins/wss-proxy/poetry.lock
313+
cd plugins/wss-proxy && $(POETRY) export --without-hashes > ../../$@
314+
315+
all-programs: $(PLUGIN_REQUIREMENTS_TXT)
316+
endif
317+
310318
clean: plugins-clean
311319
plugins-clean:
320+
$(RM) $(PLUGIN_REQUIREMENTS_TXT)
312321
$(RM) $(PLUGINS) $(CLN_PLUGIN_EXAMPLES)
313322
$(RM) plugins/sql-schema_gen.h
314323

0 commit comments

Comments
 (0)