Update package version to 1.46.4
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Gitlab repository
|
||||||
|
REPO="pixman/pixman"
|
||||||
|
|
||||||
|
# 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.freedesktop.org/api/v4/projects/"$REPO"/repository/tags | jq -r '.[0].name')
|
||||||
|
|
||||||
|
# Trim prefix
|
||||||
|
VERSION=$(echo "$TAG_NAME" | cut -d'-' -f2)
|
||||||
|
|
||||||
|
echo "$VERSION"
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
name: pixman
|
name: pixman
|
||||||
description: Low-level software library for pixel manipulation
|
description: Low-level software library for pixel manipulation
|
||||||
version: 0.43.2
|
version: 0.46.4
|
||||||
url: https://www.pixman.org/
|
url: https://www.pixman.org/
|
||||||
license: MIT
|
license: MIT
|
||||||
architecture: any
|
architecture: any
|
||||||
|
|||||||
Reference in New Issue
Block a user