Update package version to 258

This commit is contained in:
2025-09-23 09:52:10 +03:00
parent 2d049408a1
commit e049d5e730
3 changed files with 30 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: udev
description: Userspace device file manager
version: 257.9
version: 258
url: https://github.com/systemd/systemd
license: GPL-2.0-or-later,LGPL-2.1-or-later
architecture: any
+26
View File
@@ -0,0 +1,26 @@
From 9736f634c8b61343be966114ce1c9eddaf0fa742 Mon Sep 17 00:00:00 2001
From: Luca Boccassi <[email protected]>
Date: Wed, 17 Sep 2025 16:13:37 +0100
Subject: [PATCH] meson: fix link-udev-shared option
This doesn't work anymore, setting it to false still makes
udev link to libsystemd-shared, as an argument was mistakenly
dropped.
Follow-up for 6350d2dbd97746440b9c8303ddc140ffda568732
---
src/udev/meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/udev/meson.build b/src/udev/meson.build
index dc54d4e68878c..908bec8b1d329 100644
--- a/src/udev/meson.build
+++ b/src/udev/meson.build
@@ -151,6 +151,7 @@ udev_binaries_dict = [
include_directories('.', 'net'),
],
'dependencies' : udev_dependencies,
+ 'link_with' : udev_link_with,
'install_rpath' : udev_rpath,
'install_tag' : 'udev',
'extract' : udevadm_extract_sources,
+3
View File
@@ -10,6 +10,9 @@ FILENAME="${DOWNLOAD##*/}"
prepare() {
wget "$DOWNLOAD"
tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE"
cd "$BPM_SOURCE"
patch -Np1 -i "$BPM_WORKDIR"/fix-link-udev-shared.patch
}
# The build function is executed in the source directory