Update package version to 2.8.12

This commit is contained in:
2025-09-10 12:28:09 +03:00
parent 34efc04bf2
commit 433d02dc22
2 changed files with 14 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="rrthomas/enchant"
# Get tag name using Github Rest API
TAG_NAME=$(curl -s -L -H "X-GitHub-Api-Version: 2022-11-28" -H "Authorization: token ${GITHUB_API_TOKEN}" https://api.github.com/repos/"$REPO"/releases/latest | jq -r '.tag_name')
# Trim 'v' character in TAG_NAME variable
VERSION=$(echo "$TAG_NAME" | tr -d 'v')
echo "$VERSION"
+2 -3
View File
@@ -1,11 +1,10 @@
name: enchant name: enchant
description: Spelling library wrapper with consistent interface description: Spelling library wrapper with consistent interface
version: 2.8.2 version: 2.8.12
revision: 2
url: https://rrthomas.github.io/enchant/ url: https://rrthomas.github.io/enchant/
license: LGPL2.1-or-later license: LGPL2.1-or-later
architecture: any architecture: any
depends: ["gcc-libs", "glib", "glibc"] depends: ["gcc-libs", "glib", "glibc"]
optional_depends: ["aspell"] optional_depends: ["aspell"]
make_depends: ["aspell", "vala", "unittest-cpp"] make_depends: ["aspell","aspell-en", "vala", "unittest-cpp"]
type: source type: source