|
9 | 9 | # and RELEASE variables below - both version and date strings
|
10 | 10 | # will be updated in all necessary files.
|
11 | 11 | # - clean: remove all generated files
|
| 12 | +# - release: finalize release and create git tag for specified VERSION |
12 | 13 | #
|
13 | 14 |
|
14 | 15 | VERSION := $(shell bin/get_version.sh --version)
|
|
38 | 39 | @echo " uninstall : delete binaries and man pages from DESTDIR (default /)"
|
39 | 40 | @echo " dist : create packages (RPM, tarball) ready for distribution"
|
40 | 41 | @echo " check : perform self-tests"
|
| 42 | + @echo " release : finalize release and create git tag for specified VERSION" |
41 | 43 |
|
42 | 44 | clean:
|
43 | 45 | rm -f lcov-*.tar.gz
|
@@ -124,3 +126,22 @@ test: check
|
124 | 126 |
|
125 | 127 | check:
|
126 | 128 | @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