From d2dd6fcc79c65f314e4cbf447e820355b04857d1 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 23 Aug 2025 11:24:32 +0300 Subject: [PATCH] Update package version to 2025.4 --- check-version.sh | 12 ++++++++++++ pkg.info | 4 ++-- source.sh | 3 +-- 3 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 check-version.sh diff --git a/check-version.sh b/check-version.sh new file mode 100644 index 0000000..3c90461 --- /dev/null +++ b/check-version.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# Github repository +REPO="ostreedev/ostree" + +# Get tag name using Github Rest API +TAG_NAME=$(curl -s -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" 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" diff --git a/pkg.info b/pkg.info index 7f76d17..d82dd43 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,9 @@ name: ostree description: Operating system and container binary deployment and upgrades -version: 2024.8 +version: 2025.4 url: https://github.com/ostreedev/ostree license: LGPL2-or-later architecture: any -depends: ["curl","fuse3","gcc","glib","glibc","gpgme","libarchive","libgpg-error","openssl","util-linux","which","xz-utils","zlib"] +depends: ["curl","fuse3","gcc","glib","glibc","gpgme","libarchive","libgpg-error","libsoup","openssl","util-linux","which","xz-utils","zlib"] make_depends: ["e2fsprogs","git","gtk-doc","libxslt","dracut"] type: source diff --git a/source.sh b/source.sh index b688071..f4edb3e 100644 --- a/source.sh +++ b/source.sh @@ -25,8 +25,7 @@ build() { --with-dracut=yesbutnoconf \ --with-grub2-mkconfig-path=/usr/bin/grub-mkconfig \ --with-modern-grub \ - --with-openssl \ - --with-soup=no + --with-openssl make }