]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add cmake query for fancy tag similar to git describe 18190/head
authorLaura Prieto Saavedra <lauraprietosaavedra@gmail.com>
Mon, 3 Mar 2025 23:27:45 +0000 (18:27 -0500)
committerLaura Prieto Saavedra <lauraprietosaavedra@gmail.com>
Wed, 19 Mar 2025 21:30:11 +0000 (17:30 -0400)
cmake/config/ConfigGit.cmake.in
cmake/macros/macro_deal_ii_query_git_information.cmake
cmake/scripts/CMakeLists.txt
cmake/scripts/get_fancy_tag.sh [new file with mode: 0755]
include/deal.II/base/revision.h.in

index 1855c7aff3c176657ffc0534a1c79bf151357b1b..80289f21a88b28ea66b3b586a69d16e7896eb159 100644 (file)
@@ -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@")
index c71ab533e0c625162be4bed039a0591ae75ee90d..e248b61f14b32a323ba400f68fe36ae41e4e839d 100644 (file)
@@ -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()
index 212c124b657e40396023c04df2a9043a77e00a0a..02c3bb93c09b5cb40d5ce419edc44503bc4f737e 100644 (file)
@@ -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 (executable)
index 0000000..6839b26
--- /dev/null
@@ -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
index 0486af7daa0692632161c7e4bf5dd1cc79f78393..c99fbf57b9527faf0a69e4c7ceeaf573a232e9af 100644 (file)
  */
 #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

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.