GitHubのミラーです
https://github.com/FascodeNet/alterlinux
修订版 | 5fbbb05a2e4abc1dc69760a0bb80453e321561ba (tree) |
---|---|
时间 | 2020-06-01 06:05:52 |
作者 | David Runge <dvzrv@arch...> |
Commiter | David Runge |
Removing dist target
Makefile:
Removing the dist target. It requires to increment a number on each
release.
This workflow can be entirely circumvented by signed commit tags and
using those for packaging.
@@ -1,5 +1,3 @@ | ||
1 | -V=43 | |
2 | - | |
3 | 1 | INSTALL_FILES=$(wildcard archiso/initcpio/install/*) |
4 | 2 | HOOKS_FILES=$(wildcard archiso/initcpio/hooks/*) |
5 | 3 | SCRIPT_FILES=$(wildcard archiso/initcpio/script/*) |
@@ -34,8 +32,4 @@ install-doc: | ||
34 | 32 | install -d $(DOC_DIR) |
35 | 33 | install -m 644 -t $(DOC_DIR) $(DOC_FILES) |
36 | 34 | |
37 | -dist: | |
38 | - git archive --format=tar --prefix=archiso-$(V)/ v$(V) | gzip -9 > archiso-$(V).tar.gz | |
39 | - gpg --detach-sign --use-agent archiso-$(V).tar.gz | |
40 | - | |
41 | -.PHONY: install install-program install-initcpio install-examples install-doc dist | |
35 | +.PHONY: install install-program install-initcpio install-examples install-doc |