Update package version to 257.9

This commit is contained in:
2025-09-08 22:02:40 +03:00
parent 0b68f241dd
commit 2d049408a1
3 changed files with 14 additions and 3 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Github repository
REPO="systemd/systemd"
# 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"
+1 -2
View File
@@ -1,7 +1,6 @@
name: udev
description: Userspace device file manager
version: 256
revision: 2
version: 257.9
url: https://github.com/systemd/systemd
license: GPL-2.0-or-later,LGPL-2.1-or-later
architecture: any
+1 -1
View File
@@ -17,7 +17,7 @@ prepare() {
build() {
sed -i -e 's/GROUP="render"/GROUP="video"/' -e 's/GROUP="sgx", //' rules.d/50-udev-default.rules.in
sed '/systemd-sysctl/s/^/#/' -i rules.d/99-systemd.rules.in
sed '/NETWORK_DIRS/s/systemd/udev/' -i src/basic/path-lookup.h
sed '/NETWORK_DIRS/s/systemd/udev/' -i src/libsystemd/sd-network/network-util.h
mkdir build
cd build