diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:50:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 06:50:17 +0000 |
commit | 86ed03f8adee56c050c73018537371c230a664a6 (patch) | |
tree | eae3d04cdf1c49848e5a671327ab38297f4acb0d /make/release.mk | |
parent | Initial commit. (diff) | |
download | fence-agents-86ed03f8adee56c050c73018537371c230a664a6.tar.xz fence-agents-86ed03f8adee56c050c73018537371c230a664a6.zip |
Adding upstream version 4.12.1.upstream/4.12.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | make/release.mk | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/make/release.mk b/make/release.mk new file mode 100644 index 0000000..bf94495 --- /dev/null +++ b/make/release.mk @@ -0,0 +1,82 @@ +# to build official release tarballs, handle tagging and publish. + +project = fence-agents + +deliverables = $(project)-$(version).sha256 \ + $(project)-$(version).tar.bz2 \ + $(project)-$(version).tar.gz \ + $(project)-$(version).tar.xz + + +.PHONY: all +all: tag tarballs + + +.PHONY: checks +checks: +ifeq (,$(version)) + @echo ERROR: need to define version= + @exit 1 +endif + @if [ ! -d .git ]; then \ + echo This script needs to be executed from top level cluster git tree; \ + exit 1; \ + fi + @if [ -n "$$(git status --untracked-files=no --porcelain 2>/dev/null)" ]; then \ + echo Stash or rollback the uncommitted changes in git first; \ + exit 1; \ + fi + + +.PHONY: setup +setup: checks + ./autogen.sh + ./configure + $(MAKE) maintainer-clean + + +.PHONY: tag +tag: setup ./tag-$(version) + +tag-$(version): +ifeq (,$(release)) + @echo Building test release $(version), no tagging + echo '$(version)' > .tarball-version +else + # following will be captured by git-version-gen automatically + git tag -a -m "v$(version) release" v$(version) HEAD + @touch $@ +endif + + +.PHONY: tarballs +tarballs: tag + ./autogen.sh + ./configure + $(MAKE) distcheck + + +.PHONY: sha256 +sha256: $(project)-$(version).sha256 + +$(deliverables): tarballs + +$(project)-$(version).sha256: + # checksum anything from deliverables except for in-prep checksums file + sha256sum $(deliverables:$@=) | sort -k2 > $@ + + +.PHONY: publish +publish: +ifeq (,$(release)) + @echo Building test release $(version), no publishing! +else + git push --follow-tags origin + @echo Hey you! Yeah you, looking somewhere else! + @echo Remember to notify cluster-devel/RH and users/ClusterLabs MLs. +endif + + +.PHONY: clean +clean: + rm -rf $(project)* tag-* .tarball-version |