From: Laura Prieto Saavedra Date: Mon, 3 Mar 2025 23:27:45 +0000 (-0500) Subject: Add cmake query for fancy tag similar to git describe X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=565bda748798b8d796ed2a69a371c9fd498c03d4;p=dealii.git Add cmake query for fancy tag similar to git describe --- diff --git a/cmake/config/ConfigGit.cmake.in b/cmake/config/ConfigGit.cmake.in index 1855c7aff3..80289f21a8 100644 --- a/cmake/config/ConfigGit.cmake.in +++ b/cmake/config/ConfigGit.cmake.in @@ -21,3 +21,4 @@ set(DEAL_II_GIT_BRANCH "@DEAL_II_GIT_BRANCH@") set(DEAL_II_GIT_REVISION "@DEAL_II_GIT_REVISION@") set(DEAL_II_GIT_SHORTREV "@DEAL_II_GIT_SHORTREV@") set(DEAL_II_GIT_TAG "@DEAL_II_GIT_TAG@") +set(DEAL_II_GIT_FANCY_TAG "@DEAL_II_GIT_FANCY_TAG@") diff --git a/cmake/macros/macro_deal_ii_query_git_information.cmake b/cmake/macros/macro_deal_ii_query_git_information.cmake index c71ab533e0..e248b61f14 100644 --- a/cmake/macros/macro_deal_ii_query_git_information.cmake +++ b/cmake/macros/macro_deal_ii_query_git_information.cmake @@ -149,6 +149,30 @@ macro(deal_ii_query_git_information) message(STATUS "Could not locate get_latest_tag.sh. " ${_prefix}GIT_TAG " will not be set.") endif() + # + # Query for fancy tag: + # + set(_script "") + if(EXISTS ${CMAKE_BINARY_DIR}/${DEAL_II_SHARE_RELDIR}/scripts/get_fancy_tag.sh) + set(_script ${CMAKE_BINARY_DIR}/${DEAL_II_SHARE_RELDIR}/scripts/get_fancy_tag.sh) + elseif(EXISTS ${DEAL_II_PATH}/${DEAL_II_SHARE_RELDIR}/scripts/get_fancy_tag.sh) + set(_script ${DEAL_II_PATH}/${DEAL_II_SHARE_RELDIR}/scripts/get_fancy_tag.sh) + endif() + if(NOT "${_script}" STREQUAL "") + execute_process( + COMMAND ${_script} + WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} + OUTPUT_VARIABLE _fancy_tag + RESULT_VARIABLE _result + OUTPUT_STRIP_TRAILING_WHITESPACE + ) + if(${_result} EQUAL 0) + set(${_prefix}GIT_FANCY_TAG ${_fancy_tag}) + endif() + else() + message(STATUS "Could not locate get_fancy_tag.sh. " ${_prefix}GIT_FANCY_TAG " will not be set.") + endif() + endif() endmacro() diff --git a/cmake/scripts/CMakeLists.txt b/cmake/scripts/CMakeLists.txt index 212c124b65..02c3bb93c0 100644 --- a/cmake/scripts/CMakeLists.txt +++ b/cmake/scripts/CMakeLists.txt @@ -50,6 +50,7 @@ set(_scripts ${CMAKE_CURRENT_SOURCE_DIR}/run_test.sh ${CMAKE_CURRENT_SOURCE_DIR}/get_closest_tag.sh ${CMAKE_CURRENT_SOURCE_DIR}/get_latest_tag.sh + ${CMAKE_CURRENT_SOURCE_DIR}/get_fancy_tag.sh ) file(COPY ${_scripts} DESTINATION ${CMAKE_BINARY_DIR}/${DEAL_II_SHARE_RELDIR}/scripts diff --git a/cmake/scripts/get_fancy_tag.sh b/cmake/scripts/get_fancy_tag.sh new file mode 100755 index 0000000000..6839b265ef --- /dev/null +++ b/cmake/scripts/get_fancy_tag.sh @@ -0,0 +1,33 @@ +#!/bin/sh +# +# Find the latest TAG that has a common ancestry (of positive distance) with +# current HEAD and append the number of commits and commit ID like `git describe` +# does. +# + +if ! git --version | grep -q "git version 2"; then + # This script requires version 2 or newer + exit 1 +fi + +head="$(git rev-parse HEAD)" + +tags="$(git tag --sort=-creatordate)" + +for tag in $tags; do + tag_commit="$(git rev-parse $tag^{commit})" + + if [ "$tag_commit" = "$head" ]; then + echo "$tag" + exit 0; + fi + + ancestor="$(git merge-base HEAD $tag)" + + if [ "$ancestor" != "$head" ]; then + echo "$tag-$(git rev-list $(git describe --tags --abbrev=0)..HEAD --count)-g$(git rev-parse --short HEAD)" + exit 0; + fi +done + +exit 1 diff --git a/include/deal.II/base/revision.h.in b/include/deal.II/base/revision.h.in index 0486af7daa..c99fbf57b9 100644 --- a/include/deal.II/base/revision.h.in +++ b/include/deal.II/base/revision.h.in @@ -30,4 +30,14 @@ */ #define DEAL_II_GIT_SHORTREV "@DEAL_II_GIT_SHORTREV@" +/** + * Tag of the current git HEAD. + */ +#define DEAL_II_GIT_TAG "@DEAL_II_GIT_TAG@" + +/** + * Fancy tag of the current git HEAD. + */ +#define DEAL_II_GIT_FANCY_TAG "@DEAL_II_GIT_FANCY_TAG@" + #endif