Update package version to 3.25.1
This commit is contained in:
@@ -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,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
|
||||||
|
|||||||
Reference in New Issue
Block a user