From 083fa3debdfa30c00029627ee10d39d399523ecd Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Thu, 16 Jan 2020 17:37:43 -0500 Subject: [PATCH] Move version and git constants into #defines and update bash script. The bash script now adds a #define if the current checkout is exactly on a tag, and it leaves all #defines empty if building from a tarball. The batch file still needs to be updated. --- oscar/VERSION | 4 ++++ oscar/oscar.pro | 1 + oscar/update_gitinfo.sh | 24 ++++++++++++++---------- oscar/version.cpp | 17 +++++++++++++---- 4 files changed, 32 insertions(+), 14 deletions(-) create mode 100644 oscar/VERSION diff --git a/oscar/VERSION b/oscar/VERSION new file mode 100644 index 00000000..3ea534e3 --- /dev/null +++ b/oscar/VERSION @@ -0,0 +1,4 @@ +// Update the string below to set OSCAR's version and release status. +// See https://semver.org/spec/v2.0.0.html for details on format. + +#define VERSION "1.1.0-beta-1" diff --git a/oscar/oscar.pro b/oscar/oscar.pro index 251d6977..a0d76085 100644 --- a/oscar/oscar.pro +++ b/oscar/oscar.pro @@ -327,6 +327,7 @@ HEADERS += \ updateparser.h \ UpdaterWindow.h \ version.h \ + VERSION \ Graphs/gFlagsLine.h \ Graphs/gFooBar.h \ Graphs/gGraph.h \ diff --git a/oscar/update_gitinfo.sh b/oscar/update_gitinfo.sh index bfc58044..3bbd4663 100755 --- a/oscar/update_gitinfo.sh +++ b/oscar/update_gitinfo.sh @@ -3,19 +3,23 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" cd $DIR -GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` -GIT_REVISION=`git rev-parse --short HEAD` -$(git diff-index --quiet HEAD --) -if [ $? -ne 0 ]; then - GIT_REVISION="${GIT_REVISION}-plus" # uncommitted changes +git rev-parse --git-dir &>/dev/null +if [ $? -eq 0 ]; then + GIT_BRANCH=`git rev-parse --abbrev-ref HEAD` + GIT_REVISION=`git rev-parse --short HEAD` + $(git diff-index --quiet HEAD --) + if [ $? -ne 0 ]; then + GIT_REVISION="${GIT_REVISION}-plus" # uncommitted changes + else + # only use the tag if clean + GIT_TAG=`git describe --exact-match --tags 2>/dev/null` + fi fi -[ -z "$GIT_BRANCH" ] && GIT_BRANCH="Unknown"; -[ -z "$GIT_REVISION" ] && GIT_REVISION="Unknown"; - echo // This is an auto generated file > $DIR/git_info.h.new -echo const QString GIT_BRANCH=\"$GIT_BRANCH\"\; >> $DIR/git_info.h.new -echo const QString GIT_REVISION=\"$GIT_REVISION\"\; >> $DIR/git_info.h.new +[ -n "$GIT_BRANCH" ] && echo "#define GIT_BRANCH \"$GIT_BRANCH\"" >> $DIR/git_info.h.new +[ -n "$GIT_REVISION" ] && echo "#define GIT_REVISION \"$GIT_REVISION\"" >> $DIR/git_info.h.new +[ -n "$GIT_TAG" ] && echo "#define GIT_TAG \"$GIT_TAG\"" >> $DIR/git_info.h.new if diff $DIR/git_info.h $DIR/git_info.h.new &> /dev/null; then rm $DIR/git_info.h.new diff --git a/oscar/version.cpp b/oscar/version.cpp index bb2e4b8c..d33a0df5 100644 --- a/oscar/version.cpp +++ b/oscar/version.cpp @@ -7,13 +7,22 @@ * for more details. */ #include "version.h" +#include "VERSION" #include "git_info.h" #include -#define VERSION "1.1.0-beta-1" -// TODO: add preprocessor macros to build full version number including build metadata, accounting for tarball/non-git builds. -static const Version s_Version(VERSION "+" + GIT_BRANCH + "-" + GIT_REVISION); +// Initialize the Version instance with build metadata, if any. +#ifdef GIT_REVISION + #ifdef GIT_BRANCH + #define BUILD_METADATA "+" GIT_BRANCH "-" GIT_REVISION + #else + #define BUILD_METADATA "+" GIT_REVISION + #endif +#else + #define BUILD_METADATA "" +#endif +static const Version s_Version(VERSION BUILD_METADATA); // Technically this is the date and time that version.cpp was compiled, but since // it gets recompiled whenever git_info.h changes, it's about as close as we can @@ -27,7 +36,7 @@ QString getPrereleaseSuffix() // Append branch if there is a branch specified if (GIT_BRANCH != "master") { - suffix += "-"+GIT_BRANCH; + suffix += "-" GIT_BRANCH; } // Append "-test" if not release or release candidate