Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/GAP/cnf/   (Algebra von RWTH Aachen Version 4.15.1©)  Datei vom 18.9.2025 mit Größe 1 kB image not shown  

Quelle  gap-version-gen.sh   Sprache: Shell

 
#!/bin/sh

# This script generates a version string for GAP based on the VERSION file
# (if any) and the output of `git describe` (if inside a git working tree).
#
# The result is printed into cnf/GAP-VERSION-FILE, but only if the version
# string changed. This way, we do not trigger unnecessary rebuilds.

# This script is based on git.git's GIT-VERSION-GEN script

GVF=cnf/GAP-VERSION-FILE
DEF_VER=${1:-4.dev}

LF='
'

# First  try git-describe, then default.
if test -d ${GIT_DIR:-.git} -o -f .git &&
 VN=$(git describe --match "v[0-9]*" --abbrev=7 HEAD 2>/dev/null) &&
 case "$VN" in
 *$LF*) (exit 1) ;;
 v[0-9]*)
  git update-index -q --refresh
  test -z "$(git diff-index --name-only HEAD --)" ||
  VN="$VN-dirty" ;;
 esac
then
 VN=$(echo "$VN");
else
 VN="$DEF_VER"
fi

VN=$(expr "$VN" : v*'\(.*\)')

# Read GVF, if it exists. Then write the GVF back, but only
# if it is missing, or if the version changed.
if test -r $GVF
then
 VC=$(sed -e 's/^GAP_BUILD_VERSION = //' -e '/GAP_BUILD_DATETIME/d'  <$GVF)
else
 VC=unset
fi
test "$VN" = "$VC" || {
 echo >&2 "GAP_BUILD_VERSION = $VN"
 echo "GAP_BUILD_VERSION = $VN" >$GVF
 if [ -z "$SOURCE_DATE_EPOCH" ]; then
  echo "GAP_BUILD_DATETIME = $(date '+%Y-%m-%d %H:%M:%S%z')" >>$GVF
 else
  echo "GAP_BUILD_DATETIME = reproducible" >>$GVF
 fi
}

100%


¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.