From: Ian Jackson Date: Sun, 18 May 2014 13:50:04 +0000 (+0100) Subject: When printing version (eg during startup), use value from git-describe X-Git-Tag: debian/0.3.2_beta1~9 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=commitdiff_plain;h=e4cfe5379b48e36de6de4deb0832837be6d60ca3 When printing version (eg during startup), use value from git-describe Thus include git commit id where applicable. Some complications in the Makefile[.in] are needed to ensure that the version is regenerated iff required. Signed-off-by: Ian Jackson --- diff --git a/Makefile.in b/Makefile.in index ba5a861..e956695 100644 --- a/Makefile.in +++ b/Makefile.in @@ -55,13 +55,19 @@ TARGETS:=secnet OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \ resolver.o random.o udp.o site.o transform-cbcmac.o transform-eax.o \ netlink.o rsa.o dh.o serpent.o serpentbe.o \ - md5.o sha512.o version.o tun.o slip.o sha1.o ipaddr.o log.o \ + md5.o sha512.o tun.o slip.o sha1.o ipaddr.o log.o \ process.o @LIBOBJS@ \ hackypar.o +# version.o is handled specially below and in the link rule for secnet. TEST_OBJECTS:=eax-aes-test.o eax-serpent-test.o eax-serpentbe-test.o \ eax-test.o aes.o +ifeq (version.o,$(MAKECMDGOALS)) +OBJECTS:=version.o +TEST_OBJECTS:= +endif + %.c: %.y %.yy.c: %.fl @@ -114,14 +120,31 @@ conffile.tab.c: conffile.y # End of manual dependencies section secnet: $(OBJECTS) - $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS) + $(MAKE) version.o # *.o $(filter-out %.o, $^) + $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) version.o $(LDLIBS) +# We (always) regenerate the version, but only if we regenerate the +# binary. (This is necessary as the version string is can depend on +# any of the source files, eg to see whether "+" is needed.) + +ifneq (,$(wildcard .git/HEAD)) +# If we have (eg) committed, relink and thus regenerate the version +# with the new info from git describe. +secnet: Makefile .git/HEAD $(shell sed -n 's#^ref: #.git/#p' .git/HEAD) +secnet: $(wildcard .git/packed-refs) +endif check: eax-aes-test.confirm eax-serpent-test.confirm \ eax-serpentbe-test.confirm version.c: Makefile echo "#include \"secnet.h\"" >$@.new - echo "char version[]=\"secnet $(VERSION)\";" >>$@.new + @set -ex; if test -e .git; then \ + v=$$(git describe --match 'v*'); v=$${v#v}; \ + if ! git diff --quiet HEAD; then v="$$v+"; fi; \ + else \ + v="$(VERSION)"; \ + fi; \ + echo "char version[]=\"secnet $$v\";" >>$@.new mv -f $@.new $@ eax-%-test: eax-%-test.o eax-test.o %.o diff --git a/debian/changelog b/debian/changelog index 6ab0316..43b771f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ secnet (0.3.2~~) unstable; urgency=low * SECURITY: Properly update peer address array when it is full. * Log peer addresses on key exchange timeout. + * When printing version (eg during startup), use value from git-describe + and thus include git commit id where applicable. * Updates to release checklist in Makefile.in. * Use C99 _Bool for bool_t.