Update package version to 43.3

This commit is contained in:
2025-09-08 16:43:04 +03:00
parent 6a3f817bab
commit 17ebf4af9a
2 changed files with 16 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Gitlab repository
REPO="GNOME/libwnck"
# Replace slash with URL encoded representation
REPO=$(echo "$REPO" | sed 's|/|%2F|g')
# Get tag name using Gitlab Rest API
TAG_NAME=$(curl -s -L https://gitlab.gnome.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[0].name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+1 -1
View File
@@ -1,6 +1,6 @@
name: libwnck name: libwnck
description: Library to manage X windows and workspaces description: Library to manage X windows and workspaces
version: 43.0 version: 43.3
url: https://gitlab.gnome.org/GNOME/libwnck url: https://gitlab.gnome.org/GNOME/libwnck
license: LGPL2-or-later license: LGPL2-or-later
architecture: any architecture: any