Update package version to 3.25.1

This commit is contained in:
2025-09-21 17:28:45 +03:00
parent 9aa38c90b9
commit 6a8440e36b
2 changed files with 16 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Git repository
REPO="https://sourceware.org/git/valgrind.git"
# Get tag name using 'git ls-remote'
TAG_NAME=$(git ls-remote --exit-code --refs --tags --sort='v:refname' "$REPO" | cut -d'/' -f3 | grep '^VALGRIND' | tail -n1)
# Trim prefix
VERSION=${TAG_NAME//VALGRIND_/}
# Replace '_' with '.'
VERSION=${VERSION//_/.}
echo "$VERSION"
+1 -1
View File
@@ -1,6 +1,6 @@
name: valgrind name: valgrind
description: Instrumentation framework for building dynamic analysis tools description: Instrumentation framework for building dynamic analysis tools
version: 3.22.0 version: 3.25.1
url: https://valgrind.org/ url: https://valgrind.org/
license: GPL2-or-later license: GPL2-or-later
architecture: any architecture: any