From 8c96b0b37db18f4953b894c51f0cd9c9ee46f7a7 Mon Sep 17 00:00:00 2001 From: Don Fox Date: Wed, 3 Apr 2024 13:02:46 -0400 Subject: [PATCH] Add recipe for creating package tar file --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af13843..3d96326 100644 --- a/Makefile +++ b/Makefile @@ -24,9 +24,10 @@ install: $(VENV)/bin/activate .PHONY: wheel wheel: dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl -dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl: $(VENV)/bin/activate +dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl dist/$(PACKAGE)-$(VERSION).tar.gz: $(VENV)/bin/activate $(ACTIVATE_VENV) && python3 -m build mv dist/$(PACKAGE)-$(VERSION_UPSTREAM)-py3-none-any.whl dist/$(PACKAGE)-$(VERSION)-py3-none-any.whl + mv dist/$(PACKAGE)-$(VERSION_UPSTREAM).tar.gz dist/$(PACKAGE)-$(VERSION).tar.gz .PHONY: launch launch: