Skip to content

Commit e220b39

Browse files
committed
Makefile: Create make target for creating release tags
Simplify work associated with creating a new release by introducing a new 'make release' Makefile target that automates some of the recurring git-related steps. The new make target will perform the following steps: - Update man pages, README and spec file with new version and last modified dates - Create a new commit for the version changes - Tag the commit with a release tag in canonical format Signed-off-by: Peter Oberparleiter <[email protected]>
1 parent 6da8399 commit e220b39

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Makefile

+21
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# and RELEASE variables below - both version and date strings
1010
# will be updated in all necessary files.
1111
# - clean: remove all generated files
12+
# - release: finalize release and create git tag for specified VERSION
1213
#
1314

1415
VERSION := $(shell bin/get_version.sh --version)
@@ -38,6 +39,7 @@ info:
3839
@echo " uninstall : delete binaries and man pages from DESTDIR (default /)"
3940
@echo " dist : create packages (RPM, tarball) ready for distribution"
4041
@echo " check : perform self-tests"
42+
@echo " release : finalize release and create git tag for specified VERSION"
4143

4244
clean:
4345
rm -f lcov-*.tar.gz
@@ -124,3 +126,22 @@ test: check
124126

125127
check:
126128
@make -s -C tests check
129+
130+
release:
131+
@if [ "$(origin VERSION)" != "command line" ] ; then echo "Please specify new version number, e.g. VERSION=1.16" >&2 ; exit 1 ; fi
132+
@if [ -n "$$(git status --porcelain 2>&1)" ] ; then echo "The repository contains uncommited changes" >&2 ; exit 1 ; fi
133+
@if [ -n "$$(git tag -l v$(VERSION))" ] ; then echo "A tag for the specified version already exists (v$(VERSION))" >&2 ; exit 1 ; fi
134+
@echo "Preparing release tag for version $(VERSION)"
135+
git checkout master
136+
bin/copy_dates.sh . .
137+
for FILE in README man/* rpm/* ; do \
138+
bin/updateversion.pl "$$FILE" $(VERSION) 1 $(VERSION) ; \
139+
done
140+
git commit -a -s -m "lcov: Finalize release $(VERSION)"
141+
git tag v$(VERSION) -m "LCOV version $(VERSION)"
142+
@echo "**********************************************"
143+
@echo "Release tag v$(VERSION) successfully created"
144+
@echo "Next steps:"
145+
@echo " - Review resulting commit and tag"
146+
@echo " - Publish with: git push origin master v$(VERSION)"
147+
@echo "**********************************************"

0 commit comments

Comments
 (0)