Better python packaging

This commit is contained in:
Thomas Hobson 2021-02-19 18:53:26 +13:00
parent 51b06018c1
commit 4f3e7a536d
No known key found for this signature in database
GPG key ID: 9F1FD9D87950DB6F
6 changed files with 54 additions and 32 deletions

24
packages/python/Makefile Normal file
View file

@ -0,0 +1,24 @@
LANGUAGE=python
VERSIONS=2.7.1 3.9.1
.PHONY: build sign cleanup clean
build: $(patsubst %,%/${LANGUAGE}-%.pkg.tar.gz,${VERSIONS})
sign: $(patsubst %,%/${LANGUAGE}-%.pkg.tar.gz.asc,${VERSIONS})
clean:
rm -rf ${VERSIONS}
cleanup: $(patsubst %,%/cleanup,${VERSIONS})
%/cleanup: %/Makefile
$(MAKE) -C $(shell dirname $<) cleanup
rm $(shell dirname $<)/Makefile
%/${LANGUAGE}-%.pkg.tar.gz.asc: %/Makefile
$(MAKE) -C $(shell dirname $<) sign
%/${LANGUAGE}-%.pkg.tar.gz: %/Makefile
$(MAKE) -C $(shell dirname $<)
%/Makefile:
@mkdir -p $(shell dirname $@)
@echo 'VERSION=$(patsubst %/Makefile,%,$@)' > $@
@echo 'include ../base.mk' >> $@