From: Eric Fahlgren Date: Sat, 1 Feb 2025 16:12:07 +0000 (-0800) Subject: scripts: getver.sh: approximate version from date X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F17817%2Fhead;p=thirdparty%2Fopenwrt.git scripts: getver.sh: approximate version from date When doing package support and management it is often the case that knowing the corresponding openwrt repo's release version is useful. For example, when adding package changes to the ASU server, the openwrt revision is used as the cutoff for applying those changes. Knowing a package change's hash in its remote feed repo allows us to look up its change date, which we can now use with getver.sh to approximate the revision in openwrt at which it was made. Signed-off-by: Eric Fahlgren Link: https://github.com/openwrt/openwrt/pull/17817 Signed-off-by: Robert Marko --- diff --git a/scripts/getver.sh b/scripts/getver.sh index 0659d8004a0..e9a5cca0740 100755 --- a/scripts/getver.sh +++ b/scripts/getver.sh @@ -23,6 +23,9 @@ try_git() { BASE_REV="$(git rev-list ${REBOOT}..HEAD 2>/dev/null | wc -l | awk '{print $1}')" [ $((BASE_REV - GET_REV)) -ge 0 ] && REV="$(git rev-parse HEAD~$((BASE_REV - GET_REV)))" ;; + *-*-*) # ISO date format - for approximating when packages were removed or renamed + GET_REV="$(git log -n 1 --format="%h" --until "$GET_REV")" + ;& # FALLTHROUGH *) BRANCH="$(git rev-parse --abbrev-ref HEAD)" ORIGIN="$(git rev-parse --verify --symbolic-full-name ${BRANCH}@{u} 2>/dev/null)"