From 1b739da931a8edb0e3a1c283fd464c4fd9805b67 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Thu, 26 Jul 2007 18:13:18 +0200 Subject: [PATCH] configure.in: Generate version dynamically using version-gen.sh. This dynamically creates the version string when the configure script is created. If run from within a repository the output of "git describe" is used to create the version string. Else it defaults to a hardcoded value which should be something like "$latest_version.git". The idea is to update the default version to the new version (without ".git" appended) as the last commit of a release cycle. This commit is tagged as the new version. The next commit after the release will set the default version to "$new_version.git". The benefit is that a pre-release with a quite well defined and unique version can be easily created at any time. Signed-off-by: Sebastian Harl Signed-off-by: Florian Forster --- configure.in | 2 +- version-gen.sh | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100755 version-gen.sh diff --git a/configure.in b/configure.in index 5b3a54a6..735ea749 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(collectd, 4.0.5) +AC_INIT(collectd, m4_esyscmd(./version-gen.sh)) AC_CONFIG_SRCDIR(src/collectd.c) AC_CONFIG_HEADERS(src/config.h) AM_INIT_AUTOMAKE(dist-bzip2) diff --git a/version-gen.sh b/version-gen.sh new file mode 100755 index 00000000..510a3a02 --- /dev/null +++ b/version-gen.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +DEFAULT_VERSION="4.0.5.git" + +VERSION="$( git describe 2> /dev/null | sed -e 's/^collectd-//' )" + +if test -z "$VERSION"; then + VERSION="$DEFAULT_VERSION" +fi + +VERSION=$( echo "$VERSION" | sed -e 's/-/./g' ) + +echo -n $VERSION + -- 2.11.0